Nicolas Grekas - nicolas.grekas, gmail.com
17 June 2011 - Last updated on 3 sept. 2011
Not updated any more on this gist. See:
@ECHO OFF | |
IF "%1" == "" GOTO ERROR | |
ECHO. | |
ECHO Checking dir %1 recursively for drivers. | |
ECHO. | |
FOR /F "tokens=*" %%D IN ('DIR /B /AD /S %1') DO PNPUTIL -a "%%D\*.inf" 2>&1 >> %WinDir%\system32\driverimport.log |
Nicolas Grekas - nicolas.grekas, gmail.com
17 June 2011 - Last updated on 3 sept. 2011
Not updated any more on this gist. See:
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
// ==UserScript== | |
// @name Use Markdown, sometimes, in your HTML. | |
// @author Paul Irish <http://paulirish.com/> | |
// @link http://git.io/data-markdown | |
// @match * | |
// ==/UserScript== | |
// If you're not using this as a userscript just delete from this line up. It's cool, homey. |
// Usage: | |
// function asyncAdd(a, b, cb){ cb(a + b ) } | |
// | |
// var syncAdd = sync(asyncAdd) | |
// , sum = syncAdd(2, 2) | |
// | |
// assert(sum == 4) | |
// | |
// NOTE: | |
// this only works for functions that execute their callback before returning. |
=== modified file doap/schema/doap.rdf | |
--- doap/schema/doap.rdf 2009-06-25 16:32:08 +0000 | |
+++ doap/schema/doap.rdf 2010-07-30 14:41:53 +0000 | |
@@ -390,6 +390,19 @@ | |
<rdfs:domain rdf:resource="http://usefulinc.com/ns/doap#Project" /> | |
</rdf:Property> | |
+<rdf:Property rdf:about="http://usefulinc.com/ns/doap#dependency"> | |
+ <rdfs:isDefinedBy rdf:resource="http://usefulinc.com/ns/doap#" /> | |
+ <rdfs:label xml:lang="en">dependency</rdfs:label> |
#!/bin/bash | |
# | |
# Template script for generating ubuntu container for LXC with the same | |
# ubuntu relase as the host | |
# | |
# This script is based on lxc-debian for EC2 (Daniil Kulchenko <[email protected]>) | |
# wich itself is based on lxc-debian (Daniel Lezcano <[email protected]>) | |
# |