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
@echo off | |
:: Path to Sublime Text installation dir. | |
SET stPath=%~dp0sublime_text.exe | |
SET stPathOnly=%~dp0 | |
:: Key name for the registry entries. | |
SET UserEntry=Sublime Text | |
SET AdminEntry=Sublime Text As Admin | |
:: Context menu texts. | |
SET "UserMenuText=Open with Sublime(&-)" | |
SET "AdminMenuText=Open with Sublime As Admin(&+)" |
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
@echo off | |
call :check_Permissions | |
pushd %temp% | |
@echo.=================================================================== | |
@echo.install python-2.7.6.amd64 | |
call :download "http://www.python.org/ftp/python/2.7.6/python-2.7.6.amd64.msi" "python-2.7.6.amd64.msi" | |
python-2.7.6.amd64.msi /passive | |
call :download "http://www.rapidee.com/download/RapidEE_setup.exe" "RapidEE_setup.exe" | |
RapidEE_setup.exe /SILENT |
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
javascript: (function () { | |
function loadScript(b, c) { | |
var a = document.createElement("script"); | |
a.type = "text/javascript"; | |
if (a.readyState) { | |
a.onreadystatechange = function () { | |
if (a.readyState == "loaded" || a.readyState == "complete") | |
{a.onreadystatechange = null; c() } } | |
} else {a.onload = function () {c() } } a.src = b; | |
document.getElementsByTagName("head")[0].appendChild(a) |
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
javascript: (function () { | |
function loadScript(b, c) { | |
var a = document.createElement("script"); | |
a.type = "text/javascript"; | |
if (a.readyState) { | |
a.onreadystatechange = function () { | |
if (a.readyState == "loaded" || a.readyState == "complete") | |
{a.onreadystatechange = null; c() } } | |
} else {a.onload = function () {c() } } a.src = b; | |
document.getElementsByTagName("head")[0].appendChild(a) |
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
Sub SendMessage() | |
Dim objOutlook As Outlook.Application | |
Dim objOutlookMsg As Outlook.MailItem | |
Dim objOutlookRecip As Outlook.Recipient | |
Dim objOutlookAttach As Outlook.Attachment | |
' Create the Outlook session. | |
Set objOutlook = CreateObject("Outlook.Application") | |
' Create the message. |
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
# Authors: Alvin Ye | |
# Run by: curl -sL https://gist.github.com/1471830.txt | sudo bash | |
sudo apt-get install pptpd | |
sed -i 's/^logwtmp/#logwtmp/g' /etc/pptpd.conf | |
sed -i 's/^net.ipv4.ip_forward = 0/net.ipv4.ip_forward = 1/g' /etc/sysctl.conf | |
sysctl -p | |
echo "localip 192.168.240.1" >> /etc/pptpd.conf |
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
#define MAX(a,b) \ | |
({ __typeof__ (a) _a = (a); \ | |
__typeof__ (b) _b = (b); \ | |
_a > _b ? _a : _b; }) | |
#include <stdio.h> | |
#include <string.h> | |
#define XSIZE 20 | |
#define ASIZE 256 |
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@bbs[ /home/BBSBACKUP ] > rdiff-backup --calculate-average rdiff-backup-data /session_statistics.2012-* | |
--------------[ Average of 5 stat files ]-------------- | |
ElapsedTime 686.29 (11 minutes 26.29 seconds) | |
SourceFiles 470907.8 | |
SourceFileSize 3107723617.8 (2.89 GB) | |
MirrorFiles 448015.6 | |
MirrorFileSize 2984598578.2 (2.78 GB) | |
NewFiles 23082.8 | |
NewFileSize 125044623.6 (119 MB) | |
DeletedFiles 190.6 |
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
static final String TAG = "XXX_TAG" | |
am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); | |
RunningTaskInfo topTask = am.getRunningTasks(1).get(0); | |
String pkg = topTask.baseActivity.getPackageName(); | |
int pid = findForgroundPID(pkg); | |
private int findForgroundPID(String topPackage) { | |
int pid = -1; | |
List<RunningAppProcessInfo> procList = am.getRunningAppProcesses(); | |
for (RunningAppProcessInfo proc : procList) { |
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
all: hello | |
hello: hello.h | |
g++ -o hello hello.cpp | |
clean: | |
rm *.o hello |