Spectacle for fullscreen apps on mac
It can make your app fullscreen and also manage your apps positioning. http://www.spectacleapp.com/ You could also try http://magnet.crowdcafe.com/ Now they suggest to use https://rectangleapp.com/ instead of spectacular.
Free video editor — Davinci Resolve
https://www.blackmagicdesign.com/ru/products/davinciresolve/
Online code editors
https://scrapfy.io — has go and js http://collabedit.com — has js
Online photo editor
Photoshop-like image editor https://www.photopea.com/
Turn off ads on MIUI
Turn off the following: 1. System application «Security»→coag sign→Receive recommendations 2. System application «Security»→Cleaner→Receive recommendations 3. System app «File manager»→ Settings→ About→Recommendations 4. System app «Downloads»→ three dots→ Settings→ Show recommended content 5. System app «Music»→ Settings→ Advanced Settings→Receive recommendations 6. System settings→ Additional settings→ Authorization & revocation→msa The same in Russian: https://4pda.ru/forum/index.php?act=findpost&pid=77282386&anchor=Spoil-77282386-1
docker simple starter
Build and run (on linux do not forget sudo):
1 2 |
docker image build -t <image-name> . docker container run --env "DOCKER=true" --env "NODE_ENV=test" --env "NODE_PORT=8000" --mount "type=bind,source=/etc/nginx/sites-enabled,target=/sites-enabled" --env "PATH_CONF=/sites-enabled" -p 8000:8000 --rm --name <container-name> --network=host <image-name> |
Login into container
1 |
docker container exec -it <container-name> bash |
How to connect Synology to your UPS
They can be connected via USB like this: https://www.synology.com/en-us/knowledgebase/DSM/help/DSM/AdminCenter/system_hardware_ups
Simple online editor for javascript
Just paste it into navigation bar:
1 |
data:text/html, <html><script>window.onbeforeunload = window.onunload = function(){return 'Confirm page reload';};</script><body><button onclick="console.log(eval(document.querySelector('textarea').value.replace('<div>', '\n').replace('</div>', '\n')))">run</button><br><textarea style="width:600px;height:400px"></textarea></body><script>document.querySelector('textarea').focus();</script> |
It just outputs the result into console when you click run button. It’s simple and works. Because sometimes you just don’t need monsters like jsfiddle or jsbin.
How to setup mac time machine on synology nas
In russian, sorry. https://www.synology.com/ru-ru/knowledgebase/DSM/tutorial/Backup_Restore/How_to_back_up_files_from_Mac_to_Synology_NAS_with_Time_Machine
Pipeline view in shell
1 |
tail -f /var/log/nginx/access.log | pv --line-mode --rate > /dev/null |
https://serverfault.com/questions/473905/is-there-a-unix-linux-command-to-count-lines-per-second-from-stdin