Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
# th30z@u1310:[Desktop]$ psql -h localhost -p 55432 | |
# Password: | |
# psql (9.1.10, server 0.0.0) | |
# WARNING: psql version 9.1, server version 0.0. | |
# Some psql features might not work. | |
# Type "help" for help. | |
# | |
# th30z=> select foo; | |
# a | b | |
# ---+--- |
function str_length(str) { | |
let length = 0, nikud_chars = /[ְֱֲֳִֵֶַָֹֻּׁׂ]/; | |
for (let i=0,len=str.length;i<len;i++) | |
length += nikud_chars.test(str[i]) ? 0 : 1; | |
return length; | |
} |
cmake_minimum_required(VERSION 3.1) | |
project(nbind VERSION 1.0.0) | |
add_definitions(-DBUILDING_NODE_EXTENSION) | |
add_definitions(-DUSING_V8_SHARED) | |
add_definitions(-DUSING_UV_SHARED) | |
add_definitions(-DV8_DEPRECATION_WARNINGS) | |
include(node_modules/node-cmake/NodeJS.cmake) |
#!/bin/sh | |
# | |
# Read-only Root-FS for Raspian | |
# | |
# Modified 2016 by Stefan Bonfert to make it compatible with Raspbian | |
# Jessie (vanilla). | |
# | |
# Modified 2015 by Pascal Rosin to work on raspian-ua-netinst with | |
# overlayfs integrated in Linux Kernel >= 3.18. | |
# |
#!/usr/bin/env python | |
"""Translate text_to_translate using microsoft translator service.""" | |
import json | |
import xml.etree.ElementTree as etree | |
try: | |
from urllib import urlencode | |
from urllib2 import urlopen, Request | |
except ImportError: # Python 3 | |
from urllib.parse import urlencode | |
from urllib.request import urlopen, Request |
// (c) copyright unscriptable.com / John Hann | LegendLee | |
// License MIT | |
// For more robust promises, see https://github.com/briancavalier/when.js. | |
// last edited by LegendLee(legendlee1314@gmail.com) | |
function Promise() { | |
this._thens = []; | |
} | |
Promise.prototype = { |
<?php | |
/* | |
Adding First and Last Name to Checkout Form | |
*/ | |
//add the fields to the form | |
function my_pmpro_checkout_after_password() | |
{ | |
if(!empty($_REQUEST['firstname'])) | |
$firstname = $_REQUEST['firstname']; |
Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
var spawn = require('child_process').spawn | |
var instance = { | |
ipAddress: "0.0.0.0" | |
}; | |
var awsPreSharedKeyPath = '~/.ssh/aws-preshared-key.pem'; // make sure key has permissions 600 with chmod | |
var spawnArgs = [ '-tt', // force teletype since ssh uses a psuedo-terminal |
' public domain | |
Option Explicit | |
Private FOut% | |
Private buf() As Byte | |
Private bufp&, cur&, bit% | |
Public Sub BitWriter_Init(FO%) | |
ReDim buf(4095) | |
FOut = FO |