Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-8081-120121-160161-200201-

Trip-codes

Name: Anonymous 2007-08-15 9:47 ID:rAGjFXj3

What's a good way to generate trip codes like 4chan uses?  Taking the user IP as an argument.

Name: Anonymous 2007-08-15 10:02 ID:RFdwMX2d

>>1
see the recent thread about Lambda the ultimate random number generator

Name: Anonymous 2007-08-15 10:04 ID:Heaven

DES, MD5, Blowfish, etc., noob.

Name: Anonymous 2007-08-15 15:52 ID:rAGjFXj3

what if i don't want a random number, a rand string rather like 4chan generates?

Name: Anonymous 2007-08-15 16:58 ID:PRehCx2s

>>4
a string is a number.

Name: Anonymous 2007-08-15 20:27 ID:PbAq9h0f

>>5
And a number can also be represented by a string

Name: Anonymous 2007-08-15 22:08 ID:RT1QbLAv

>>6
>>5
they're both lambdas

Name: Anonymous 2007-08-16 6:16 ID:4EnfVJGx

>>7
so's your face

Name: Anonymous 2007-08-16 7:22 ID:gPNmECEa

ZEROES AND ONES MOTHERFUCKERS

Name: Anonymous 2007-08-16 11:11 ID:O6V95wFO

>>9
zeros and ones are just lambda

Name: Anonymous 2007-08-16 13:23 ID:Heaven

>>10
lambda is just S and K

Name: Anonymous 2007-08-16 13:37 ID:O6V95wFO

>>11
nope, S and K are just lambda

Name: Anonymous 2007-08-16 14:02 ID:Heaven

>>12
WRONG

Name: Anonymous 2007-08-16 14:09 ID:O6V95wFO

>>13
RITE!

Name: Anonymous 2007-08-16 14:34 ID:Gx4ZwWPX

>>10-14

same person

Name: Anonymous 2007-08-16 22:42 ID:pB93r/2b

>>1-16

same fuckin person

Name: Anonymous 2007-08-17 8:37 ID:Heaven

OP is fucking retarded.

Name: this 2008-06-08 18:50

this is strange.

Name: Anonymous 2008-06-08 19:17

tripcodes aren't random idiot

Name: Anonymous 2008-06-08 20:08

SAUCE

Name: !WokonZwxw2 2008-06-08 20:30

;_;

Name: Anonymous 2008-06-08 22:40

EXPERT TRIPCODE GENERATOR
<?php
  $ALPHABET = "0123456789!ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

function tripcode($ip) {
  $ip = "127.0.0.1";
  $salt = date();
  $crypt = crypt($ip, $salt);
 
  $trip = "";
  for(int i=0; i<strlen($crypt); i++) {
     int idx = ((int) $crypt[i]) % strlen($ALPHABET);
     $trip .= $ALPHABET[idx];
  }

  return $trip;
}
?>

You wanted random characters, you got them

Name: Anonymous 2008-06-09 7:24

I hai, I fixed ur for-loop.

  for($i=0; $i<strlen($crypt); ++$i) {
     $trip .= $ALPHABET[ord($crypt[$i]) % strlen($ALPHABET)];
  }


Name: Anonymous 2008-06-09 8:21

why wont you people ever realise that interpreted codes suck?

Name: Anonymous 2008-06-09 11:01

Name: Anonymous 2009-02-14 7:54

lolz

Name: !eERGQ6t5UI 2009-02-15 20:51

test

Name: !pRimEj1hcY 2009-02-15 20:52

test

Name: !primEaOaqQ 2009-02-15 20:56

test

Name: Optimus !primEaOaqQ 2009-02-15 20:58

test

Name: Optimus !pRimEvMpwo 2009-02-15 21:00

test

Name: !YT28S.0pmg 2009-02-16 0:03

-

Name: !!kuh+pANrxJY05/a 2009-02-16 0:03

-

Name: !z/prog/isc 2009-02-16 0:37

>>32
why do you idiots keep bumping threads like this?

Name: Anonymous 2009-02-16 1:08

test

Name: !DQN///pQps 2009-02-21 18:18

