IRC Log from 2012-01-11

00:20:21 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps
00:41:44 *** techfreak243 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps
00:45:31 *** Oni-Neoxes has quit ()
00:48:25 *** mzzt (~mzzt@2001:0:5ef5:79fb:7d:1666:52c2:132b) has joined #portableapps
00:50:35 *** The_MAZZTer has quit (Ping timeout: 260 seconds)
00:56:24 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps
00:57:36 *** techfreak243 has quit (Ping timeout: 240 seconds)
00:59:11 *** mzzt is now known as The_MAZZTer
01:07:35 *** techfreak244 has quit (Ping timeout: 240 seconds)
01:07:59 *** PlauSocks has quit (Quit: Leaving)
01:15:46 *** SergentSiler (~Kyle@unaffiliated/sergentsiler) has joined #portableapps
01:15:47 <GizmoBot> SergentSiler is a pony
01:15:49 <GizmoBot> ...
01:15:55 *** SergentSiler is now known as PlauSocks
01:27:57 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps
01:45:18 *** Oni-Neoxes has quit ()
02:00:48 <The_MAZZTer> why is popstring giving me an ANSI string when I am using all UNICODE?
02:00:49 <The_MAZZTer> stupid plugins
02:10:42 *** kAlug (~kalug@187.74.6.78) has joined #portableapps
02:12:08 <The_MAZZTer> ok how do I get NSIS to pass unicode to my plugin?
02:12:14 <The_MAZZTer> it'll only pass strings in ANSI >:(
02:13:16 <kAlug> Did you disabled CallANSIPlugin?
02:14:24 <The_MAZZTer> I don't see it enabled anywhere?
02:14:26 <The_MAZZTer> at least not in custom.nsh
02:15:48 <The_MAZZTer> oh
02:15:53 <The_MAZZTer> pluginsex
02:15:59 <The_MAZZTer> haha
02:16:00 <The_MAZZTer> here it is
02:16:22 <The_MAZZTer> yeah that will help
02:17:54 <The_MAZZTer> that also explains why my ansi plugin was sorta working
02:18:00 <The_MAZZTer> something was screwy somewhere though, kept crashing
02:24:14 *** Thasmo has quit ()
02:53:06 <The_MAZZTer> sweet, my hashing function works
03:04:35 <The_MAZZTer> TCHAR* endOfPassword = masterPassword + wcslen(masterPassword) * sizeof(TCHAR);
03:04:35 <The_MAZZTer> wcscpy(endOfPassword, _T(":{\\O*`'=pC#\"R=.Jo/XYI&MB*V-'Wis.JZ1W1!E(etZHVX5z\\@"));
03:04:38 <The_MAZZTer> why is this not concatinating my strings :(
03:05:55 <The_MAZZTer> wait figured it out... pointers are smart enough to increment by ELEMENTS rather than BYTS when I add to them
03:06:00 <The_MAZZTer> this is confusing I hate complex string types :(
03:11:52 <kAlug> The_MAZZTer: Please tell me as soon as you make some progress.
03:13:48 <The_MAZZTer> INSERT INTO "logins" VALUES('https://accounts.goo','Em','megazzt@','Pas',X'8E04D
03:13:48 <The_MAZZTer> 09A0CC111392D95A8E2CBC9','','https://accoun');
03:13:52 <The_MAZZTer> X( FAILURE
03:13:56 <The_MAZZTer> getting there though lol
03:14:02 <The_MAZZTer> it doesn't crash anymore
03:14:27 <The_MAZZTer> I think this is a problem in my sqlite stuff now, I converted all that to utf-16 and I rpboably did something dumb along the way
03:14:41 <The_MAZZTer> (strings are all halved)
03:16:41 <kAlug> You'll need to convert it to UTF-8.
03:17:40 <kAlug> Maybe sqlite3_value_text16le() works.
03:17:50 <The_MAZZTer> nah
03:17:54 <The_MAZZTer> not sure what I did wrong but reading the docs I was doing it a hard way
03:18:05 * The_MAZZTer tells sqlite to use null-terminated strings not fixed length!
03:19:29 <kAlug> Wait, you don't need to convert everything; just the encryption process.
03:19:55 <The_MAZZTer> I'm just talking about the sqlite bits where I am doing my prepare stuff
03:20:07 <The_MAZZTer> encryption itself looks like it is working :)
03:20:17 <The_MAZZTer> just have to make sure everything looks ok and I can see if the passwords are indeed portable
03:20:42 <kAlug> What changed then?
03:20:43 <The_MAZZTer> INSERT INTO "logins" VALUES('https://accounts.google.com/ServiceLogin','Email','
03:20:43 <The_MAZZTer> megazzt@gmail.com','Passwd',X'8E04D09A0CC111392D95A8E2CBC9','','https://accounts
03:20:44 <The_MAZZTer> .google.com/');
03:20:46 <The_MAZZTer> yey
03:21:44 <The_MAZZTer> I was calculating the length of a string by hand in one spot... it LOOKED correct but I was off by 2 because of unicode vs ansi
03:21:44 <The_MAZZTer> or something
03:21:51 <The_MAZZTer> anyway the docs say I can pass in -1 to have sqlite figure out the length from the null terminators :)
03:22:01 <The_MAZZTer> now to test portability!
03:26:46 <The_MAZZTer> bad news is this portable passwords will be incompatible with the old version :(
03:26:49 <The_MAZZTer> good news is it will work with utf-16 passwords now
03:28:26 <kAlug> Decode with old & encode with new.
03:29:35 <The_MAZZTer> the user can do it if they upgrade carefully
03:29:45 <The_MAZZTer> plus it's not too big a deal if they lose passwords like that if they have Chrome Sync
03:29:56 <The_MAZZTer> which didn't exist when I first wrote Portable Passwords
03:30:19 <The_MAZZTer> Chrome Sync should bring them all back, no need for Portable Password usage
03:30:42 <The_MAZZTer> aaand
03:30:46 <The_MAZZTer> it crashed on XP -_-
03:30:52 <The_MAZZTer> no error no nothing
03:31:00 <The_MAZZTer> back to square 1 again ugh
03:57:23 *** Flametail (481742a9@gateway/web/freenode/ip.72.23.66.169) has joined #portableapps
03:57:50 <Flametail> Hello, is there a pro app portabalizer here?
04:02:05 <kAlug> Flametail: What do you mean?
04:03:08 <Flametail> I'd like to portabalize an old freeware app...but I dont remember where to begin....wondering if someone will A) walk me through it again, or B) just do it for me.
04:03:50 <Flametail> Its the old freeware version of LiveZilla
04:05:01 <kAlug> Oh yes, me. Me, me, me.
04:05:29 <kAlug> Do you have it available already?
04:05:37 <Flametail> http://dl.dropbox.com/u/3295546/LiveZilla_3.1.8.4_Full.rar
04:06:04 <Flametail> Glad I kept the installer archived....with version 4 they stopped being freeware....
04:06:58 <kAlug> Alright, do you want option A or option B?
04:08:01 <Flametail> Option B is prefered. If you don't mind, of course.
04:08:49 <kAlug> Alright. I'm just not going to support it officially.
04:09:09 <Flametail> Thats not a problem, so long as it works :)
04:10:18 <The_MAZZTer> hmm something about my plugin is not working
04:10:22 <The_MAZZTer> I am getting the correct value returning from my function call in 7, but not XP
04:10:31 <The_MAZZTer> in XP I just get the value I passed in (which I never return?)
04:10:35 <The_MAZZTer> something funky is going on
04:11:06 <kAlug> Flametail: can you PM me with your email address?
04:11:40 <kAlug> The_MAZZTer: Some change in the Windows APIs?
04:11:53 <The_MAZZTer> ah looks like the Pop after the function call is not happening (nothing got pushed on the stack?)
04:11:54 <The_MAZZTer> hmmmm
04:12:06 <The_MAZZTer> yeah I'm gonna have to debug inside my function and see what it is doing
04:13:43 <The_MAZZTer> great, my function never actually runs?
04:20:08 *** kAlug has quit (Quit: goodbye (cruel)? world\.\.\.)
04:20:14 *** ronjn___ (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps
04:21:41 *** ronjn has quit (Ping timeout: 240 seconds)
04:29:05 <The_MAZZTer> oh
04:29:17 <The_MAZZTer> well it looks like whenI switched from using virtualbox to virtual pc to test
04:29:25 <The_MAZZTer> now my DLL runs >_>
04:29:47 <The_MAZZTer> AND passwords ARE PORTABLE ! :D
04:33:55 *** ronjn___ has quit (Read error: Connection reset by peer)
04:34:20 *** ronjn (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps
04:37:46 *** ronjn has quit (Remote host closed the connection)
04:38:32 *** ronjn (~ronjn@p5B13CCC3.dip.t-dialin.net) has joined #portableapps
04:49:59 <The_MAZZTer> I think that's it for testing and bugs, I'll release a development test tomorrow whee
05:19:16 *** Flametail has quit (Quit: Page closed)
05:27:15 *** The_MAZZTer has quit (Ping timeout: 268 seconds)
05:57:22 *** PlauSocks is now known as PlauSocks|AFK
06:26:20 *** Flametail (481742a9@gateway/web/freenode/ip.72.23.66.169) has joined #portableapps
06:54:37 *** Flametail has quit (Quit: Page closed)
09:23:59 *** OliverK|Away has quit (Ping timeout: 244 seconds)
10:41:02 *** OliverK|Away (~OliverK@unaffiliated/oliverk) has joined #portableapps
11:43:53 *** PlauSocks|AFK has quit (*.net *.split)
11:47:46 *** PlauSocks|AFK (~Kyle@unaffiliated/sergentsiler) has joined #portableapps
13:00:27 *** The_MAZZTer (~mzzt@2001:0:4137:9e76:18d6:3763:52c2:132b) has joined #portableapps
15:40:48 *** pa_3164 (ce2fbff3@gateway/web/freenode/ip.206.47.191.243) has joined #portableapps
15:42:10 <pa_3164> I guys, anybody would know why google chrome won't start with my portableapps. I installed portableapps on my usb stick, so as google chrome...and it appears in the apps, but just won't run
15:42:48 <Gizmokid2005> does it give you an error at all?
15:43:02 <pa_3164> nothing at all, nothing happens, its not even starting to run at all
15:44:39 <pa_3164> I see the little hourglass thingy appear for like 2-3 seconds, but then nothing
15:45:52 <Gizmokid2005> do you ever see the process(es) in task manager?
15:46:31 <pa_3164> nope, just checked, i just see portable apps running...nothing about google or chrome
15:47:20 <Gizmokid2005> what happens if you launch the GoogleChromePortable.exe process manually
15:47:25 <Gizmokid2005> do you get a splash screen?
15:48:40 <pa_3164> I did it, it installed everything fine, then if i go back and click on the .exe again it just does the same thing with the hourglass
15:48:56 <Gizmokid2005> what version of windows are you on?
15:49:03 <pa_3164> Xp something
15:49:27 <Gizmokid2005> where is the app located?
15:49:33 <pa_3164> on my usb stick
15:49:48 <Gizmokid2005> try copying the folder to your desktop and running it.
15:50:54 <pa_3164> says that chrome.exe cannot be find...which is stupid because its in the folder with it...
15:52:10 <Gizmokid2005> it shouldn't be in the same folder.
15:53:37 <pa_3164> no i mean one is in chrome bin, but they are all in the google chrome portable folder
15:53:41 <Gizmokid2005> the GoogleChromePortable folder should have GoogleChromePortable.exe, but the GoogleChromePortable\App\Chrome-bin\ folder should contain it.
15:53:48 <Gizmokid2005> try reinstalling.
15:53:49 <pa_3164> yeah
15:53:52 <pa_3164> i tried
15:55:11 <Gizmokid2005> try installing it to your desktop, or C:\ and see if you can run it from there.
15:55:27 <pa_3164> tried, says the same thing, that it cant find chrome.exe
15:55:40 <pa_3164> i dunno i have a weird computer...i might just kick it out the window
15:56:15 <Gizmokid2005> it sounds like some type of machine issue...it does work here.
15:57:26 <pa_3164> well thanks anyways, i will try my luck with firefox
15:58:26 <Gizmokid2005> yw
15:58:36 *** pa_3164 has quit (Quit: Page closed)
16:05:18 *** andreasma (~andi@p5B07D6EB.dip.t-dialin.net) has joined #portableapps
17:04:40 *** TPFC-SYSTEM (~opera@cs84248.pp.htv.fi) has joined #portableapps
18:04:14 *** Thasmo (~thasmo@d86-33-68-66.cust.tele2.at) has joined #portableapps
18:22:01 *** JohnTHaller (~JohnTHall@cpe-98-14-114-27.nyc.res.rr.com) has joined #portableapps
18:24:46 *** benedikt93 (~benedikt9@unaffiliated/benedikt93) has joined #portableapps
18:26:31 *** kAlug (~kalug@189-18-40-198.dsl.telesp.net.br) has joined #portableapps
18:26:47 <kAlug> ohai JohnTHaller
18:26:59 <JohnTHaller> hola
18:27:55 <kAlug> How are you?
18:28:36 <JohnTHaller> Doing well. You?
18:31:40 <kAlug> To the extent possible. Spent the whole night building Chromium dev just to find out I was building the wrong version.
18:31:50 <JohnTHaller> Ouch
18:33:12 <kAlug> I was thinking that we should add the latest translations updates to PAL 2.1.3/2.2.
18:33:40 <JohnTHaller> what is .3?
18:34:48 <kAlug> The current one is 2.1.2.
18:37:39 <JohnTHaller> so what is .3? or is that what you were debating calling it?
18:39:05 <kAlug> PAL 2.1.x + mutexes. I still haven't got the opportunity to talk with Chris.
18:39:11 *** andreasma has quit (Quit: Verlassend)
18:45:54 <kAlug> JohnTHaller: Do you want/need some help with the sort-of-unmaintained apps (those abandoned by the original maintainer)?
18:46:21 <JohnTHaller> Sure. I'd love more help. But wouldn't want to take your limited time away from PAL and such
18:51:02 <kAlug> Don't worry. I have lots of free time ATM. And PAL stuff is quick (in fact, most of time I'm blocked because I need to talk with Chris). Just tell me what you need help with.
18:51:47 <JohnTHaller> Ok. I'm catching up on stuff today and will think about which ones would make sense for you. Some of them haven't been PALed yet, but I've been waiting on the mutex.
18:56:06 <kAlug> Hopefully the mutex fix will be released this week.
18:56:35 *** kAlug has quit (Quit: Need to recharge the notebook. May be back in 5 minutes.)
19:00:22 *** kAlug (bd1228c6@gateway/web/freenode/ip.189.18.40.198) has joined #portableapps
19:05:37 *** os65k (~Woodzy@75-174-153-208.chyn.qwest.net) has joined #portableapps
19:19:34 *** techfreak244 (~techfreak@c-68-40-88-129.hsd1.mi.comcast.net) has joined #portableapps
19:58:18 *** kAlug has quit (Ping timeout: 258 seconds)
20:15:40 *** TPFC-SYSTEM has quit (Quit: Have a good night! :))
20:18:44 *** Venusaur (~desu@wikipedia/Antonio-Lopez) has joined #portableapps
20:20:11 *** Suiseiseki has quit (Ping timeout: 268 seconds)
20:27:15 *** pa_1476 (44220dcc@gateway/web/freenode/ip.68.34.13.204) has joined #portableapps
20:27:20 <pa_1476> hi
20:27:48 <pa_1476> I'm trying the new version but is not loading my app so i can see it.
20:27:58 <pa_1476> plus other issues
20:28:17 <pa_1476> how should i install this?
20:34:08 <JohnTHaller> new version of what, the platform?
20:35:55 <pa_1476> yes
20:37:23 <JohnTHaller> You need to install it to the same location as the old version of the platform. Generally this is the root directory (X:\). But sometimes people install it elsewhere. You can tell where the old one is installed by finding the StartPortableApps.exe or Start.exe executable and install to there
20:39:03 <pa_1476> I'm doing it aas a new one but i can see the apps that are there by default... and I can't update eaither.
20:39:14 <pa_1476> I can't
20:39:18 <JohnTHaller> There are no apps by default in the new platform
20:39:38 <JohnTHaller> You build your own suite now by clicking Apps and Get More Apps
20:41:24 *** pa_1476 has quit (Quit: Page closed)
20:42:58 *** JohnTHaller has parted #portableapps (None)
21:01:26 *** benedikt93 has quit (Quit: Bye ;))
21:59:19 *** Gizmokid2005 has quit (Ping timeout: 252 seconds)
22:02:09 *** Venusaur is now known as Suiseiseki
22:06:31 *** Guest94233 (~Gizmokid2@dedi.gizmokid2005.com) has joined #portableapps
22:28:47 *** Thasmo has quit ()
22:46:58 *** JAWS (~JAWS@adsl-99-164-46-2.dsl.akrnoh.sbcglobal.net) has joined #portableapps
22:47:45 <JAWS> Hi, PA.c folks thanks for the STK update! :)
22:54:58 *** Thasmo (~thasmo@d86-33-68-66.cust.tele2.at) has joined #portableapps
22:55:30 *** techfreak244 has quit (Quit: techfreak244)
23:03:26 *** PlauSocks|AFK is now known as PlauSocks
23:03:58 <JAWS> Well, see you everyone, thanks again! :)
23:04:13 *** JAWS has quit (Quit: Leaving.)
23:21:42 *** sar3th (~sar3th@unaffiliated/sar3th) has joined #portableapps
23:23:05 *** Guest94233 is now known as Gizmokid2005