Site hosted by Angelfire.com: Build your free website today!
crash
9 Apr, 12 > 15 Apr, 12
19 Mar, 12 > 25 Mar, 12
12 Mar, 12 > 18 Mar, 12
12 Dec, 11 > 18 Dec, 11
7 Feb, 11 > 13 Feb, 11
30 Nov, 09 > 6 Dec, 09
15 Jun, 09 > 21 Jun, 09
27 Apr, 09 > 3 May, 09
20 Apr, 09 > 26 Apr, 09
2 Feb, 09 > 8 Feb, 09
26 Jan, 09 > 1 Feb, 09
22 Dec, 08 > 28 Dec, 08
Entries by Topic
All topics  «
bleach trance private practice
CD images
disney lesbian star wars
Experimental christian
finnish gay leopard
free design god
home made Blowjob rpg
Open Source porn
PSX PS1 PS
Ravishankar fish Mystery
shemale country liebe
speed fuck
trash
xxx nude gta 4 guitar
Blog Tools
Edit your Blog
Build a Blog
RSS Feed
View Profile
Sugar and Spice
SomaFM
Snakes and Snails
redump.org
upyachka.ru
Lampas un Zvaigznes
IMDB
Anime-Planet
You are not logged in. Log in
13/06/2009
FILE0010.CHK
Now Playing: lush @SomaFM
Topic: home made Blowjob rpg

her's modded nullDC's GD-ROM plugin 'GDR_Win32.dll' (based on Aug 20 2008)
it redefines .gdi syntax parsing for file names
with it file names with whitespaces within them can be used enclosed in quotation marks
e.g.

19
01 0 0 0 "none" 0
02 0 0 0 "none" 0
03 45000 4 2352 "Track 03.bin" 0
04 355602 0 2352 "Track 04.bin" 0
05 363680 0 2352 "Track 05.bin" 0
06 377124 0 2352 "Track 06.bin" 0
07 379975 0 2352 "Track 07.bin" 0
08 386064 0 2352 "Track 08.bin" 0
09 393416 0 2352 "Track 09.bin" 0
10 395488 0 2352 "Track 10.bin" 0
11 399325 0 2352 "Track 11.bin" 0
12 408596 0 2352 "Track 12.bin" 0
13 433134 0 2352 "Track 13.bin" 0
14 458158 0 2352 "Track 14.bin" 0
15 465757 0 2352 "Track 15.bin" 0
16 493667 0 2352 "Track 16.bin" 0
17 503104 0 2352 "Track 17.bin" 0
18 505295 0 2352 "Track 18.bin" 0
19 505819 4 2352 "Track 19.bin" 0

place it in 'plugins' sub-directory and it should show up on plugin selection list
to use .gdis without quotation marks switch back to unmoded plugin


http://www.mediafire.com/?ym2acwgr3dn 


Posted by themabus at 08:38 EEST
Updated: 13/06/2009 09:09 EEST
Post Comment | Permalink | Share This Post
25/04/2009
FILE0009.CHK
Topic: Open Source porn

Posted by themabus at 17:31 EEST
Updated: 25/04/2009 17:33 EEST
Post Comment | Permalink | Share This Post
FILE0008.CHK
Topic: free design god

Posted by themabus at 16:20 EEST
Updated: 11/05/2009 21:08 EEST
Post Comment | Permalink | Share This Post
19/04/2009
FILE0007.CHK
Topic: shemale country liebe

Posted by themabus at 18:41 EEST
Updated: 19/04/2009 19:57 EEST
Post Comment | Permalink | Share This Post
18/04/2009
FILE0006.CHK
Topic: Ravishankar fish Mystery

Posted by themabus at 20:13 EEST
Updated: 18/04/2009 20:27 EEST
Post Comment | Permalink | Share This Post
03/02/2009
FILE0005.CHK
Mood:  rushed
Now Playing: http://somafm.com/play/groovesalad
Topic: speed fuck

http://www.mediafire.com/?hngth40zzy5 

