--- Log for 25.09.115 Server: sinisalo.freenode.net Channel: #rockbox --- Nick: logbot- Version: Dancer V4.16 Started: 8 days and 19 hours ago 00.00.03 Join Bray90820 [0] (~Bray90820@173-17-46-117.client.mchsi.com) 00.05.32 Part b0hoon ("GTG... Bye.") 00.06.37 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.") 00.17.22 Quit ender` (Quit: The trouble with quotes found on the Internet is that they often turn out to be unreliable. -- William Shakespeare) 00.25.34 Quit Ivoah2 (Quit: Connection closed for inactivity) 00.31.40 *** Saving seen data "./dancer.seen" 00.32.44 Join Ivoah2 [0] (uid49352@gateway/web/irccloud.com/x-tqdgyiwxncoumyim) 00.34.31 Quit petur (Remote host closed the connection) 00.54.05 Quit nosa-j (Read error: Connection reset by peer) 01.19.29 Quit girafe (Read error: Connection reset by peer) 01.50.52 Join nosa-j [0] (~m00k@cpe-24-74-14-251.carolina.res.rr.com) 01.57.15 Quit jtdesigns01 (Ping timeout: 240 seconds) 01.57.15 Quit foolsh (Ping timeout: 240 seconds) 01.57.15 Quit WakiMiko (Ping timeout: 240 seconds) 01.58.18 Join jtdesigns01 [0] (~jonathan@2601:400:8000:2669:6409:610c:e172:ce74) 01.59.00 Join foolsh [0] (~quassel@2601:241:c200:4bc5:5878:944f:245b:e242) 01.59.33 Quit jtdesigns01 (Client Quit) 01.59.50 Join jtdesigns01 [0] (~jonathan@2601:400:8000:2669:6409:610c:e172:ce74) 02.00.29 Join WakiMiko [0] (~WakiMiko@unaffiliated/wakimiko) 02.00.56 Quit jtdesigns01 (Client Quit) 02.01.10 Join jtdesigns01 [0] (~jonathan@2601:400:8000:2669:6409:610c:e172:ce74) 02.31.44 *** Saving seen data "./dancer.seen" 02.34.52 Quit ParkerR (Read error: Connection reset by peer) 02.45.19 Join ParkerR [0] (~ParkerR@unaffiliated/parkerr) 02.46.51 Join jtdesigns01bot [0] (~jonathan@c-68-43-178-141.hsd1.mi.comcast.net) 02.48.07 Quit jtdesigns01bot (Remote host closed the connection) 02.49.29 Join Strife89 [0] (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net) 02.50.56 Join jtdesigns01bot [0] (~jonathan@c-68-43-178-141.hsd1.mi.comcast.net) 03.02.22 Join [Franklin] [0] (~franklin@unaffiliated/franklin) 03.20.54 # <[Franklin]> now that gerrit works again, can someone commit g#1206? 03.21.09 # 3Gerrit review #1206 at http://gerrit.rockbox.org/r/1206 : 3[Superdom] Bugfix by Franklin Wei 03.23.12 # <[Saint]> There was nothing stopping anyone from doing that prior. 03.23.49 # <[Franklin]> nobody could log into their "proper" account 03.24.07 # <[Saint]> Sure they could. 03.24.22 # <[Saint]> There were several people who still had active session cookies. 03.25.02 # <[Saint]> It was only problematic if you wiped out your cache or used an incognito/private browsing session. 03.26.35 # <[Saint]> But that part (oauth2) has been fixed for weeks now. 03.34.02 Quit ZincAlloy (Quit: Leaving.) 03.51.46 # So, i`m working on the code for SW:DF again, but i`m back at the problem i was at last time 03.52.01 Join JdGordon [0] (~jonno@ppp118-209-61-254.lns20.mel4.internode.on.net) 03.52.01 Quit JdGordon (Changing host) 03.52.01 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon) 03.52.32 # whenever i try to read into a struct, printing the contents of it tells me i`ve read a lot more than i was supposed too 03.52.33 # http://pastebin.com/R6yT4Nk2 03.53.21 # basically, "rb->splash(HZ*2, current_header.magic);" prints about 7 characters, not 4 03.53.38 Join cmhobbs [0] (~cmhobbs@fsf/member/cmhobbs) 03.54.35 # <[Franklin]> jtdesigns01: it's not null-terminated, most likely 03.54.49 # <[Franklin]> in C, the convention is for strings to be terminated by a NULL character 03.55.11 Quit JdGordon_ (Ping timeout: 250 seconds) 03.55.35 # <[Franklin]> if you want to output a string with rb->splash, it must be null-terminated 03.55.38 # hmm, so splash prints more than the array, just cuz theres no null termination? 03.55.43 # <[Franklin]> yes 03.55.49 # wow 03.55.52 # mind blown 03.55.55 # <[Franklin]> it prints all the characters beyond the array until it encounters a NUL 03.56.03 # <[Franklin]> which is very, very bad 03.56.16 # i knew strings were null terminated but i thought it was just convention 03.56.23 # ok thanks 03.56.24 # <[Franklin]> it is just convention 03.56.39 # well you get what i mean (i hope) 03.56.45 # <[Franklin]> there's no RULE that says that ALL strings must be null-terminated 03.56.46 # at least, i get what you mean 03.56.54 # <[Franklin]> but it's deeply embedded into the language 03.57.01 # (i think) :P 03.57.09 # <[Franklin]> i.e. all string literals are atuomatically terminated with a NUL 03.57.27 # <[Franklin]> jtdesigns01: you're also trying to print out a number, it seems 03.57.47 # yeah, a pointer to the index 03.57.53 # *offset 03.58.05 # <[Franklin]> when you pass it to rb->splash, it treats the number just like a string 03.58.25 # <[Franklin]> there's no automatic type conversion in C beyond the basics 03.58.28 # how would i cast it? 03.58.34 # <[Franklin]> you wouldn't. 03.58.37 # oh 03.58.39 # <[Franklin]> instead, you'd use rb->splashf 03.58.46 # oh, duh 03.58.53 # lol thanks 03.59.05 # <[Franklin]> like this: rb->splashf(HZ, "%d", mynumber) 04.00.18 # thanks 04.00.25 # now to read in an index entry 04.02.47 # hold on my, mom says i have to do the dishes first :) 04.03.00 # <[Franklin]> good night guys 04.03.03 Quit [Franklin] (Quit: Lost terminal) 04.03.13 Join JdGordon_ [0] (~jonno@rockbox/developer/JdGordon) 04.05.50 Quit JdGordon (Ping timeout: 240 seconds) 04.29.03 Quit cmhobbs (Ping timeout: 255 seconds) 04.30.40 Quit emphaser () 04.31.48 *** Saving seen data "./dancer.seen" 05.15.34 Quit jtdesigns01 (Remote host closed the connection) 05.21.14 Join JdGordon [0] (~jonno@rockbox/developer/JdGordon) 05.23.30 Quit JdGordon_ (Ping timeout: 255 seconds) 05.26.16 Join JdGordon_ [0] (~jonno@rockbox/developer/JdGordon) 05.27.50 Quit JdGordon (Ping timeout: 240 seconds) 05.34.51 Join Strife89|Laptop [0] (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net) 05.35.36 Quit Strife89 (Disconnected by services) 05.35.41 Nick Strife89|Laptop is now known as Strife89 (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net) 05.36.05 Join Strife89|Desktop [0] (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net) 05.49.08 Quit TheSeven (Disconnected by services) 05.49.21 Join [7] [0] (~quassel@rockbox/developer/TheSeven) 06.31.50 *** Saving seen data "./dancer.seen" 08.18.19 Join wodz [0] (~wodz@iwl138.internetdsl.tpnet.pl) 08.20.45 Quit Bray90820 (Read error: Connection reset by peer) 08.21.11 Join Bray90820 [0] (~Bray90820@2604:2d80:800a:836e:8009:8029:ffa8:bd4d) 08.31.51 *** Saving seen data "./dancer.seen" 08.33.42 Join ender` [0] (krneki@foo.eternallybored.org) 08.33.46 Quit pixelma (Remote host closed the connection) 08.33.46 Quit amiconn (Remote host closed the connection) 08.33.57 Join pixelma [0] (~pixelma@rockbox/staff/pixelma) 08.34.00 Join amiconn [0] (~amiconn@rockbox/developer/amiconn) 08.47.59 Join petur [0] (~petur@rockbox/developer/petur) 08.57.56 Join Bray9082_ [0] (~Bray90820@2604:2d80:800a:836e:8009:8029:ffa8:bd4d) 09.00.29 Quit Bray90820 (Ping timeout: 240 seconds) 09.00.29 Quit foolsh (Ping timeout: 240 seconds) 09.02.13 Join foolsh [0] (~quassel@2601:241:c200:4bc5:506a:b198:c8d9:c1f1) 09.03.53 Quit Strife89 (Quit: Leaving) 09.19.47 Nick Strife89|Desktop is now known as Strife89 (~Strife89@adsl-98-80-234-70.mcn.bellsouth.net) 09.30.29 Join TheLemonMan [0] (~lemonboy@unaffiliated/thelemonman) 09.41.05 # kugel: View buflib allocs debug screen crashes rb on ART. Seems like lcd_update() called from wrong thread 09.42.02 # lcd_update_rect() to be more precise 09.45.37 Quit nosa-j (Ping timeout: 246 seconds) 10.07.43 Join b0hoon [0] (~quassel@62.87.184.82) 10.20.56 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de) 10.22.58 # Build Server message: 3New build round started. Revision d552ff2, 255 builds, 27 clients. 10.28.42 # Build Server message: 3Build round completed after 344 seconds. 10.28.44 # Build Server message: 3Revision d552ff2 result: 0 errors 2 warnings 10.28.45 # Build Server message: 3New build round started. Revision 072d3cb, 255 builds, 27 clients. 10.31.54 *** Saving seen data "./dancer.seen" 10.33.32 # Build Server message: 3Build round completed after 288 seconds. 10.33.33 # Build Server message: 3Revision 072d3cb result: 0 errors 10 warnings 10.34.03 Quit alucryd (Remote host closed the connection) 10.41.29 Join pamaury [0] (~quassel@sphinx.lix.polytechnique.fr) 10.41.29 Quit pamaury (Changing host) 10.41.29 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 10.50.55 Join nosa-j [0] (~m00k@cpe-24-74-14-251.carolina.res.rr.com) 10.59.38 Quit munch (Ping timeout: 240 seconds) 11.22.48 # kugel: The interesting thing - if I protect lcd_update() and lcd_update_rect() to do something only when called from main thread the screen stays black. 11.35.27 Quit krnlyng (Read error: Connection reset by peer) 11.36.10 Join krnlyng [0] (~liar@83.175.90.24) 11.38.34 Quit rela (Ping timeout: 264 seconds) 11.43.15 # kugel: its scrolling which blows up lcd updates! 11.50.26 # kugel: scroll_thread calls lcd_update_rect() so not all screen updates are from main thread. 12.09.15 Quit nosa-j (Ping timeout: 252 seconds) 12.16.07 Join munch [0] (~munch@unaffiliated/munch) 12.16.24 # kugel: with your patch + tlsf + hacky fix for scroll crash forcing buflib compacting or buflib alloc doesn' 12.16.28 # t kill playback 12.23.18 Quit munch (Ping timeout: 240 seconds) 12.31.55 *** Saving seen data "./dancer.seen" 12.33.01 # memory usage from system POV is around 2*MEMORYSIZE*1024*1024 + 0.5MB so with MEMORYSIZE set to 2 it is around 5MB, with default 8 it is over 16MB 12.55.10 Join munch [0] (~munch@unaffiliated/munch) 13.00.05 Quit munch (Ping timeout: 240 seconds) 13.06.25 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 13.35.39 Quit pamaury (Read error: Connection reset by peer) 14.11.15 Quit mc2739 (Ping timeout: 246 seconds) 14.13.19 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739) 14.25.47 Part b0hoon ("GTG... Bye.") 14.29.09 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de) 14.31.56 *** Saving seen data "./dancer.seen" 14.39.46 Join ZincAlloy [0] (~Adium@p57B9437E.dip0.t-ipconnect.de) 14.40.45 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 14.45.43 Join krabador [0] (~krabador@unaffiliated/krabador) 14.47.39 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 14.54.51 Quit pamaury (Ping timeout: 272 seconds) 15.07.19 Join emp [0] (~thc@87.154.188.47) 15.07.19 Nick emp is now known as emphaser (~thc@87.154.188.47) 15.15.26 Quit wodz (Remote host closed the connection) 15.22.51 Join einhirn [0] (~Miranda@p4FC10966.dip0.t-ipconnect.de) 15.28.15 Join amayer [0] (~amayer@mail.weberadvertising.com) 15.43.51 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 16.03.53 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 16.19.46 Quit petur (Quit: *plop*) 16.20.38 Quit pamaury (Ping timeout: 240 seconds) 16.32.00 *** Saving seen data "./dancer.seen" 16.35.47 Quit krabador (Quit: Take The Time) 17.06.57 Join thomasjfox [0] (~thomasjfo@rockbox/developer/thomasjfox) 17.21.50 Quit TheLemonMan (Quit: "It's now safe to turn off your computer.") 17.51.49 Join nosa-j [0] (~m00k@cpe-24-74-14-251.carolina.res.rr.com) 17.52.29 Quit Strife89 (Quit: Vamoose.) 17.52.53 Join alucryd [0] (~quassel@archlinux/developer/alucryd) 17.54.23 Quit alucryd (Remote host closed the connection) 17.55.30 Join alucryd [0] (~quassel@archlinux/developer/alucryd) 18.06.06 Join krabador [0] (~krabador@unaffiliated/krabador) 18.26.44 Quit thomasjfox (Ping timeout: 240 seconds) 18.32.03 *** Saving seen data "./dancer.seen" 19.04.26 Join rela [0] (~x@pdpc/supporter/active/rela) 19.21.44 Join munch` [0] (~munch@2601:98a:302:955d:126f:3fff:fed7:41) 19.37.08 Quit krabador (Ping timeout: 255 seconds) 19.39.36 Quit rela (Read error: Connection reset by peer) 20.32.05 *** Saving seen data "./dancer.seen" 20.51.09 Quit shamus (Ping timeout: 240 seconds) 20.52.12 Join shamus [0] (~shmaus@ip-206-192-194-12.marylandheights.ip.cablemo.net) 20.57.30 Quit bluebrother (Disconnected by services) 20.57.35 Join bluebrother [0] (~dom@rockbox/developer/bluebrother) 20.57.43 Join fs-bluebot_ [0] (~fs-bluebo@f053155097.adsl.alicedsl.de) 21.00.15 Quit fs-bluebot (Ping timeout: 268 seconds) 21.05.09 Join pamaury [0] (~quassel@rockbox/developer/pamaury) 21.13.09 Quit chxr (Ping timeout: 246 seconds) 21.13.47 Quit mc2739 (Ping timeout: 250 seconds) 21.15.20 Quit pamaury (Ping timeout: 265 seconds) 21.24.57 Join chxr [0] (~chxr@procasur.inc.cl) 21.52.48 Join jtdesigns01 [0] (~jonathan@2601:400:8000:2669:60b0:ceaa:a78c:8084) 22.26.54 Join [Franklin] [0] (~franklin@unaffiliated/franklin) 22.27.53 Quit alucryd (Ping timeout: 250 seconds) 22.28.11 Join alucryd [0] (~quassel@archlinux/developer/alucryd) 22.29.08 Join joshuasm32 [0] (~josh@2605:a000:160f:6030:a6db:30ff:fe05:c830) 22.29.35 # What's the Emcore IRC channel? 22.29.43 # <[Franklin]> try #freemyipod 22.29.49 # Thanks 22.32.06 *** Saving seen data "./dancer.seen" 22.35.36 Quit nosa-j (Ping timeout: 246 seconds) 22.37.26 Join nosa-j [0] (~m00k@cpe-24-74-14-251.carolina.res.rr.com) 22.47.16 Quit shamus (Read error: Connection reset by peer) 22.47.43 Join shamus [0] (~shmaus@ip-206-192-194-12.marylandheights.ip.cablemo.net) 22.59.44 Quit [Franklin] (Ping timeout: 240 seconds) 23.01.52 Join [Franklin] [0] (~franklin@unaffiliated/franklin) 23.10.29 # <[Franklin]> foolsh: what do you think about the duckyscript v2 spec? http://gerrit.rockbox.org/r/#/c/1212/2/apps/plugins/ducky.c 23.11.31 # <[Franklin]> I added some arithmetic functions and conditional jumps 23.24.52 Part joshuasm32 23.30.10 # Oh sorry I ran out again to the store :P 23.30.27 # <[Franklin]> no problem 23.30.59 # I was thinking we could do away with goto's as long as we had an else function 23.31.16 # it may make the script longer and more complex but thats not an issue 23.32.32 # <[Franklin]> hmm 23.32.43 # <[Franklin]> that might be to complex 23.33.08 # That cool it's your baby 23.39.21 # ok, sorry to make you solve another one of my problems, but i am having trouble reading a binary file again 23.39.51 # http://pastebin.com/gGWX9Btv 23.40.53 # current_header.idx_offset has an offset to where i read num_files from 23.41.27 # then, its supposed to skip 3 longs to the first index entry name 23.42.28 # then, it should skip two longs to the next index entry name, and keep doing that for all the index entries 23.43.37 # it reads the first name correctly, but after that, it reads only portions of the names 23.50.54 # hooray, i figured it out! 23.51.39 # i needed to add the size of the name to the incremented offset as well as the two longs 23.53.04 Quit amayer (Quit: Leaving)