Tripcode decoder (696)

1 Name: Albright!LC/IWhc3yc 2004-11-15 08:25 ID:UYlEBzaw [Del]

I've been tinkering with Python all day today... it's pretty slick. Just for practice, I tried to cobble together a tripcode decoder that would let you have "real" words in your tripcode as !WAHa and Sling and others do, and it actually came out better than I thought it would be. I'm aware there's already a program that does this, but if memory serves me, it's Windows-only and in Japanese besides. My script is kind of dumb in the way it goes about things -- it basically just tears through random strings until it finds one that fits -- but I've tested it repeatedly and it seems to work. If you'd like to check it out, nab it here:
http://www.anre.org/crap/detripper.bz2

Of course, you may need to modify the hashbang line depending on where Python is on your machine, and don't forget those execute bits, people... Use "-h" for help.

First person to ask how to get this to run on Windows gets pointed and laughed at.

175 Name: 173 2005-08-22 08:29 ID:Ujxsq7mR [Del]

>>174
My UFC readme tells me: 2.14 3/6/92

176 Name: Anonymous 2005-09-11 15:32 ID:rTVkJKUB [Del]

Some Japanese tripcode searchers, not tested and stolen from http://ansitu.xrea.jp/guidance/?FAQ1#t17de328

  • @Œ©’m‚ç‚ʍ‘‚̃gƒŠƒbƒp[i‚—@http://isweb34.infoseek.co.jp/computer/tripsage/
  • @Trip-Mona@@@@@@@@@@@http://dawgsdk.cside.com/tripmona/
  • @‚¤‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚è‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚ρ` (for Un*x)@@@ http://www.geocities.com/tk2001b/utripper/
  • @‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚è‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚ρ[ for Mac@@@@@@http://www.geocities.co.jp/SiliconValley-Cupertino/9482/
  • @r*8@@@@@@@@@@@@@@@ http://ra8.s31.xrea.com/
  • @mty@@@@@@@@@@@@@@@http://user64.psychedance.com/

177 Name: Anonymous 2005-09-12 04:56 ID:JjilS79s [Del]

hello thar. Why doesn't my tripcodes work? I'm using tripper+ but I don't know how to configure the options because my computer won't show Japanese characters...

178 Name: Mr VacBob!JqK7T7zan. 2005-09-12 17:52 ID:g2MKZY9P [Del]

‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚è‚ÃÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚‚‚ρ[ is 26% faster than mine on my G3. I suppose I should find a faster crypt, but I remember UFC not giving correct output in some case.

179 Name: Anonymous 2005-09-13 07:12 ID:SVCYKYBK [Del]

>>178
afaik, john has bitslice-des code for fruity platforms.
you could take a stab at adapting the 4brute++ code, but i dont even want to think about what parts of it might be endianess-sensitive.

updating the x86 DESBS code to some newer extensions than MMX would be a pretty heroic task for some highly motivated young coder. :)

180 Name: Anonymous 2005-09-13 11:08 ID:JjilS79s [Del]

Hi. Can someone here please explain why my tripcodes doesen't work?

According to a program called tripper+, "#/te¦4M¼A" will generate tripcode: "!aWrYyYlkcw".

But when I tested it on Sandbox, i got "!nbn1dFk5FA"

Why won't it work?

181 Name: !WAHa.06x36 2005-09-13 11:28 ID:Heaven [Del]

Because it's full of non-ASCII characters that will get parsed differently depending on which board you post it on, especially if you use HTML entities instead of the actual characters. If you want tripcodes that work everywhere, stick to plain ASCII characters only.

182 Name: Anonymous 2005-09-13 12:56 ID:9BUh8eYi [Del]

>>179
MMX registers are already 64 bits and have NOT AND and such. The only optimization that comes to mind would be vectorizing and doing two at once in SSE2 128bit registers

183 Name: Anonymous 2005-09-14 06:05 ID:7k3V/cGb [Del]

>>182
i am not so sure you know what bitslicing means. ;)

basicly it means using a CPU with N bit registers as N CPUs with 1 bit registers.
some operations (like DES) can profit from that a lot.
johns DESBS code does 64 "crypt() equivalent operations" in parallel on MMX, or 128 on altivec.

so porting this to newer extensions like SSE(2) would probably get another performance increase by a factor of 1.5-2 ...

but its hard to say without trying it since this stuff is getting really non-intuitive already. (direct influence of ram-speed on the performance, or the retarded linux 2.4.x SMP scheduler eating 70% of the performance, just to name two cute examples.)

184 Name: Anonymous 2005-09-14 18:37 ID:9BUh8eYi [Del]

>>183
SSE lacks the instructions to do the needed operations on its 128 bit registers, out of all of the additional instruction sets I can think of SSE2 is the only one that fit (I only know x86 chipsets). Maybe I didn't state it cleary, but I said you would not be likely to gain more than just being able to do two times as many as once. Not exactly something that is going to bring something that is currently an unreasonable search to feasability.

185 Name: Mr VacBob!JqK7T7zan. 2005-09-14 18:51 ID:fNHWCfUo [Del]

Altivec could certainly do it; it's much better than any x86 SIMD. Too bad it's only on the G4 and up. I could manage 32 bits at once, I guess.

186 Name: Anonymous 2005-09-14 20:32 ID:9BUh8eYi [Del]

>>185
For those curious of the AltiVec performance, a PowerPC G5 1.8 GHz
currently achieves the following:

Benchmarking: Traditional DES [128/128 BS AltiVec]... DONE
Many salts: 1103K c/s real, 1105K c/s virtual
Only one salt: 910566 c/s real, 910566 c/s virtual

The latest Pentium 4's aren't quite there yet (with MMX code).
Although SSE support for JtR is coming, preliminary testing shows that
it won't achieve this much speedup.

I would indent the quote but I am scared of markdown, straight from the horses mouth though (solar)

187 Name: Anonymous 2005-09-15 16:37 ID:1gPAmSOW [Del]

>>168
Your site doesn't work... It only redirects me to stuff like http://www.100webads.com/

188 Name: Anonymous 2005-09-16 10:21 ID:DdHqIbOT [Del]

>>187
100webspace is DQN.
this should work... http://wilson.merseine.nu/download/fasttrip.tar.bz2

189 Name: Anonymous 2005-09-17 09:02 ID:5diG1p2P [Del]

>>184
well, it might be enough to shut up those fruituser claims about hardware superiority, considering they are less than factor 2 ahead while using 2x width. ;)

but, seeing how the biggest change in john 1.6.39 is adding a macosx-x86-mmx-cc build target, i guess apple will be shipping real computers before john grows SSE2 support. :)

190 Name: Anonymous 2005-09-18 17:55 ID:82Gg/HUk [Del]

>>188
Some instructions for using this would be nice.

191 Name: Mr VacBob!JqK7T7zan. 2005-09-18 21:14 ID:0otZ6SCc [Del]

>>189 doesn't seem to understand much :(
In the G5's case it's entirely CPU bound... I would look into running scalar and AltiVec at the same time, and why jtr's altivec code uses signed numbers.

But since I don't have one, I don't really care. I will see if I can make the non-DES parts parallelizable easily without making it really unreadable. SHA1 is supposedly AltiVecable as well; RC4 doesn't look like it is, though.

192 Name: !WAHa.06x36 2005-09-19 06:02 ID:fmijiWlI [Del]

RC4 runs like a dream on 8-bit microcontrollers, though.

193 Name: Anonymous 2005-09-19 21:20 ID:DdHqIbOT [Del]

>>190
to search for a tripcode you just do
trip [regex]
or
trip -c [regex]
where [regex] is the regular expression you want to match. if you don't supply a regular expression it uses .* (matches all tripcodes). if you use -c it does case sensitive matching.

194 Name: !WAHa.06x36 : 2006-02-15 15:37 ID:eNejbUCU [Del]

Restoring from the Google cache again:

215 Name: !WAHa.06x36 : 2006-02-09 05:15 ID:eNejbUCU [Del]

>>214

Because Wakaba and Kareha are set up so you get the same results as at 2ch and Futaba. You ask me, that means 4chan's tripcodes are broken.

216 Post deleted by moderator.

217 Post deleted by moderator.

218 Post deleted by moderator.

219 Name: Anonymous : 2006-02-10 14:57 ID:Heaven [Del]

Not to mention that 4chan's cookie code mangles things badly. Last I checked wakaba isn't the same as 2ch in every aspect. IIRC using an html entity you get the html entity instead of the actual character on 2ch, where it is converted first here. I'm also puzzled why some tripcodes are not the same. Shouldn't aaaaaaa) and aaaaaaa¿ result in the same tripcode? Since DES uses a 56 bit key only the lower 7 bits of every character is used.

220 Name: !WAHa.06x36 : 2006-02-10 15:50 ID:Heaven [Del]

>>219

Remember, the tripcode parsing is done in Shift_JIS.

221 Name: Anonymous : 2006-02-11 15:04 ID:daRDBpvC [Del]

wakaba and kareha convert &, <, >, ", ', and , into html entities, 0ch (the 2ch script) doesn't.
0ch replaces ŠÇ\` with hŠÇ\h, ŠÇf¼ with hŠÇf¼h, íœ` with híœh, Ÿ` with ž`, and š` with ™`.
futaba replaces ŠÇ\` with "ŠÇ\", íœ` with "íœ", Ÿ` with ž`, &amp; with &, and , with ,.
note that 0ch and futaba use different double quote characters (h and ")...

222 Name: Anonymous : 2006-02-11 15:09 ID:daRDBpvC [Del]
>>221
lol wakabamark...
let's try this again...
0ch:
ŠÇ\ -> hŠÇ\h
ŠÇf¼ -> hŠÇf¼h
íœ -> híœh
Ÿ -> ž
š -> ™

futaba:
ŠÇ\ -> "ŠÇ\"
íœ -> híœh
Ÿ -> ž
&amp; -> &
Post too long. Click to view the whole post or the thread page.

223 Name: Anonymous : 2006-02-11 15:10 ID:daRDBpvC [Del]

> , -> ,

okay, the first one should be & # 4 4 ;
that was with Formatting: None... bug?

224 Name: !WAHa.06x36 : 2006-02-11 18:01 ID:Heaven [Del]

>>223

Bug, yes, but in HTTP. There's no way to tell if a user typed a numerical entity, or if the browser auto-converted a character outside the current charset to an entity.

195 Name: Anonymous : 2006-02-17 20:22 ID:4DdZPMko [Del]

Wow those posts got screwed up..
anyways. Someone asked if it is impossible to crack a tripcode if you use an 8 character random string in aprevious life of this thread. The answer is no, if you really care about being the only one with the tripcode you should use a secure tripcode (name#trip#secure). This is the third and shittiest version of this post I have made. I shall not make another one.

196 Name: !WAHa.06x36 : 2006-02-17 21:36 ID:Heaven [Del]

>>195

I think the NSA has been attacking this thread to stop this information from getting out!

197 Name: Anonymous : 2006-02-18 03:58 ID:4DdZPMko [Del]

>>196
Damn bastards cannot leave DES alone! Why bother making the S-boxes resistant to differtial cryptology 15 years before anyone knows about it and then suggest a reduced keysize.. AND THEN hide the information that tripcodes are about as secure as a plastic lock!

198 Name: Anonymous : 2006-03-05 13:58 ID:VwchEjOn [Del]

does anyone have a copy of 4brute-johnbs?

199 Name: !WAHa.06x36 : 2006-03-05 16:33 ID:Heaven [Del]

Not on this board.

200 Name: Anonymous : 2006-03-07 01:28 ID:Heaven [Del]

Someone really should make a post(somewhere) of all of the technical details of tripcodes. I keep forgetting to verify (and wel.l redo as they are totally fucked up) >>221-222 and list any other inconsitencies. I'm sure I'll eventually get around to it or someone else will do it for me.
Also, is it still 200GET if it isn't the first time?

201 Name: Anonymous : 2006-03-07 16:56 ID:F/Zusv+8 [Del]

>>188

> this should work... http://wilson.merseine.nu/download/fasttrip.tar.bz2

Error! Could not locate remote server

202 Name: hotaru : 2006-03-07 23:49 ID:Heaven [Del]

>>201
yeah... my "dynamic" ip never changes, so the dynamic dns never gets updated, so it expired...
i'm working on setting up a new server, i'll post a link here when i'm done.

203 Name: Potato : 2006-04-13 09:40 ID:2uF14587 [Del]

I like potatoes.

204 Name: Anonymous : 2006-05-17 08:07 ID:KDKASRee [Del]

>>200
the best thing to do is look at the actual 0ch/futaba code to see what they do...

>>201
http://firefly.tor/files/fasttrip.tar.bz2

205 Name: Anonymous : 2006-05-17 14:14 ID:Heaven [Del]

206 Name: !evHPL0.Jzg : 2006-05-18 01:25 ID:G8pNJ2bo [Del]

nnnnnnnnnnnn

207 Name: !XO4pLzfguw : 2006-05-20 22:40 ID:Heaven [Del]

dd

208 Name: Anonymous : 2006-05-22 15:32 ID:q5nsewOw [Del]

>>205 tor routing system, looks like.

209 Name: !WAHa.06x36 : 2006-05-22 16:01 ID:Heaven [Del]

>>206-207

This is not a tripcode testing thread. Use the testing thread over at /sup/ if you really need to.

210 Name: Mr VacBob!JqK7T7zan. : 2006-06-27 00:23 ID:JFHvDw9e [Del]

A friend has been running tripper2ch on his Macbook looking for "MUSASHI" tripcodes for so long it's reached eight character inputs.

All the hoorj bitslice sse stuff up there is way past my ability to care about this, but maybe I should multithread it or look into OpenMP.

(and, man, the Darwin crypt.c I'm using is awful. I still won't change it to something that's wrong, but maybe at least I'll use Free/OpenBSD'sc)

211 Name: Mr VacBob!JqK7T7zan. : 2006-06-27 00:24 ID:JFHvDw9e [Del]

Hey, why can't I use an ellipsis if I post from inside the thread!

………...……

212 Name: Anonymous : 2006-06-27 06:43 ID:KDKASRee [Del]

4brute-johnbs-p5 (that's the prefix-matching one) + john 1.7.2 (Bitslice DES assembly code for x86-64 making use of the 64-bit mode extended SSE2 with 16 XMM registers has been added for better performance at DES-based crypt(3) hashes with x86-64 builds on AMD processors.) = 1211kcps on my 1.6GHz machine :)

213 Name: Mr VacBob!JqK7T7zan. : 2006-06-27 21:40 ID:JFHvDw9e [Del]

I'm sorry to say that no human being can follow all those prepositions.

214 Name: Anonymous : 2006-06-28 18:23 ID:Heaven [Del]

>>212 Was that even english?

215 Name: EleoChan!EhVtXXdTd6 : 2006-06-28 19:38 ID:Heaven [Del]

I feel inadequate and want to take a computer science class.

216 Name: dmpk2k!hinhT6kz2E : 2006-06-28 21:30 ID:Heaven [Del]

Don't worry. People who take computer science classes feel inadequate in the grand scheme of things too.

217 Name: !tCjnBrMXJQ!!CBusuONe : 2006-07-28 20:04 ID:bub3rlhP [Del]

i use tripmona

218 Name: Mr VacBob!JqK7T7zan. : 2006-08-16 20:15 ID:O3Zsn0FH [Del]

I think I'm going to rewrite mine so it uses OpenMP, because OpenMP is pretty cool.

Also I guess it should support modern wakaba and be endian-safe on shiichan. Even though I'm the only one that uses shiichan's.

219 Name: Anonymous : 2006-08-21 11:12 ID:6+cz6mUx [Del]

>>204
I am running Tor, but how do I make it (or Privoxy?) aware of .tor domains?

220 Name: Anonymous : 2006-08-21 20:43 ID:KDKASRee [Del]

221 Name: anon!caRDAn9Ewg : 2006-09-15 22:30 ID:rdjvWTyc [Del]

Someone explain the process for generating tripcodes anyway.

I'm goofing around teaching myself php and want to make a tripcode test script for the hell of it.

222 Name: Albright!LC/IWhc3yc : 2006-09-16 09:59 ID:a2om6aN1 [Del]

That'd be re-inventing the wheel. Here's the (slightly poorly-written) snippet of code from Thorn that generates 2ch-style trips:

    $pos=strrpos($name,"#");
if ($pos!==false) {
$nombre=substr($name,0,$pos);
$trip=substr($name,$pos+1);
//echo($trip);
//2ch-style tripcodes...
//More or less stolen from Futallaby
$salt=substr($trip."H.",1,2);
$salt=ereg_replace("[^\.-z]",".",$salt);
$salt=strtr($salt,":;<=>?@[\\]^_`","ABCDEFGabcdef");
$trip=substr(crypt($trip,$salt),-10)."";
}
else {
$nombre=$name;
$trip="";
}

http://thorn.pichan.org

223 Name: anon!21anon4H3U : 2006-09-16 12:56 ID:Heaven [Del]

The point of re-inventing the wheel is that you understand it better and aren't just copying stuff you saw other people do. As it is I can't make heads or tails of your code.

224 Name: Albright!LC/IWhc3yc : 2006-09-18 01:34 ID:a2om6aN1 [Del]

To tell the truth, I have a hard time following it too. Why? Because (as the comments say) it was lifted with few modifications from another (open-source) PHP image board script. And the guy who wrote that probably transcribed it from another image/message board script written in Perl. So I didn't reinvent the wheel either. But you know what? It works.

I'll write it out a bit

    $salt=substr($trip."H.",1,2);

Take the second and third characters of the trip key with "H." appended to the end of it. This is the "salt."

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

Replace characters that don't match the regular expression [^\.-z] (basically, non-ASCII characters) with a period.

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

Replace a bunch of characters that are ASCII but not letters with letters. Remember that "\\" in this case is an escaped "\".

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

The trip code is the last ten characters of the result of a standard UNIX encryption function, with the trip key and the salt as input. http://us3.php.net/crypt

Wanna rewrite that in your own code? Have fun.

225 Name: !WAHa.06x36 : 2006-09-18 04:53 ID:Heaven [Del]

To get it entirely right, you should probably apped "H.." instead of "H.". Also, you should convert from whatever charset you are using to Shift_JIS before doing anything else.

226 Name: Albright!LC/IWhc3yc : 2006-09-18 10:12 ID:Heaven [Del]

Would conversion to Shift-JIS really make a difference, seeing as it's only working with ASCII characters anyway?

227 Name: WAHa.06x36!H2DERX1Q7c : 2006-09-18 12:57 ID:Heaven [Del]

It's not only working with ASCII characters. It's working with the full 8-bit bytes.

For instance, #kï½ÂÂÂÂÂ�ƒÂƒÃ‚ƒÃ‚ƒÃ‚¯Ã‚½ÂÃ¯Â½ÂÂÂÂÂ� doesn't work if you don't convert to Shift_JIS, and furthermore, tripcodes will change depending on the charset of the board.

228 Name: !WAHa.06x36 : 2006-09-18 12:58 ID:Heaven [Del]

...and now, it's not working here. Seems I've got some fresh new bugs to sort out.

229 Post deleted by user.

230 Name: Albright!AOhZ6OjO7w : 2006-09-20 19:26 ID:a2om6aN1 [Del]

Righteous.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>whee</title>
</head>
<body>
<?php
@header('Content-type: text/html; charset=utf-8');
if (function_exists("mb_internal_encoding")) {
//This server will support multi-byte strings. Unicodey goodness!
mb_internal_encoding("UTF-8");
mb_language("uni");
mb_http_output("UTF-8");
}
error_reporting(E_ALL^E_NOTICE);
if(isset($_POST['nombre'])==true){
$name=explode("#",$_POST['nombre']);
$trip=array_pop($name);
$name=array_pop($name);
$trip=mb_convert_encoding($trip,"SJIS");
$salt=substr($trip."H.",1,2);
$salt=ereg_replace("[^\.-z]",".",$salt);
$salt=strtr($salt,":;<=>?@[\\]^_`","ABCDEFGabcdef");
$trip=substr(crypt($trip,$salt),-10)."";
$trip=mb_convert_encoding($trip,"UTF-8");
?>
<p><?php echo("<strong>".$name."</strong>!".$trip); ?></p>
<?php
}
?>
<form method="post" enctype="multipart/form-data" action="index.php">
<input type="text" size="20" name="nombre" /><input type="submit" />
</form></body></html>

This'll go into Thorn 2.

231 Post deleted by moderator.

233 Post deleted by moderator.

234 Post deleted by moderator.

235 Post deleted by moderator.

236 Post deleted by moderator.

237 Name: Mr VacBob!JqK7T7zan. : 2006-12-27 20:43 ID:pdYGsqpr [Del]

http://astrange.ithinksw.net/tools/trippersrc.zip

Now endian-safe, slightly slower on icc, much faster on gcc.

Switched to FreeBSD crypt() because it's much shorter. Unfortunately also much more bottlenecked in one random-access array lookup that goes to main memory. Didn't switch to the JTR code WAHa sent me because it would ruin my beautifully short program.

Also I forgot to add modern wakaba trips but I'll do it sometime.

This crypt isn't reentrant :(

238 Post deleted by moderator.

239 Post deleted by moderator.

240 Post deleted by moderator.

241 Name: Anonymous : 2007-01-08 20:36 ID:Heaven [Del]

>>237
freebsd crypt() is faster than openssl crypt on my laptop (turion, 64-bit freebsd), but it's slower on the machine i'm using now (pentium 3, 32-bit freebsd)... i wonder why?

242 Name: !SpoyguowHY : 2007-01-30 15:14 ID:bDIsisqc [Del]

This thread has blown my mind.

243 Name: Anonymous : 2007-03-10 22:58 ID:xUjE//AS [Del]

>>237

I'm an internet dumbass and a computer illiterate; how do I even run that program?

244 Name: Anonymous : 2007-03-11 10:14 ID:Heaven [Del]

245 Name: Anonymous : 2007-03-12 10:29 ID:Heaven [Del]

>>243
I am by no means a linux/unix expert, but I assume that you compile it by running "build.sh" script and run the executable from the command line?

246 Name: Anonymous : 2007-03-27 14:14 ID:FJyWesxi [Del]

>>245
yeah no problem if it would even build on my end

tripper.c:23:28: error: mach/mach_time.h: No such file or directory
tripper.c:23:28: error: mach/mach_time.h: No such file or directory
In file included from tripper.c:28:
sha1.c: In function earray_swapf:
sha1.c:96: warning: implicit declaration of function ehtonlf
tripper.c:23:28: error: mach/mach_time.h: No such file or directory
tdict.c: In function emainf:
tdict.c:108: warning: implicit declaration of function efgetlnf
tdict.c:108: warning: assignment makes pointer from integer without a cast
/tmp/ccQVniCX.o: In function `main':
tdict.c:(.text+0xcce): undefined reference to `fgetln'
collect2: ld returned 1 exit status

247 Name: Anonymous : 2007-03-28 07:29 ID:S0jb7OoQ [Del]

>>246

redownload

I'm not going to bother rewriting tdict to use getline() just because glibc is crazy though :(

248 Name: Anonymous : 2007-03-31 08:16 ID:tuBmA1gg [Del]

'

249 Name: Ilsambärd!YEAH.5Mbyc : 2007-04-05 12:56 ID:eUQeiaBZ [Del]

hay guyz, wuts goin on in dis tread?

I'd kill or die for a windows version of a decent tripcode decoder. Failing that, instructions for an idiot. I like YEAH but I'd like to make more. This was a pain in the ass to get.

<3

250 Name: !oTLVIPr/s. : 2007-04-06 07:28 ID:7o1GNZZJ [Del]

251 Name: Anonymous : 2007-04-06 15:05 ID:qJHsHfeE [Del]

FBI has deleted all links... how sad

252 Name: whack!m1DHNJT5H. : 2007-04-06 18:58 ID:qJHsHfeE [Del]

>>250
aww man, got a linux version?

254 Name: whack!m1DHNJT5H. : 2007-04-08 08:17 ID:qJHsHfeE [Del]

>>253
why, thank you kind sir

255 Name: Anonymous : 2007-04-28 21:51 ID:JmAOTejb [Del]

>>250

So.. how does this work? All I get is a command prompt spamming with tripcodes and what they convert into, but doesn't seem to dump anywhere that I can see.

256 Name: Anonymous : 2007-04-29 09:53 ID:Heaven [Del]

>>255
trip <string> to find tripcodes containing <string> (case insensitive)
trip -c <string> to find tripcodes containing <string> (case sensitive)

there's also http://hotaru.thinkindifferent.net/fasttrip-regex.tar.bz2, which supports regexes.

257 Name: Anonymous : 2007-05-09 02:07 ID:cJf0cKNN [Del]

>>256
What? Where do I put that?
In a txt file or something?

258 Name: Anonymous : 2007-05-09 05:14 ID:Heaven [Del]

lol, wow

259 Name: Anonymous : 2007-05-09 05:30 ID:Heaven [Del]

>>257

  1. press windows key+r
  2. type cmd
  3. press enter
  4. ???
  5. profit!!!

260 Name: Anonymous : 2007-05-10 15:49 ID:338suRr9 [Del]

This shit's useful ~desu

261 Post deleted by user.

262 Name: Anonymous : 2007-05-20 12:23 ID:aEvVXGs6 [Del]

trip -c <ROFLCOPTER>

263 Name: Ted!c0RBin.rN. : 2007-05-20 18:03 ID:G8Du7Gan [Del]

XD

Thanks, dude!

264 Name: Anonymous : 2007-06-04 02:04 ID:Ha6vCBxW [Del]

I found a tripcode that I've been looking for with Tripper+. However, it uses a non-standard character, "¼". Is there something that will convert that character into either kanji or a standard numeral or letter?

Thanks in advance.

265 Name: Anonymous : 2007-06-04 06:11 ID:IqpFg6Cr [Del]

>>264
¼ = U+00BC
0xBC in Shift-JIS = U+FF7C (http://wakaba-web.hp.infoseek.co.jp/table/sjis-0208-1997-std.txt)
U+FF7C = ¼

266 Name: !SEXwNEvaDA : 2007-06-04 06:16 ID:Heaven [Del]

>>265
oh, and now i know how to make this tripcode work ^^

267 Name: Anonymous : 2007-06-04 11:54 ID:Ha6vCBxW [Del]

>>265
Thanks a lot. Unfortunately, my trip's still not working, though.

268 Name: !SEXwNEvaDA : 2007-06-04 20:39 ID:Heaven [Del]

>>267
it might have other characters you need to convert...
or if it has any of the characters that are converted to html entities (i think just ,<>"'&) it might not work at all... i'm not sure if tripper+ handles those correctly...

269 Name: Anonymous : 2007-06-05 09:35 ID:Ha6vCBxW [Del]

>>268
There's a ~ and / in it, but I don't think those would pertain to HTML entities.

270 Name: Anonymous : 2007-06-05 11:37 ID:Heaven [Del]

>>269
where are you trying to use it? if it doesn't contain any of the characters mentioned in >>268 and you've converted any characters that aren't the same in unicode and shift-jis it should work on wakaba and kareha boards.
futallaby and shiichan (at least the versions used on 4chan) are apparently horribly broken wrt tripcodes.

271 Name: Anonymous : 2007-06-05 12:07 ID:Ha6vCBxW [Del]

>>270
I've tried at 4chan. Haven't here, yet.

272 Name: !SEXwNEvaDA : 2007-06-05 12:36 ID:Heaven [Del]

ok, apparently such tripcodes can be made to work on 4chan.
you just have to set the character encoding to shift-jis before you post.

273 Name: Anonymous : 2007-06-05 16:43 ID:wPcVChyI [Del]

> futallaby and shiichan (at least the versions used on 4chan) are apparently horribly broken wrt tripcodes.

they're interpreted as utf-8, except on /sjis/ where they aren't. official policy is to not fix this because we hate people who use tripcodes.

274 Name: test!!LURmbEuJ : 2007-06-07 14:52 ID:7vWVVPZ3 [Del]

sage lol

This thread has been closed. You cannot post in this thread any longer.