This guide is specifically for pseudo-random number generators (PRNGs) written in JavaScript, and tested in Mac OS X.
Homebrew
| package main | |
| import ( | |
| "crypto/x509" | |
| "encoding/pem" | |
| "io/ioutil" | |
| "log" | |
| "os" | |
| ) |
| Install WireGuard via whatever package manager you use. For me, I use apt. | |
| $ sudo add-apt-repository ppa:wireguard/wireguard | |
| $ sudo apt-get update | |
| $ sudo apt-get install wireguard | |
| MacOS | |
| $ brew install wireguard-tools | |
| Generate key your key pairs. The key pairs are just that, key pairs. They can be |
| Got error 'PHP message: PHP Notice: Undefined index: attributes in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 529\nPHP message: PHP Notice: Undefined index: attributes in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 556\nPHP message: PHP Notice: Undefined index: cms in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 433\nPHP message: PHP Notice: Trying to get property of non-object in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 433\nPHP message: PHP Notice: Trying to get property of non-object in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 433\nPHP message: PHP Notice: Undefined index: search_query in /home/imakr/public_html/tools/smarty/sysplugins/smarty_internal_templatebase.php(15 |
| server { | |
| listen 80; | |
| server_name _; | |
| location / { | |
| root /var/www/html; | |
| index index.html; | |
| expires -1; | |
| add_header Pragma "no-cache"; | |
| add_header Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0"; |
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(query_start, clock_timestamp()), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(query_start, clock_timestamp()), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| // It is important to declare your variables. | |
| (function() { | |
| var foo = 'Hello, world!'; | |
| print(foo); //=> Hello, world! | |
| })(); | |
| // Because if you don't, the become global variables. | |
| (function() { |
| Rollout post compile script | |
| Rollout: going to generate structure and code | |
| Rollout: using dsym generated by Xcode: "/Users/XXXX/Library/Developer/Xcode/DerivedData/YYY-hklmhitxgpbwmbfnqlkgfxroecpo/Build/Products/Debug-iphonesimulator/YYY.app.dSYM/Contents/Resources/DWARF/YYY" | |
| tweaker error: ExtractSymbols generated errors: MethodsDumper: discovered 35 null compile units\nTypesDumper: discovered 35 null compile units\n | |
| Command /bin/sh failed with exit code 13 |
| #!/bin/sh | |
| # | |
| # Postgresql backup script | |
| # http://www.bitweaver.org/wiki/pg_backup+PostgreSQL+backup+script | |
| # | |
| # Author | |
| # | | |
| # +-- speedboy (speedboy_420 at hotmail dot com) | |
| # +-- spiderr (spiderr at bitweaver dot org) | |
| # +-- flexiondotorg (code at flexion dot org) |
| Sentry.setCaptureListener(new SentryEventCaptureListener() { | |
| @Override | |
| public SentryEventBuilder beforeCapture(SentryEventBuilder builder) { | |
| try { | |
| PackageInfo pInfo = context.getPackageManager().getPackageInfo(context.getPackageName(), PackageManager.GET_META_DATA); | |
| builder.getTags().put("Build version", pInfo.versionName); | |
| } catch (NameNotFoundException e) {} | |
| return builder; |