compton --config /dev/null --backend xrender --vsync opengl
Proper GLX config:
compton --config /dev/null --backend glx --glx-swap-method 1
Nvidia swapping and Vsync should be disabled.
sudo Add-MpPreference -ExclusionPath 'C:\Users\vadim\projects\' |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> | |
<style> | |
body { | |
margin: 0px; | |
overflow: hidden; | |
} |
{ | |
"git.confirmSync": false, | |
"explorer.confirmDragAndDrop": false, | |
"editor.formatOnSave": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.renderWhitespace": "boundary", | |
"git.autofetch": true, | |
"explorer.confirmDelete": false, |
# Type this in WSL terminal | |
git config --global core.filemode false | |
git config --global core.autocrlf true |
frontend http-frontend | |
bind *:80 | |
mode http | |
redirect scheme https code 301 if !{ ssl_fc } |
compton --config /dev/null --backend xrender --vsync opengl
Proper GLX config:
compton --config /dev/null --backend glx --glx-swap-method 1
Nvidia swapping and Vsync should be disabled.
git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -10 | awk '{print$1}')" |
urxvt*foreground: white | |
urxvt*background: black | |
*color0: #2E3436 | |
*color1: #a40000 | |
*color2: #4E9A06 | |
*color3: #C4A000 | |
*color4: #3465A4 | |
*color5: #75507B | |
*color6: #ce5c00 |
import math | |
def y2lat(a): | |
return 180.0/math.pi*(2.0*math.atan(math.exp(a*math.pi/180.0))-math.pi/2.0) | |
def lat2y(a): | |
return 180.0/math.pi*math.log(math.tan(math.pi/4.0+a*(math.pi/180.0)/2.0)) | |
my_dict = dict.fromkeys(['a', 'b', 'c'], 10) | |
my_dict.update(dict.fromkeys(['b', 'e'], 20)) |