Skip to content

Instantly share code, notes, and snippets.

View drvy's full-sized avatar
🐙
' or 1=1

Dragomir Yordanov drvy

🐙
' or 1=1
View GitHub Profile
@drvy
drvy / whoami.cfg
Last active January 4, 2020 00:05
Counter-Strike Global Offensive Config (whoami_ aka Anxiety)
// whoami_ aka Anxiety's config [Updated at: 03/01/2020].
// Useful "addons or mods":
// "Text Color Mod": https://bananagaming.tv/textcolormod.php
// "Simple Radar": http://simpleradar.com/
//
// [Install] -> Put this file in CS:GO/csgo/cfg/whoami.cfg
echo "Loading config..."
// 01. General Settings
@drvy
drvy / drvy_pub
Created March 8, 2017 04:13
Drvy's public key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDC/bTsx2iZbcrxq+QTU8YgmgLl3+4dadLS0yz8IiDFlhHV6Th4Gq9JM+vQ/i+42IL8ITb60968sV92W7wrQrmYazFdzDTFbH95mjQk6ERtVCjI/NxdVbtoeQxnlhQksvBjIgBKQ2HleYb0MTIJDk69JGilWWGEKb5klfySkYbHcoU+mI7SwXdaYMT6GJ3XWDgC/oN/uZUeO6wBVcVQL7jYOA7BUAKfrnZE5XyGqDQ2pkXp0POjolQ36JH7t4m1Rrp/ZzT7Qqf6lpa63GO78MMfhZhAMzMnNSRDSMwiuQl+TKEQD43SNV81U8Fb6kh4gHCf/EnwcT3JYeC/UGBCB0Rv drvy
@drvy
drvy / keybase.md
Created April 24, 2015 07:54
keybase.md

Keybase proof

I hereby claim:

  • I am drvy on github.
  • I am drvy (https://keybase.io/drvy) on keybase.
  • I have a public key whose fingerprint is C1AB E5D0 1BA3 68A0 63F7 13B9 5331 243B 31B7 081F

To claim this, I am signing this object:

@drvy
drvy / wordpress2disqus.php
Last active August 29, 2015 14:02
This script will replace all the emails in a wordpress .xml export file with an in-existing email in order to preserve the users privacy while being able to change the comment system of your wordpress or export the comments to somewhere else.
<?php
/* Config */
$xmlfile = 'wordpress-export-file.xml';
$ignore = array('your@email.com');
$replacement = 'somethingelse{num}@dev.null'; // {num} will be replaced with an automatic count..
$outputfile = 'output.xml';
$file = fopen($xmlfile,'r');
$content = fread($file,filesize($xmlfile));