Category Archives: Soft and services

Online photo editor

Photoshop-like image editor https://www.photopea.com/

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: 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

Free smart TV channels

Install this application on your TV http://forkplayer.tv/smart-tv/forkplayer/#install. After that start the application, open SMILE BY → Onliner → SEGAZ → IPTV → OnlyBest.

Socks5 proxy for telegram

It’s the easiest one you can install on your VPS server. It’s a docker container. https://github.com/schors/tgdante2 You could use VPN for that but it will send all traffic through your VPN endpoint which is not fast. Socks5 proxy uses much less resources and this one is only applicable for telegram now.

Nice scheduling service

And can be used for free. Calendar where you can post a schedule when you’re available for something to share with others. https://calendly.com/

docker-compose for starting aerospike and memcache

Place this config wherever you like (in your project) — for instance, ~/myproj/docker/docker-compose.yml: version: «2» services: #aerspike as: image: aerospike/aerospike-server volumes: — ./aerospike/etc:/opt/aerospike/etc ports: — 3000:3000 command: [asd, —config-file, /opt/aerospike/etc/docker.conf] memcached: image: memcached ports: — 11211:11211 volumes: #volume for etcd dicovery-data: driver: local #volume for database db-data: driver: local And this config for aerospike should …

Read more

Proxies and traffic sniffers for mac os

That’s a great one but it’s not cheap — https://www.charlesproxy.com/. They say this one is good as well and free — https://mitmproxy.org/. But I don’t like the interface.

PlantUML — плагин для Jetbrains IDEA для рисования UML диаграмм

PlantUML — плагин для Jetbrains IDEA для рисования UML диаграмм. У них есть сайт, хоть и странный — http://plantuml.com/. Сложные диаграммки рисовать очень неудобно, но простые делаются кодом навроде этого: Bob->Alice : hello Диаграммы C4 model (c4model): https://c4model.com/ Level 1: A System Context diagram provides a starting point, showing how the software system in scope fits into …

Read more