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
| CREATE TRIGGER person_notify AFTER INSERT OR UPDATE OR DELETE ON income | |
| FOR EACH ROW EXECUTE PROCEDURE notify_trigger( | |
| 'id', | |
| 'email', | |
| 'username' | |
| ); | |
| CREATE TRIGGER income_notify AFTER INSERT OR UPDATE OR DELETE ON income | |
| FOR EACH ROW EXECUTE PROCEDURE notify_trigger( | |
| 'id', |
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 | |
| # bouroo | |
| # 18.08.2017 | |
| # sudo apt-get -y install pcscd python-pyscard python-imaging | |
| import os | |
| import io | |
| import Image | |
| import binascii | |
| from smartcard.System import readers |
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 | |
| // Require pcscd, libpcsclite | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "strconv" |
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
| /interface pppoe-client | |
| set [find name="internet-speedy"] comment="PROVIDER1" | |
| set [find name="internet-biznet"] comment="PROVIDER2" | |
| /ip route | |
| add comment="Force test pings through PROVIDER1" distance=1 dst-address=4.2.2.4/32 gateway=internet-speedy | |
| add comment="Block test pings through other providers" distance=20 dst-address=4.2.2.4/32 type=blackhole | |
| /tool netwatch | |
| add comment=CheckCon down-script=":local \"p1\" [/interface pppoe-client find 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
| func (s *Service) processPage(id string, job Job) (err error) { | |
| ctx, cancel := context.WithTimeout(context.Background(), s.ContextTimeout) | |
| defer cancel() | |
| url := fmt.Sprintf("http://%s", s.CDTAddress) | |
| devt := devtool.New(url) | |
| tab, err := devt.CreateURL(ctx, "https://google.com") | |
| if err != nil { | |
| return err |
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> | |
| <meta charset="utf-8"> | |
| <style> | |
| @import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Josefin+Slab|Arvo|Lato|Vollkorn|Abril+Fatface|Old+Standard+TT|Droid+Sans|Lobster|Inconsolata|Montserrat|Playfair+Display|Karla|Alegreya|Libre+Baskerville|Merriweather|Lora|Archivo+Narrow|Neuton|Signika|Questrial|Fjalla+One|Bitter|Varela+Round); | |
| .background { | |
| fill: #eee; | |
| pointer-events: all; | |
| } |
Moved to git repository: https://github.com/denji/golang-tls
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)
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 wait (ms) { | |
| return new Promise(resolve => setTimeout(() => resolve(), ms)); | |
| } | |
| export default async function capture(browser, url) { | |
| // Load the specified page | |
| const page = await browser.newPage(); | |
| await page.goto(url, {waitUntil: 'load'}); | |
| // Get the height of the rendered page |
NewerOlder