| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Comments:
<0> any daft punk fans? <0> http://sonictransfer.com/b***-sequencing-tricks-from-daft-punk.shtml <1> hax, that's a very cool article <1> whether you like darf punk or not <0> heh <0> well, it doesnt do much good if you dont know the funky b***line <0> W_: i'm trying to get into production... but what's actually happening is i'm getting into listening to IDM and reading articles about how stuff is produced <0> W_: i bought this pair of monitors not too long ago, and it entirely changed the way i look at music <2> http://www.youtube.com/watch?v=zBYQDQM8l3k <0> KimmoA: i'm not really down with elvis <2> Why not? <0> never liked him <2> !! :( <0> KimmoA: oh, but did you see that story out of sundance today? <2> What story? :S <0> KimmoA: about the loli raep movie?
<2> Wikipedia's rel="nofollow" evilness? <2> :O <2> No... Link?! <0> KimmoA: ehh, google it... movie is called hounddog or something <0> should be all over google news <0> was on cnn today <0> fail <2> http://www.imdb.com/title/tt0415856/? <0> KimmoA: http://sonictransfer.com/b***-sequencing-tricks-from-daft-punk.shtml (unrelated, but as long as we're forcing links on eachother) <2> God damn YouTube and its insufficient bandwidth. <0> KimmoA: yup <2> Constantly buffering. The commenting system is all ****ed up too. <0> its not youtube, its llnw <0> who hosts them <2> Seriously... what the HELL is up with YouTube's commenting system? <2> It didn't use to be THIS bad. <0> IF YOU DONT COPYPASTA THIS ON 3 COMMENTS SOME ANCIENT INDIAN IMMIGRANT WILL COME AND RAEP YOU IN YOUR SLEEP, GO <0> fail. <0> KimmoA: yeah, thats the movie <2> No... I mean that comments don't show up, show up in incorrect/illogical positions, disapear, etc. <0> KimmoA: there's this really provocative clip of her dancing that was released <3> It's YouTube, it isn't exactly mission critical data. <2> The whole site is ****ed. Thanks for killing another service, Micro... I mean Google. <0> KimmoA: and her statement was something like "it's about loli raep, but it's okay, cause i'm almost 13" <0> KimmoA: everyone on cnn today was like "???" <2> Is Elvis involved in the raping? :/ <0> KimmoA: no one knew how to react to the girl saying it was okay <0> because like, she's the raep-in-movie girl <0> brb <2> That's what all little lolis really want. <4> is there a browser safe fixed width font? <0> KimmoA: i know, i figured it was relevant to your interests <5> Can someone point me in a good direction for including an "upload your file" button that opens a browse window so visitors can pick a file an up it to my hosting? <0> djtj: ... what? <0> oh <0> well <0> its type="file" <0> djtj: how you actually save the file depends on your server-side language <0> and if its php, i'm not helping :P <2> Akuma_: monospace? <5> I have it in my head that somewhere there's a nice canned script that does this complete with a status bar and all that <0> KimmoA: i wish i could find her comments to the press, it was ridiculous <2> `css font-family <6> Found for CSS 2 - font-family - http://www.w3.org/TR/REC-CSS2/fonts.html#descdef-font-family <2> http://www.nydailynews.com/news/gossip/story/436553p-367837c.html <4> KimmoA: thanks <2> ("The sole criterion of a monospace font is that all glyphs have the same fixed width.") <7> in PHP5 is PCRE or POSIX-extended RegEx faster? <8> RAII: try #php <7> hmm' <7> good idea <7> :p <9> [ot] i'm wondering if anyone can recommend employee/shift scheduling software <7> the hell o.O <10> hello there, I want to include different stylesheets for different browsers, would you guys also use following method: http://www.thesitewizard.com/css/excludecss.shtml or is there a standard for something like that? <11> ndee: that's precisely how I do it <10> I think that's about as good as the browser detection between IE & rest can get <12> One little problem with the Wii.. after playing for a couple days I can barely move my arms. :S <11> I basically use lt ie 7, lt ie 8 and then !ie <13> ndee: I write a base stylesheet, then apply tweaks for IE6/IE7 with conditional comments, and ignore ancient/unsupported browsers.
<10> Dorward: ok, it's about the same like in the article I guess :) <10> thanks for the info guys :) good nite <13> ndee: The article bothers with IE 3/4/5 and Netscape 4. I don't bother - between them they have about 1% market share. Its not worth the effort. <0> Zeros! <0> Zeros: can i pick your brain for a second :) <14> hax, only if I can have it back :) <0> of course <0> Zeros: have i ever kept it before? <14> :P <0> Zeros: so... i got this subscription service... and when users accounts are about to expire i want to send an "OH NOES! PAY ME MORE!" message <0> Zeros: and my question is... where do i put something like that <0> i feel like polling doesnt scale well <15> how long do subscriptions last? <14> hax, put as in where? It should just be a scheduled task. Remember the email is nothing but a different kind of view, so query for all users who's subscription expiration is near and send about the email to them. <0> i think 90 days <0> Zeros: but where do i schedule such a task? <15> so, er... cron job once a day? <0> Zeros: i guess i can cron it... <14> hax, ***uming the framework doesn't provide something, cron is nice. <0> i just didnt know if that was regarded as okay <0> how often is too often? <0> it could run hourly i guess <15> if subscriptions are measured in days, doesn't that seem a bit too often? <14> well if you send out the emails a week or even a month in advance just do it every 24 hours hax <0> well <0> okay <0> i just dont know whats considered common for crons <0> but thats a good enough answer for me :) <14> hax, if you want people t be aware of when things expire put a line on the page shown to them after they login. "Your subscription lasts until yyyy/dd/mm ... <a...>(Want to extend it?)</a>" <0> Zeros: yeah, good call <0> oh one more thing <0> Zeros: i use Time all over the place for that stuff... but when i do <%= @subscription.expire %> and get a Time returned... it ends up in UTC format <0> Zeros: i could stftotime it to something else... but through the power of ruby, shoudln't i be able to globally change that? <14> sure, I think rails does some modifications to Time to make sure it's UTC, makes i18n easier <14> define a method cl*** Time; def local_format; ... end; end; <0> Zeros: well, i tried doing cl*** Time; def to_s; return "my format"; end; end; ... but that apparently caused a problem with rails <14> hax, yeah, I'd add a new method as to not screw with other software packages <0> yeah, that must be where i went wrong <16> Why do I get the feeling that the sister is going to commit suicide? :( <0> who's? <14> "the sister"? <16> This anime I'm watching <0> oh <0> heh <0> Zeros: okay, brb, gonna try to put some of that smartness into use :) <16> Why would she? She's yelling at everyone else about not caring about her sister's feelings. Why would she, the one person her sister has left, kill herself? <16> But she was standing at the edge of a bridge basically saying to herself that she wants this all to end <0> brb :) <0> actually <0> i should figure out if there's a way to get to my db as if i'm in rails... but for a batch scrim <0> *script <12> Why no Django? <0> cause <0> heh <3> sipher: He likes having |'s and @'s in his code. ;) <12> Well he's the only one in #web _not_ using Django. heh <12> There's people from this chan in that one all the time now <0> well, i used to code perl <0> and i like ruby <17> Hehe. <0> plus i dont really like how django looks <0> but i havent really gotten into it <17> Yay Perl! <0> pylons is going to b my next endeavor <0> w00t riczho :P <0> riczho: catalyst looks pretty undeveloped
Return to
#web or Go to some related
logs:
#php policydb fedora5
conky config file #web perl lock daemon emerge ati-drivers gentoo inspiron 6000 modprobe sym53c416 ubuntu phpmyadmin dapper phtml perl assign *STDOUT to a file handle #web
|
|