This file contains 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
[migrations] | |
last-migration-at=20220126_00~ | |
[tracker-pt] | |
camera-name=HD Pro Webcam C920 [8_1093e2fe_0_0000] | |
active-model-panel=2 | |
[modules] | |
protocol-dll=freetrack | |
tracker-dll=neuralnet |
This file contains 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
server { | |
listen 80; ## listen for ipv4; this line is default and implied | |
listen [::]:80 default ipv6only=on; ## listen for ipv6 | |
root /usr/share/nginx/www; | |
index index.php index.html index.htm; | |
# Make site accessible from http://localhost/ | |
server_name _; |
This file contains 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
// +build ignore | |
// Author: Weiyi Zheng, 2015 | |
/* learning termui and go language | |
To use run: > go run <script_name> <stock symbol> | |
and it will display Price and Volume info from last year in your terminal | |
things are lacking: | |
- two graphs can't be scaled to the same width | |
- no control over axis label | |
- be cautious running any termui stuff in chromebook's Secure Shell, it will freeze |
This file contains 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
# generated from [info body unknown] in tclsh8.6, on Debian (Jessie) | |
# man page http://www.tcl.tk/man/tcl8.5/TclCmd/unknown.htm | |
variable ::tcl::UnknownPending | |
global auto_noexec auto_noload env tcl_interactive errorInfo errorCode | |
if {[info exists errorInfo]} { | |
set savedErrorInfo $errorInfo | |
} | |
if {[info exists errorCode]} { |
This file contains 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
<?php | |
class ReconnectingPDO | |
{ | |
protected $dsn, $username, $password, $pdo, $driver_options; | |
public function __construct($dsn, $username = "", $password = "", $driver_options = array()) | |
{ | |
$this->dsn = $dsn; | |
$this->username = $username; | |
$this->password = $password; |