(Full description and list of commands at - https://npmjs.org/doc/index.html)
Make sure to export your local $PATH and prepand relative ./node_modules/.bin/:
<?php | |
class Template { | |
function __construct($code, $escape = null) { | |
$this->code = $code; | |
$this->preparsed = null; | |
$this->escape = $escape; | |
} |
using System; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
namespace DnsMarshallingTest | |
{ | |
#region Data structures | |
[Flags] | |
internal enum DnsRecordType : ushort |
## | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2014 Stefan Wendler | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
#!/bin/sh | |
# Need more modern version of git than is provided by default | |
export PATH=/scratch/git-build/bin:${PATH} | |
SOURCE_BASE_DIR=/scratch | |
if [ ! -d ${SOURCE_BASE_DIR}/gitinspector ]; then | |
git clone https://code.google.com/p/gitinspector/ ${SOURCE_BASE_DIR}/gitinspector |
/* | |
<a href="posts/2" data-method="delete"> <---- We want to send an HTTP DELETE request | |
- Or, request confirmation in the process - | |
<a href="posts/2" data-method="delete" data-confirm="Are you sure?"> | |
*/ | |
(function() { |
/** | |
* Convert From/To Binary/Decimal/Hexadecimal in JavaScript | |
* https://gist.github.com/faisalman | |
* | |
* Copyright 2012-2015, Faisalman <[email protected]> | |
* Licensed under The MIT License | |
* http://www.opensource.org/licenses/mit-license | |
*/ | |
(function(){ |
(Full description and list of commands at - https://npmjs.org/doc/index.html)
Make sure to export your local $PATH and prepand relative ./node_modules/.bin/:
Set updateSession = CreateObject("Microsoft.Update.Session") | |
Set updateSearcher = updateSession.CreateupdateSearcher() | |
Set searchResult = updateSearcher.Search("IsInstalled=0 and Type='Software'") | |
Set toDL = CreateObject("Microsoft.Update.UpdateColl") | |
For I = 0 To searchResult.Updates.Count-1 | |
Set update = searchResult.Updates.Item(I) | |
For kbidindex = 0 to update.KBArticleIDs.Count-1 |
# create a new bare git repository | |
cd ~/WualaDrive/username/repos | |
mkdir project.git | |
cd project.git | |
git init --bare | |
# clone | |
cd ~/src | |
git clone ~/WualaDrive/username/repos/project.git/ | |
cd project.git |