npm install bootstrap react-bootstrap -S
Edit index.js
and add the following imports
#! /bin/bash | |
PATCHLIB_URL='http://www.u-he.com/PatchLib/' | |
function download_patches() | |
( | |
PLUGIN=$1 | |
mkdir -p $PLUGIN | |
cd $PLUGIN |
#! /bin/sh | |
# ~/bin/ssh-wrapper | |
# Start ssh-agent if not running, add key & run ssh | |
export SSH_AUTH_SOCK=~/.ssh/ssh-agent.$HOSTNAME.sock | |
# Check if running and start agent | |
ssh-add -l 2>/dev/null >/dev/null | |
if [ $? -ge 2 ] | |
then |
#! /bin/bash | |
# | |
# Check if a Redis container running on docker is OK | |
# by sending a PING to redis instance running in container | |
if [[ $# -eq 0 ]] ; then | |
echo 'Send PING to redis instance running in docker container' | |
echo 'It should return PONG+' | |
echo 'Usage:' | |
echo ' check_redis.sh container_name' |
public static string CleanUpEmail(string emailString) | |
{ | |
emailString = emailString.ToLower(); | |
string normalized = emailString.Normalize(NormalizationForm.FormD); | |
StringBuilder resultBuilder = new StringBuilder(); | |
foreach (var character in normalized) | |
{ | |
UnicodeCategory category = CharUnicodeInfo.GetUnicodeCategory(character); |
/** | |
* Promisify & simplify XHR | |
*/ | |
var req = { | |
/** | |
* Create a new request | |
*/ | |
new: function(method, url, data) { | |
data = data || null; |
l4sh at aria in ~/tmp/mi-repo (master) | |
$ git status | |
On branch master | |
Initial commit | |
nothing to commit (create/copy files and use "git add" to track) | |
l4sh at aria in ~/tmp/mi-repo (master) | |
$ touch archivo |
<?xml version="1.0" encoding="utf-8"?> | |
<DOCUMENT> | |
<INVOICES> | |
<INVOICE invc_sid="123456789012345678" sbs_no="2" invc_type="0"> | |
<INVC_COMMENTS> | |
<INVC_COMMENT comment_no="1" comments="Test comment" /> | |
</INVC_COMMENTS> | |
</INVOICE> | |
</INVOICES> | |
</DOCUMENT> |
<?php | |
/** | |
* AES 128 CBC encription example | |
*/ | |
// Must be 64 chars long & valid hexadecimal. Store it some place safe. | |
$hex_key = "2cc4e0d365011b7d86b235c4e3dddee45ac3a76dca8536fe10d58d1d481d4b8b"; | |
$key = pack('H*', $hex_key); |
;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Customize Font Faces | |
;; http://www.emacswiki.org/emacs/CustomizingFaces | |
(custom-set-faces | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(markdown-header-face-1 ((t (:inherit markdown-header-face :height 2.2)))) | |
'(markdown-header-face-2 ((t (:inherit markdown-header-face :height 1.7)))) | |
'(markdown-header-face-3 ((t (:inherit markdown-header-face :height 1.3)))) | |
'(org-level-1 ((t (:inherit org-level-1 :height 1.5)))) |