sagetest

Name: Anonymous 2009-02-21 18:20

Sage is only effective on Shiichan when by itself :(

Name: Anonymous 2009-02-21 19:11

[mquote] > f? [/mquote]

Name: Anonymous 2009-03-06 12:24

Ones for someone who prefers studying and   learning to competing   for social dominance   which can unfortunately   cause the downward   spiral into social.

Name: !jQlx5.kpJU 2009-04-12 20:49

d

Name: nigger 2009-04-13 0:22

DOUBLE NIGGER

Name: !a2uDFch6hM 2009-05-16 12:08

ddd

Name: JOHO 2009-05-31 21:24

am i trippin yet

Name: Anonymous 2009-05-31 21:51

>>25
non-free shit.

Name: test !!W4juMWQJc0pBDvC 2009-06-08 12:18

asdf

Name: !XpWnBlKJp6 2009-06-10 13:45

hi

Name: Anonymous 2009-06-15 12:30



  for($i=0; $i<strlen($crypt); ++$i) {
     $trip .= $ALPHABET[ord($crypt[$i]) % strlen($ALPHABET)];
  }

Name: Anonymous 2009-06-15 12:33

derp

Name: moot !Ep8pui8Vw2 2009-06-15 12:53

sup

Name: moot !Ep8pui8Vw2 2009-06-15 14:35

>>49
I see what you did there, scoundrel.

Name: Anonymous 2009-06-15 16:40

>>50

LOL I TROL U

Name: Anonymous 2009-06-15 20:17

I can't tell which post I need to be originally disgusted by

I'll go with
>>-1

Name: Anonymous 2009-08-18 0:02

<?php
  $ALPHABET = "0123456789!ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

function tripcode($ip) {
  $ip = "127.0.0.1";
  $salt = date();
  $crypt = crypt($ip, $salt);
 
  $trip = "";
  for(int i=0; i<strlen($crypt); i++) {
     int idx = ((int) $crypt[i]) % strlen($ALPHABET);
     $trip .= $ALPHABET[idx];
  }

  return $trip;
}
?>

Name: Anonymous 2009-08-18 2:00

>>53
Protip: your lookup table isn't going to be faster than strtr or manual comparisons, because PHP does it as a hashmap.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 2:29

>>55 Hashtables? Fastest data structure? That like claiming C++ is the fastest language.
Indexed arrays are obviously faster pointer+[cell_address] and have zero overhead.



_______________________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
The trouble with the rat race is that even if you win, you're still a rat.

Name: Anonymous 2009-08-18 2:39

>>56
That like claiming C++ is the fastest language.
No actually, it's not. C++ does not win the speed game in any problem domain. Anything it is reasonably good at C does better. The same can't be said for a hashtable, which has constant time insertion, lookup, and deletion. You won't find such behavior in any other data structure. I'm not sure what you are trying to say regarding indexing vs pointer arithmetic, but if you are arguing that either one of them is faster, you are wrong.

Name: Anonymous 2009-08-18 2:40

>>55
Better big-O performance doesn't always mean faster. The constant time required for PHP's hashtable implementation is considerably longer than the constant time that would be required for the strtr implementation, which is bigger than the constant time required for the straightforward comparison implementation.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 2:47

>>57 constant time insertion, lookup, and deletion.
If you're using array as storage, insertion is just adding more cells at the end or replacing unused(zero) cells
while deletion is zeroing the cell.Lookup is obviously faster(its just goto base+index*cell_size) while hashmap require spending time with hashfunctions.



_______________________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Doctor, will you tell these fools? I'm not crazy. Make them listen to me before it's too late.

Name: Anonymous 2009-08-18 3:13

>>59
Are you fucking retarded? I meant find, which is synonymous with lookup. Obviously you have never actually used a hashtable before. It similarly looks like you've never actually used an array before thanks to this amusing number:
while deletion is zeroing the cell
Keep embarrassing yourself, please.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 3:15

>>61 Thats how i use arrays, and your hashfail can't ever come close to their speed.



___________________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
A different conception of society, very different from that which now prevails, is in process of formation.

Name: Anonymous 2009-08-18 3:25

>>62
You use them by never needing to find an element in them? Interesting way to COMPLETELY FUCKING IGNORE THE DOWNSIDE. Guess what? I never use a hashtable to hash anything, so the effective time is zero, much faster than a garray. Beat that. Also, rather ironically, if you use a modern compiler the difference in speed between a hashmap and an array should be neglible. I doubt you will test this yourself or consider something that doesn't agree with your "beliefs" but most modern compilers actually produce faster code for a std::vector than an array.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 3:35

>>63 if i intended to use array as database for finding stuff i'll rather use:
http://en.wikipedia.org/wiki/Self-balancing_binary_search_tree



_____________________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Attaining one's dream requires a stern will and unfailing determination.

Name: Anonymous 2009-08-18 4:17

>>64
You have no clue when it comes to data structures do you? You took the original problem, made a blind comment that hashtables aren't the "fastest" data structure. Now when it turns out the argument doesn't suit you, you manage to get the idea (or rather force it for lack of anything meaningful to say) that somebody needs a database. No, nobody wants a database. A hashtable isn't intended to be a database. Stop juggling around saying "oh what about x, oh no y, thats not right when I could do z."

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 4:19

>>65 If you don't need a database, then you use plain indexed arrays.
If you need database you use a database.


______________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Biologists or philosophers cannot conceive a biosphere or noosphere because they are unwilling to abandon a certain narrow conception of individuality. Nevertheless, the step must be taken. For in fact, pure spirituality is as unconceivable as pure materiality. Just as, in a sense, there is no geometrical point, but as many structurally different points as there are methods of deriving them from different figures, so every spirit derives its reality and nature from a particular type of universal synthesis.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 4:27

Lets see what you using data for:
1.Searching non-sorted,unorganized data.
2.Storing data for use.
Which?
____________________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Tragedy, for me, is not a conflict between right and wrong, but between two different kinds of right.

Name: Anonymous 2009-08-18 4:33

>>65
You're wasting your time.

Name: Anonymous 2009-08-18 4:38

$cap = mb_convert_encoding($cap, 'SJIS', 'UTF-8');



$salt = substr($cap . 'H..', 1, 2);

$salt = ereg_replace('[^\.-z]', '.', $salt);

$salt = strtr($salt, ':;<=>?@[\\]^_`', 'ABCDEFGabcdef');


$trip = substr(crypt($cap, $salt), -10);


Now, what are we talking about again?

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-18 4:46

>>69  I don't see why you even need arrays for this.


______________________________
http://bayimg.com/image/aadbjaace.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Patriotism is your conviction that this country is superior to all other countries because you were born in it.

Name: Anonymous 2009-08-18 4:52

FV is DQN.
ignore him, idiots.
</thread>

Name: Anonymous 2009-08-18 13:51

>>57,61,63,65
You should be shot for considering a hashtable on constant data with contiguous integer keys.  Hashtables are reasonably fast at being hashtables and terrible at everything else.  Also, FrozenVoid is smarter than you.

Name: Anonymous 2009-08-18 19:42

>>72
I didn't suggest using a hashtable with contiguous integer keys. You would know this if you had actually read the posts you quoted, how you managed to not do this escapes me because it seems like a catch 22.
IHBT

Name: !Cv4lpQYkvs 2009-11-09 20:09

oO

Name: Anonymous 2009-11-09 23:29

>>72

Hashtables are reasonably fast at being hashtables and terrible at everything else.

No shit, sherlock.

Name: Anonymous 2009-11-10 0:47

>>75
And yet the person I was responding to hadn't caught on.  Perhaps you should read the thread more carefully.

Name: Anonymous 2009-12-13 3:20

itt: niggers

Name: TRIP !myANUSf.x. 2009-12-13 6:47

­

Name: sage 2009-12-13 7:30

>>40
Please fuck off.

Name: SomeGuye01f8b 2010-01-08 0:59

test

Name: SomeGuy 2010-01-08 0:59

test.

Name: SomeGuy !Ug/viy1seM 2010-01-08 1:01

test

Name: Anonymous 2010-01-08 10:03

>>80-82
щ(゚Д゚щ)

Name: !JfY1ekq/8k 2010-01-09 11:33

test

Name: Miyuki Is Mai Waifu !CoFD27ghhs 2010-01-11 5:45

sage

Name: !vkPjRZkh2M 2010-01-12 3:36

I made a bunch of codes using vectripper, and all of them seem to work except the one I want to use.  when I ran it through a tester, the 2ch hash read "a..TRIpfAg," which was what had been generated, but the 4ch hash read "vkPjRZkh2M," which is what gets displayed.  normally these two should match.  what do?

Name: Anonymous 2010-01-12 7:05

>>86
what do?
You go back to /b/.

Name: Anonymous 2010-01-12 9:35

>>86
If the tripcode contains a yen mark, replace that with \

Name: !2etTriPfAg 2010-01-12 18:03

test

Name: dick dickd cidksdf 2010-01-30 19:45

dcidkfsdifnsdic idckdci dickdcidn cid cidck

Name: Anonymous 2010-01-31 4:54

>>90
Back to /pr/

Name: Anonymous 2010-01-31 15:46

>>93,94
same person

Name: costy 2010-04-25 7:35

<?php
  $ALPHABET = "0123456789!ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

function tripcode($ip) {
  $ip = "127.0.0.1";
  $salt = date();
  $crypt = crypt($ip, $salt);
 
  $trip = "";
  for(int i=0; i<strlen($crypt); i++) {
     int idx = ((int) $crypt[i]) % strlen($ALPHABET);
     $trip .= $ALPHABET[idx];
  }

  return $trip;
}
?>

Name: Anonymous 2010-04-25 8:25

OMG I LOVE PHP

Name: Anonymous 2010-04-25 9:32

This is my professional web developer solution:
<%# ip.Reverse(); %>

Name: Anonymous 2010-04-25 11:43

For the record, the way Shiitchan generated the IP-based IDs (as seen in the early posts in this thread) is this:

substr(base64_encode(pack("H*",sha1($_SERVER[REMOTE_ADDR].date("d").SecureSalt()))), 1,8)

Where SecureSalt returns the constant site-wide salt and . is the concatenation operator and not a method call because PHP is beautiful.

The tripcode algorithm is well-known, of course.

Name: Anonymous 2010-04-25 14:12

>>96
$_SERVER considered harmful.

Name: !!b33rvalve 2010-05-15 19:29

testing

Name: Anonymous 2010-05-15 20:13

>>98
Go play in traffic.

Name: Anonymous 2010-05-15 22:52

>>99
Go play in web traffic.

Name: Anonymous 2010-05-16 2:58

>>100
GO PLAY IN MY ANUS

Name: we !eHg13QwJnI 2010-05-22 15:29

u

Name: yiu !dJNToPBaGk 2010-05-22 15:30

100

Name: !eUgTSiCTIo 2010-06-29 15:29

jdsf

Name: ! !eUgTSiCTIo 2010-06-29 15:29

jdsfktd

Name: Anonymous 2010-06-29 15:34

>>102

Using dictionary words considered harmful.

Name: !GCiXE.XUpw 2010-06-29 15:35

jdfhtrhbsert

Name: !citto.FDb. 2010-06-29 15:43

dfhnrstjrtdsgg

testing tripcode

Name: !Adolf5oUwU!+jYVzvHITLErD3T 2010-06-29 15:45

adolf hitler?

Name: Anonymous 2010-06-29 15:48

>>107-109
Go play in traffic.

Name: !citto.FDb. 2010-06-29 15:52

sucess

Name: Anonymous 2010-06-29 17:47

Trip codes are for faggots.

Name: Anonymous 2010-06-29 20:56

>>112

Xarn is not a faggot, so back to /b/, please

Name: !OLdFag/jr2 2010-07-06 9:12

ohai der

Name: Anonymous 2010-07-06 9:14

>>113
Xarn is not defined by his tripcode. back to rotahall, please

Name: Anonymous 2010-07-06 14:06

>>113
o hai thar Xarn
(i see what you did there)

Name: Anonymous 2010-07-09 9:25

How do you make a custom one like yours, though?

Name: Anonymous 2010-07-09 12:58

Xarn is not a faggot
Xarn has admitted to his shameful sexual perversions openly on his blog.

Name: x y !!twzEE37BcXV2Hk6 2010-07-09 18:57

k

Name: !Nyoron4t6M 2010-07-13 0:47

o hi

Name: Myself !PsVJOG6VuM 2010-07-14 14:52

testing tripcode

Name: Myself !PsVJOG6VuM 2010-07-14 14:53

k it works xD

Name: !!m8WI8527HARo8u+ 2010-07-19 9:28

gotta try this.

Name: !.oldhAgBl6 2010-07-19 9:30

>>123
failure

Name: !nIgGeriLy6 2010-07-19 15:14

lol tripcodes xD

Name: !bqshU3XRmg 2010-07-19 15:15

testan

Name: Anonymous 2010-07-20 21:13

NIGGERS

Name: !!UcgiL86AyW+Ed2V 2010-07-23 7:09

|trip
| coed

Name: Anonymous 2010-09-18 20:48

i are unpossible to make php to go :(

Name: test !64yiOPaaac 2010-09-19 6:03

test

Name: !!88lQwySH2VQxcPJ 2010-09-29 17:19

Test

Name: !!kdKI5/sF7FGJJ9u 2010-09-29 17:20

Test

Name: !NiGgeRTeSc 2010-10-16 19:04

f

Name: !myothercar 2010-10-16 19:08

less of this

Name: !j8WthE9aME 2010-10-16 19:13

test

Name: Anonymous 2010-10-16 19:13

http://github.com/Cairnarvon/triptools

I don't know why these threads always fill up with idiots testing tripcodes.

Name: Anonymous 2010-10-16 20:31

>>136
because idiots cannot compile C code

Name: Anonymous 2010-10-17 3:08

>>137
You seem to never have studied CS

Name: Anonymous 2010-10-17 14:11

>>138
I'm not sure what you're trying to suggest, but I surely do know what I'm doing. The problem lies in those who do not, who are not coincidentally the very same people who bump every thread with the word "tripcode" in it to do their testing instead of taking the five seconds it takes to compile a tripcode tester. There is positively no reason to test a tripcode in threads like this. It reeks of the precise sort of oblivious narcissism that the concept of anonymity is intended to eliminate.

Name: Fag !!RMKwZKV9TIboFqH 2010-11-22 22:50

What is this?

Name: Name !HELLoFbuMI 2010-11-22 22:54

test

Name: No !!BLWPSBWyYBoKZRP 2010-11-22 22:59

testing

Name: !CUDderuJ96 2010-11-22 23:28

test

Name: sage !sageL4x7a6 2010-11-22 23:30

sage

Name: Anonymous 2010-11-23 14:35

test

Name: Anonymous 2010-11-23 14:36

test

Name: cat !BrF6HmqDk2 2010-11-26 21:49

I be not trippin'

Name: !Zombiec2j. 2010-12-10 16:47

blank?

Name: Anonymous 2011-02-07 3:57

<?php
  $ALPHABET = "0123456789!ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

function tripcode($ip) {
  $ip = "127.0.0.1";
  $salt = date();
  $crypt = crypt($ip, $salt);
 
  $trip = "";
  for(int i=0; i<strlen($crypt); i++) {
     int idx = ((int) $crypt[i]) % strlen($ALPHABET);
     $trip .= $ALPHABET[idx];
  }

  return $trip;
}
?>

Name: Anonymous 2011-02-07 6:15

>>153
strlen(
ONE WORD, THE FORCED LINEAR TIME OF STRLEN. THREAD OVER

Name: Anonymous 2011-02-07 6:24

dubs

Name: Anonymous 2011-02-07 7:07

>>154

The for loop is linear time as well, so it evens out.

Name: Anonymous 2011-02-07 7:21

>>154
When are going to stop being so aniihurt?

Name: Anonymous 2011-02-07 7:29

>>156
That makes it O(n²).

OMG UNOPTIMIZED

Name: Anonymous 2011-02-07 8:57

value=user IP +salt
tripcode=hash_with_one_algorithm(value)

Name: Anonymous 2011-02-07 9:37

doesn't php hold the length of strings? I am pretty sure it is high level enough to do such task

Name: Anonymous 2011-02-07 9:44

tripcodes = autism.

Name: Anonymous 2011-02-07 9:44

Trip codes everyday

Name: Anonymous 2011-02-07 9:47

Sage threads everyday

Name: Anonymous 2011-02-07 9:50

dubs get

Name: Anonymous 2011-02-07 10:07

>>158

Actually it becomes O(m^n) because of non-logarithmic exponential space-time complexity.

Name: Anonymous 2011-02-07 10:24

check dubz everyday

Name: moot !Ep8pui8Vw2 2011-02-12 22:29

lol

Name: Anonymous 2011-02-12 23:55


    ██████████████████████████████████████████████████████
    ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
    ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
    ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
    ██▓▓▒▒░░  VERY BORED                          ░░▒▒▓▓██
    ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
    ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
    ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
    ██████████████████████████████████████████████████████

bored

Name: Anonymous 2011-02-13 2:27

>>168
yo, that was cool

how you do that???

Name: Anonymous 2011-02-13 10:44


    ██████████████████████████████████████████████████████
    ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
    ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
    ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
    ██▓▓▒▒░░  VERY BORED                          ░░▒▒▓▓██
    ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
    ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
    ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
    ██████████████████████████████████████████████████████

Name: balgam !RMhincirjI 2011-02-20 11:47

fuck yeah

Name: Anonymous 2011-02-20 11:49


        ██████████████████████████████████████████████████████
        ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
        ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
        ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
        ██▓▓▒▒░░             HAX MY ANUS              ░░▒▒▓▓██
        ██▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒▓▓██
        ██▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓██
        ██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██
        ██████████████████████████████████████████████████████

Name: Balgam a.k.a. !qGIinW5b5M 2011-02-20 11:50

fuck yeah2

Name: xxx !incirVH4fg 2011-02-20 11:51

sure

Name: balgam !incirVH4fg 2011-02-20 11:51

asd

Name: Balgam !incirVH4fg 2011-02-20 11:51

asd

Name: Anonymous 2011-02-20 11:51

>>37
<-- that's cool and all, but check my doubles over there

Name: Balgam as !incirVH4fg 2011-02-20 11:52

asdasd

Name: i 2011-04-08 22:29

i

Name: Doctor Racket !RACKET/.HY 2011-04-08 23:15

>>179
You don't really want a tripcode, listen to me.

Name: Anonymous 2011-04-08 23:17

>using date as salt
Do you not understand what a tripcode is for or are you an idiot who believes in infinity?

Name: !x7VhT0BddM 2011-04-19 14:21

Test

Name: !.CzKQna1OU 2011-04-19 14:25

test

Name: Anonymous 2011-04-19 15:16

>>4
mailto: noko
FUCK YOU NIGGER FUCKING GAYLOVER ASSPACKER FAT DICK SUCKER FAGGOT

Name: Anonymous 2011-04-19 17:59

>>184
lol u mad /b/ro?

Name: Anonymous 2011-04-19 18:37

>>185
Hey ``Afro american'', why don't you go back to the /imageboards/?

Name: Anonymous 2011-04-19 19:04

>>186
fuck you fag

Name: CoffeeAnd !xHsA0oRJwo 2011-04-22 22:52

testing

Name: kap !5nrEKapPao 2011-06-05 11:31

testtts

Name: !/3hnw7yiAk 2011-06-05 11:32

test
>>187
>fag

Name: Anonymous 2011-06-06 11:31

Name: Anonymous 2011-06-06 17:44

Name: Fprince !WFf98nZ/Xk 2011-07-26 5:34

s

Name: Optimus !primEaOaqQ 2011-07-26 8:37

derp

Name: a 2011-08-10 14:29

The trip site of booking.com is negligent.
http://www.booking.com/
There is a problem of credit card in the authentication system

Booking is possible if the Expiry date and CVC-code of the credit card is wrong.
You can book even if you input card hoder name which is random and false.

The systems only confirm the principle of credit card.
http://sqa.fyicenter.com/Online_Test_Tools/Test_Credit_Card_Number_Generator.php
I don’t use booking.com which has system problem like this.
How terrible booking.com (http://www.booking.com/) is!

Name: a 2011-08-10 14:39

The trip site of booking.com is negligent.
http://www.booking.com/
There is a problem of credit card in the authentication system.

Booking is possible if the Expiry date and CVC-code of the credit card is wrong.
You can book even if you input card hoder name which is random and false.

The systems only confirm the principle of credit card.
http://sqa.fyicenter.com/Online_Test_Tools/Test_Credit_Card_Number_Generator.php
I don’t use booking.com which has system problem like this.
How terrible booking.com (http://www.booking.com/) is!

Name: Anonymous 2011-08-10 16:31

joh joh joh /prog/ is so fresh against /prog/ reddit looks like a rat

Name: Lee !sXG3LvHUf. 2011-09-28 14:22

test

Name: Lee !Aa.k/JKPvc 2011-09-28 14:44

test2

Name: Xarn 2011-09-28 23:18

SLACKWARESUPREMACYSLACKWARESUPREMACYSLACKWARESUPREMACY

Name: !NhfK9up1rg 2011-12-13 22:33

testin

Name: qqaa 2012-01-19 23:29

test

Name: !!KIZP4+yIXCUb/R9 2012-01-19 23:30

test

Name: qqaa !!bWXirviBH33MJLK 2012-01-19 23:30

testin

Name: User !!W6ph5Mm5Pz8GgiU 2012-02-06 18:40

asd

Name: = !54lFaGGOTs 2012-02-07 14:38

dont mind me, just testin

Name: Test !54lFaGGOTs 2012-02-07 14:38

test again

Name: ‮tseT !54lFaGGOTs 2012-02-07 14:40

experimenting

Name: ‮‮‮ !54lFaGGOTs 2012-02-07 14:44

hmm

Name: !54lFaGGOTs 2012-02-07 14:47

test yet again

Name: Anonymous 2012-02-07 14:52

Trip my dubs

Name: test 2012-02-07 15:02

test

Name: this thread needs a trip !315kBbkxFI 2012-03-03 9:02

test

Name: wat !sEArchIbwA 2012-03-09 5:28

wat

Name: wat !73ULCxHvDU 2012-03-09 5:33

>trips
>2012
>ISHYGIDDY

Name: wat !sEArchIbwA 2012-03-09 5:34

73ULCxHvDU

Name: wat !TFzWVU9XWI 2012-03-09 5:35

sEArchIbwA

Name: Anonymous 2012-03-09 5:36

Hey we are  the enterprenur company by Japanese young people.

Our business is to export products and to import products .

Many foreign people only know Japanese good products are  electronic  products and samurai, anime or something like that .

But we do not think they are all we can supply for the global market.

We also know you can see Japanese  Food, culture and fashion in your country , however we  are not satisfied with them and know more shophisticated things. Because of them, many foreigners misunderstand what the Japanese real one  is !! It is what we are really worried about.

Unfortunately Japanese people are really introverted and shy because we are really big economic country and do not need to be involved in other countries unless someone forces people to do that. Besides as you know most of Japanese people can not speak in English well,  for the reason and it is harder to  find  experts of  these fields. Also we usually can not show "YES or NO"  clearly  from daily communication to the deplomaitc issue. That is why we fail to succeed in many worldwide business.

Name: Meru Otonashi !oFUBhmBL1I 2012-03-09 5:41

i dont even

Name: wat !1zYuPT.mP6 2012-03-09 5:42

>>218
wat

Name: abc !bzxHVU3sLI 2012-03-09 5:43

sup

Name: wat !zEcAEB4v42 2012-03-09 5:45

abc

Name: Anonymous 2012-03-09 6:03

who allowed this shit? mods?

Name: Anonymous 2012-03-09 15:04

>>222
THE ALMIGHTY TRIPS HATH APPEAR'D.

Name: asdasd 2012-11-14 21:46

sfs

Don't change these.
Name: Email:
Entire Thread Thread List