IRC Logs

2008 8
Mo Tu We Th Fr Sa So
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31

26. 08 2008

[00:03:32] <tux21b> it's a bit faster, but your apache becomes extremely big (because the application is embedded directly) and then forking takes longer, if you also serving static files etc.
[00:03:58] <tux21b> just try out some different configurations, maybe you find a good one :)
[00:08:50] <dennda> ok thanks tux21b, I will do that :-)
[00:11:50] * Kaelten has quit IRC
[00:12:02] * delroth has quit IRC
[00:37:21] <ronny> mitsuhiko: sup about the web based translation app ?
[00:42:25] * izibi has quit IRC
[00:49:48] * aconbere has joined #pocoo
[00:56:00] * delroth has joined #pocoo
[01:20:13] * lakin has quit IRC
[01:29:12] <prencher> mitsuhiko - ping?
[01:37:38] * highwaychile has quit IRC
[01:40:14] * M3ntor5 has joined #pocoo
[01:41:26] * empty has quit IRC
[01:41:47] * empty has joined #pocoo
[01:55:46] * dottedmag has quit IRC
[02:03:17] * brodie has joined #pocoo
[02:04:39] <brodie> is there a reason PythonTracebackLexer in pygments doesn't handle tracebacks that don't start with "Traceback (most recent call last):"? syntax errors don't include this
[02:06:42] <brodie> KeyboardInterrupts from an empty python prompt also don't include it (the formatted exception is just "KeyboardInterrupt\n")
[02:07:32] <davidcramer> omfg who do you have to pay to not get telephone spam
[02:07:38] <davidcramer> i already paid for the most expensive type of unlisted number
[02:07:43] <davidcramer> and the phone is 1 week old
[02:07:47] <davidcramer> and ive gotten 5 spam calls today..
[02:11:08] <empty> davidcramer: put your name on the national registry
[02:11:10] <empty> do not call list
[02:11:14] <davidcramer> i did but that takes a month
[02:11:19] <davidcramer> im going to call and kill thye phone company tomorrow
[02:11:23] <empty> right
[02:11:38] <davidcramer> theres no need to pay extra money for an unpublished number thats supposed to have been blackholed from the spam shit and then i get 5 in one day
[02:12:49] <davidcramer> basically im paying $60 for a home phone line just so people can buzz our door here
[02:13:02] <davidcramer> id rather just not pay $60 if im gonna have a ringing phone all day long
[02:14:00] <empty> cell phones are better
[02:16:23] <davidcramer> i have 2 -.-
[02:29:34] <thatch> brodie: I'm sure that is an oversight... although now that I look at it, SyntaxError is a little more difficult to catch
[02:33:21] <brodie> i looked at making a patch but the stack usage threw me off
[02:34:08] <brodie> i'm not sure why the lexer needs to handle multiple tracebacks for one input though
[02:37:10] <thatch> I don't have a good reason for why it _shouldn't_ handle multiple, actually
[02:37:40] <thatch> the stack stuff is no big deal -- the last arg on that root token ('intb') is the next group to go to, and the '#pop' signifies "when this matches, go back."
[02:38:04] <thatch> we'll need to adjust some of the patterns as well, SyntaxError doesn't have a function that it's in
[02:39:39] <brodie> the keyboardinterrupt thing isn't really an issue, but i mentioned it in the report i just filed for the sake of completeness
[02:40:05] <brodie> i'm using pygments and sys.excepthook to highlight tracebacks in my python prompt
[02:40:08] <thatch> oh, already a ticket. thanks!
[02:40:47] * dennda celebrates the removal of mod_php
[02:45:13] <brodie> thatch: i added a comment about it adding newlines after plus signs. i'm not sure why it does that
[02:47:19] <thatch> brodie: yeah, that's an artifact of the misparse. I have a working version here, one sec...
[02:52:58] <thatch> brodie: http://code.timhatch.com/hg/pygments-tim/rev/1b0be8c5b60d
[03:06:03] <brodie> thatch: it doesn't highlight quite the same. the ^ marker and everything past it is highlighted red/underlined
[03:08:18] <thatch> brodie: can you provide a snippet which does that? It works fine for me with the ones you pasted
[03:08:45] <thatch> (in addition, I added them as examplefiles, if you want to run 'make test' after pulling from my repo)
[03:11:21] <brodie> ">>> +"
[03:11:28] <brodie> it still adds the extra newline as well
[03:11:44] <brodie> it's just screwing up on code ending with plus signs
[03:15:52] <thatch> brodie: works for me... http://timhatch.com/ex/2008/08/plus.html
[03:16:11] <brodie> i'm using the PythonTracebackLexer directly, on just the traceback
[03:17:38] <brodie> http://brodierao.com/etc/tb.png
[03:19:13] <brodie> the string is ' File "<stdin>", line 1\n +\n \n^\nSyntaxError: invalid syntax\n'
[03:19:23] <thatch> ok one sec, trying...
[03:20:50] <brodie> you don't have pygments enabled on your hgweb instance? for shame
[03:21:20] <thatch> brodie: I'm actually mostly a bzr user... I don't follow hg development much. Got a url?
[03:21:56] <brodie> http://www.selenic.com/mercurial/wiki/index.cgi/HighlightExtension
[03:22:16] <brodie> you'll have to put that in the hgrc for the user running hgwebdir, or in /etc/mercurial/hgrc
[03:22:28] <brodie> actually, it's just highlight =
[03:22:38] <brodie> no hgext
[03:22:41] <thatch> ok
[03:26:03] <thatch> I can reproduce the issue, one sec.
[03:26:14] <brodie> actually, i think you might be good. i think something is wrong with how i'm using format_exception
[03:26:34] <brodie> there's actually a newline before the ^ there, which i didn't notice
[03:27:06] <pjenvey_> brodie - what does your sys.excepthook look like? i'd actually like to try it just for myself =]
[03:27:27] <brodie> it's buried in here: http://bitheap.org/hg/dotfiles/file/54251389cd2e/.pythonrc.py
[03:27:38] <brodie> line 120
[03:28:02] <brodie> there are a lot of other goodies in there as well, actually
[03:33:25] <thatch> brodie: yeah, your string looks slightly incorrect. With the string generated by Python itself, it works normally with my fix.
[03:33:31] <brodie> it looks like that's a bug in traceback.format_exception_only
[03:33:31] <thatch> Also thanks for the highlight info. Now enabled :)
[04:31:04] <brodie> thatch: i filed a bug report if you're curious about that plus sign thing http://bugs.python.org/issue3684
[04:48:27] * Crast has joined #pocoo
[04:58:19] * Crast has quit IRC
[05:21:01] * M3ntor5 has quit IRC
[07:20:20] * robart has joined #pocoo
[07:20:27] * robart has left #pocoo
[08:00:44] * pjenvey_ has quit IRC
[08:27:29] <prencher> mitsuhiko -pingpong
[08:43:09] * EnTeQuAk has joined #pocoo
[09:06:20] * davidcramer_ has joined #pocoo
[09:06:20] * davidcramer has quit IRC
[09:07:06] * davidcramer_ has quit IRC
[09:09:10] * Tik-Tok has quit IRC
[09:24:12] <asmodai> morn prencher
[09:31:37] <prencher> morgen
[09:32:40] <birkenfeld> guten morgen!
[09:42:11] <prencher> i really want to dislike appengine, but the more i dig into the datastore and how to effectively work with it, the more i like it
[09:42:12] <prencher> oh well
[09:42:44] <prencher> (dislike it in the sense that i can dismiss it as being crappy and get on with it)
[09:52:54] <ronny> moin
[10:05:37] * highwaychile has joined #pocoo
[10:26:38] <asmodai> mmm
[10:26:43] <asmodai> Firebug 1.2.0 released
[10:26:54] <asmodai> heya birkie
[10:32:07] <prencher> asmodai - 1.2.0bX has been pretty rocksolid so no big deal really
[10:32:15] <asmodai> just sayin'
[10:32:22] <asmodai> don't go hatin'
[10:32:24] <asmodai> :P
[10:36:35] <prencher> you best be steppin'
[10:43:27] * asmodai steps to the side
[10:43:38] <mitsuhiko> prencher: pong
[10:43:53] <mitsuhiko> does anyone remember race condition like bugs with cpickle?
[10:46:45] <ronny> mitsuhiko: sup about the online translation app you wrote?
[10:49:45] * EnTeQuAk has quit IRC
[10:53:10] <prencher> mitsuhiko - do you know of a way to make werkzeugs debugger work under app engine? lack of ast module being the problem
[10:53:30] <prencher> or a django style non-interactive renderer?
[11:06:53] <mitsuhiko> prencher: it won't work for too many reasons
[11:07:05] <mitsuhiko> starting with the fact that the next request goes to a different maschine
[11:07:20] <mitsuhiko> ronny: kan has to decide when it's the right time to release it
[11:07:24] <mitsuhiko> i don't have control over that
[11:08:01] <prencher> mitsuhiko - figured; could you make a simple version of the debugger that just displays the stacktraces using the werkzeug layout?
[11:08:06] <prencher> or does that too depend on the ast?
[11:08:28] <mitsuhiko> that's possible
[11:08:34] <mitsuhiko> if i have some time again i'll do taht
[11:08:50] <prencher> SimpleDebuggedApplication or some such
[11:09:35] <prencher> what are you up to lately anyway that's sucking all your precious werkzeug time away? :p
[11:10:58] <mitsuhiko> prencher: inyoka
[11:11:56] <prencher> pfft, spend the 15 minutes and make me a happy man!
[11:11:59] <prencher> asmodai doesn't put out anymore
[11:12:06] <asmodai> eh?
[11:12:21] <asmodai> prencher: he's doing C#, or rather Mono
[11:12:22] <prencher> see, even pretending to not know
[11:14:40] <asmodai> <-- ignorant and happy
[11:21:23] * izibi has joined #pocoo
[11:31:44] * izibi_ has joined #pocoo
[11:45:17] * izibi_ has quit IRC
[11:48:35] * izibi has quit IRC
[11:54:52] * izibi has joined #pocoo
[13:32:38] <mitsuhiko> http://www.red.com/skin/img/gallery-still/005831.jpg
[13:32:45] <mitsuhiko> incredible stuff
[13:32:53] <mitsuhiko> http://www.red.com/skin/img/gallery-still/012916.jpg
[13:33:01] <mitsuhiko> (that's the red one camera)
[13:34:38] <maze> military re-enactment?
[13:35:23] <apollo13> it looks more like a weapon than a camera: http://www.red.com/accessories :)
[13:36:04] <maze> I don't think the images look that great tbh
[13:37:05] <mitsuhiko> apollo13: it's not exactly a handycam
[13:37:30] <apollo13> lol
[13:37:47] <mitsuhiko> but with 17.000$ for the body the cheapest camera you can get for cinema productions at 4k*2k
[13:38:11] <mitsuhiko> and heck. at 3k*something you can shoot with 60fps and at 2k*1k with 120
[13:47:21] <dennda> tux21b: Heya. I switched to worker yesterday rather than prefork and imho that made it quite a bit faster already. I will play with the settings and use that other daemon mode you suggested to tweak it to the maximum :-)
[14:10:46] * prencher^ has joined #pocoo
[14:16:26] <prencher^> dear god mitsuhiko, they applied that horrid frontpage sourceforge design to project pages
[14:27:00] * prencher has quit IRC
[14:52:54] <ronny> hmm, couchdb kicks ass
[14:57:31] <asmodai> yours?
[15:04:26] <aa_> ronny: at last :)
[15:04:56] <asmodai> prencher^: dear god mitsuhiko? A bit too much honour? ;)
[15:06:00] <ronny> aa_: now all i have to figure how to do advanced views, i figured various simple things
[15:06:16] <aa_> ronny: perhaps I can help, I did some evil things with views
[15:06:35] <aa_> ronny: mainly you can just have complext view keys
[15:06:49] <ronny> aa_: see the counchdb channel for my issue ;P
[15:08:45] <aa_> ronny: see the couchdb channel for your solution :P
[15:08:49] <asmodai> lol
[15:09:50] * Kaelten has joined #pocoo
[15:10:00] <asmodai> avoy Kaelten
[15:10:11] * Kaelten has quit IRC
[15:10:35] <asmodai> bye kaelten
[15:10:55] * Kaelten has joined #pocoo
[15:11:06] <asmodai> hi Kaelten
[15:11:11] <asmodai> :P
[15:11:26] <asmodai> birkenfeld: Envy and Spite, remains a funny story
[15:11:45] <asmodai> birkenfeld: and yes, the relationships are starting to make me go "huh?" too
[15:12:56] <Kaelten> bah
[15:12:57] <Kaelten> heya
[15:12:59] <Kaelten> I don't know why but if I don't plug in my charger my connection to irc if flakey
[15:13:11] <asmodai> your charger? for what? Your iPhone?
[15:18:18] * brodie has quit IRC
[15:35:49] <mitsuhiko> asmodai: we need a name for textpress
[15:36:04] <asmodai> mitsuhiko: I thought I had a wonderful one a while ago :(
[15:37:01] <mitsuhiko> asmodai: Intaglio?
[15:37:06] <asmodai> yes
[15:37:23] <mitsuhiko> what was the meaning of it again?
[15:37:28] <asmodai> http://en.wikipedia.org/wiki/Intaglio_(printmaking)
[15:39:06] <Kaelten> Isn't that the printing presses used by the US treasury ?
[15:39:12] <aa_> call it something fun, like "Blogasmatron"
[15:39:25] * asmodai eyes aa_
[15:39:33] <aa_> although "Intaglio" is a very good name
[15:40:08] <mitsuhiko> asmodai: because it's listed after "movable type"? :D
[15:40:12] <asmodai> mitsuhiko: :D
[15:40:18] <asmodai> mitsuhiko: Don't you love the irony?
[15:40:28] <mitsuhiko> Kaelten: ah. the german name for that is totally different
[15:40:31] <mitsuhiko> it's "Tiefdruckverfahren"
[15:40:47] <asmodai> mitsuhiko: you can always call it 'serigrafie' :P
[15:40:49] <aa_> hah, can I suggest that is a particularly bad naem :)
[15:40:50] <mitsuhiko> asmodai: without a doubt the best suggestion so far
[15:41:05] <mitsuhiko> aa_: no. i won't call it tiefdruckverfahren :P
[15:41:13] <asmodai> rofl
[15:41:45] <aa_> actually TextPress is a good name
[15:41:52] <mitsuhiko> aa_: i hate it
[15:41:58] <mitsuhiko> a) sounds like wordpress
[15:42:01] <mitsuhiko> b) sounds like textpattern
[15:42:13] <mitsuhiko> c) not very fancy
[15:42:28] <asmodai> textpattern is a blog system too?
[15:42:37] <Kaelten> ya Intaglio is the type of printing press, or rather the us treasury's presses use that method.
[15:42:43] <mitsuhiko> the norsk version is awesome: "Dyptrykk"
[15:42:43] <asmodai> Imagine the fun with serif fonts and the Intaglio logo!
[15:42:51] <asmodai> deep trick ;)
[15:43:08] <asmodai> I guess Dutch would be diepdruk
[15:43:11] <Kaelten> well you'd want it to look slightly raised in the logo imho
[15:43:17] * dennda opts for dyptrykk
[15:43:17] <mitsuhiko> """Trykkfargen blir smurt ned i platen og ligger nede i platens fordypninger (graveringen), mens platens høyeste parti er tørket av (uten farge)."""
[15:43:21] <mitsuhiko> that sounds soo awesome
[15:43:21] <Kaelten> if you go with intaglio
[15:43:33] <aa_> well, just for the record farsi is "chup"
[15:43:41] <asmodai> aa_: which means 'shut up' in hindi
[15:43:49] <plaes> Estonian is kirjapress ;)
[15:43:49] <aa_> heh
[15:44:07] <mitsuhiko> plaes: really?
[15:44:20] <aa_> Blogasmatron
[15:44:30] <mitsuhiko> blogasm
[15:44:48] <dennda> Blogasmatron transforms tooooo... Megablogospherotron!
[15:44:50] <plaes> well, exact word is actually "Sügavtrükk" :)
[15:46:04] <saptah> Why not some spanish word? o catalan word? :)
[15:46:12] <asmodai> saptah: Suggestions welcome
[15:46:17] <asmodai> but then I'll throw in Portuguese :P
[15:46:26] <saptah> ouch
[15:46:36] <asmodai> Eu valo um poco portugues!
[15:46:47] <saptah> I'm not :)
[15:46:53] <mitsuhiko> all names here: http://dev.pocoo.org/projects/textpress/wiki/NewNameSuggestions
[15:46:55] <aa_> call it "Djournal" and tell everyone its written in django
[15:47:24] <asmodai> We can always use Thai of Tieng Viet }:)
[15:47:33] * Kaelten has quit IRC
[15:47:53] <plaes> TextZeug :)
[15:48:01] <asmodai> WerkPress?
[15:48:03] <aa_> hah
[15:48:09] <asmodai> We call it:
[15:48:12] <asmodai> Mitsuhiko!
[15:48:12] <mitsuhiko> asmodai: the other way round
[15:48:14] <mitsuhiko> presswerk
[15:48:22] <ronny> how about
[15:48:22] <asmodai> Pressepapier
[15:48:30] <plaes> too long ^^
[15:48:31] <asmodai> (aka: paperweight)
[15:48:41] <ronny> 日記 <- can anyone read that, i made google translate diary to japanese
[15:48:53] <aa_> I just thought "FrontPage" ;)
[15:49:03] <asmodai> ronny: nikki
[15:49:03] * ronny stabs aa
[15:49:16] <asmodai> ronny: that's how you read it
[15:49:17] <asmodai> nik'ki
[15:49:22] <mitsuhiko> no. not japanese again
[15:49:28] <asmodai> にっき
[15:49:39] <ronny> or ウェブログ
[15:49:45] <plaes> zurnal ?
[15:49:46] <asmodai> mitsuhiko: and what's wrong with Japanese?
[15:49:58] <mitsuhiko> asmodai: nituki?
[15:50:13] <asmodai> mitsuhiko: small tsu, not pronounced
[15:50:26] <asmodai> causing a repeat of the following sound
[15:50:26] <ronny> how about "dagbok"
[15:50:29] <asmodai> in this case: k
[15:50:43] <asmodai> mitsuhiko: so nikki (nik'ki)
[15:50:49] <mitsuhiko> ah
[15:50:50] <aa_> mitsuhiko: I added Blogasm to the page, I think it's the best one so far
[15:51:04] <asmodai> ronny: weburogu
[15:51:05] <asmodai> ronny: heh
[15:51:07] <aa_> even better than intaglio!
[15:51:13] <asmodai> aa_: Bah
[15:51:16] <plaes> rosebook?
[15:51:19] <asmodai> You and the silly name
[15:51:21] <saptah> maybe a saturn satellit?
[15:51:32] <ronny> المفكره
[15:51:33] <aa_> "intaglio" sounds like a spell from Harry Potter
[15:51:38] <aa_> "Untanglio!"
[15:51:43] <mitsuhiko> "Inside Job" --- it's an inside job, wake up sheeple
[15:51:51] <plaes> "bläg" ?
[15:51:51] <asmodai> meeeh
[15:51:54] <mitsuhiko> plaes: haha
[15:55:36] * Kaelten has joined #pocoo
[16:03:33] <dennda> http://purgatorydesign.com/Intaglio/
[16:05:03] <asmodai> nice
[16:05:27] <dennda> May not be such a good idea
[16:05:45] <dennda> I mean, you can call it windows or vista too, but... :-)
[16:05:45] <asmodai> That never stopped us before.
[16:06:56] <dennda> "before"?
[16:07:18] <asmodai> *grin*
[16:07:29] <mitsuhiko> recent inkscape owns intaglio
[16:07:49] <mitsuhiko> recent inkscape versions are actually owning older illustrator versions already
[16:12:15] * |[diecast]| has joined #pocoo
[16:12:22] * [diecast] has quit IRC
[16:14:46] <dennda> http://bloggasm.com/
[16:14:50] <asmodai> rofl
[16:14:54] <dennda> not /so/ unique after all :)
[16:15:25] <mitsuhiko> asmodai: japanese have rtl right? but not for all glyphs or how does that work?
[16:15:56] <asmodai> in general they tend to have three forms
[16:16:06] <asmodai> western like: ltr, top to bottom
[16:16:19] <asmodai> traditional writing: rtl, top to bottom
[16:16:27] <mitsuhiko> kanji is written rtl?
[16:16:35] <asmodai> and old style signs and the like: rtl
[16:16:41] <asmodai> generally only one line
[16:17:01] <mitsuhiko> asmodai: and the common form on the web is left to right?
[16:17:03] <asmodai> sorry, traditional: top to bottom, rtl
[16:17:15] <asmodai> mitsuhiko: yes
[16:17:28] <asmodai> so you would see:
[16:17:31] <asmodai> 相思相愛
[16:17:41] <asmodai> old style:
[16:17:45] <asmodai>
[16:17:48] <asmodai>
[16:17:49] <asmodai>
[16:17:51] <asmodai>
[16:18:00] <asmodai> and moving < --------
[16:18:21] <mitsuhiko> i se
[16:18:22] <mitsuhiko> *see
[16:18:34] <asmodai> mitsuhiko: http://www.istockphoto.com/file_thumbview_approve/3292401/2/istockphoto_3292401_japanese_writing.jpg
[16:18:45] <asmodai> mitsuhiko: you'd start upper right, then go down the column
[16:18:54] <asmodai> mitsuhiko: then move one left, top to bottom, undsoweiter
[16:19:02] <mitsuhiko> haha. undsoweiter :D
[16:19:05] <asmodai> :)
[16:19:18] <asmodai> hence most manga are also read starting at what is for us the last page
[16:19:30] <asmodai> and also read from rtl, top to bottom for the image
[16:19:38] <dennda> umm
[16:19:44] <dennda> is that true?
[16:19:55] <asmodai> dennda: what part?
[16:20:09] <dennda> I think you start at the "last" page, top to bottom, left to right _on that page_
[16:20:12] <dennda> I have one here, lemme check
[16:20:37] <mitsuhiko> dennda: yes? don't tell me you read it the other way round
[16:20:38] <mitsuhiko> ^^
[16:21:04] <mitsuhiko> although, some publishers in germany reverse some mangas
[16:21:25] <asmodai> http://www.onemanga.com/Naruto/413/01/
[16:21:27] <dennda> oh in deed
[16:21:28] <dennda> I was wrong
[16:21:39] <asmodai> the one with wheeee is first
[16:21:40] <dennda> Maybe that is why I always thought they were weird
[16:21:43] <asmodai> then the guy rushing to him
[16:21:48] <asmodai> then the bumps on his arm
[16:21:59] <asmodai> then the leg, then the arm/shoulder
[16:22:08] <asmodai> and then the one with the tentacle thingh or whatever
[16:22:31] <asmodai> But I would not be surprised if they 'fix' it for the western market
[16:22:59] <dennda> hm yes, you are right
[16:23:01] <mitsuhiko> asmodai: most mangas you buy here have the original layout preserved
[16:23:10] <asmodai> dennda: I read enough Japanese on a daily basis. ;)
[16:23:13] <mitsuhiko> they just do it for some where it's a) possible and b) the audience doesn't get it
[16:23:16] <asmodai> I remember this temple
[16:23:22] <asmodai> which was old style
[16:23:25] <asmodai> and thus had:
[16:23:39] <asmodai> 愛相思相 instead of 相思相愛
[16:23:58] <asmodai> confused me at first until my ex pointed it out to me
[16:26:19] * brodie has joined #pocoo
[16:27:18] * jinks has quit IRC
[16:33:02] * jinks has joined #pocoo
[16:34:41] * en0x has joined #pocoo
[16:34:50] <en0x> hi is there a way to wrap lines in pasted code?
[16:35:03] <en0x> because right now i have long lines and i have to scroll left to see it
[16:36:15] <mitsuhiko> en0x: textpress? lodgeit? any pygments powered application?
[16:36:26] <mitsuhiko> please name the project you are referring to :)
[16:36:29] <en0x> pygments
[16:36:37] <en0x> i use pygments as a highlight engine
[16:36:40] <en0x> and the project is my own
[16:36:43] <en0x> www.wklej.org
[16:36:50] <mitsuhiko> pygments outputs html
[16:36:53] <mitsuhiko> how you display that is up to you
[16:37:04] <mitsuhiko> there are multiple css whitespace rules you can play with
[16:37:09] <mitsuhiko> white-space: pre-wrap exisits
[16:37:15] <mitsuhiko> and various hacks for ie and older browsers
[16:37:21] <en0x> oh I see
[16:37:26] <en0x> but well
[16:37:33] <en0x> when I use wrap in my pre in css
[16:37:41] <en0x> my line numbers get messed up
[16:37:42] <en0x> :}
[16:37:50] <mitsuhiko> yes
[16:38:04] <mitsuhiko> for that you would have to subclass the pygments html formatter to use tables or something
[16:38:21] <mitsuhiko> but then copy/paste breaks too
[16:38:27] <en0x> yap
[16:38:52] <en0x> i got to look at gnashi and see how it brakes the lines so maybe i can do something similar
[16:40:15] <en0x> ok it uses li to number lines but then copy and paste brakes
[16:40:15] <en0x> hehe
[16:43:12] <en0x> so i'm thinking about using ul instead of li
[16:43:12] <en0x> hmm
[17:07:49] * EnTeQuAk has joined #pocoo
[17:24:44] * Tik-Tok has joined #pocoo
[17:37:04] * izibi has quit IRC
[17:38:10] <mitsuhiko> asmodai: and what logo would you pick for intaglio?
[17:40:47] * izibi has joined #pocoo
[17:49:57] <dennda> just take the one from the mac app :-)
[17:52:05] <mitsuhiko> pah
[17:53:00] <mitsuhiko> woa. awesome cover: http://www.youtube.com/watch?v=rxlHRbi1wT4
[17:53:00] <dennda> Intaglio, SimpleImageViewer, ImageDroplet, and X-Droplet are trademarks of Purgatory Design.
[17:53:11] <dennda> careful, registered trademark...
[17:54:56] <mitsuhiko> dennda: they don't have a trademark on a blogging software
[17:55:00] <mitsuhiko> so that doesn't really matter i suppose
[17:55:59] <dennda> I am not a lawyer, just want to make you aware of it
[17:57:59] <dennda> pochoir? definitely web2.0ish :-)
[17:58:11] <mitsuhiko> i assure you intaglio makes less problems than blogasm
[17:58:39] <dennda> hehe, at least on planet ubuntu, yes :-)
[18:13:02] <ronny> re
[18:14:32] * leifkb has quit IRC
[18:17:19] <mq> I wonder where they registered that Intaglio trademark, a bit of internet research revealed nothing about it (although that name is trademarked in several fields, especially in the US. But none of those should affect a blogging software)
[18:18:02] <mq> I like that name, btw :)
[18:25:10] <asmodai> mitsuhiko: mmm
[18:29:01] <plaes> I wonder who remembers name like 'intaglio' ?
[18:31:46] <dennda> hey that's what google's for :-)
[18:31:55] <dennda> I like the name
[18:32:10] <dennda> (although it makes me hungry for noodles)
[19:10:17] <aa_> still on the name, eh
[19:10:39] <aa_> dennda: I doubt anyone will complain about the name, it's rather harmless
[19:16:03] <dennda> aa_: [ ] You know how easily some guys on the intarweb feel offended
[19:17:47] <aa_> I am more worried people might think its a blog written in ASM
[19:19:37] <dennda> haha
[19:19:50] <dennda> it'd be faster then
[19:20:19] * leifkb has joined #pocoo
[19:25:45] * EnTeQuAk has quit IRC
[19:34:38] <asmodai> plaes: Italians
[19:35:54] * leifkb has quit IRC
[19:36:39] * leifkb has joined #pocoo
[19:52:18] * leifkb_ has joined #pocoo
[20:01:08] * pete__c has quit IRC
[20:01:34] * pete__c has joined #pocoo
[20:06:53] * leifkb has quit IRC
[20:08:02] * davidcramer has joined #pocoo
[20:08:23] * pete__c has quit IRC
[20:20:17] * pete__c has joined #pocoo
[20:22:37] * boink__ has joined #pocoo
[20:26:25] * leifkb_ has quit IRC
[20:30:17] <birkenfeld> moin mitsuhiko
[20:30:28] <mitsuhiko> hiho birkenfeld :)
[20:30:35] <mitsuhiko> you don't happen to have a funky name for textpress?
[20:30:54] <birkenfeld> hmm
[20:31:24] <birkenfeld> nope
[20:31:58] * birkenfeld just cloned the new Python hg repo
[20:32:05] <birkenfeld> what do you think how long it took?
[20:33:04] <plaes> 5 hours?
[20:33:12] <birkenfeld> I said hg :)
[20:33:16] <birkenfeld> it's 1.5
[20:33:23] <birkenfeld> ... minutes
[20:34:29] * raz has quit IRC
[20:34:29] * boink__ is now known as raz
[20:35:01] <birkenfeld> mitsuhiko: btw, hgext.interhg is nice
[20:35:22] <mitsuhiko> birkenfeld: interhg?
[20:35:30] <mitsuhiko> is that new?
[20:35:39] <birkenfeld> don't think so
[20:35:47] <birkenfeld> it makes the #358 link in http://dev.pocoo.org/hg/pygments-main/rev/3fc5de71c1dd
[20:36:41] <birkenfeld> bzr branch took 9:20, btw
[20:36:56] <mitsuhiko> ah
[20:37:03] <mitsuhiko> but bzr is a lot faster nowadays
[20:37:19] <mitsuhiko> birkenfeld: is the hg repository synched?
[20:37:26] <birkenfeld> yes
[20:37:30] <birkenfeld> I'm using bzr 1.5
[20:37:30] <mitsuhiko> in both directions?
[20:37:44] <birkenfeld> don't think it is in the "other" direction
[20:38:37] <ronny> birkenfeld: interhg?
[20:39:21] <birkenfeld> ronny: it replaces regexes in commit mss
[20:39:30] <ronny> ah, i see
[20:39:38] <ronny> nice
[20:39:46] <mitsuhiko> smurf found a wtf in smf:
[20:39:56] <mitsuhiko> they do this:
[20:39:56] <mitsuhiko> $test = @shell_exec('host -W 1 ' . @escapeshellarg($ip));
[20:40:09] <ronny> lol
[20:40:10] <mitsuhiko> and this if host is missing:
[20:40:11] <mitsuhiko> $host = @gethostbyaddr($ip);
[20:40:19] <mitsuhiko> reasoning: they can define a timeout