Skip to content

Instantly share code, notes, and snippets.

@Yousha
Yousha / gist:abddf4c79afd7e11db1dd33e8cb08da5
Created June 16, 2020 08:52
Clear Windows event-logs (run in PowerShell)
wevtutil el | Foreach-Object {Write-Host "Clearing $_"; wevtutil cl "$_"}
@Yousha
Yousha / BIOS_default_passwords.txt
Created June 16, 2020 08:51
BIOS default passwords
AWARD BIOS:
01322222
589589
589721
595595
598598
aLLy
aLLY
ALLY
ALFAROME
@Yousha
Yousha / .gitattributes
Created February 13, 2019 18:24
.gitattributes for .Net developers.
* text=auto
###### Git
.gitattributes text
.gitignore text
.gitconfig text
.gitmodules text
##### Windows
*.bat text eol=crlf
@Yousha
Yousha / .gitignore
Last active May 18, 2020 09:43
.gitignore for .Net developers.
##### Windows
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
@Yousha
Yousha / gist:1fc89ff78b02647a8f787a54c81b2c5c
Last active June 16, 2020 08:37
Install common PHP tools via Composer
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
@Yousha
Yousha / gist:7bf2d1f81578c72e2978391c57ad4f0a
Created January 22, 2019 20:29
Update forked(origin) repository from upstream
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
@Yousha
Yousha / filterscript.pwn
Created August 30, 2018 06:49
Blank PAWN filterscript for SA-MP.
#include <a_samp.inc>
#define FILTERSCRIPT
// Filterscript
public OnFilterScriptInit()
{
return 1;
}
@Yousha
Yousha / gamemode.pwn
Created August 30, 2018 06:46
Blank PAWN gamemode for SA-MP.
#include <a_samp.inc>
// Gamemode
public OnGameModeInit()
{
return 1;
}
main()
@Yousha
Yousha / .gitignore
Last active March 27, 2024 22:58
.gitignore for C/C++ developers.
##### Windows
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
@Yousha
Yousha / build.xml
Last active February 15, 2020 09:30
Simple build.xml template for PhING https://phing.info/
<?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