###################################################################
#                                                                 #
# Parameterized CRC algorithm implementation for (G)AWK           #
# 20090202 themabus[at]inbox[dot]lv                               #
#                                                                 #
# please verify thoroughly before actual use                      #
#                                                                 #
###################################################################

function _ord_init(    low, high, i, t)
#this and following two functions are taken from GAWK manual
{
    low = sprintf("%c", 7) # BEL is ascii 7
    if (low == "\a") {    # regular ascii
        low = 0
        high = 127
    } else if (sprintf("%c", 128 + 7) == "\a") {
        # ascii, mark parity
        low = 128
        high = 255
    } else {        # ebcdic(!)
        low = 0
        high = 255
    }

    for (i = low; i <= high; i++) {
        t = sprintf("%c", i)
        _ord_[t] = i
    }
}

function ord(str,    c)
{
    # only first character is of interest
    c = substr(str, 1, 1)
    return _ord_[c]
}
     
function chr(c)
{
    # force c to be numeric by adding 0
    return sprintf("%c", c + 0)
}

###################################################################

function filltable(poly, width, refin, bitmask, table,    cnt1, cnt2, tmp1, mask)
{
  bitmask = 0
  for (cnt1 = 0; cnt1 < width; cnt1++) {
    bitmask = xor(bitmask, lshift(1, cnt1))
  }
  if (refin == 0) {
    mask = lshift(1, width-1)

    for (cnt1 = 0; cnt1 < 256; cnt1++) {
      tmp1 = lshift(cnt1, width-8)
      for (cnt2 = 0; cnt2 < 8; cnt2++) {
        and(tmp1, mask)==mask ? tmp1 = xor(lshift(tmp1, 1), poly) : tmp1 = lshift(tmp1, 1)
      }
      table[cnt1] = and(tmp1, bitmask)
#      printf( "%08x\n", table[cnt1])
    }
  } else {
    mask = 1
    poly = reflect(poly, width, bitmask)

    for (cnt1 = 0; cnt1 < 256; cnt1++) {
      tmp1 = cnt1
      for (cnt2 = 0; cnt2 < 8; cnt2++) {
        and(tmp1, mask)==mask ? tmp1 = xor(rshift(tmp1, 1), poly) : tmp1 = rshift(tmp1, 1)
      }
      table[cnt1] = and(tmp1, bitmask)
#      printf( "%08x\n", table[cnt1])
    }
  }
  return bitmask
}

###################################################################

function reflect(input, width, bitmask,    cnt1, tmp1, mask)
{
  mask = lshift(1, width-1)
  tmp1 = 0
  for (cnt1 = 0; cnt1 < width; cnt1++) {
    tmp1 = rshift(tmp1, 1)
    if (and(input, mask)==mask) tmp1 = xor(tmp1, mask)
    input = lshift(input, 1)
  }
  return and(tmp1, bitmask)
}

###################################################################

function calccrc(crc, width, refin, bitmask, table, message, type, len,    cnt1, tmp1, ind)
#type - 0: text string e.g. "123456789"
#       1: string of hex values e.g. "313233343536373839"
{
  cnt1 = 1

  if (refin == 0) {
    while (cnt1 <= len) {
      type == 0 ? tmp1 = ord(substr(message, cnt1, 1)) : tmp1 = strtonum("0x" substr(message, cnt1, 2))
      ind  = xor(and(rshift(crc, width-8), 255), tmp1)
      crc  = xor(lshift(crc, 8), table[ind])
      crc  = and(crc, bitmask)
      cnt1++
      if (type == 1) cnt1++
    }
  } else {
    while (cnt1 <= len) {
      type == 0 ? tmp1 = ord(substr(message, cnt1, 1)) : tmp1 = strtonum("0x" substr(message, cnt1, 2))
      ind  = xor(and(crc, 255), tmp1)
      crc  = xor(rshift(crc, 8), table[ind])
      crc  = and(crc, bitmask)
      cnt1++
      if (type == 1) cnt1++
    }
  }

  return crc
}

