Search Engine | Shortcut | Link |
---|---|---|
Amazon Aurora User Guide | aurora | https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fdocs.aws.amazon.com%2FAmazonRDS%2Flatest%2FAuroraUserGuide+%s |
AWS CLI Search | awscli | https://awscli.amazonaws.com/v2/documentation/api/latest/search.html?q=%s&check_keywords=yes&area=default |
MySQL 5.7 Manual | my57 | https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F5.7%2Fen%2F+%s |
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 onLoad() { | |
tinymce.on('AddEditor', function(e) { | |
e.editor.settings.block_formats = 'Paragraph=p;Preformatted=pre;Quote=blockquote;Heading 1=h1;Heading 2=h2;Heading 3=h3;None=removeformat'; | |
e.editor.settings.forced_root_block = false; | |
}); | |
} |
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
# NOT FOR PRODUCTION, JUST FOR LOCAL RACKS!!!!! | |
# I use this convox.yml to setup local gen2 rack services. | |
# NOT for apps that have their own resources defined, these are resources are shared across multiple apps | |
# In production, these are either non-convox SaaS (e.g., I use Elastic cloud for my prod elasticsearch) | |
# *or* I set them up with `convox resources create` (e.g., my shared redis) | |
# This config is just a handy way to have local dev services running that my local convox rack can use. | |
resources: | |
# Any resources here exposed locally as <resourcename>.resource.<appname>.convox | |
redis: | |
type: redis |
I hereby claim:
- I am jayjanssen on github.
- I am perconajayj (https://keybase.io/perconajayj) on keybase.
- I have a public key ASD73ASV9xg29hDRfIRC_K8LFE6ilm4-ylbyr2C3d3moVAo
To claim this, I am signing this object:
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
testschedule: | |
build: . | |
command: "tail -f /dev/null" | |
labels: | |
- convox.cron.myjob=* * * * ? echo "Hello"; sleep 120; echo "slept" | |
- convox.cron.secondjob=[26,27,28] * * * ? echo "Hello 2" | |
- convox.cron.thirdjob=*/2 * * * ? echo "Hello 3" |
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
sqs: | |
image: lightspeedretail/fake-sqs | |
environment: | |
- LINK_SCHEME=http | |
- LINK_PASSWORD=test | |
- LINK_USERNAME=test | |
- LINK_PATH=/queue/default | |
ports: | |
- 9324 |
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 iced | |
mysqlx = require('mysqlx') | |
# Connect to server on localhost | |
await mysqlx.getSession { | |
host: 'mysql57.docker', port: '33060', | |
dbUser: 'root', dbPassword: 'root' | |
} | |
.then defer session |
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/perl | |
use vars qw/ @ARGV /; | |
local $ENV{PATH} = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"; | |
die "Usage: $0 <filesystem>\n" unless $#ARGV == 0; | |
my $filesystem = shift @ARGV; | |
my $base_snap = '@glacier'; |
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 | |
import ( | |
"database/sql" | |
"fmt" | |
"github.com/go-sql-driver/mysql" | |
"log" | |
"net/http" | |
"strings" | |
"time" |
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 | |
import "github.com/riobard/go-mmap" | |
import "fmt" | |
import "os" | |
func main() { | |
file, err := os.Open( "/gcache/galera.cache") | |
if err != nil { | |
panic( err ) |
NewerOlder