- http://purebar.shopy.co.il/categories/47351/?page=2
- http://www.asigastech.com/gas-fill
- https://www.ebay.com/itm/1-CO2-Cylinder-Refill-Adapter-w-Hose-for-SodaStream-Tank-Soda-Making-Connector/312203462413
- https://www.youtube.com/watch?v=Med7raHkieI
- https://www.youtube.com/watch?v=H2luBUeYc4E
- https://sodamakerclub.com/diy-refills/
- https://www.aliexpress.com/item/Soda-Valve-Pin-Valve-Thread-M18X1-5/32729676193.html
- https://spunky.aliexpress.com/store/group/Soda-Stream/900307_509875452.html
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
float get(obj* v, bool* ok) { | |
float c; | |
if(v->valid) { | |
*ok = true; | |
c = v->a + v->b; | |
} | |
else { | |
*ok = false; //not ok, so don't expect anything from c | |
} | |
return c; |
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
$ tracepath fingen.co.il | |
1?: [LOCALHOST] pmtu 1500 | |
1: pfwtail1.corp.cyren.com 2.601ms | |
1: pfwtail1.corp.cyren.com 2.969ms | |
2: no reply | |
3: 109.226.16.113 30.773ms | |
4: core2.ccccloud.com 3.415ms | |
5: xe-8-1-2-990.edge5.london1.level3.net 70.397ms | |
6: ldn-b5-link.telia.net 68.858ms | |
7: ldn-bb3-link.telia.net 69.459ms |
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
13175 59.169s 172.20.20.106 84.39.153.38 TCP 66 51741 → 80 [SYN] Seq=96151085 Win=64240 Len=0 MSS=1460 WS=256 SACK_PERM=1 | |
13176 59.170s 172.20.20.106 84.39.152.38 TCP 66 51742 → 80 [SYN] Seq=2789732853 Win=64240 Len=0 MSS=1460 WS=256 SACK_PERM=1 | |
... | |
14578 1m 3.131s 172.20.20.106 84.39.152.38 HTTP 631 GET http://static.adsafeprotected.com/skeleton.gif HTTP/1.1 | |
14581 1m 3.131s 172.20.20.106 84.39.153.38 HTTP 65 GET http://dt.adsafeprotected.com/dt?anId=... | |
... | |
14715 1m 3.228s 172.20.20.106 84.39.153.38 HTTP 269 CONNECT ag.innovid.com:443 HTTP/1.0 | |
14789 1m 3.256s 172.20.20.106 84.39.152.38 HTTP 273 CONNECT bs.serving-sys.com:443 HTTP/1.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
#include <string> | |
#include <iostream> | |
#include <boost/regex.hpp> | |
#include <boost/spirit/include/qi.hpp> | |
#include <boost/spirit/repository/include/qi_seek.hpp> | |
volatile int groupindex = 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
<!DOCTYPE HTML> | |
<html> | |
<body> | |
<p>Before the script...</p> | |
<script> | |
function* range(begin, end, step=1) { |
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
/* Global Pac File */ | |
'use strict'; | |
function getPort(url) | |
{ | |
var port; | |
var base_str = url.split("/")[2]; | |
var str_after_userpass = base_str.split("@")[1]; | |
if (str_after_userpass) { | |
port = parseInt(str_after_userpass.split(":")[1]); |
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 python | |
# -*- coding: utf-8 -*- | |
# Do something like python -m cProfile -o stats my_script.py | |
# ./dump_stats.py | |
if __name__ == "__main__": | |
import sys | |
import pstats |
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 python | |
# -*- coding: utf-8 -*- | |
"""Process CSV data | |
Usage: | |
process.py -h | --help | |
process.py --csvfile=<FILE> | |
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
import re | |
import os | |
import random | |
import multiprocessing | |
import threading | |
autogen_file = "chrome-04.07-autogen-transfromed-data" | |
raw_file = "chrome-04.07-raw-transfromed-data" | |
# 100 lines only |