-
It’s Time To Get Over That Stored Procedure Aversion You Have – Rob Conery
-
Your SQL Schema Is Your JSON API With PostgREST - Compose Articles
-
PostgREST – A fully RESTful API from any existing PostgreSQL database | Hacker News
-
Ask HN: What stack would you use to build a CRUD web app in 2018? | Hacker News
- Mount second hard drive as C:\Users using DISKPART?
- filesystems - Mount second drive as c:/Users in Windows 7 - Super User
- Grant Carmichael: Windows 7 - Using SSD for OS and RAID 1 for C:\Users
C:
move Users Users.bak
mkdir Users
DISKPART
DISKPART> list
- Selenium WebDriver + .NET Core 2.0- What Everyone Ought to Know - CodeProject
- (4) Selenium running on .Net Core 2.0 Preview with Visual Studio 2017 - YouTube
- build selenium tests as executable visual studio 2017 - Google Search
- Getting Started with xUnit.net (desktop) > xUnit.net
- Compile to stand alone exe for C# app in Visual Studio 2010 - Stack Overflow
- [Se
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
Prototype version 15 | |
Found device 138a:0097 | |
This device is supported | |
step 1 | |
usb write: | |
0000 01 | |
usb read: | |
0000 00 00 f0 b0 5e 54 a4 00 00 00 06 07 01 30 00 01 | |
0010 00 00 ca ba 88 98 45 7d 00 23 00 00 00 00 01 00 |
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
for i in /folder/*.wav; do mp3=`echo ${i##*/} | cut -d'.' -f1`.mp3; ffmpeg -i "$i" -ab 128k "$mp3"; done | |
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
#!/bin/bash | |
# Process twig template for WordPress config | |
if [ $# -ne 1 ]; then | |
echo 1>&2 Usage: $0 domain | |
exit 127 | |
fi | |
# Set variables | |
domain=$1 |
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
Verifying that "emanuelev.id" is my Blockstack ID. https://onename.com/emanuelev |
This file has been truncated, but you can view the full file.
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
!function(e) { | |
if ("object" == typeof exports && "undefined" != typeof module) | |
module.exports = e(); | |
else if ("function" == typeof define && define.amd) | |
define([], e); | |
else { | |
var f; | |
"undefined" != typeof window ? f = window : "undefined" != typeof global ? f = global : "undefined" != typeof self && (f = self), | |
f.io = e() | |
} |
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
a=0; for i in *.m4v; do ((a++)); if [ $a -lt 10 ] ; then date="0306120$a" ; else date="030612$a"; fi; echo "$i - $a - $date"; touch -t $date "$i"; done |
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
var guid; | |
if(!BOOMR.utils.getCookie(impl.cookieName)) { | |
BOOMR.info("Could not find a cookie for " + impl.cookieName, "GUID"); | |
guid = impl.generate(); | |
if (!BOOMR.utils.setCookie(impl.cookieName,guid, impl.expires)) { | |
BOOMR.subscribe("before_beacon", function() { | |
BOOMR.utils.setCookie(impl.cookieName,guid, impl.expires); | |
}); | |
} |