Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| config/databytes | |
| ================ | |
| 26214400 | |
| testing | |
| ======= | |
| swaks --to [email protected] --server 127.0.0.1 --from [email protected] |
| #!/bin/bash | |
| IS_INTERNAL=0 | |
| IS_WIRELESS_CONNECTED=0 | |
| IS_WIRED_CONNECTED=0 | |
| IS_BTSYNC_RUNNING=0 | |
| PID_FILE=$HOME/.btsync.pid | |
| LOG_FILE=$HOME/.btsync-check.log | |
| TEST_WIRELESS=`ifconfig wlan0 | grep -i running` |
| ' | |
| ' Usage: `cscript prefix.vbs C:\path\to\folder\root` | |
| ' | |
| Dim folderList, fileList, rootPath | |
| rootPath = WScript.Arguments.Item(0) | |
| folderList = Split(ShowFolderList(rootPath), ",") | |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| --- /usr/lib/node_modules/yo/node_modules/yeoman-generator/lib/actions/file.js 2013-01-26 18:40:49.000000000 -0500 | |
| +++ node_modules/generator-angular/node_modules/yeoman-generator/lib/actions/file.js 2013-03-29 12:09:00.289071681 -0400 | |
| @@ -29,7 +29,11 @@ | |
| file.expandFiles = function expandFiles(pattern, options) { | |
| var cwd = options.cwd || process.cwd(); | |
| return this.expand(pattern, options).filter(function (filepath) { | |
| - return fs.statSync(path.join(cwd, filepath)).isFile(); | |
| + if (file.isPathAbsolute(filepath)) { | |
| + return fs.statSync(filepath).isFile(); | |
| + } else { |
| // `server` is the Hapi instance; | |
| // boilerplate omitted for brevity sake | |
| // prereq handler | |
| function getSecret(request, next) { | |
| return next(42); | |
| } | |
| // auth not required here, so we | |
| // don't decorate it with any tags |
| <ToolBar> | |
| <ToolBar.Resources> | |
| <Style TargetType="{x:Type ToolBarPanel}"> | |
| <Setter Property="Orientation" Value="Vertical"/> | |
| </Style> | |
| </ToolBar.Resources> | |
| <!-- This is the downside of this solution: | |
| You have to set the height at some level (once) | |
| or you will end up with controls forcing |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| using System.Windows.Forms; | |
| namespace CpuWhiner | |
| { | |
| class Program |
| /// <summary> | |
| /// Retrieves all objects from the given DN and returns their given properties | |
| /// | |
| /// If we are told to search recursively then if we find any OU's we iterate through those | |
| /// as well | |
| /// </summary> | |
| /// <param name="DN"></param> | |
| /// <param name="properties"></param> | |
| /// <param name="useRecursion"></param> | |
| /// <returns></returns> |
| /// <summary> | |
| /// Returns a list of users on a target machine or machines which could | |
| /// include an additional domain to search in. | |
| /// </summary> | |
| /// <param name="connection"></param> | |
| /// <param name="domain"></param> | |
| /// <param name="hosts"></param> | |
| /// <returns></returns> | |
| public List<string> GetLocalUsers(ConnectionOptions connection, string domain, ConcurrentBag<string> hosts) | |
| { |