Skip to content

Instantly share code, notes, and snippets.

Jun 3 2015 20:06:00 | Cannot open banned log file banned.txt
Jun 3 2015 20:06:00 | [room.bof (1114)] LoadRoomData couldn't open kochoh.roo!!!
Jun 3 2015 20:06:00 | [room.bof (1115)] C_RoomSize can't operate on non-room 0,0
Jun 3 2015 20:06:00 | [room.bof (1116)] C_First object 57 can't take First of a non-list 0,0
Jun 3 2015 20:06:00 | [room.bof (1117)] C_Nth object 57 can't take Nth of a non-list 0,0
Jun 3 2015 20:06:00 | [room.bof (1118)] C_Nth object 57 can't take Nth of a non-list 0,0
Jun 3 2015 20:06:00 | [room.bof (1119)] C_Nth object 57 can't take Nth of a non-list 0,0
Jun 3 2015 20:06:00 | [room.bof (1121)] C_Nth object 57 can't take Nth of a non-list 0,0
Jun 3 2015 20:06:00 | [room.bof (1114)] LoadRoomData couldn't open marheal.roo!!!
Jun 3 2015 20:06:00 | [room.bof (1115)] C_RoomSize can't operate on non-room 0,0
@Daenks
Daenks / gist:14fefd7df81a07309e07
Last active March 31, 2016 01:45
Check haveibeenpwned.com's breach repository for an exchange 2007+ environment (requires PoweShell 3+ and Exchange Module Loaded)
Get-Mailbox -ResultSize Unlimited | ForEach-Object { }
$Mailboxes = Get-Mailbox -ResultSize Unlimited
$Results = @()
foreach ($mailbox in $Mailboxes)
{
$s = $mailbox.PrimarySmtpAddress.ToString() -replace "@","%40"
$r = $null
$r = Invoke-WebRequest -URI "https://haveibeenpwned.com/api/v2/breachedaccount/$($s)" -Method GET -UserAgent "PsBreachFinder" -ErrorAction SilentlyContinue
if ($r -ne $null)
{
"title": "SexiBoard:quiescing",
"services": {
"query": {
"list": {
"0": {
"query": "\"Quiesced snapshots are not supported\"",
"alias": "",
"color": "#7EB26D",
"id": 0,
{
"title": "SexiBoard:vMotionRate",
"services": {
"query": {
"list": {
"0": {
"query": "vmotion AND pre-copy AND mbps:>800",
"alias": "vmotion rate > 800MBps",
"color": "#7EB26D",
"id": 0,
{
"title": "SexiBoard:Kommandantur",
"services": {
"query": {
"list": {
"0": {
"id": 0,
"type": "topN",
"query": "esx.problem.*",
"alias": "",
{
"title": "SexiBoard:Snapshots",
"services": {
"query": {
"list": {
"0": {
"query": "\"Create snapshot request\"",
"alias": "",
"color": "#1F78C1",
"id": 0,
@Daenks
Daenks / _.md
Last active August 29, 2015 14:17 — forked from klange/_.md

Since this is on Hacker News and reddit...

  • No, I don't distribute my résumé like this. A friend of mine made a joke about me being the kind of person who would do this, so I did (the link on that page was added later). My actual résumé is written in BSD mandoc.
  • I apologize for the use of _t in my types. I spend a lot of time at a level where I can do that; "reserved for system libraries? I am the system libraries".
  • Since people kept complaining, I've fixed the assignments of string literals to non-const char *s.
  • My use of type * name, however, is entirely intentional.
  • If you're using an older compiler, you might have trouble with the anonymous unions and the designated initializers - I think gcc 4.4 requires some extra braces to get them working together. Anything reasonably recent should work fine. Clang and gcc (newer than 4.4, at
@Daenks
Daenks / gist:bcc43719a7cbde5055f4
Created March 13, 2015 19:27
OCZ Revodrive 3 X2
-----------------------------------------------------------------------
CrystalDiskMark 3.0.3 x64 (C) 2007-2013 hiyohiyo
Crystal Dew World : http://crystalmark.info/
-----------------------------------------------------------------------
* MB/s = 1,000,000 byte/s [SATA/300 = 300,000,000 byte/s]
Sequential Read : 379.095 MB/s
Sequential Write : 211.534 MB/s
Random Read 512KB : 324.749 MB/s
Random Write 512KB : 207.760 MB/s
@Daenks
Daenks / gist:eb6c84ee6b300292f401
Last active December 3, 2015 18:23
Build Script for Meridian59.NET
#Build Server Script for Meridian59 .NET client written by Daenks
#Specifications provided by ShaKrune: https://gist.github.com/cyberjunk/843df6483dbe17bf6b04
Param(
#Source Repository Paths
[string]$RootPath="C:\Meridian59-DotNet",
[string]$EnginePath="\Engine\src\",
[string]$EngineSolution="Engine.sln",
[string]$ClientPath="\",
[string]$ClientSolution="Meridian59.sln",
[string]$OgreClientPath="\Meridian59.Ogre.Client\bin\", #
@Daenks
Daenks / gist:81e585b4faa8e95ba4d0
Created January 12, 2015 22:04
.NET Client Build Steps
CHECKOUT:
cd $builddir
svn checkout http://meridian59-dotnet.googlecode.com/svn/trunk/
BUILD ENGINE x86:
cd $builddir\trunk\engine\src\
msbuild engine-190.sln /p:Configuration=Release;Platform=win32
BUILD ENGINE x64:
cd $builddir\trunk\engine\src\