###################################################################

function selftest(    poly, init, xorout, width, refin, refout, bitmask, table, message, crc)
{
  bitmask = 0
  split("", table)

  print "CRC-32-IEEE 802.3"
  print "cbf43926" # expected value

  poly   = strtonum("0x04c11db7")
  init   = strtonum("0xffffffff")
  xorout = strtonum("0xffffffff")
  width  = 32
  refin  = 1 # 0 - false; 1 - true
  refout = 1 # 0 - false; 1 - true

  bitmask = filltable(poly, width, refin, bitmask, table)

  message="123456789"
  print ""
  print message

  crc = calccrc(init, width, refin, bitmask, table, message, 0, length(message))
  if (refin!=refout) crc = reflect(crc, width, bitmask)
  crc = xor(crc, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc)

  message="313233343536373839"
  print ""
  print message

  crc = calccrc(init, width, refin, bitmask, table, message, 1, length(message))
  if (refin!=refout) crc = reflect(crc, widht, bitmask)
  crc = xor(crc, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc)

  print ""
  print ""

  print "CRC-16-CCITT"
  print "29b1" # expected value

  poly   = strtonum("0x1021")
  init   = strtonum("0xffff")
  xorout = strtonum("0x0000")
  width  = 16
  refin  = 0 # 0 - false; 1 - true
  refout = 0 # 0 - false; 1 - true

  bitmask = filltable(poly, width, refin, bitmask, table)

  message="123456789"
  print ""
  print message

  crc = calccrc(init, width, refin, bitmask, table, message, 0, length(message))
  if (refin!=refout) crc = reflect(crc, width, bitmask)
  crc = xor(crc, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc)

  message="313233343536373839"
  print ""
  print message

  crc = calccrc(init, width, refin, bitmask, table, message, 1, length(message))
  if (refin!=refout) crc = reflect(crc, width, bitmask)
  crc = xor(crc, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc)
}

###################################################################

BEGIN{
  _ord_init()

#  selftest()

  bitmask = 0
  split("", table)

# set up your model here or with command-line parameters '-v var=val'
  poly   = strtonum("0x04c11db7")
  init   = strtonum("0xffffffff")
  xorout = strtonum("0xffffffff")
  width  = 32
  refin  = 1 # 0 - false; 1 - true
  refout = 1 # 0 - false; 1 - true

  bitmask = filltable(poly, width, refin, bitmask, table)

  crc_file= init
}

###################################################################

{
#  selftest()
  crc_line = calccrc(init, width, refin, bitmask, table, $0, 0, length($0))
  if (refin!=refout) crc_line = reflect(crc_line, width, bitmask)
  crc_line = xor(crc_line, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc_line)

  crc_file = calccrc(crc_file, width, refin, bitmask, table, $0, 0, length($0))
  # end console input with Ctrl + Z
}

###################################################################

END{
  if (refin!=refout) crc_file = reflect(crc_file, width, bitmask)
  crc_file = xor(crc_file, xorout)
  printf("%0" (int(width / 4) + ((width % 4)!=0)) "x\n", crc_file)
}


Posted by themabus at 11:24 EET
Updated: 03/02/2009 12:45 EET
Post Comment | Permalink | Share This Post
28/01/2009
FILE0004.CHK
Mood:  down
Now Playing: Babylon ZOO - Spaceman
Topic: Experimental christian

space.lv autopilot-skriptinjsh

no portaala: http://administracija.space.lv/zinas/spacelv-administracijas-vestule-portala-dalibniekiem
Par SPACE.LV platformu
Shai speelei ir konkreets autors no kaa speeles veidotaaji ir iegaadaajushies licenci un arii pati speele tehniski ie izveidota no nulles. Liidz ar to ir pieljaujamas dazhas nelielas nepilniibas saakotneeja posmaa, tachu taas visas soli pa solim tiek noveerstas. Arii shobriid ar SPACE.LV straadaaprogrammeetaaju grupa un paarbauda to vai pastaav iespeeja negodiigi ieguut punktus, vai nee. Shobriid mees esam gandriiz paarliecinaati, ka shaada iespeeja nepastaav, tachu veelamies, lai paarlieciiba buutu uz visiem 120%.

