I hereby claim:
- I am kflorence on github.
- I am kflo (https://keybase.io/kflo) on keybase.
- I have a public key whose fingerprint is 79E4 56F4 4594 3E67 C69A AFB7 A371 9CEE B95E D236
To claim this, I am signing this object:
<? | |
#require("server-functions.php"); | |
#Phircd v 0.1.0 - written by siron. | |
set_time_limit(0); | |
error_reporting(0); | |
/* reads the config file and defines commands | |
$cline = file("ircd.conf") or die("cannot find ircd.conf!"); | |
$cnum_lines = count($cline); | |
$conf = 0; |
#!/usr/bin/env bash | |
set -e -o pipefail | |
FILENAME=$0 | |
FILENAME=$(basename "$FILENAME") | |
function usage { | |
echo "Invokes an AWS Lambda function and displays the logs for the invocation." | |
echo "usage: $FILENAME --function-name [--help] [--payload] [--wait] [<STDIN>]" | |
echo " --function-name the Lambda function name or ARN." |
#!/usr/bin/env bash | |
# This script generates markdown from the output of the `tree` command. | |
# See: https://linux.die.net/man/1/tree | |
# See: https://gist.github.com/kflorence/7f18ad97c65337ef77d37159260a331d | |
set -e | |
# Tree is configured with: | |
# - `-f`: use full paths in output (relative to directory given, in this case '.'). | |
# - `--noreport`: exclude the directories and files report as the last line of output. |
I hereby claim:
To claim this, I am signing this object:
drop table if exists customer; | |
create table customer( | |
id int auto_increment primary key, | |
first_name varchar(96) not null, | |
last_name varchar(96) not null, | |
address_id int not null | |
); | |
insert into customer (first_name, last_name, address_id) values ('john', 'doe', 1); | |
insert into customer (first_name, last_name, address_id) values ('jane', 'doe', 2); |
package com.solarmosaic.core.service.converter | |
import javax.inject.Inject | |
import org.springframework.beans.factory.annotation.Qualifier | |
import org.springframework.core.convert.{TypeDescriptor, ConversionService} | |
import scala.reflect._ | |
/** |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
# Nicer looking prompt with git branch in it | |
# https://github.com/mbadolato/iTerm2-Color-Schemes | |
export PS1="\[\033[36m\]\u\[\033[m\]:\[\033[33;1m\]\w\[\033[m\]\[\033[35;1m\]\$(parse_git_branch)\[\033[m\]\$ " | |
# ls colors | |
export CLICOLOR=1 |
# Serve 1Password anywhere from the Dropbox folder | |
server { | |
listen 80; | |
server_name 1password; | |
root /home/kflorence/Dropbox/1Password.agilekeychain; | |
location / { | |
index 1Password.html; | |
} | |
} |