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
using ICSharpCode.SharpZipLib.Zip.Compression.Streams; | |
using Microsoft.Win32; | |
using System.Security.Cryptography; | |
using System.Text; | |
class Program | |
{ | |
static void Main() | |
{ | |
var regBytes = (byte[])Registry.GetValue(@"HKEY_CURRENT_USER\Software\Project64", "user", null)!; |
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
[PHP] | |
extension_dir = "ext" | |
zend_extension=php_xdebug-2.5.5-7.1-vc14-x86_64.dll | |
;XDebug | |
xdebug.remote_enable=on | |
xdebug.remote_handler=dbgp | |
xdebug.remote_port=9000 | |
xdebug.idekey=netbeans-xdebug |
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
Param ( | |
[String] | |
$Path = (ls $env:USERPROFILE\AppData\Local\Jammit | ? { $_.Attributes -eq 'Directory' })[0].FullName | |
) | |
foreach ($dir in (ls $Path)) | |
{ | |
if (! (Test-Path $Path\$dir\info.plist)) { | |
continue | |
} |
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
zend_extension=xdebug.so | |
xdebug.show_error_trace=1 | |
xdebug.remote_enable=1 | |
xdebug.remote_handler=dbgp | |
xdebug.remote_mode=req | |
xdebug.remote_host=127.0.0.1 | |
xdebug.remote_port=9000 # For OS X, use 9001 | |
xdebug.idekey=netbeans-xdebug | |
xdebug.remote_log="/tmp/xdebug.log" |
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
# Taken from https://technet.microsoft.com/en-us/library/hh825258.aspx | |
Param | |
( | |
$ImageName | |
) | |
dism /Export-Image ` | |
/SourceImageFile:${ImageName}.swm ` | |
/SWMFile:${ImageName}*.swm ` | |
/SourceIndex: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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.insertSpaces": false, | |
"editor.renderWhitespace": "all", | |
"files.encoding": "utf8", | |
"files.eol": "\n" | |
} |
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
#include <stdint.h> | |
#include <Windows.h> | |
#define EXPORT __declspec(dllexport) | |
#define CALL __cdecl | |
typedef struct { | |
uint16_t Version; | |
uint16_t Type; | |
char Name[100]; |
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
#!/bin/sh | |
def | |
export XKL_XMODMAP_DISABLE=1 | |
unset SESSION_MANAGER | |
unset DBUS_SESSION_BUS_ADDRESS | |
gnome-panel & | |
gnome-settings-daemon & | |
metacity & | |
nautilus & |
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
cluster.config=python | |
permit.jdk8.builds=true | |
build.compiler=extJavac | |
java.compilerargs=-J-Xmx2G | |
netbeans.full.hack=true | |
nbjdk.home=/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home | |
#nbjdk.home=C:\\Program Files\\Java\\jdk8 | |
#test.user.dir=C:\\Path\\To\\testuserdir.win |
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
# PLEASE SEE FEEDBACK. This script is not up to date and may not use the best practices. | |
[diff] | |
tool = vsdiffmerge | |
[difftool] | |
prompt = false | |
[difftool "vsdiffmerge"] | |
cmd = '"C:/Program Files (x86)/Microsoft Visual Studio 14.0/Common7/IDE/vsdiffmerge.exe"' "$LOCAL" "$REMOTE" //t | |
keepbackup = false | |
trustexitcode = true |
NewerOlder