I hereby claim:
- I am xaprb on github.
- I am xaprb (https://keybase.io/xaprb) on keybase.
- I have a public key whose fingerprint is E877 C582 9D0E 5E8A 3AE1 BC4E D14D 8893 201A BAA0
To claim this, I am signing this object:
#gb { | |
background-color: #4285f4; | |
box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28); | |
} | |
.zA.yO { | |
background-color: white; | |
box-shadow: 0 0 4px rgba(0,0,0,.14); | |
} |
A | |
a | |
aa | |
aal | |
aalii | |
aam | |
Aani | |
aardvark | |
aardwolf |
#!/usr/bin/env bash | |
if [ -z "$1" ]; then | |
echo "Usage: $0 <iterations>" | |
exit 1 | |
fi | |
# Display product ID, category, title, price, num orders | |
# ordered by top products limit 10 | |
function top_products(){ |
#!/bin/sh | |
LOGIN=YOURLOGIN | |
TOKEN=YOURTOKEN | |
ORG=YOURORG | |
DONE=0 | |
PAGE=0 | |
# sample output: | |
# "total_private_repos": 50, |
package main | |
import ( | |
"database/sql" | |
"database/sql/driver" | |
"errors" | |
_ "github.com/go-sql-driver/mysql" | |
"log" | |
"strings" | |
) |
package main | |
import ( | |
"database/sql" | |
"log" | |
_ "github.com/go-sql-driver/mysql" | |
) | |
func main() { | |
db, err := sql.Open("mysql", "root:@tcp(:3306)/test") |
I hereby claim:
To claim this, I am signing this object:
<script Language="VBScript" RunAt="server"> | |
Class Logger | |
Private m_Name | |
Private m_Level | |
Private m_LoggerLevel | |
Private m_Destination | |
Private m_BufferOutput | |
Private m_Buffer |
#!/usr/bin/perl | |
use strict; | |
use warnings FATAL => 'all'; | |
use DBI; | |
use English qw(-no_match_vars); | |
use Getopt::Long; | |
use List::Util qw(max); |
drop temporary table if exists left1; | |
drop temporary table if exists left2; | |
drop temporary table if exists right1; | |
drop temporary table if exists right2; | |
drop temporary table if exists right3; | |
create temporary table left1 ( | |
col1 int unsigned not null auto_increment primary key, | |
col2 bit not null default 0, | |
col3 bit not null default 0 |