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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Put this file under ${netbeans.userdir}/config/Projects/org-netbeans-modules-maven/ --> | |
| <actions> | |
| <action> | |
| <actionName>build</actionName> | |
| <packagings> | |
| <packaging>*</packaging> | |
| </packagings> | |
| <goals> |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\LucasArts Entertainment Company LLC] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\LucasArts Entertainment Company LLC\The Phantom Menace] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\LucasArts Entertainment Company LLC\The Phantom Menace\v1.0] | |
| "Source Path"="F:\\\\" | |
| "CD Path"="F:\\\\" | |
| "Source Dir"="F:\\\\" |
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
| # 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 |
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
| 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 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 | |
| def | |
| export XKL_XMODMAP_DISABLE=1 | |
| unset SESSION_MANAGER | |
| unset DBUS_SESSION_BUS_ADDRESS | |
| gnome-panel & | |
| gnome-settings-daemon & | |
| metacity & | |
| nautilus & |
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 <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 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
| // 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 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
| # 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 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
| 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 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
| 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 | |
| } |
OlderNewer