- node-gyp writen in python
- python have 2 mode for work with strings - unicode and ascii
- node-gyp use ascii mode
- windows use utf-8 for paths
- python throw UnicodeDecodeError for chars out of range 0..127 (Cyrillic chars for example)
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
package main | |
import ( | |
"net" | |
"fmt" | |
"syscall" | |
) | |
func main() { | |
addr, err := net.ResolveTCPAddr("tcp", "localhost:8090") |
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
'use strict'; | |
var rules = {}; | |
var sheet; | |
var nextIndex = 0; | |
void function initStyle() { | |
var el = document.createElement('style'); | |
document.head.appendChild(el); | |
sheet = el.sheet; |
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
'use strict'; | |
const LEFT = {i: -1, j: 0}; | |
const BOTTOM = {i: 0, j: 1}; | |
const RIGHT = {i: 1, j: 0}; | |
const TOP = {i: 0, j: -1}; | |
function* direction() { | |
var step = 0; | |
for(;;) { |
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
macro_rules! mutate { | |
($($var:ident),+ $code:block) => { | |
let ($($var,)+) = { | |
let ($(mut $var,)+) = ($($var,)+); | |
$code; | |
($($var,)+) | |
}; | |
}; | |
} |
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
#!/bin/bash | |
echo 'tmux new -s <session name>' | |
echo 'tmux attach -t <session name>' | |
echo | |
echo | |
echo 'Ctrl+b - enter command mode' | |
echo | |
echo 'd - detach' | |
echo ', - rename window' |
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
function addGetParam(url, name, value) { | |
return url + (/\?/.test(url) ? '&' : '?') + encodeURIComponent(name) + '=' + encodeURIComponent(value); | |
} | |
function createXHR(win = window) { | |
if(typeof win.XDomainRequest === 'function') { | |
return new win.XDomainRequest(); | |
} | |
return new win.XMLHttpRequest(); | |
} |
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
(() => { | |
const isNotUndefined = typeofResult => typeofResult !== 'undefined'; | |
if(isNotUndefined(typeof globalThis) && globalThis.globalThis === globalThis) { return; } | |
const g = (isNotUndefined(typeof window) && window) | |
|| (isNotUndefined(typeof global) && global) | |
|| (isNotUndefined(typeof self) && self) | |
|| Function('return this')(); | |
g.globalThis = g; | |
})(); |
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
type Computable | |
= 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | |
| 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | |
| 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | |
| 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | |
| 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | |
| 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | |
| 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 |
OlderNewer