This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************# | |
# @@ScriptName: timeDilationMonitor.sqf | |
# @@Author: Nick 'Bewilderbeest' Ludlam <[email protected]> | |
# @@Create Date: 2013-08-29 21:49:20 | |
# @@Modify Date: 2013-08-29 23:16:00 | |
# @@Function: Measures the server lag and presents an API to | |
# attempt to compensate for late timekeeping | |
#*********************************************************/ | |
#define MEASURED_SLEEP_DURATION 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am nickludlam on github. | |
* I am nickludlam (https://keybase.io/nickludlam) on keybase. | |
* I have a public key whose fingerprint is ED5A 9CCC 0A52 8719 C186 299B 2061 AB6D 6497 9884 | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1>------ Build started: Project: vrtest_api, Configuration: Debug Win32 ------ | |
2>------ Build started: Project: vrserver, Configuration: Debug Win32 ------ | |
3>------ Build started: Project: vrclient, Configuration: Debug Win32 ------ | |
4>------ Build started: Project: nointerfacedll (Test), Configuration: Debug Win32 ------ | |
3> Running Protocol Buffer Compiler on vr_messages.proto... | |
1> Running VPC CRC Check - vrtest_api.vpc | |
2> Running Protocol Buffer Compiler on vr_messages.proto... | |
4> Running VPC CRC Check - nointerfacedll.vpc | |
4> Access is denied. | |
4> nointerfacedll.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Micro Python build ca045d9 on 2014-04-21; PYBv1.0 with STM32F405RG | |
Type "help()" for more information. | |
>>> | |
>>> help() | |
Welcome to Micro Python! | |
For online help please visit http://micropython.org/help/. | |
Quick overview of commands for the board: | |
pyb.info() -- print some general information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LittleCounter - A simple demonstration of how you use the BERG Cloud Linux | |
# client libraries to fetch and send data to BERG Cloud. For | |
# more info see http://bergcloud.com/ | |
# | |
# This example code is in the public domain. | |
# | |
# https://github.com/bergcloud/devshield-raspberrypi | |
from bergcloud import * | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Grab the latest Overwolf from their website. | |
2. Open AppData\Local\Overwolf\GamesList.7804102.xml | |
3. Paste this at the bottom, *above* the </ArrayOfGameInfo> tag: | |
<GameInfo> | |
<ID>105222</ID> | |
<GameTitle>Elite Dangerous</GameTitle> | |
<LuancherNames> | |
<string>EliteDangerous.exe</string> | |
</LuancherNames> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 0.000000] Linux version 3.10.44 (noel@na) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 r41508) ) #20 Wed Aug 13 21:00:28 UTC 2014 | |
[ 0.000000] Board has DDR2 | |
[ 0.000000] Analog PMU set to hw control | |
[ 0.000000] Digital PMU set to hw control | |
[ 0.000000] SoC Type: Ralink MT7620N ver:2 eco:6 | |
[ 0.000000] bootconsole [early0] enabled | |
[ 0.000000] CPU revision is: 00019650 (MIPS 24KEc) | |
[ 0.000000] MIPS: machine is WRTNODE | |
[ 0.000000] Determined physical RAM map: | |
[ 0.000000] memory: 04000000 @ 00000000 (usable) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@OpenWrt:~# opkg list | |
alsa-lib - 1.0.27.2-1 | |
alsa-utils - 1.0.27.2-1 | |
base-files - 155-r41508 | |
block-mount - 2014-06-22-e0430f5c62f367e5a8e02755412977b02c3fc45e | |
busybox - 1.22.1-2 | |
bzip2 - 1.0.6-1 | |
curl - 7.36.0-1 | |
dnsmasq - 2.71-3 | |
dropbear - 2014.63-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express') | |
, mongoskin = require('mongoskin') | |
, bodyParser = require('body-parser') | |
var path = require('path'); | |
var app = express() | |
app.set('views', path.join(__dirname, 'views')); | |
app.use(express.static(path.join(__dirname, 'public'))); | |
app.use(bodyParser()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
<h2>Multi level dropdown menu in Bootstrap 3</h2> | |
<hr /> | |
<div class="dropdown dropdown-select"> | |
<a id="dropdown-content" role="button" data-toggle="dropdown" class="btn btn-primary dropdown-text" data-target="#"> | |
Dropdown <span class="caret"></span> | |
</a> | |
<input type="hidden" name='ddname' /> | |
<ul class="dropdown-menu multi-level" role="menu" aria-labelledby="dropdownMenu"> |