• What are you working on? V4 (HTML ISN'T PROGRAMMING)
    2,003 replies, posted
[QUOTE=garry;17862004]This ain't Show us your Web Designs[/QUOTE] Agreed, show us more mousetrackers :v: I started work on motion detection again. Hopefully I can post something here soon. Since I started over I don't have anything spectacular to show right now. [B]Edit:[/B] Something to show: [media]http://www.youtube.com/watch?v=8leXpdDoR7U[/media]
Massive success from the JOIN stuff: [url]http://welovebrew.kerplunc.com/brew/Test_Brew[/url] went from 24 queries to 6 [url]http://welovebrew.kerplunc.com/[/url] from 29 to 12 Still converting company, user, category pages, but basically, it's a massive, massive improvement.
Good news!
Got login working yey.
[QUOTE=ddrl46;17862234]Got login working yey.[/QUOTE] On what? :P Also, anyone like the 95% vol Afgan Beer: [url]http://welovebrew.kerplunc.com/brew/Afgan_Beer[/url] made by the Afghanistan National Brewery, I'll have you know :) Also, firefox just told me I spelt afgan/istan wrong :(
[QUOTE=PoliticalM;17862412]On what? :P Also, anyone like the 95% vol Afgan Beer: [url]http://welovebrew.kerplunc.com/brew/Afgan_Beer[/url] made by the Afghanistan National Brewery, I'll have you know :) Also, firefox just told me I spelt afgan/istan wrong :([/QUOTE] You still have Alcohol spelt wrong. I'm sort of losing interest in my rougelike, its not really going anywhere. I'm going to look in to voxel engines, or maybe even look into binary formats (I think this is a reall thing, I sorta remember someone saying it to me).
[QUOTE=Robber;17862091]Agreed, show us more mousetrackers :v: I started work on motion detection again. Hopefully I can post something here soon. Since I started over I don't have anything spectacular to show right now. [B]Edit:[/B] Something to show: [media]http://www.youtube.com/watch?v=8leXpdDoR7U[/media][/QUOTE] That's awesome, is that in Java? P.s. I got the Wave invite. Thanks. :)
[QUOTE=PoliticalM;17862092]Massive success from the JOIN stuff: [url]http://welovebrew.kerplunc.com/brew/Test_Brew[/url] went from 24 queries to 6 [url]http://welovebrew.kerplunc.com/[/url] from 29 to 12 Still converting company, user, category pages, but basically, it's a massive, massive improvement.[/QUOTE] You should also make the text inside the search bar disappear when you click in it, i'm lazy.
[QUOTE=andersonmat;17862765]That's awesome, is that in Java? P.s. I got the Wave invite. Thanks. :)[/QUOTE] Thanks. Yes it is. It's quite fast too, when I don't limit the FPS (this is lmited to my cam's 30FPS) it's running at 200FPS on my notebook with 1.6Ghz.
[QUOTE=Robber;17848304]Then you wouldn't see the not so often used spots. Ths is what it looks like after an hour: [IMG_thumb]http://i33.tinypic.com/2rddfk3.png[/IMG_thumb] It's now 24 hour compatible (I hope) [IMG_thumb]http://i36.tinypic.com/ormn29.png[/IMG_thumb] [url]http://dl.getdropbox.com/u/1106779/MouseTracker2.jar[/url][/QUOTE] Is it possible to make it multi-screen compatible?
[QUOTE=Robber;17862896]Thanks. Yes it is. It's quite fast too, when I don't limit the FPS (this is lmited to my cam's 30FPS) it's running at 200FPS on my notebook with 1.6Ghz.[/QUOTE] Sweet, are you just checking individual pixel variation?
[QUOTE=jaybuz;17862855]You should also make the text inside the search bar disappear when you click in it, i'm lazy.[/QUOTE] Click >> type and it vanishes? I probably will, I just slapped that code out in a rush ages ago. A lot of the design needs a re-work I think, hopefully something wood-styled on the top, like a pub bar top or something. [QUOTE=iPope;17862599]You still have Alcohol spelt wrong.[/QUOTE] Thanks XD
[QUOTE=PoliticalM;17863116]Click >> type and it vanishes? I probably will, I just slapped that code out in a rush ages ago. A lot of the design needs a re-work I think, hopefully something wood-styled on the top, like a pub bar top or something. Thanks XD[/QUOTE] [php] <input type="text" value="search by name, company, etc" onClick="if( this.value == 'search by name, company, etc' ) { this.value='' }" onFocus="if( this.value == 'search by name, company, etc' ) { this.value='' }" onBlur="if( this.value == '' ) { this.value='search by name, company, etc' }" /> [/php] Can I haz cookie? :)
[QUOTE=andersonmat;17863034]Sweet, are you just checking individual pixel variation?[/QUOTE] Yes. I'm checking for the highest change inside the rectangle and if that's over a tolerance value it's motion. Progress: [media]http://www.youtube.com/watch?v=9fHasZDpxwo[/media] [editline]09:25PM[/editline] [QUOTE=jaybuz;17862932]Is it possible to make it multi-screen compatible?[/QUOTE] I don't have a second monitor to test it with, so no. Sorry.
[QUOTE=andersonmat;17863338][php] <input type="text" value="search by name, company, etc" onClick="if( this.value == 'search by name, company, etc' ) { this.value='' }" onFocus="if( this.value == 'search by name, company, etc' ) { this.value='' }" onBlur="if( this.value == '' ) { this.value='search by name, company, etc' }" /> [/php] Can I haz cookie? :)[/QUOTE] You don't really need both onclick and onfocus, and you can use this.defaultValue instead of the string [php] <input type="text" value="search by name, company, etc" onclick="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue" /> [/php] But I bet he can do this anyway
[QUOTE=Robber;17863352]Yes. I'm checking for the highest change inside the rectangle and if that's over a tolerance value it's motion. Progress: [media]http://www.youtube.com/watch?v=9fHasZDpxwo[/media] [editline]09:25PM[/editline] I don't have a second monitor to test it, so no. Sorry.[/QUOTE] 1. What level of variation do you use to test it? 2. I can help test as I have dual monitors. :)? [editline]03:28PM[/editline] [QUOTE=Vampired;17863435]You don't really need both onclick and onfocus, and you can use this.defaultValue instead of the string But I bet he can do this anyway[/QUOTE] I'm sure he can. I'm just a tad bored right now. :) But, I guess you learn something new everyday. :D
[QUOTE=andersonmat;17863441]1. What level of variation do you use to test it? 2. I can help test as I have dual monitors. :)?[/QUOTE] 1. Do you mean what I use to test it? Just my PC. 2. I can't send you a new version of it every 2 minutes and ask you if it works.
[QUOTE=Robber;17848304]Then you wouldn't see the not so often used spots. Ths is what it looks like after an hour: [IMG_thumb]http://i33.tinypic.com/2rddfk3.png[/IMG_thumb] It's now 24 hour compatible (I hope) [IMG_thumb]http://i36.tinypic.com/ormn29.png[/IMG_thumb] [url]http://dl.getdropbox.com/u/1106779/MouseTracker2.jar[/url][/QUOTE] Almost 24 hours. [img]http://i33.tinypic.com/28kn2vk.png[/img] :smug:
[QUOTE=Baldr;17863590]Almost 24 hours. [img]http://i33.tinypic.com/28kn2vk.png[/img] :smug:[/QUOTE] Holy fuck, that's awesome. Makes me proud. :buddy: For a higher res version look in the folder you launched it from. There should be a .png file. Don't start the program before you back that up again. It'll overwrite it.
Sorry for no updates on Arcane, Stealth & Power. There's lots of stuff going on while I'm on a fresh Windows 7 install and a new HDD. The project files need some ordering up so I can get up on my pace but you should get an update in about 2 - 3 days.
[QUOTE=Robber;17863589]1. Do you mean what I use to test it? Just my PC.[/QUOTE] More so the color variation. Like 5%?
[QUOTE=andersonmat;17863724]More so the color variation. Like 5%?[/QUOTE] I'm didn't think much about it yet, so for now I just take each color's difference (red, green, blue) and add it. If that's higher than 200 it's a change.
[QUOTE=Robber;17863627]Holy fuck, that's awesome. Makes me proud. :buddy: For a higher res version look in the folder you launched it from. There should be a .png file. Don't start the program before you back that up again. It'll overwrite it.[/QUOTE] Haven't found it but: [media]http://i36.tinypic.com/5fexq1.jpg[/media]
[QUOTE=PoliticalM;17862412]On what? :P Also, anyone like the 95% vol Afgan Beer: [url]http://welovebrew.kerplunc.com/brew/Afgan_Beer[/url] made by the Afghanistan National Brewery, I'll have you know :) Also, firefox just told me I spelt afgan/istan wrong :([/QUOTE] On my forum.
[QUOTE=Robber;17863627]Holy fuck, that's awesome. Makes me proud. :buddy: For a higher res version look in the folder you launched it from. There should be a .png file. Don't start the program before you back that up again. It'll overwrite it.[/QUOTE] How about spicing it up to indicate the cursor direction? red 0 = up red 255 = down green 1 = left green 0 = right etc
[QUOTE=garry;17864217]How about spicing it up to indicate the cursor direction? red 0 = up red 255 = down green 1 = left green 0 = right etc[/QUOTE] That's a great idea, I'll try that later and improve some other stuff. What do you think about continuing with the image it stopped last time, so you could get awesome images like Baldr without leaving it on for 24 hours?
[QUOTE=Robber;17863824]I'm didn't think much about it yet, so for now I just take each color's difference (red, green, blue) and add it. If that's higher than 200 it's a change.[/QUOTE] Aye, what if it was a tan colored wall with a tan arm / leg / other body part? :P
[QUOTE=Robber;17863589]2. I can't send you a new version of it every 2 minutes and ask you if it works.[/QUOTE] But you use dropbox, it would take 5 seconds. Also: (About an hour using Notepad++) [media]http://rewindstudios.com/files/Random/mouseTrack.png[/media]
[QUOTE=andersonmat;17864669]Aye, what if it was a tan colored wall with a tan arm / leg / other body part? :P[/QUOTE] Then it doesn't work. :v: [QUOTE=jaybuz;17865068]But you use dropbox, it would take 5 seconds. Also: (About an hour using Notepad++) [media]http://rewindstudios.com/files/Random/mouseTrack.png[/media][/QUOTE] I'm doing a complete rewrite with configuration stuff and tray icon. I'll look into multimonitor support when I'm done. I still think it would be faster to ask my sister if she could lend me her second monitor (yes, she has two and never uses them :argh:)
[QUOTE=PoliticalM;17862412]On what? :P Also, anyone like the 95% vol Afgan Beer: [url]http://welovebrew.kerplunc.com/brew/Afgan_Beer[/url] made by the Afghanistan National Brewery, I'll have you know :) Also, firefox just told me I spelt afgan/istan wrong :([/QUOTE] I think you spelled alcohol wrong. "Alocohol"
Sorry, you need to Log In to post a reply to this thread.