This GiST is for working through coreboot motherboard porting guide
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
svilain=# create table f (foo int); | |
CREATE TABLE | |
svilain=# create or replace function bar(f) returns int language sql as $$ select $1.foo + 10 $$; | |
CREATE FUNCTION | |
svilain=# insert into f values (1), (2); | |
INSERT 0 2 | |
svilain=# select f.foo, f.bar from f; | |
foo | bar | |
-----+----- | |
1 | 11 |
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
----------------------------------------------------------------------- | |
This tracking update has been requested by: | |
Name: Anonymous | |
E-mail: [email protected] | |
Tracking number 5244371XXXXXXXX | |
Ship date Jan 29, 2013 | |
Destination SAN FRANCISCO, CA | |
Estimated delivery 2013-01-31T00:00:00 | |
Signed for by |
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
Usage: gyp_main.py [options ...] [build_file ...] | |
gyp_main.py: error: no such option: --no-parallel | |
gyp ERR! configure error | |
gyp ERR! stack Error: `gyp` failed with exit code: 2 | |
gyp ERR! stack at ChildProcess.onCpExit (/home/samv/oss/atom/build/node_modules/npm/node_modules/node-gyp/lib/configure.js:340:16) | |
gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:98:17) | |
gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:797:12) | |
gyp ERR! System Linux 3.11.0-20-generic | |
gyp ERR! command "node" "/home/samv/oss/atom/build/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" |
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
Dear Patients, | |
October 5, 2014 | |
After nearly a decade of practice in the office I set up from scratch, | |
I have made the difficult decision to close my doors. This letter | |
will set forth the steps I have taken to ensure your continuity of | |
care, as well as steps for you to take. Additionally, because I care | |
deeply about you as patients, I will also share with you a high-level | |
overview of the series of events that led us to this point. It is my |
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
#!/bin/sh | |
# this script knows how to look in /tmp/ssh-* for SSH agent sockets. | |
# These are created by the SSH agent, or for hosts you connected to | |
# with 'ssh -A' (or you set 'ForwardAgent yes' in your .ssh/config). | |
# the upshot is that if *any* of your current ssh connections have an | |
# agent connection, then you can run this script and it will set your | |
# environment variables up in the shell you are currently working in. |
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
JsonRecord(unknown_json_keys={'foo': 'bar'}) | |
JsonRecord() |
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
#!/bin/bash | |
remote=$1 | |
ssh_target=$(git config remote.$remote.url) | |
echo "remote $remote, ssh is $ssh_target" | |
cdup="$(git rev-parse --show-cdup)" | |
if [ -n "$cdup" ] | |
then |
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
#!/bin/bash | |
# | |
# call with '-i' to initialize the repo | |
self=$(basename "$0") | |
TEMP="$(getopt n:w:i "$@")" | |
eval set -- $TEMP | |
REFS="refs/pr/*" | |
WIDTH=10 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ><SOAP-ENV:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" | |
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> | |
<wsse:UsernameToken> | |
<wsse:Username>admin</wsse:Username> | |
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">DG671R1pCZQXyMiFl04yxSY3dHg=</wsse:Password> | |
<wsse:Nonce>YSB2YWx1ZSBvZiA1MzY=</wsse:Nonce> | |
<wsu:Created>2016-05-24T05:29:58Z</wsu:Created> | |
</wsse:UsernameToken> | |
</wsse:Security> |