Skip to content

Instantly share code, notes, and snippets.

@pagewang0
pagewang0 / network-tweak.md
Created December 18, 2019 04:09 — forked from mustafaturan/network-tweak.md
Linux Network Tweak for 2 million web socket connections

Sample config for 2 million web socket connection

    sysctl -w fs.file-max=12000500
    sysctl -w fs.nr_open=20000500
    # Set the maximum number of open file descriptors
    ulimit -n 20000000

    # Set the memory size for TCP with minimum, default and maximum thresholds 
 sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000'
{
"workbench.iconTheme": "vs-minimal",
"workbench.colorTheme": "Monokai",
"files.trimTrailingWhitespace": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"eslint.autoFixOnSave": true,
"search.exclude": {
"node_modules": true,
"coverage": true,
import pyautogui
def find():
for i in range(10):
pyautogui.moveTo(300, 300, duration=0.25)
pyautogui.moveTo(400, 300, duration=0.25)
pyautogui.moveTo(400, 400, duration=0.25)
pyautogui.moveTo(300, 400, duration=0.25)
find()
// 成绩等级分为A、B和C三级
function getGrade(score) {
return score < 60 ? 'C' :
score < 80 ? 'B' : 'A';
};
// 学生及其成绩
let students = [
{ name: '张三', score: 84 },
{ name: '李四', score: 58 },
{ name: '王五', score: 99 },
transform: {
sfjjr: 'stockbroker',
czdh: 'type'
}
const transform = (res) => {
if (_.isArray(res)) {
res.map(row => transform(row));
}
1
var str = 'bdca'
console.log(str.split(‘’).sort().join(‘’))
2
var index, res = []
var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]
var num = Math.floor(Math.random() * arr.length)
for(var i=num;i>=0;i--){
var assert = require('assert')
function Node(){
this.parent
this.data
this.next
this.index
}
function sort(a, index, p){