This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Version=2019.1.3 | |
| Type=Application | |
| Name=IntelliJ IDEA | |
| Icon=/opt/idea-IU-191.7479.19/bin/idea.png | |
| Exec="/opt/idea-IU-191.7479.19/bin/idea.sh" %f | |
| Comment=Capable and Ergonomic IDE for JVM | |
| Categories=Development;IDE; | |
| Terminal=false | |
| StartupWMClass=jetbrains-idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet | |
| After=network.target multi-user.target | |
| [Service] | |
| ExecStart=/opt/frp_0.23.2_linux_amd64/frpc -c /opt/frp_0.23.2_linux_amd64/frpc.ini | |
| ExecStartPost=/bin/sh -c 'umask 022; pgrep frpc > /var/run/frpc.pid' | |
| StandardOutput=file:/var/log/frpc.log | |
| StandardError=file:/var/log/frpc.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=A secure socks5 proxy, designed to protect your Internet traffic. | |
| After=network.target | |
| [Service] | |
| ExecStart=/usr/bin/ssserver -c /etc/shadowsocks/config.json | |
| ExecStartPost=/bin/sh -c 'umask 022; pgrep ssserver > /var/run/shadowsocks.pid' | |
| [Install] | |
| WantedBy=multi-user.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=V2Ray Service | |
| After=network.target | |
| Wants=network.target | |
| [Service] | |
| # This service runs as root. You may consider to run it as another user for security concerns. | |
| # By uncommenting the following two lines, this service will run as user v2ray/v2ray. | |
| # More discussion at https://github.com/v2ray/v2ray-core/issues/1011 | |
| # User=v2ray |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "log": { | |
| "loglevel": "warning", | |
| "access": "/var/log/v2ray/access.log", | |
| "error": "/var/log/v2ray/error.log" | |
| }, | |
| "inbounds": [ | |
| { | |
| "port": 1081, | |
| "listen": "0.0.0.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Match] | |
| Name=eno1 | |
| [Network] | |
| Bridge=br0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding:utf-8 -*- | |
| import logging | |
| import RPi.GPIO | |
| import time | |
| logging.basicConfig( | |
| level=logging.INFO, | |
| format=( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Beautify - HookyQR; | |
| Dash - Budi Irawan; | |
| Debugger for Java - Microsoft; | |
| Docker - Microsoft; | |
| EditorConfig for VS Code - EditorConfig; | |
| FreeMarker - Daniel Cortes; | |
| Java Dependency Viewer - Microsift; | |
| Java Extension Pack - Microsoft; | |
| Java Test Runner - Microsoft; | |
| Kubernetes - Microsoft; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "python.formatting.provider": "black", | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.flake8Args": [ | |
| "--ignore=E501", | |
| "--verbose" | |
| ], | |
| "editor.fontSize": 13, | |
| "editor.formatOnSave": true, | |
| "python.jediEnabled": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Install Linux updates, followed by GCC and Make | |
| sudo yum update | |
| sudo yum install gcc make | |
| sudo yum install tcl | |
| 2. Download, Untar and Make Redis 6.2.2 (check here http://redis.io/download) | |
| cd /tmp |