2014-03-22 00:10 arielenter has quit [Ping timeout: 240 seconds] 2014-03-22 00:30 wolfspraul has quit [Read error: Operation timed out] 2014-03-22 00:34 wolfspraul has joined #qi-hardware 2014-03-22 00:36 arielenter has joined #qi-hardware 2014-03-22 01:36 arielenter has quit [Quit: Leaving.] 2014-03-22 01:38 zrafa: btw, how is the getting-swd-to-work project going ? 2014-03-22 01:38 arielenter has joined #qi-hardware 2014-03-22 01:43 arielenter has quit [Quit: Leaving.] 2014-03-22 01:54 wpwrak: btw that http://www.thinktink.com/ site has a nice set of "whitepapers"/tutorials 2014-03-22 01:54 thanks for the link 2014-03-22 01:55 porchaso0 has joined #qi-hardware 2014-03-22 01:56 actually they sound like suppliers for PCB makers, with a comprehensive "how do I create my own PCB shop" set of instructions 2014-03-22 01:57 porchao has quit [Read error: Connection reset by peer] 2014-03-22 01:57 reading that stuff gave me some vivid ideas of some chinese PCB makers and how they might work ;-D 2014-03-22 02:03 do these mental images include gruesome industrial accidents ? 2014-03-22 02:27 dos1 has quit [Ping timeout: 245 seconds] 2014-03-22 02:46 wej_ has joined #qi-hardware 2014-03-22 02:46 wej has quit [Ping timeout: 245 seconds] 2014-03-22 02:54 atommann has joined #qi-hardware 2014-03-22 03:04 arielenter has joined #qi-hardware 2014-03-22 03:04 no, rather some chinese doing weird manual work that you'd expect getting done by (CNC) machines 2014-03-22 03:05 * DocScrutinizer05 headdesks over KDE, kmail, and pcre(3) 2014-03-22 03:05 this is worse than windows ever got 2014-03-22 03:06 idundidit_ has quit [Ping timeout: 252 seconds] 2014-03-22 03:07 idundidit_ has joined #qi-hardware 2014-03-22 03:07 I want to match a string with a regex. alas it turns out kmail supports pcre - allegedly. And I fail to adapt my tested-in-grep regex to work in kmail 2014-03-22 03:08 here's what I got in grep RE: echo 'Unsub- http://www.agcswelpjv.us/l/lc16JYYFRC4576W261MKVY/615QG1948GCGRH4096LVHT12XUBXD64204408XGHFQG1410730889'|grep '.*Unsub..\?http://\(\([[:alnum:].]*\)/\)*[0-9A-Z]\{30,\}' 2014-03-22 03:09 nfc what to change to make the pattern PCRE compatible 2014-03-22 03:09 idundidit_ has quit [Remote host closed the connection] 2014-03-22 03:10 remove the backslashes ? 2014-03-22 03:10 tried that, no dice 2014-03-22 03:10 and use perl instead of grep when testing :) 2014-03-22 03:11 hmmm 2014-03-22 03:11 I hate perl, and I don't get it 2014-03-22 03:12 I wouldn't even know how to run a simple RE in perl, without writing a script. HECK not even *within* a script 2014-03-22 03:12 according to http://stackoverflow.com/questions/3848360/how-can-i-implement-unix-grep-in-perl 2014-03-22 03:12 perl -ne 'print if /PATTERN/' 2014-03-22 03:19 * DocScrutinizer05 shudders and gives up 2014-03-22 03:21 btw I already tried escaping / like \/ 2014-03-22 03:21 idundidit has joined #qi-hardware 2014-03-22 03:21 sissy ;-) 2014-03-22 03:22 but MEH, this isn't worth it 2014-03-22 03:23 your last 4 lines completely convinced me that this is a totally useless feature in kmail 2014-03-22 03:24 and particularly that KDE4 is for the arse 2014-03-22 03:26 the rexex pattern text input field is large enough to hold ~10 chars and can't get increased no matter what you do. And the regex editor that was available in KDE3 is gone in KDE4 2014-03-22 03:26 hehe ;-) 2014-03-22 03:27 there's a pcredemo program allegedly, but not on my machine 2014-03-22 03:28 the only pcre related executable is pcre-config, which is *extremely* useful¡, since it *prints* a few config settings 2014-03-22 03:28 OMG 2014-03-22 03:29 perl DAFAQ! 2014-03-22 03:32 * wpwrak likes perl :) 2014-03-22 03:39 I bet on that. It creates an opportunity to scare others with suggestions like "perl -ne 'print if /PATTERN/' " as an alternative for grep 2014-03-22 03:41 sigh. not as an alternative to grep but as a way to test PCRE with the ultimate authority of what is PCRE and what isn't 2014-03-22 03:41 I don't see that working 2014-03-22 03:43 PCRE = Perl-compatible, no ? so use perl to make sure your RE is indeed 100% perl-compatible 2014-03-22 03:44 toldya I don't get perl 2014-03-22 03:45 and I honestly doubt I want to find out why 'print if /.*Unsub..\?http://\(\([[:alnum:].]*\)/\)*[0-9A-Z]\{30,\}/' does whatever it does, and where the text to grep comes from 2014-03-22 03:45 wo kein wille ist, da ist auch kein weg :) 2014-03-22 03:47 when perl is an interpreter then I'd expect any text I pipe into it will get executed 2014-03-22 03:47 and I honestly doubt perl will accept // in a pattern terminated by / / 2014-03-22 03:48 arielenter has quit [Read error: Connection timed out] 2014-03-22 03:48 alright. you need backslashes for the forward slashes 2014-03-22 03:49 perl would let you avoid that (mX...X instead of /.../), but i doubt kmail goes that far 2014-03-22 03:51 kmail doesn't need *any* / / around the pattern. Mind you, it calls a library function, not a perl interpreter 2014-03-22 03:52 then use mX...X in perl 2014-03-22 03:52 so the pattern gets passed to that lib on stack, as string, i'd guess 2014-03-22 03:55 hee hee, dfu works. at long last :) 2014-03-22 04:02 honestly, you love perl?? do a "man perl" to *maybe* find out what the parameters -n and -e do. I guess I hardly ever seen a more useless unix manpage 2014-03-22 04:03 well, i tend to use perl for more complicated things. so no -n. -e can be handy at times. 2014-03-22 04:04 and if want some more pretty regexps, then there's this: http://ftp.utcluj.ro/pub/docs/ldp/bible-src/lilo/t2a.pl 2014-03-22 04:07 wtf do regexps help me when I can't find out how to use the fucking perl executable, since no docs about commandline options 2014-03-22 04:07 perl --help ? 2014-03-22 04:08 worse than windows, really 2014-03-22 04:19 honestly somebody should suffer for this. They did nearly everything to make that stuff as intangible and obfuscated as possible 2014-03-22 04:19 Begun in 1993 (see perlhist), Perl version 5 is nearly a complete rewrite that provides the following additional benefits: 2014-03-22 04:19 · modularity and reusability using innumerable modules 2014-03-22 04:20 Described in perlmod, perlmodlib, and perlmodinstall. 2014-03-22 04:20 · embeddable and extensible 2014-03-22 04:20 they had a little pet DocScrutinizer05 in a cage. they showed their work to him every day. when he started to rant and rage, then the knew they were doing it right :) 2014-03-22 04:21 sure. Makes absolutely lot of sense to start a sentence lowercase, then inmidst the sentence continue Uppercase 2014-03-22 04:22 somebody must have smoked real strong stuff before writing this BS 2014-03-22 04:22 and that's a *manpage* 2014-03-22 04:24 i'll never understand why they didn't call "man perlfunc" "man perlfun" ... 2014-03-22 04:25 compare "man perl" to e.g. "man python" and you maybe get a frip on why I'm upset 2014-03-22 04:25 grip* 2014-03-22 04:26 or "man awk", or probably whatever you want to pick 2014-03-22 04:27 only tcl is similarly useless 2014-03-22 04:30 some gnu tools at least have the dignity to outright refuse to share *any* info in manpage, it just redirects you to "info" which aiui is Stallman's revenge to UNIX 2014-03-22 04:31 strange I never heard the term "infopages", only "manpages" 2014-03-22 04:31 now we also got "perlpages", uh? 2014-03-22 04:39 make that >> · modularity and reusability using innumerable modules. As described in perlmod, perlmodlib, and perlmodinstall.<< and I'd stop ranting about this particular thing. Not that this would change my general notion about that concotion a 0/00 2014-03-22 05:05 atommann has quit [Ping timeout: 265 seconds] 2014-03-22 05:45 wpwrak: :-S it works in perl, but not in kmail :-( 2014-03-22 05:46 now I'm really pissed, and out of ideas 2014-03-22 05:47 http://osdir.com/ml/kde.users.pim/2005-10/msg00036.html 2014-03-22 05:52 BWAHAAAHHAAAAHAA! >>This Appendix contains a brief but hopefully sufficient and covering introduction to the world of regular expressions. It documents regular expressions in the form available within Kate, which is not compatible with the regular expressions of perl, nor with those of for example grep. 2014-03-22 05:58 >>The POSIX notation of classes, [::] is currently not supported.<< 2014-03-22 05:58 *great* 2014-03-22 06:01 DocScrutinizer05: yeah, thinktink.com is great resource 2014-03-22 06:01 I use it quite a bit 2014-03-22 06:03 and BOOOM, as soon as you know about such great simplifications like >>[::] is currently not supported.<< and use \w instead, it starts working 2014-03-22 06:04 whitequark: yep, I can see why 2014-03-22 06:27 ugh. I recently dropped my laptop accidentally 2014-03-22 06:28 the shear stress pretty much destroyed the stuff used in the lid to attach to hinges 2014-03-22 06:28 they should've done that out of carbide or something, not cast Al 2014-03-22 06:29 I would actually try to make a replacement with my CNC, except, as I've said, it's *cast* Al. the shape is pretty much impossible to recreate on a 3-axis machine 2014-03-22 06:29 and I suspect even fancy 5-axis one 2014-03-22 06:30 hmmm, I actually have an idea... 2014-03-22 06:40 I'll just drill the lid through and put a bunch of M2 screws through. problem solved. 2014-03-22 06:40 not very beautiful, but very effective. 2014-03-22 06:57 dandon has joined #qi-hardware 2014-03-22 06:59 Jay7x has quit [Read error: Connection reset by peer] 2014-03-22 07:01 Jay7 has joined #qi-hardware 2014-03-22 07:24 qi-bot has quit [Ping timeout: 246 seconds] 2014-03-22 07:36 this actually worked really well. 2014-03-22 07:36 jekhor has joined #qi-hardware 2014-03-22 07:37 http://i.imgur.com/hRcQI0z.jpg 2014-03-22 09:18 http://lab.whitequark.org/notes/2014-03-22/fixing-hinge-mount-on-asus-ux32vd/ 2014-03-22 10:05 eintopf has quit [Ping timeout: 255 seconds] 2014-03-22 10:14 eintopf has joined #qi-hardware 2014-03-22 10:34 DocScrutinizer05: congratulations on getting it to work ! and shame on those who a) invent pompous acronyms like PCRE, just to b) completely miss the point 2014-03-22 10:37 whitequark: you're lucky they didn't put anything in the corner where you made your holes :) 2014-03-22 10:41 wpwrak: it's 3mm thick and most of that is cast Al frame 2014-03-22 10:41 there's simply no place and no reason to put anything there 2014-03-22 10:44 3 mm ? Al is robust, you don't need much of it. so, 2 x 0.7 mm of Al, leaving room for an FPC and some 1 mm components. and who needs a reason ? :) 2014-03-22 10:59 well, it means some useless components would be destroyed. how does it matter, since they're already useless? ;) 2014-03-22 10:59 a good designer makes them useless but vital 2014-03-22 11:22 argh, when did the birds start mimicing the sound of alarm clocks? 2014-03-22 11:24 Angry Birds Evolution 2014-03-22 11:26 larsc: several years ago actually 2014-03-22 11:27 btw, what's even more evil are doorbell sounds in music. especially if you're waiting for some delivery 2014-03-22 11:28 larsc: DocScrutinizer05 trained them 2014-03-22 11:28 "Starlings have been known to learn the high-pitched, duo-toned screech of a car alarm" 2014-03-22 11:28 I think that's what I'm hearing 2014-03-22 11:28 non-stop all day long 2014-03-22 11:28 makes me wonder how long until they'll learn to bark ... 2014-03-22 11:29 "Then there's the fawn-breasted bower bird in Papua New Guinea which learnt the sounds made by workmen mending a tin roof: the noise of hammering, sawing - even the rattles of a stray ball-bearing rolling around inside a paint can" 2014-03-22 11:29 avian pest control tip: be nice to the cats in the neighbourhood - don't feed them but attach wood to vertical structures they can't climb on their own 2014-03-22 11:30 that already sounds more like an urban legend :) 2014-03-22 11:30 here is the source http://www.independent.co.uk/news/science/from-modems-to-alarms-the-world-of-bird-mimics-470901.html 2014-03-22 11:31 "his father used to call his Jack Russell terrier with a distinctive whistle. The local starlings soon learnt to imitate it and quickly learnt how to "call" the dog to the bottom of the garden" 2014-03-22 11:32 damn. now they have a guard dog. need a bigger cat then 2014-03-22 11:33 lucky for you, felines grow considerably larger than canines. maybe you'll need to keep a few tigers in the end, but you can win that arms race 2014-03-22 11:40 I got out the guitar and I think I scared them away 2014-03-22 11:40 oh, cruel and unusual punishment 2014-03-22 12:07 dos1 has joined #qi-hardware 2014-03-22 12:24 lol 2014-03-22 12:47 rz2k has joined #qi-hardware 2014-03-22 12:59 qi-bot has joined #qi-hardware 2014-03-22 13:20 atommann has joined #qi-hardware 2014-03-22 13:36 xiangfu has joined #qi-hardware 2014-03-22 13:51 good morning :-) 2014-03-22 14:01 uwe_ has quit [*.net *.split] 2014-03-22 14:01 zear has quit [*.net *.split] 2014-03-22 14:01 panda|z has quit [*.net *.split] 2014-03-22 14:01 woakas has quit [*.net *.split] 2014-03-22 14:01 lilvinz has quit [*.net *.split] 2014-03-22 14:01 zrafa has quit [*.net *.split] 2014-03-22 14:01 ysionneau has quit [*.net *.split] 2014-03-22 14:01 mirko has quit [*.net *.split] 2014-03-22 14:01 uwe_mobile has quit [*.net *.split] 2014-03-22 14:01 ysionneau has joined #qi-hardware 2014-03-22 14:01 zrafa has joined #qi-hardware 2014-03-22 14:01 uwe_mobile has joined #qi-hardware 2014-03-22 14:02 woakas has joined #qi-hardware 2014-03-22 14:02 zear has joined #qi-hardware 2014-03-22 14:02 lilvinz has joined #qi-hardware 2014-03-22 14:04 atommann has quit [Ping timeout: 240 seconds] 2014-03-22 14:04 panda| has joined #qi-hardware 2014-03-22 14:07 xiangfu_ has joined #qi-hardware 2014-03-22 14:07 mirko has joined #qi-hardware 2014-03-22 14:12 uwe_ has joined #qi-hardware 2014-03-22 14:12 freespac1 has joined #qi-hardware 2014-03-22 14:15 freespace has quit [Write error: Broken pipe] 2014-03-22 14:16 xiangfu has quit [Remote host closed the connection] 2014-03-22 14:17 atommann has joined #qi-hardware 2014-03-22 14:21 xiangfu_ has quit [Ping timeout: 240 seconds] 2014-03-22 14:22 xiangfu has joined #qi-hardware 2014-03-22 14:32 jekhor has quit [Ping timeout: 240 seconds] 2014-03-22 14:47 jekhor has joined #qi-hardware 2014-03-22 14:57 jekhor has quit [Ping timeout: 252 seconds] 2014-03-22 15:20 DocScrutinizer05: dude, I just realized: in order to properly pyrolyse copper hypophosphite, I need a way to very uniformly heat PCB up to 200°C 2014-03-22 15:21 ... galden! 2014-03-22 15:21 err 2014-03-22 15:21 need to buy a deep fryer today 2014-03-22 15:21 [2014-03-20 21:32:43] (( inert gas is too hard)) heard you own some magic soup called Galden? 2014-03-22 15:21 whoops 2014-03-22 15:22 seems I should reread logs more often, sorry about that 2014-03-22 15:23 that being said, I wonder, how galden would actually work on t° below 230°? 2014-03-22 15:23 not 2014-03-22 15:23 hm. 2014-03-22 15:23 well, it surely has some vapor pressure even at room temp 2014-03-22 15:23 like water not working at 70° 2014-03-22 15:23 unless you lower the pressure 2014-03-22 15:23 yes, it would be just the usual convective transfer 2014-03-22 15:24 albeit with a somewhat more efficient transfer medium 2014-03-22 15:24 sure, you can dunk stuff into 180° galden 2014-03-22 15:25 it will still be inert 2014-03-22 15:25 hm, yes, that'll work too 2014-03-22 15:25 pyrolysis isn't that sensitive as actual components 2014-03-22 15:25 for sure not 2014-03-22 15:26 DocScrutinizer05: I just realized why I missed your suggestion about galden 2014-03-22 15:26 your line of thought: "need inert gas → galden". mine: "need uniform heat transfer → galden" 2014-03-22 15:27 my brain thinks they're completely disjoint and unrelated 2014-03-22 15:27 despite being basically about exact same thing 2014-03-22 15:29 my "line of thought" usually is holistic 2014-03-22 15:32 sure 2014-03-22 15:32 I just realized I actually remembered your suggestion about inert gas, but didn't associate it with this problem at all 2014-03-22 16:02 arielenter has joined #qi-hardware 2014-03-22 16:35 atommann has quit [Ping timeout: 265 seconds] 2014-03-22 16:36 well, that regex been a true PITA but it been worth it. Already two spam mails kicked out 2014-03-22 16:38 funny enough how all those spams look pretty identical, though (fake?) topic is a new one each single time, also URLs are identically structured but different domains 2014-03-22 16:40 http://privatepaste.com/1c8d210460 http://privatepaste.com/7f2228924e 2014-03-22 16:43 meh! FFS! Received: from 03d3c05f.jerriwohlacafa.us (unknown [77.81.110.170]) Received: from 03d3c061.scathektcarine.us (unknown [77.81.110.171]) 2014-03-22 16:48 Received: from 03d3c05d.iranidrewmy.us (unknown [77.81.110.169]) Received: from 03d3c058.agcswelpjv.us (unknown [84.22.11.137]) Received: from 03d3c057.wheemjabrudnaifly.us (unknown [84.22.11.141]) Received: from 03d3c056.mdxtsauls.us (unknown [84.22.11.140]) Received: from 03d3c053.atabeggretdin.us (unknown [5.255.94.10]) Received: from 03d3c063.mcjdaphsons.us (unknown [77.81.110.172]) 2014-03-22 16:55 xiangfu has quit [Quit: Reconnecting] 2014-03-22 16:55 xiangfu has joined #qi-hardware 2014-03-22 16:57 bulgaria, romania. MHM 2014-03-22 16:59 actually: inetnum: 77.81.104.0 - 77.81.111.255 || netname: FIBER-UPLOAD-SRL || descr: FIBER UPLOAD SRL || descr: ION BREZOIANU, NR 27 || descr: BUCURESTI ROMANIA 2014-03-22 16:59 inetnum: 84.22.11.0 - 84.22.11.25 5netname: VPS-Bulgaria-Lt ddescr: Network for clients 2014-03-22 17:04 xiangfu has quit [Ping timeout: 246 seconds] 2014-03-22 17:06 xiangfu has joined #qi-hardware 2014-03-22 18:07 DocScrutinizer05: you tried spamassassin? 2014-03-22 18:08 it works amazingly well for me, no worse than e.g. gmail 2014-03-22 18:08 in fact sometimes it's better than gmail, since it filters personally my spam 2014-03-22 18:08 xiangfu has quit [Quit: leaving] 2014-03-22 18:17 I'm not using gmail, steer clear of that, they are worse than NSA in my book. Spamassassin otoh doesn't consider those terse mails particularly spam-alike 2014-03-22 18:19 76% : http://privatepaste.com/7370b1a6af 2014-03-22 18:37 wej_ has quit [Ping timeout: 260 seconds] 2014-03-22 18:43 zerous has joined #qi-hardware 2014-03-22 18:45 could any one suggest me a good noctua air cooler for an i5 4th generation build ? 2014-03-22 18:46 wej_ has joined #qi-hardware 2014-03-22 19:02 jekhor has joined #qi-hardware 2014-03-22 19:11 DocScrutinizer05: what I do is raise the score for BAYES_99 above threshold 2014-03-22 19:11 iow BAYES_99 = instant spam 2014-03-22 19:12 "shortcircuit BAYES_99 spam" in spamassassin local.cf 2014-03-22 19:12 mhm 2014-03-22 19:12 works amazingly well 2014-03-22 19:12 I already wondered where to configure SA 2014-03-22 19:13 SA config is worth tweaking. did that once several years ago... I have maybe 5 spam emails in my inbox in a year 2014-03-22 19:13 but right now I'm kinda excited, since I just got informed that my company is official since yesterday 2014-03-22 19:13 well, maybe 20... not a lot 2014-03-22 19:13 and SA has only marked maybe 2 emails as spam erroneously in about 5 years I'm using it 2014-03-22 19:14 including automated notifications and the like 2014-03-22 19:20 these are about the only ones you'd actually notice :) 2014-03-22 19:26 damn, such a company isn't healthy for my privacy 2014-03-22 19:26 and google maps has 5 years old photos :-/ 2014-03-22 19:29 idundidit has quit [Read error: Connection reset by peer] 2014-03-22 19:30 idundidit has joined #qi-hardware 2014-03-22 19:36 google maps has pictures of you ? didn't imagine you as the kind of guy who's pose for the streetview car :) 2014-03-22 19:59 zerous has quit [Read error: Operation timed out] 2014-03-22 19:59 zerous has joined #qi-hardware 2014-03-22 20:06 theodon7473 has joined #qi-hardware 2014-03-22 20:06 zerous has quit [Ping timeout: 252 seconds] 2014-03-22 20:27 apelete has quit [Remote host closed the connection] 2014-03-22 20:27 apelete has joined #qi-hardware 2014-03-22 20:45 not of me, only of a house I later on used to live in 2014-03-22 20:45 theodon7473 has quit [Remote host closed the connection] 2014-03-22 20:46 well, actually I might have lived in that house already when the pictures where taken 2014-03-22 21:10 arielenter has quit [Ping timeout: 240 seconds] 2014-03-22 21:28 wej- has joined #qi-hardware 2014-03-22 21:31 wej_ has quit [Ping timeout: 252 seconds] 2014-03-22 22:18 jekhor has quit [Ping timeout: 246 seconds]