• What are you working on? V5
    2,005 replies, posted
I can't login to gwen.facepunchstudios.com
hi
[QUOTE=shithead urkel;18290417]hi[/QUOTE] Hello. Increase your post count in OIFY, not here.
[QUOTE=Xerios3;18280341]Meh, never noticed this thread before, so here ya go add my few months old project Screenshots and video are kind of outdated Used flash10 and its new peer2peer thing the day it came out, all this was setup on a nice clean website I made on [url]www.rageEffect.com[/url] and [url]www.rageFx.com[/url] Cause of some financial problems I stopped paying for the server and closed (temporarily) the game =/ [IMG]http://i38.tinypic.com/b8r8sl.jpg[IMG] [IMG]http://i35.tinypic.com/33a8mc6.jpg[IMG] [IMG]http://i35.tinypic.com/rcvxbl.jpg[IMG] [IMG]http://i36.tinypic.com/10e0n0m.jpg[IMG] [IMG]http://i35.tinypic.com/ormmgj.jpg[IMG] [IMG]http://i34.tinypic.com/51ukja.jpg[IMG] [IMG]http://i36.tinypic.com/rwt45s.jpg[IMG] [IMG]http://i37.tinypic.com/6jkoky.jpg[IMG] watch it in HD, somehow the quality is horrible in default resolution =/ [hd]http://www.youtube.com/watch?v=GhC44QTp6Ok[hd][/QUOTE] What is the server coded for? If it is coded for windows then I can host it for you(on a real dedicated), if you like.
Decided to touch up my regular expression skills and write a proxy, currently working on scraping all the images/js/css from the site, downloading/caching all of it locally, then replacing the data with the new local urls: [url]http://dev.kerplunc.com/experiments/simple_proxy_test/proxy.php?u=http://welovebrew.kerplunc.com[/url]
[QUOTE=voodooattack;18290486]Hello. Increase your post count in OIFY, not here.[/QUOTE] you cant there
[QUOTE='-[ Fizzadar ]-;18291112']Decided to touch up my regular expression skills and write a proxy, currently working on scraping all the images/js/css from the site, downloading/caching all of it locally, then replacing the data with the new local urls: [url]http://dev.kerplunc.com/experiments/simple_proxy_test/proxy.php?u=http://welovebrew.kerplunc.com[/url][/QUOTE] Looks like something that I was working on previously in PHP. Regex is delicious. :v:
[QUOTE=Christarp4;18291176]you cant there[/QUOTE] Shhh, he's new.
[QUOTE=andersonmat;18291221]Looks like something that I was working on previously in PHP. Regex is delicious. :v:[/QUOTE] I used to hate it! Now I'm in love with it, it's epic! Grabbing all the stuff was pretty easy actually: [code]="([aA-zZ0-9\/:\.]+\.[gif|jpg|png|jpeg|js|css]{2,4})"[/code] I originally allowed any filetype, but yeah, not gonna happen. In theory, it should work with swf and pretty much any file format, and the caching is just direct copies of the files with non-alphanumerics (and dots) stripped. The only issue will be with flv files, but I've no idea how that shit works, I'll sort it later ;P
[QUOTE='-[ Fizzadar ]-;18291316']I used to hate it! Now I'm in love with it, it's epic! Grabbing all the stuff was pretty easy actually: [code]="([aA-zZ0-9\/:\.]+\.[gif|jpg|png|jpeg|js|css]{2,4})"[/code] I originally allowed any filetype, but yeah, not gonna happen. In theory, it should work with swf and pretty much any file format, and the caching is just direct copies of the files with non-alphanumerics (and dots) stripped. The only issue will be with flv files, but I've no idea how that shit works, I'll sort it later ;P[/QUOTE] Yeah, that may be the only issue because file_get_contents()--or whatever it is--wouldn't work. Although, it may be worth a shot. :psyboom: [editline]10:20PM[/editline] No, wait, fuck that. Do fopen() and go from there. :v:
Yeah I'm using file_get_contents on all the others, it's a lot easier. Looking around youtube source files, it seems simply entering: [url]http://www.youtube.com/v/GSWIP56b988[/url] returns the video, exactly as it is. The problem, I assume, is that that's the player has the flv url hidden inside, which would be impossible to retrieve. Unless I knew the location of it directly, in which case I'd have to have my own media player, and the direct flv link... hmm.
[QUOTE='-[ Fizzadar ]-;18291481']Yeah I'm using file_get_contents on all the others, it's a lot easier. Looking around youtube source files, it seems simply entering: [url]http://www.youtube.com/v/GSWIP56b988[/url] returns the video, exactly as it is. The problem, I assume, is that that's the player has the flv url hidden inside, which would be impossible to retrieve. Unless I knew the location of it directly, in which case I'd have to have my own media player, and the direct flv link... hmm.[/QUOTE] I have something for you. :v: Here's the javascript for the direct link to a youtube video. Uses regex. [php]javascript:if(document.location.href.match(/http:\/\/[a-zA-Z\.]*youtube\.com\/watch/)){document.location.href='http://www.youtube.com/get_video?fmt='+(isHDAvailable?'22':'18')+'&video_id='+swfArgs['video_id']+'&t='+swfArgs['t']}[/php] I'm pretty sure you can figure it out from there.
[QUOTE=voodooattack;18291267]Shhh, he's new.[/QUOTE] Shhh, you're new.
[QUOTE=andersonmat;18291533]I have something for you. :v: Here's the javascript for the direct link to a youtube video. Uses regex. [php]javascript:if(document.location.href.match(/http:\/\/[a-zA-Z\.]*youtube\.com\/watch/)){document.location.href='http://www.youtube.com/get_video?fmt='+(isHDAvailable?'22':'18')+'&video_id='+swfArgs['video_id']+'&t='+swfArgs['t']}[/php] I'm pretty sure you can figure it out from there.[/QUOTE] <3 As a note: I'm going for a minimal and fast proxy. Stuff like sub-css files (included with @) and css backgrounds are skipped, only direct images are loaded, since you really only need a proxy rarely, stuff like that doesn't matter.
[QUOTE='-[ Fizzadar ]-;18291682']<3 As a note: I'm going for a minimal and fast proxy. Stuff like sub-css files (included with @) and css backgrounds are skipped, only direct images are loaded, since you really only need a proxy rarely, stuff like that doesn't matter.[/QUOTE] Exactly. I feel like making mine better again because the fucking school seemingly went on a blocking rampage. :psyboom: [editline]10:35PM[/editline] They even blocked Facepunch. (Nooooo!)
Funny, I'm on my gap year, with no need of a proxy at all in sight, yet I'm building one hehe Maybe you can use mine when it's done :)
[QUOTE='-[ Fizzadar ]-;18291752']Funny, I'm on my gap year, with no need of a proxy at all in sight, yet I'm building one hehe Maybe you can use mine when it's done :)[/QUOTE] Quite possibly. We'll see how things turn out. Just make it so our DNS servers don't pick it up as a proxy. :)
[QUOTE=andersonmat;18291702]Exactly. I feel like making mine better again because the fucking school seemingly went on a blocking rampage. :psyboom: [editline]10:35PM[/editline] They even blocked Facepunch. (Nooooo!)[/QUOTE] They probably updated their blacklist.
[QUOTE=Ortzinator;18292283]They probably updated their blacklist.[/QUOTE] But they blocked a lot of other good resourceful sites too. I was sitting in CP3 this morning and noticed that every single site about C++ or anything programming related was blocked.
What I was talking about earlier worked, by the way. I overreacted, it was really easy :v: I was putting that ticket off so I feel much better now. [editline]11:10PM[/editline] [QUOTE=andersonmat;18292344]But they blocked a lot of other good resourceful sites too. I was sitting in CP3 this morning and noticed that every single site about C++ or anything programming related was blocked.[/QUOTE] You should mention it to someone, could be as simple as someone accidentally enabling the wrong blacklist category.
Need some mysql help, working on my first vbulletin plugin :v:. I am making a plugin that logs ips because I have a problem with people sharing accounts and vbulletin only logs ips of posts. Anyways... The table is below. [img]http://i37.tinypic.com/acz9s2.jpg[/img] (Special is an id for the web app that added it) Not sure how I should go about adding things. I want 1 record per ip per special. Is it easy to do that or should I change the way the table is?
[QUOTE=high6;18292498]Need some mysql help, working on my first vbulletin plugin :v:. I am making a plugin that logs ips because I have a problem with people sharing accounts and vbulletin only logs ips of posts. Anyways... The table is below. [img]http://i37.tinypic.com/acz9s2.jpg[/img] (Special is an id for the web app that added it) Not sure how I should go about adding things. I want 1 record per ip per special. Is it easy to do that or should I change the way the table is?[/QUOTE] Take a look at IP Tracker, IpInfo, and Log Logins Hack at vbulletin.org, to see if they meet your needs and build onto it if needed.
I rather make my own... Would give me some experience with it.
Whoo, a loop with a single line that's a bit worryingly long. At least my menu now isn't a bunch of hardcoded <li>s... [code]foreach ($menu as $link) { echo '<li id="menu_'.$link['id'].'"'.($hi==$link['id']?' class="sel"':'').'><a href="'.(isset($link['url'])?$link['url']:'javascript:void(0)').'">'.(isset($link['url'])?'':'<s>').''.$link['name'].''.(isset($link['url'])?'':'</s>').'</a></li>'; }[/code]
Me and a friend was experimenting with Actionscript a while ago, we didn't get further than making a box that could be thrown around. If i want to start scripting again (for real this time), should i start with Python?
Python, Ruby, Lua, Read the Sticky.
Anyone use GIT? I'm considering it because it's supposed to make branching and merging easier - how does that work out in practice?
[url]http://whygitisbetterthanx.com/[/url] A bit biased, but generally good.
[QUOTE=andersonmat;18292344]But they blocked a lot of other good resourceful sites too. I was sitting in CP3 this morning and noticed that every single site about C++ or anything programming related was blocked.[/QUOTE] What system do they use? Also, I'll just drop this here: [url]http://waroncensorship.com/test/[/url] (old project, still works I think, no one knows of it)
[QUOTE='-[ Fizzadar ]-;18295628']What system do they use? Also, I'll just drop this here: [url]http://waroncensorship.com/test/[/url] (old project, still works I think, no one knows of it)[/QUOTE] They basically search the entire page contents and if it contains blacklisted words it's blocked. :C In this case, that would be blocked because it even says proxy. :v:
Sorry, you need to Log In to post a reply to this thread.