httrack example.com -O ./example.com -N100 −%i0 -I0 --max-rate 0 --disable-security-limits --near -v
httrack example.com -O ./example.com-3 -N100 -I0 -N "%p/%n%[month].%t" --max-rate 0 --disable-security-limits --near -v
<# | |
After Effects aerender.exe wrapper script | |
#> | |
[CmdletBinding(PositionalBinding = $false)] | |
param( | |
[String][parameter(Position=0)]$project_pparam, | |
[String]$project, | |
[String]$comp = "Main", | |
[string]$resolution = "Full", |
/* | |
Utility to create and manage a stack of CSS transforms. | |
Supports namespaced properties. | |
Example: | |
var el = document.querySelector('#id'); | |
var tx = new Tx(); | |
Basic usage: |
function getTranslate3d (el) { | |
var values = el.style.transform.split(/\w+\(|\);?/); | |
if (!values[1] || !values[1].length) { | |
return []; | |
} | |
return values[1].split(/,\s?/g); | |
} |
function getTransforms (el) { | |
var values = []; | |
var re = /\w+\(.+?\)/gi; | |
var match = []; | |
while ((match = re.exec(el.style.transform)) !== null) { | |
values.push(match[0]); | |
} | |
return values; | |
} |
function getOffset (node) { | |
var doc = node.ownerDocument; | |
var docElem = doc.documentElement; | |
var win = doc.defaultView; | |
var rect; | |
var result; | |
try { | |
rect = node.getBoundingClientRect(); | |
} catch (e) { | |
return { left: 0, top: 0 }; |
function getAbsoluteOffset (el) { | |
var _x = 0; | |
var _y = 0; | |
while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) { | |
_x += el.offsetLeft; | |
_y += el.offsetTop; | |
el = el.offsetParent; | |
} | |
return { top: _y, left: _x }; | |
} |
~/Library/Unity/Packages | |
These are copied in from Unity.app application bundle, at path: | |
/Applications/Unity/Unity.app/Contents/Resources/Packages | |
To fix by hand, until finding the source of the problem: | |
cd / |
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<!-- | |
This file lives under | |
~/Library/Application Support/Luxology/Configs/project_presets.cfg | |
--> | |
<atom type="ProjectTemplates"> |
/* | |
Fix for missing realtime clock in OS X | |
====================================== | |
author: jbenet | |
os x, compile with: gcc -o testo test.c | |
linux, compile with: gcc -o testo test.c -lrt | |
*/ | |
#include <time.h> | |
#include <sys/time.h> |