This file contains hidden or 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
Strength 2.40 (0.00) | |
Agility 2.39 (0.03) | |
Intellect 0.61 (0.05) | |
Spirit 0.38 (0.03) | |
Mana Per 5 Sec 0.79 (0.06) | |
Attack Power 1.00 (0.00) | |
Melee Hit 26.59 (0.32) | |
Melee Crit 28.68 (0.15) | |
Attack Speed 16.50 (0.37) | |
Expertise 26.59 (0.32) |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
This file contains hidden or 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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
$F2:: | |
{ | |
;multiplayer | |
MouseClick, left, 243, 213 | |
Sleep, 500 | |
;set region, east |
This file contains hidden or 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
// profiling results: http://imgur.com/a/lIFSY | |
// compiled on osx like so: | |
// gcc -o drtest_no_optimization drtest.c -pg | |
// gcc -o drtest_with_ofast drtest.c -pg -Ofast | |
// gcc -o drtest_with_otwo drtest.c -pg -O2 | |
#include <stdlib.h> | |
#include <time.h> | |
#include <math.h> |
This file contains hidden or 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
#!/bin/sh | |
# Update latest epel | |
sudo yum -y instlal epel-release | |
# perl-IO-Socket-IP isn't in the repos | |
wget http://rpm.mag-sol.com/Centos/6/x86_64/perl-IO-Socket-IP-0.31-1.el6.noarch.rpm | |
sudo rpm -Uvh perl-IO-Socket-IP-0.31-1.el6.noarch.rpm | |
rm perl-IO-Socket-IP-0.31-1.el6.noarch.rpm |
This file contains hidden or 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
Transport Canada issued a Civil Aviation Safety Alert to remind all persons operating unmanned aircraft (model aircraft and unmanned air vehicles or UAVs), for any purpose, about the safety impacts and consequences of interfering with manned aircraft operations, including firefighting aircraft. | |
This summer, a number of incidents occurred in British Columbia where manned aircraft fighting forest fires were grounded due to interference from unmanned aircraft. The Canadian Aviation Regulations state that no unauthorized person shall operate an aircraft within 5 nautical miles (9 km) of a forest fire or within any associated restricted airspace. | |
The Civil Aviation Safety Alert is also a reminder of the consequences of contravening regulations pertaining to the use of unmanned aircraft. | |
Please distribute the Alert or this message where appropriate. | |
Thank you, |
This file contains hidden or 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
// Install the Greasemonkey extension for Firefox or the Tampermonkey extension for Chrome | |
// then click the Raw button ---> | |
// ==UserScript== | |
// @name hide freep login | |
// @namespace xorrbit | |
// @include http://*.winnipegfreepress.com/* | |
// @version v5 | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
file=`mktemp` | |
echo "Average power of channel $1:" | |
for i in {1..10}; | |
do kalibrate-hackrf/src/kal -s GSM850 -c $1 2>&1 | sed -n 's/.*power: \([0-9.]*\)/\1/p' >> $file; | |
done | |
awk '{ total += $1; count++ } END { print total/count }' $file | |
rm $file |
This file contains hidden or 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
for FILE in `ls *AVI | sort` ; do | |
avidemux --nogui --output-format MP4 --video-codec x264 --audio-codec aac --load "$FILE" --save ${FILE%.*}.mp4 --quit | |
done |
This file contains hidden or 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
wget --no-check-certificate --post-data="---- BEGIN PRIVATE KEY ----\r\ntrololololololololol\r\n---- END PRIVATE KEY ----" https://www.cloudflarechallenge.com |
NewerOlder