Skip to content

Instantly share code, notes, and snippets.

View ssg's full-sized avatar
💾
restoring

Sedat Kapanoğlu ssg

💾
restoring
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ssg on github.
  • I am ssg (https://keybase.io/ssg) on keybase.
  • I have a public key whose fingerprint is A029 1A44 1FB2 44F4 ADCF 2825 E160 28ED A51F 918E

To claim this, I am signing this object:

@ssg
ssg / .gitignore
Created November 15, 2014 16:57
Minimal .gitignore for Visual Studio 2013
*.suo
*.user
bin/
obj/
_NCrunch*/
packages/
*.ncrunch*
*.nupkg
*.psess
*.vspx
@ssg
ssg / gen_ngen_pdb.ps1
Created December 7, 2014 17:23
Native symbol downloader script
# this was copied from: http://knagis.miga.lv/gen_ngen_pdb.txt
# the only thing to change - the symbol path
$symbolPath = 'c:\Other\Symbols'
# if your Windows is not installed in C:\Windows you also have to revisit the rest of the script to accomodate that
function DownloadFile([string] $url, [string] $target)
{
if ([System.IO.File]::Exists($target)) { return $true }
@ssg
ssg / smus.pas
Created August 23, 2010 23:33
Shockwave Multiuser Server Implementation
{
SMUS (Shockwave Multi User Server) types
SSG - 02 Dec 2001
}
unit smus;
interface
uses
@ssg
ssg / uvmain.pas
Created August 23, 2010 23:56
Eksi Universe UI
{ drawing code for ek$i universe - used in book poster - 2002 }
unit uvmain;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, ComCtrls;
@ssg
ssg / euler2.fs
Created January 17, 2011 20:47
my f# implementation of project euler #2
let rec calc sum prev1 prev2 evensum =
if sum > 4000000 then evensum
else
let newsum = prev1 + prev2
calc newsum prev2 newsum (if newsum % 2 = 0 then evensum + newsum else evensum)
printf "%d" (calc 0 0 1 0)
@ssg
ssg / intro.pas
Created January 24, 2011 22:16
sexy fighter cracktro
{ this is obviously missing a lot stuff (obj files) - but scrolltexts are fun to read }
uses XBuf,XProtect,XMode,crt,Dos;
const
finished:boolean=false;
game = 'SEXY FIGHTER';
software = 'FROG';
cracker = 'SSG & FatalicA';
@ssg
ssg / age.pas
Created August 25, 2011 19:54
Unfinished graphic adventure engine attempt
{
adventure game engine 1.0
file format: AGE.INI
[rooms]
<room#>, <room name>, <gfxfile>, <exits>, <flags>
<room description line 1>
.
.
@ssg
ssg / cc.pas
Created August 25, 2011 19:58
Coke Commander - Another attempt for a NC-clone
{
Coke Commander - The Kick Ass NC Clone (1996)
}
uses
QText,XStr,Views,Dialogs,App,Memory,XBuf,TVX,Drivers,Exec,Dos,XIO,Objects;
const
@ssg
ssg / fidiz.pas
Created August 25, 2011 20:03
FIDIZ - BBS listing generator from FILE_ID.DIZ contents
{
FIDIZ! The New Generation FILE_ID.DIZ extractor...
18th Feb 1997 - 19:44 - 2.00 olayi..
}
uses Objects,Dos,Crt;
type