- make
- gcc
- g++
To install those two, you can run
apt-get update && apt-get install make gcc g++.
(Alternatively, you can install the package build-essential)
| # Dante-Server install script (Debian 8 - Jessie) | |
| # Start with 'chmod +x danted_install_script.sh && danted_install_script.sh' | |
| # duketwo - 12.11.2017 | |
| random_pw=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| network_adapter=$(ip route | grep default | sed -e "s/^.*dev.//" -e "s/.proto.*//") | |
| username="SallySample" | |
| port="31337" | |
| public_ip=$(dig +short myip.opendns.com @resolver1.opendns.com) | |
| echo "Random password: $random_pw" | |
| echo "deb-src http://ftp.de.debian.org/debian/ sid main non-free contrib" >> /etc/apt/sources.list |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\*\Shell\Calculating.Hash.Checksums.Cascading] | |
| "Extended"="" | |
| "MUIVerb"="Calculate hash checksums" | |
| "SubCommands"="MD2;MD4;MD5;SHA.1;SHA.256;SHA.384;SHA.512;All.Hash" | |
| "Icon"="imageres.dll,262" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\MD2] | |
| "Icon"="imageres.dll,262" |
| ################### | |
| # # | |
| # SU.SG # | |
| # # | |
| ################### | |
| # https://mp.weixin.qq.com/s/H3OOqhFRr0YZGorIAlsCjA | |
| # todo | |
| # replace or remove content-security-policy header |
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
| /** | |
| * 使用方法: | |
| * 1. 用 Chrome 打开歌单的 web 页面(可以通过分享拿到链接,链接类似这样:http://music.163.com/playlist?id=xxx&userid=yyy) | |
| * 2. 然后右键“检查”(如果有左上角有 device 选项,需要选择 Laptop 开头的,可以在 Edit/编辑 里添加) | |
| * 3. 在 console 里输入下面脚本,即可输出 “歌曲名 - 歌手名” 格式的内容: | |
| Springsteen - Eric Church | |
| Chattahoochee - Alan Jackson | |
| Baby Now That I Found You - Alison Krauss | |
| Check Yes or No - George Strait |
| @echo off | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: Clean Up ASUS All | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: The tool helps to clean up all ASUS software from system | |
| :: ------------------------------------------------------------------------------------------------------------ | |
| :: Before running the tools, | |
| :: 1. Complete backup your system. | |
| :: 2. Disable ASUS Apps from BIOS (MyASUS and Armoury) | |
| :: 3. Run ASUS remove tools (Armoury Crate Uninstall Tool.exe, or geek_uninstall.exe). |