uzkjiileet skriptinju autoram prasiija apmeeram pus stundu...

http://rapidshare.com/files/190781608/SpeisElVeeAutomaats_20090128.rar.html

http://www.sendspace.com/file/bpmwr5

http://www.mediafire.com/?izmzgkmomgy 

 

aizvadiitaas nedeeljas bilance:
novilkto kopiju sk.: ~30..50
lietotaaju reakcija: lielaakoties neizpratne
saita administraacija informeeta
administraacijas reakcija: ignorance - 'viriniet bannerus un viss buus shtokos, bet, ja nav - slikti virinaajaat' - dezhavu... formula veca kaa pasaule

visvairaak zheel cilveeku, kas tiek iesaistiiti liidziigaas afeeraas, patiesi cerot ko laimeet, bet vieniigais ko sanjem ir spljaaviens sejaa. 
un spriezhot peec (nu jau izraveetajiem) komentaariem administraacijas blogaa, taadu nav maz...


Posted by themabus at 20:31 EET
Updated: 31/01/2009 12:41 EET
Post Comment | Permalink | Share This Post
23/12/2008
FILE0003.CHK
Mood:  party time!
Now Playing: http://somafm.com/play/indiepop

1552 Tenka Dairan (J) [AKCD3001]
Alnam no Kiba - Shouzoku Juunishin-to Densetsu (J) [RSCD4006]
Atlas, The - Renaissance Voyager (J) [ADCD4002]
Aurora Quest - Otaku no Seiza in Another World (J) [PVCD3010]
Babel (J) [TJCD2024]
Bakushou Yoshimoto Shinkigeki (J) [HCD4045]
Bishoujo Senshi Sailor Moon Collection (J) [BACD4004]
BuilderLand (J) [MWCD2003]
Burai - Hachigyoku no Yuushi Densetsu (J) [RHCD1001]
Cal II (J) [NAPR1034]
Cal III - Kanketsuhen (J) [NAPR1039]
Cosmic Fantasy - Bouken Shounen Yuu (J) [TJCD9003]
Cosmic Fantasy 2 - Bouken Shounen Ban (J) [TJCD1015]
Cosmic Fantasy 3 - Bouken Shounen Rei (J) [TJCD2029]
Cyber City Oedo 808 - Kemono no Zokusei (J) [NSCD0003]
Death Bringer - The Knight of Darkness (J) [TJCD0007]
Doukyuusei (J) [NAPR1051]
Dragon Knight II (J) [NAPR1029]
Dragon Knight III (J) [NAPR1035]
Dragon Slayer - Eiyuu Densetsu (J) [HCD1020]
Dragon Slayer - Eiyuu Densetsu II (J) [HCD2033]
Dungeon Master - Theron's Quest (J) [JCCD2010]
F1 Circus Special - Pole to Win (J) [NBCD2002]
Gambler Jiko Chuushinha - Mahjong Puzzle Collection (J) [TPCD1003]
Hatsukoi Monogatari (J) [TICD4002]
High Grenadier (J) [TJCD1016]
Hokutosei no Onna - Nishimura Kyoutarou (J) [NXCD9001]
Hu PGA Tour - Power Golf 2 Golfer (J) [HCD4056]
Human Sports Festival (J) [HMCD2002]
Inoue Mami - Kono Hoshi ni Tatta Hitori no Kimi (J) [HCD2035]
IQ Panic (J) [AICD1002]
Jack Nicklaus' World Tour Golf (J) [JCCD0003]
Kagami no Kuni no Legend (J) [JCCD9001]
Lady Phantom (J) [TJCD1019]
Langrisser - Hikari no Matsuei (J) [NSCD2017]
Lodoss Tou Senki (J) [HCD2029]
Mashou Denki La Valeur (J) [KSCD1001]
Mateki Densetsu Astralius (J) [AICD0001]
Might and Magic (J) [NAPR1022]
Monster Maker - Yami no Ryuukishi (J) [NAPR1026]
Nekketsu Koukou Dodgeball Bu - Soccer Hen CD (J) [NXCD1005]
No-Ri-Ko (J) [HCD8001]
Princess Maker 1 (J) [HECD4015]
Princess Maker 2 (J) [HECD5020]
Princess Minerva (J) [RHCD4008]
Psychic Detective Series Vol.3 - AYA (J) [DWCD2003]
Quiz - Tonosama no Yabou (J) [HCD2038]
Quiz Avenue (J) [NAPR1013]
Quiz Avenue II (J) [NAPR1024]
Quiz Caravan Cult Q (J) [HCD3047]
Quiz Marugoto the World (J) [ATCD1001]
Quiz Marugoto the World 2 - Time Machine ni Onegai! (J) [ATCD2003]
Rising Sun (J) [JCCD2006]
Road Spirits (J) [PVCD1003]
ROM ROM Stadium (J) [NSCD9001]
Sangokushi III (J) [KOCD3003]
Sengoku Kantou Sangokushi (J) [IGCD1002]
Sexy Idol Mahjong (J) [NBCD3004]
Shanghai II (J) [HCD0010]
Shanghai III - Dragon's Eye (J) [AKCD2002]
Sherlock Holmes no Tantei Kouza (J) [JCCD1004]
Sherlock Holmes no Tantei Kouza II (J) [JCCD3012]
SimEarth - The Living Planet (J) [HCD2040]
Sol Bianca (J) [NSCD0002]
Sotsugyou - Graduation (J) [NAPR1036]
Sotsugyou II - Neo Generation (J) [RHCD4009]
Space Adventure Cobra - Kokuryuuou no Densetsu (J) [HCD8004]
Space Adventure Cobra II - Densetsu No Otoko (J) [HCD1014]
Super Albatross (J) [TJCD9002]
Super CD-ROM2 Taiken Soft Shuu (J) [HCD1027]
Super Mahjong Taikai (J) [KOCD2002]
Super Schwarzschild (J) [KSCD1002]
Super Schwarzschild 2 (J) [KSCD2003]
Take the A Train III (J) [ADCD3001]
Tanjou Debut (J) [NAPR1043]
Tengai Makyou - Fuun Kabuki Den (J) [HCD3046]
Tengai Makyou - Ziria (J) [HCD9005]
Tengai Makyou II - Manji Maru (J) [HCD1022]
Tenshi no Uta (J) [TJCD1018]
Tenshi no Uta II - Datenshi no Sentaku (J) [TJCD3033]
The Davis Cup Tennis (J) [MWCD2002]
The Kick Boxing (J) [MWCD2001]
The Pro Yakyuu (J) [IGCD0001]
The Pro Yakyuu Super (J) [IGCD2004]
Vasteel (J) [HMCD0001]
Where in the World Is Carmen Sandiego (J) [PVCD0001]
Xak I & II (J) [TJCD2032]
Yawara! (J) [SXCD2001]
Ys I & II (J) [HCD9009]
Ys IV - The Dawn of Ys (J) [HCD3051]


http://thepiratebay.org/tag/pce


Posted by themabus at 16:02 EET
Updated: 23/12/2008 16:10 EET
Post Comment | Permalink | Share This Post
19/12/2008
FILE0002.CHK
Mood:  hungry
Now Playing: http://somafm.com/play/xmasinfrisko

PUSH SS
POP SS
PUSHFD

 


Posted by themabus at 23:55 EET
Post Comment | Permalink | Share This Post
FILE0001.CHK
Mood:  energetic
Now Playing: http://somafm.com/play/groovesalad

trying to reverse a decompression routine.
it's my first take on something like this.
i hope to be done until New Year.


Posted by themabus at 10:24 EET
Post Comment | Permalink | Share This Post

Newer | Latest | Older