IRC log of #maemo for Friday, 2017-03-10

*** sunshavi has quit IRC00:02
*** dafox has joined #maemo00:17
DocScrutinizer05search terms: replicant, alien dalvik, libhybris00:26
*** xy2_ has joined #maemo00:28
*** dafox has quit IRC00:35
DocScrutinizer05and steer clear a 100 miles from multiboot! whatever you choose to install as second OS, uBoot will boot it fine00:40
*** LauRoman|Alt has quit IRC00:43
DocScrutinizer05multiboot *will* brick your N900, sooner or later00:55
*** Enrico__ has quit IRC01:03
sixwheeledbeast~multiboot01:04
infobotsomebody said multiboot was http://maemo.org/packages/view/multiboot/, or **DEPRECATED*, see ~maemo-multiboot01:04
*** robinak is now known as robink01:20
*** florian has joined #maemo01:26
*** xy2_ has quit IRC01:33
*** Pali has quit IRC01:37
*** sunshavi has joined #maemo02:04
*** cyteen has quit IRC02:51
*** florian has quit IRC02:53
*** infobot has quit IRC03:19
*** infobot has joined #maemo03:21
*** drrz has quit IRC03:42
Maxdamantus"not bricked anymore" sounds like it wasn't bricked in the first place.04:19
*** LauRoman has joined #maemo05:32
*** cyteen has joined #maemo05:37
*** cyteen has quit IRC05:47
*** cyteen has joined #maemo05:48
*** Gizmokid2005 has quit IRC05:55
*** cyteen has quit IRC05:55
*** Gizmokid2005 has joined #maemo05:57
*** florian__ has joined #maemo05:58
*** lxp1 has joined #maemo06:01
*** florian_kc has quit IRC06:01
*** lxp has quit IRC06:04
*** sunshavi has quit IRC07:00
*** pagurus has quit IRC07:13
*** DocScrutinizer05 has quit IRC07:14
*** DocScrutinizer05 has joined #maemo07:14
*** pagurus has joined #maemo07:20
*** spiiroin has quit IRC07:48
*** cyteen has joined #maemo08:02
*** cyteen has quit IRC08:13
*** spiiroin has joined #maemo08:47
*** dafox has joined #maemo09:01
*** chainsawbike has quit IRC09:24
*** chainsawbike has joined #maemo09:25
*** dafox has quit IRC09:30
*** geaaru has joined #maemo09:55
freemangordonDocScrutinizer05: ping10:20
*** cyteen has joined #maemo10:21
*** florian__ is now known as florian10:37
freemangordonanybody can help me with a regular expression?10:41
KotCzarnyi can try10:41
KotCzarnybut i dont know advanced usage10:42
freemangordonKotCzarny:   QRegExp re("[\"]signature[\"],([^\\(]+)");10:42
KotCzarnyand your question?10:43
freemangordonand "k=new Ev(f.url);f.sig?k.set("signature",f.sig):f.s&&k.set("signature",vc(f.s));" is (a part of) what I want to match10:43
freemangordonI need "vc" extracted10:43
freemangordonI modified it to "[\"]signature[\"],([\w+]+\()"10:43
freemangordonbut it matches "vc("10:43
MaxdamantusWhat are the []s around " for?10:44
freemangordonthis is youtube signature function extractor from cutetube :)10:44
KotCzarnythere are two "signature" strings10:44
MaxdamantusPresumably you want to change \() to )\(10:44
freemangordonKotCzarny: yes10:44
freemangordonbut what I need is the second one10:44
Maxdamantus(at the end)10:45
freemangordonthe "vc(f.s)" call10:45
freemangordonMaxdamantus: no, it closes the matching group10:45
KotCzarnyyou want "\"signature\",(vc.*?)\); maybe?10:45
Maxdamantusfreemangordon: right, but you only want "vc", not "vc("?10:45
freemangordonlemme try10:46
KotCzarny"\"signature\",(vc.*?)\);"10:46
freemangordonMaxdamantus: yes10:46
freemangordonKotCzarny: ah, it is not that simple10:46
freemangordonthe function name changes ;)10:46
MaxdamantusSo you expect a literal ( to appear after the matched group.10:46
Maxdamantusie (..)\(10:46
KotCzarny"\"signature\",([a-z+\(].*?)\);"10:46
freemangordonMaxdamantus: in English please, I can't really grok the syntax and logic of regexp :)10:47
KotCzarnyerm, "\"signature\",([a-z+\(]+.*?)\);"10:47
MaxdamantusI'm guessing the (non-escaped) brackets denote the matching group.10:47
freemangordonMaxdamantus: yes10:47
Maxdamantuswhile escapd brackets are just literal characters.10:47
freemangordonyes10:47
KotCzarnytry the last one10:47
freemangordonok10:47
MaxdamantusKotCzarny: your last bracket is the wrong way round.10:48
freemangordonKotCzarny: hmm, that ";" at the end...10:48
MaxdamantusShould be \( at the end, not \)10:48
KotCzarnyoh, so we want only function name10:48
freemangordonKotCzarny: remember, this is obfuscated js, we may have "," and whatnot instead of ";"10:48
freemangordonKotCzarny: yes10:48
freemangordonah, wait, so if I add another "\" at the end, it will be stripped from the result?10:49
freemangordon"\)"10:49
MaxdamantusI'd probably go with: "\"signature\",([^\)]+)\("10:49
Maxdamantusassuming I understand the regex syntax.10:50
* Maxdamantus prefers just using the syntax used in sed/grep.10:50
MaxdamantusBRE or whatever it is.10:50
freemangordonthat matches nothing10:50
Maxdamantuser10:50
Maxdamantus"\"signature\",([^\\)]+)\\("10:51
Maxdamantussince this is a string literal in some language.10:51
Maxdamantus(should escape the backslashes so they're part of the regexp string)10:51
KotCzarny \"signature\",([^(:]+)\(10:53
*** xy2_ has joined #maemo10:53
KotCzarnythis one, otherwise it would catch too much10:53
MaxdamantusKotCzarny: which backslashes are meant to appear in the regexp?10:53
KotCzarnyyeah, though php's re didnt complain about ( in []10:54
freemangordonKotCzarny: want me to try ^^^?10:54
MaxdamantusI'm talking about "\(" == "("10:54
Maxdamantusdunno if that's true in PHP10:54
freemangordonKotCzarny: cool, looks like working10:55
KotCzarnyahm, additional quotes in qregexp might be needed10:55
freemangordonyes, I know10:55
KotCzarnyfmg, but it's fragile, as always10:55
freemangordonI am using https://regex101.com/ to test10:55
KotCzarnysince js/webscraping is quirky10:55
freemangordonyes, I know it is fragile10:55
KotCzarnythere are pre matches in RE, but i have never really grasped them, yet10:56
freemangordonKotCzarny: if you have a better idea on how to get the signature frunction from youtube base.js, I am all ears :)10:56
KotCzarny(think of match withing a match)10:56
KotCzarny*within10:57
KotCzarnyi'm using this snippet for testing: http://pastebin.com/raw/F92Kn0mP10:58
freemangordonKotCzarny: hmm, your regexp counts on ":" being present, which is not guaranteed10:58
KotCzarnyfmg, then you should first try with : and if it returns empty do second re without :10:59
inzno need to escape the ( inside [] btw (just sayin')10:59
KotCzarnyand function you have pasted looks like trigraph (a?b:c)10:59
KotCzarnyso unless you match multiple cases, it should work10:59
freemangordonthis is how it looks today, tomorrow google will change it to look some other way11:00
freemangordonI want ti working tomorrow as well11:00
KotCzarnysee 'fragile' part11:00
inzthat's why you use youtube-dl -U11:01
KotCzarnyyoutube-dl is fragile too, it's just that it's updated regularly ;)11:01
freemangordoninz: it is qregexp, afaik it is a little bit different than php, those brackets were put there by the original author (marxian), I don;t want to mess with them11:01
freemangordoninz: ever tried cutetube?11:02
KotCzarnydoesnt cutetube rely on youtube-dl ?11:02
freemangordonno11:02
freemangordonit has has nothing in common afaik11:03
inzI think I once did, it didn't work at that time.11:03
KotCzarnythere is cutetube2 which is the one maintained11:03
freemangordonwell, yes, I meant cutetube211:03
KotCzarnywhich is stupid imo and ct should be replaced with ct2, and whole ct2 just should point to ct11:04
KotCzarnyofftopic, i've just fixed oscp to pass -Wall -Wextra -Werror ;)11:04
KotCzarnyfmg, there is no guarantee how base.js will look tomorrow, so no matter the RE. you just can't rely on anything being stable in it11:06
Maxdamantusimo a youtube program should just do things by executing `youtube-dl`11:07
Maxdamantusthat way the user can at least keep an up-to-date version of it in his/her PATH if everything else ends up unmaintained.11:07
KotCzarnymaxd: does youtube-dl support spewing data to stdout?11:07
MaxdamantusKotCzarny: I imagine so, if not conveniently, it must do with some piping hacks.11:08
freemangordonok, I think I got it, I need to call re.cap(2) for the second capturing group result11:08
MaxdamantusIt also supports just printing out a URL to download.11:08
peetahKotCzarny, Maxdamantus : it does11:08
KotCzarnymaxd: that's also nice, assuming googl doesnt rely on cookies11:09
Maxdamantusbut ime, Google has done things like requiring certain headers, so just passing that to curl/wget might not be reliable.11:09
freemangordonok, that's it - QRegExp re("[\"]signature[\"],((\\w+)\\s*\\()");11:11
MaxdamantusThat outer group seems redundant.11:12
KotCzarnyyup11:12
freemangordonhmm?11:13
Maxdamantusas do the []s11:13
freemangordonin English, please :)11:13
KotCzarnyhe means: re("\"signature\",(\\w+)\\s*\\(");11:13
freemangordonredundant or not, this is the first one that works correctly11:13
MaxdamantusQRegExp re("\"signature\",(\\w+)\\s*\\(");11:13
Maxdamantusjinx11:14
KotCzarny1st!11:14
MaxdamantusI had to copy/paste/edit it in osso-xterm11:14
KotCzarnyalso, does \w catch . ?11:14
freemangordon^^^ does not work11:14
inzif allowing for spaces between func and paren, why not also between comma and func?11:14
freemangordoninz: right11:15
Maxdamantusfreemangordon: are you looking at the same output? I'm guessing you'd need to look at a different one.11:15
inzyah, capture group changes from 2 to 1 with the change11:15
Maxdamantusfreemangordon: eg, if you were looking at some `match[1]` before it might be `match[0]` after removing the unnecessary capture.11:15
Maxdamantusor 2, 1, dunno what convention Qt uses.11:16
inzIIRC 0 is the full match11:16
KotCzarnyyes11:16
MaxdamantusMk, that's at least consistent with JS.11:16
* Maxdamantus always found tha illogical though.11:17
KotCzarnybtw. fmg, you need: http://www.regular-expressions.info/lookaround.html11:17
KotCzarnybut as i've said its advanced territory ;)11:17
freemangordons, what about [\"]signature[\"]\s*,\s*((\s*\w+)\s*\()11:17
freemangordon*so11:17
freemangordonI don;t really care if it is optimized or not11:17
KotCzarny \s*([^\s]+)\s*\(  ?11:18
freemangordonas long as it works correctly11:18
KotCzarnywhat would \w catch?11:18
freemangordonKotCzarny: no, function name must be word11:18
freemangordonit cannot contain dots, or columns etc11:18
freemangordon*colons11:18
KotCzarny \s*([a-z0-9]+)\s*\(  ?11:19
freemangordonthe fuck, what was the word11:19
KotCzarny:alpha:11:19
freemangordon\w is equal to [a-zA-Z0-9_]11:19
KotCzarnybut since it's obfuscated and minimized js i bet \s* around the \w is redundant11:19
freemangordonno, it is not11:20
freemangordonthey put spaces sometimes11:20
KotCzarnyprobably obfuscator failing sometimes11:20
freemangordoncould be11:20
inzKotCzarny, qt does not support lookbehind11:20
freemangordoninz: so, what about [\"]signature[\"]\s*,\s*((\s*\w+)\s*\() ? do I miss something obvious?11:21
KotCzarnyfmg, bad \s inside11:21
KotCzarnyyou dont want your inner match to containe space11:22
KotCzarnysince function name cant contain space11:22
inznot that it would ever match, because * is greedy by default11:22
freemangordonKotCzarny: it is ok, it doesn't match "v c"11:22
KotCzarnythat too, though i never know which direction RE starts being greedy11:23
freemangordonguys, please, I don;t really want to learn regexps now :)11:23
KotCzarnyliar11:23
inzyes you do11:23
KotCzarny;)11:23
freemangordonno, I don;t and I never wanted to ;)11:23
inzYou need more problems!11:24
KotCzarnyregexps are handy11:24
freemangordonI would prefer a loop every time over a regexp :P11:24
inzYes, they are an awesome tool. Usually the wrong one, but awesome nonetheless!11:24
KotCzarny(now some oldtimer should chime with 'in the DOS days we had two wildcards and we were happy')11:24
KotCzarny;)11:24
freemangordonyes, that's true11:24
KotCzarnyyou can use fnmatch() then11:24
KotCzarny:P11:25
KotCzarnyit's a nice alternative to regexps11:25
freemangordonthe original code uses regexp, and I don;t wan't to change it much, unless really needed11:25
freemangordonanyway, do you see anything wrong with ^^^ regex besides being suboptimal?11:25
KotCzarnyyup, RE are better in webscraping, fnmatch is nice for simple things though11:25
KotCzarnyfmg, it works, its ok, but i would change \s*\w+ to \w+11:26
KotCzarnysince it's not doing anything11:26
freemangordonok11:26
MaxdamantusI'd probably rather do webscraping with DOM, but usually I'd just do it using command-line tools so it would be piped into sed which uses regexp.11:27
freemangordonstill works, after that change11:27
*** jonwil has quit IRC11:34
KotCzarnyhmm, when does 'read battery bar' show in cssu?11:35
KotCzarnyi have 5/1282mAh in status, got 'battery low' message, but it's still green bar11:36
KotCzarny5% of 1282 is ~64, so imo it should start showing red there11:37
DocScrutinizer05freemangordon: what's the problem?11:37
DocScrutinizer05(regex)11:37
freemangordonyeah11:37
freemangordonbut it seems we fixed it so far11:37
KotCzarnyfmg, i have latest cssu-thumb11:38
freemangordoncool11:38
freemangordoncheck if you didn;t "fix" something some 2-3 years ago first :)11:38
freemangordonyou shouldn't have green bar on low battery11:39
KotCzarnyfmg, it was ok before update11:39
KotCzarny(2012)11:39
freemangordonKotCzarny: https://github.com/community-ssu/status-area-applet-battery/blob/master/status-area-applet-battery.c11:40
freemangordonbattery_status_plugin_update_icon11:40
DocScrutinizer05lemme share the nice regex stuff I found11:41
DocScrutinizer05let's start with    alias man=':(){ [ "sed" == "$1" ]||{ /usr/bin/man $1;return; }; less -f <(/usr/bin/man sed) <(wget http://sed.sourceforge.net/sed1line.txt -q -O -); };:'11:42
peetah~fiasco11:44
infobotL4-compatible real-time microkernel capable of running Linux in usermode. URL: http://os.inf.tu-dresden.de/fiasco/11:44
DocScrutinizer05http://stackoverflow.com/questions/22937618/reference-what-does-this-regex-mean/22944075#2294407511:46
*** mp107 has joined #maemo11:47
DocScrutinizer05^^^ excellent!11:47
peetahcan someone confirm that using 0xffff is safe to flash both Vanilla_PR_EMMC_MR0 and PR_COMBINED_MR0 images ?11:48
DocScrutinizer05yes, is safe11:48
peetahDocScrutinizer05: thanks11:48
DocScrutinizer05if it fails, pester pali ;-911:48
peetahi will :)11:49
inzIf it breaks your device, you get to keep both pieces.11:50
*** mp107 has quit IRC11:50
*** jskarvad has joined #maemo11:51
DocScrutinizer05N900 is basicaly unbrickable, so safety of 0xFFFF is almost only a question of host system it runs on11:57
DocScrutinizer05in that regard I think 0xFFFF must be safer than my lazyflashing mess11:57
DocScrutinizer05~lazyflashing11:58
infobotwell, lazyflashing is http://wiki.maemo.org/Updating_the_tablet_firmware#The_Lazy_Approach11:58
DocScrutinizer05at least I'm pretty sure 0xFFFF doesn't try LD_PRELOAD tricks ;-P11:59
KotCzarnyhehe, that statusbar only goes red when value is 012:00
KotCzarnyso with 0mAh reported ;)12:01
KotCzarnyshould be named 'empty' not 'verylow' :P12:01
KotCzarnythat's with bme_replacement, without it it's set in 0..80 range12:02
KotCzarnymy bme is 0.8.55+0m5 though12:03
KotCzarnyweird12:03
DocScrutinizer05peetah: you nevertheless might want to give lazyflashing a try, and pester me if it doesn't help you12:05
peetah~lazyflashing12:07
infobotwell, lazyflashing is http://wiki.maemo.org/Updating_the_tablet_firmware#The_Lazy_Approach12:07
*** xy2_ has quit IRC12:07
*** xy2_ has joined #maemo12:21
*** jon_y has quit IRC12:45
*** phlixi has joined #maemo12:49
*** phlixi_ has quit IRC12:49
*** clopez has quit IRC13:07
*** spiiroin has quit IRC13:24
*** eMHa_ has quit IRC13:35
*** spiiroin has joined #maemo13:53
*** sunshavi has joined #maemo14:06
*** jon_y has joined #maemo14:24
*** xy2_ has quit IRC14:25
*** eMHa_ has joined #maemo14:30
*** pcfe has quit IRC14:35
*** jon_y has quit IRC14:36
*** jon_y has joined #maemo14:42
*** Enrico__ has joined #maemo14:43
Enrico__Hello, I'm still trying to install NITDroid on my N900. Don't want to bother anybody, but if you may help...14:48
*** chainsawbike has quit IRC14:50
*** jon_y has quit IRC14:50
*** jon_y has joined #maemo14:50
*** xkr47_ has quit IRC15:21
*** xkr47 has joined #maemo15:25
*** chainsawbike has joined #maemo15:53
*** troulouliou_div2 has joined #maemo16:01
*** NotKit has joined #maemo16:11
*** TheKit has quit IRC16:14
*** TheKit has joined #maemo16:20
*** NotKit has quit IRC16:24
*** eMHa_ has quit IRC16:32
*** hurrian has joined #maemo16:46
*** hurrian_ has quit IRC16:47
*** troulouliou_div2 has quit IRC17:15
*** guerby has quit IRC17:23
*** guerby has joined #maemo17:25
*** eMHa_ has joined #maemo17:34
*** zGrr has joined #maemo17:40
*** Enrico__ has quit IRC17:59
*** clopez has joined #maemo18:01
*** Pali has joined #maemo18:25
*** Enrico__ has joined #maemo18:37
*** sunshavi has quit IRC18:39
Enrico__Hello, I am reading the following page:18:39
Enrico__https://wiki.maemo.org/Nitdroid_easy_install_on_EMMC18:39
Enrico__There's a simplified procedure for installing NITDroid on the N900. However links called by the installer are broken.18:40
Enrico__I have been able to find some packages here:18:40
Enrico__http://repository.maemo.org/extras/pool/fremantle/18:40
Enrico__But when trying to install kernel-power-settings, two more packages are required, namely:18:41
Enrico__kernel-feature-overclock18:41
Enrico__kernel-feature-smartreflex18:41
Enrico__They are not in the mentioned repository. Does anybody know where to find them?18:42
*** florian has quit IRC18:43
*** dafox has joined #maemo18:46
freemangordonEnrico__: those are provided by kernel-power package18:48
*** pcfe has joined #maemo18:48
*** pcfe has quit IRC18:48
*** pcfe has joined #maemo18:48
freemangordonor kernel-power-flasher, can't remember18:48
Enrico__I already installed kernel-power. So probably I need kernel-power-flasher. I will try soon.18:49
freemangordonEnrico__: why not use HAM to install stuff? it will pull the required dependencies for you18:50
Enrico__You mean the package manager?18:51
Enrico__(Once started up Maemo, in the graphical environment?)18:51
freemangordonyes18:51
Enrico__It does not work. Sits there and doesn't download anything.18:51
freemangordonHAM == hildon-application-manager18:51
freemangordongive it some time, like 10 minutes :)18:51
Enrico__Ah sorry. DIdn't know the acronymous.18:52
Enrico__10 minutes???18:52
freemangordonif you want it to be fast, install CSSU18:52
freemangordon~speedyham18:52
infobotSpeedyHAM is 30 times faster than HAM http://maemo.merlin1991.at/cssu/community-devel/pool/free/h/hildon-application-manager/hildon-application-manager_2.2.73-2_armel.deb.  SpeedyHAM is included in CSSU now18:52
Enrico__Ok ok I can wait... I just thought it didn't find anything!18:52
Enrico__And what about multiboot-kernel-maemo and multiboot-kernel-power? Same way?18:53
freemangordonalso, stock HAM tries to use Nokia repos, which are dead for a long time18:53
freemangordonmultiboot is deprecated18:53
*** LjL has quit IRC18:53
freemangordonalso, never used it so dunno18:53
Enrico__I tried with u-boot, but created many problems.18:54
freemangordonu-boot is the way18:54
freemangordonshouldn;t create any problems18:54
Enrico__Ok. The problems are:18:54
freemangordonyou just neet to install the required -bootimg (like kernel-power-bootimg) and it will created the needed entries for you18:54
freemangordon*create18:55
Enrico__- first, the interface. I have been unable to access it by usb, so I have to manage by the small N900 keyboard and screen18:55
freemangordonwhich interface?18:56
Enrico__- and the keyboard mapping is not standard18:56
Enrico__I mean the shell.18:56
Enrico__Sorry bad language.18:56
freemangordonu-boot shell? why do you need it at first?18:56
freemangordon*first place18:56
Enrico__I am trying to understand how it works. Just to be able to put files where I want.18:57
freemangordonah, I see18:57
freemangordon~uboot18:57
infobotN900 uBoot is a siamese twin binary [uBoot+stockMaemoKernel] that resides in kernel NAND partition /dev/mtd3 aka "kernel". You can't uninstall it, rather you'll nuke it when you flash/install another kernel like stock maemo kernel or powerkernel. To start other than stock maemo kernel via uBoot, you have to provide the according kernel image files, or http://talk.maemo.org/showthread.php?t=8161318:57
*** LjL has joined #maemo18:57
freemangordonEnrico__: look at ^^^18:57
freemangordonthe thread at TMO I mean18:57
Enrico__I am reading.18:57
freemangordonalso, install kernel-power-bootimg, to give you an example on how to create u-boot entry18:58
freemangordonyou just copy it, edit to your needs, run u-boot-update-bootmenu and thats it18:58
Enrico__Ok I already understood something about u-boot in the last few days. I didn't find the name of the NAND partition, now I have it. Thanks for that.18:59
freemangordonEnrico__: look in /etc/bootmenu.d18:59
freemangordonNAND?18:59
freemangordonare you sure?18:59
Enrico__What is written a bit up? Not "kernel NAND partition"?19:00
freemangordonthere are 5 OneNAND partiotion, and all of them are used by maemo19:00
freemangordonEnrico__: read the thread, it is all there19:00
Enrico__A minute...19:00
freemangordonEnrico__: /me gtg, ping Pali if you need help re u-bbot19:01
freemangordon*u-boot19:01
Enrico__I already had many talks with Pali. Also via email. He helped me to unbrick my device.19:01
freemangordonas expected :)19:02
Enrico__But he says he does not know about NITDroid.19:02
freemangordonactually he is  the u-boot maintainer19:02
freemangordonme neither, sorry19:02
freemangordonanyway, bye19:02
*** shentey has joined #maemo19:02
Enrico__I know. But NITDroid has not any automatic procedure for installing on u-boot.19:02
Enrico__I need to understand how to access the NAND partition where the /root directory is (but that's not mandatory to be honest), and I don't know exactly what to pass to NITDroid through u-boot to obtain a correct startup.19:03
Enrico__I have been able to begin the boot, but NITDroid kernel doesnt' find many things (I think the root directory and the initial file system.)19:04
*** dafox has quit IRC19:19
KotCzarnyxes, why does tmo direct link to post breaks formatting? looks like runaway <center> or something, can it be fixed?19:33
KotCzarnyin related new, oscp has now manual on tmo19:33
KotCzarny*news19:33
*** Kabouik has joined #maemo19:39
*** Venemo has joined #maemo19:51
xesKotCzarny: an example?19:53
KotCzarnyjust any post, for example http://talk.maemo.org/showpost.php?p=1460158&postcount=319:53
xesKotCzarny: have you tried another browser or a different user agent?19:55
KotCzarnyhmm, it might be that dark-classic them im using. hrm19:55
KotCzarnycan you click theme on the bottom?19:55
KotCzarnyhttp://i.imgur.com/0SXVxWi.png19:56
KotCzarnythat's how it looks for me19:56
xesyep. It's an issue of the dark theme19:57
KotCzarnyeh. any chance of fixing that theme?19:57
*** sunshavi has joined #maemo19:57
*** shentey has quit IRC19:58
KotCzarny<table class="tborder" id="post1460157" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">19:58
xesi will try..19:58
KotCzarnythis looks like a culprit19:58
KotCzarnyand while it might be genuinely used for centering post on the screen, that classic themes might miss uncentering the content after that19:59
KotCzarnywhy not just scroll to post instead of displaying single-post?20:00
*** shentey has joined #maemo20:01
KotCzarnyie. those little links on thread would look better this way: http://talk.maemo.org/showthread.php?t=94590#postcount146015820:03
KotCzarnyand has a bonus of being able to read previous/next posts without changing page20:03
KotCzarnybtw. that last link already works20:04
*** shentey_ has joined #maemo20:10
*** atk is now known as atk-pbot20:13
*** dafox has joined #maemo20:14
*** atk-pbot is now known as atk20:14
DocScrutinizer05showpost is fubar, s/post/thread/ and you're fine20:19
DocScrutinizer05literally20:19
DocScrutinizer05actually showpost always been fubar20:20
*** Kabouik has quit IRC20:34
*** zGrr has quit IRC20:52
*** Kabouik has joined #maemo21:00
*** jskarvad has quit IRC21:19
*** Enrico__ is now known as Enrico_Menotti21:27
*** shentey has quit IRC21:32
*** Venemo has quit IRC21:41
*** louisdk has joined #maemo22:44
*** florian_ has joined #maemo22:45
*** florian_ is now known as florian_kc22:46
*** florian_kc has joined #maemo22:46
*** florian_kc is now known as florian22:46
*** Kabouik has quit IRC22:48
*** jonwil has joined #maemo23:00
PaliFUCK OFF PULSEAUDIO!!!23:50
Palikernel: [14525.614165] pulseaudio[5521]: segfault at 18 ip 00007ff7a1cd16d9 sp 00007ffdad0eefb0 error 4 in libpulsecore-5.0.so[7ff7a1c6f000+8f000]23:50
Paliit crashed23:50
*** Cor-Ai_ has joined #maemo23:51
Paliand now when I want to start it again it again it just show me error message: N: [pulseaudio] main.c: User-configured server at {b80eeeba890737b39f0c899a00000008}unix:/tmp/pulse-AcBAanBtuBoD/native, refusing to start/autospawn.23:51
Paliand nothing is running23:51
Paliso no sound23:51
Paligreat software... looks like if it do not do clean shutdown, then it is not possible to start it again23:52
*** Cor-Ai has quit IRC23:53
*** Cor-Ai_ is now known as Cor-Ai23:53

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!