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
| public void myMethod(final Object object, final boolean... enabled) | |
| { | |
| // ... | |
| if (enabled[0]) | |
| { | |
| // top kek | |
| } | |
| return; |
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
| git clone git@github.com:myusername/myforkedrepo.git | |
| git remote add upstream git://github.com/targetusername/targetrepo.git | |
| git fetch upstream | |
| git pull upstream master |
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"?> | |
| <!-- Conventions/Standards: | |
| * Filenames consist of no more or less than two elements: name and extension | |
| * Choose short descriptive filenames (must be less than 31 chars) | |
| * Names must not contain dots | |
| * Files containing PHP code must end with the extension .php | |
| * The name portion of the file must be named exactly like the class it contains | |
| * Buildfiles and configure rulesets must end with the extension .xml | |
| * There must be only one class per file (no procedural methods allowed, use a |
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
| composer global require phpunit/phpunit | |
| composer global require phpunit/phpunit-skeleton-generator | |
| composer global require phpunit/dbunit | |
| composer global require phpunit/php-invoker | |
| composer global require codeception/codeception | |
| composer global require nette/tester | |
| composer global require jonathantorres/construct | |
| composer global require phing/phing | |
| composer global require sebastian/phpcpd | |
| composer global require phploc/phploc |
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
| public static final void iToast(final Activity context, final String message) | |
| { | |
| context.runOnUiThread(new Runnable() | |
| { | |
| @Override | |
| public void run() | |
| { | |
| Toast.makeText(context.getApplicationContext(), message, Toast.LENGTH_LONG).show(); | |
| } | |
| }); |
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
| wevtutil el | Foreach-Object {Write-Host "Clearing $_"; wevtutil cl "$_"} |
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
| Application name-version | |
| Type | |
| [Code] | |
| Message | |
| File | |
| Line | |
| Caller | |
| Thread | |
| Thread priority | |
| Time |
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
| [Date Time] [ProcessId/ThreadId] [Application.ClassName.MethodName] Message |
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
| Application: | |
| Name | |
| Version | |
| Build number | |
| Locale | |
| Last update | |
| Architecture | |
| API | |
| Compiler/SAPI | |
| Builder |
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
| ` | |
| || | |
| | | |
| ; | |
| ' | |
| '" | |
| " | |
| "' |
OlderNewer