• What are you working on? V3
    2,001 replies, posted
[QUOTE=Blynx6;17403420]Good luck. [b]I've given up with C++ for a while and gone back to good old PHP because I reinstalled to Vista[/b]. So what am I working on now? A forum. AGAIN. This time going to try and make it more secure then I ever have. Hopefully going to implement some of FP's features. The popup moderation boxes.[/QUOTE] C++ doesn't work on vista? :ohdear:, or you don't feel like reinstalling an ide? :P You had a nice forum going before, but you stopped.
[QUOTE=efeX;17403523]C++ doesn't work on vista? :ohdear:, or you don't feel like reinstalling an ide? :P You had a nice forum going before, but you stopped.[/QUOTE] I can't be bothered reinstalling the ide. And thank you. I think that's the first post where you haven't trolled me. Are you sick? :v: [editline]04:59PM[/editline] I find it funny how someone rates my posts dumb.
[QUOTE=Sippeangelo;17390932]Good luck with that. I think people need to "accept" the applet before they can use it, though. Of course, that could be forced. Disabling java is also very easy. Good idea anyway.[/QUOTE] Well when you sign the applet it allows the users to accept it (that run/cancel thing when you see a signed applet in your browser) and that gives it elevated privileges. Making sure people don't forge the hwid may be a bit tricky. I guess I am going to just have it retrieve a lot of information. [QUOTE=BlackPhoenix;17391321]What if I don't have java installed on any of my computers.[/QUOTE] It's no more different than if I were to build it around flash and you don't have flash installed... You either install it or don't visit the site. I know that pushes away visitors but it is better than having 50 spammers constantly changing their ips, resigning up and spamming.
[media]http://www.youtube.com/watch?v=ackpe5eHrUw[/media]
I jinxed myself :ohdear: Everything was going great until I realized that: the Mach-o binaries the apple GCC was creating were actually elf format, the "native" gcc was producing coff format, and the windows version wasn't even compiling. Suffice to say I am no recompiling gcc plain (no llvm-gcc), and I'm going to try it with native versions this time, and hopefully (HOPEFULLY!) it'll work this time. If it doesn't I have one plan left, which is to use the proper llvm-gcc to emit llvm bitcode, produce assembly files, run that shit through the yasm modular assmbler, and then link that shit. REALLY REALLY hoping I don't fuck up (For native GCC I haven't except for the apple build) Chandler is jinxed round two! START! :ohdear:
[QUOTE=Blynx6;17403420]Hopefully going to implement some of FP's features. The popup moderation boxes.[/QUOTE] Just don't use vB's "clever" methods of storing sessions, where if you get your login stolen, you can't force-logout the user. Massively retarded solution.
[QUOTE=Levybreak;17398813]I agree. Namely, fueldump. I would love fueldump. (You can get the source .map's for all the wolfET maps now, anyways, though.)[/QUOTE] Yeah, you have to rip the main brushwork for it to work with source though
[QUOTE=PoliticalM;17404837]Just don't use vB's "clever" methods of storing sessions, where if you get your login stolen, you can't force-logout the user. Massively retarded solution.[/QUOTE] I'll probably add sessions when I can work out a method :v: [editline]07:57PM[/editline] [img]http://img15.imageshack.us/img15/1511/forumea.jpg[/img] For anyone who wants to see my progress. It is all dynamic, pulling all the information (config stuff) from a database. Yes it looks exactly like facepunch, but I needed something to use for a layout, facepunch was the easiest to recreate. Eventually going to merge it into my own theme.
Nice i suppose btw; Try and get the two textbox's to align.
[QUOTE=Wipmuck;17405480]Nice i suppose btw; Try and get the two textbox's to align.[/QUOTE] I will try. Just gotta redo a section of the php and i'll get onto it.
[URL=http://filesmelt.com/][IMG]http://filesmelt.com/downloader/graphicrougelike2.png[/IMG][/URL] Progress! See I am not all talk :D
hi to you too
[quote=Blynx6][img]http://img15.imageshack.us/img15/1511/forumea.jpg[/img][/quote] font is a little too big.
What are people's views on XSLT and [url=http://jakemadethis.com/d/xml/projects.xml][B]what does this look like in your browser?[/B][/url] (If it doesn't look very shit it works) The site layout is downloaded only once and then cached and then only data specific to the page is sent This separates content and layout and therefore if you wanted to change the template you'd just need to update the XSL and CSS files. The sidebar/header/footer can be changed in base.xsl and every page imports this file. Min. browser is IE6, FF3, Chrome 1, Opera 9 or Safari 3. This is project.xml [code] <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="./page.xsl"?> <page> <slug>projects</slug> <title>Projects</title> <content> Stuff that I wrote </content> <child> <title>An Awesome Page</title> <slug>example-project</slug> <desc>Some awesome stuff</desc> </child> <child> <title>Example project</title> <slug>example-project</slug> <desc>This is an example project</desc> </child> <tag>code</tag> </page> [/code] [url=http://jakemadethis.com/d/xml/]more[/url]
Very nice
Yeah, that XSLT looks pretty good. I might have to look into it further when I next consider working on my website, because as it stands at the moment my site is pretty poorly designed in the source code. In any case, yeah, it doesn't look like shit for me so clearly it works in chrome (edit: v3.0.195.21). Props.
[QUOTE=Vampired;17405940]What are people's views on XSLT and [url=http://jakemadethis.com/d/xml/projects.xml][B]what does this look like in your browser?[/B][/url] (If it doesn't look very shit it works) The site layout is downloaded only once and then cached and then only data specific to the page is sent This separates content and layout and therefore if you wanted to change the template you'd just need to update the XSL and CSS files. The sidebar/header/footer can be changed in base.xsl and every page imports this file. Min. browser is IE6, FF3, Chrome 1, Opera 9 or Safari 3.[/QUOTE] Looks good in Chrome 4 here. I like your simple design.
Looks good in all browsers here, FF, Chrome and IE.
Use custom session handling, just write your own, I store two pieces of info via cookies on the user, a random "session id" and a password. It checks the session id, and the password, and then, from the sessions table, grabs the session data (serialized in a largetext field). Of course, this session data contains an IP as well as other stuff, and that IP has to match for them to be not logged out, stops session stealing except for shared computers. Good thing is, it means if the user changes IP, cleans their cookies or if the server cleans the sessions table, then they are logged out, giving total control to everyone :D
Coded swords into my rougelike! Now to work on the player. [media]http://www.youtube.com/watch?v=msXxEZJQrUg[/media]
[QUOTE=Robber;17404660][media]http://www.youtube.com/watch?v=ackpe5eHrUw[/media][/QUOTE] How does it work? You store the previous frame, and compare it with the current frame, then you find different pixels (by a level of tolerance) ?
[QUOTE=SupahVee;17412713]How does it work? You store the previous frame, and compare it with the current frame, then you find different pixels (by a level of tolerance) ?[/QUOTE] Yes, I downscale it to 100px first and create a 4th (1st high res, 2nd old downscaled, 3rd new downscaled) where the color for each pixel is r/g/b/a: 255/0/0/(red difference+blue difference+green difference) If alpha is >255 I set it to 255. Then i just scale the smaller difference image to the size of the high res one and draw it on top of it.
[url]http://winsaucestudios.com/test.php[/url] :)
[img]http://i35.tinypic.com/16927g0.png[/img] & stripes
I get the same, is it meant to look like that? Looks kinda out of place.
Yes it's meant to look like that, something a 'lil different, ya know :P Also stripes are... borrowed :D
It looks wrong, with the bar stretching all the out. Looks like a mistake. Perhaps, if you didn't stretch the page all the way out to the right side, it would look right. So the white part would be centered, but the black bar would extend to both sides?
[QUOTE=PoliticalM;17419492][url]http://winsaucestudios.com/test.php[/url] :)[/QUOTE] garry stripes + "winsauce" epic lulz + broken stuff
[QUOTE=gngbng;17420368]garry stripes + "winsauce" epic lulz + broken stuff[/QUOTE] Broken stuff? Garry stripes, honestly I don't think he "owns" stripes? [QUOTE=Dr Magnusson;17420314]It looks wrong, with the bar stretching all the out. Looks like a mistake. Perhaps, if you didn't stretch the page all the way out to the right side, it would look right. So the white part would be centered, but the black bar would extend to both sides?[/QUOTE] Looks too standard, tried that :P On another note, server list ([url]http://winsaucestudios.com/servers/[/url]) works as does ZW stats ([url]http://winsaucestudios.com/stats/zombifiedworld/[/url])
[QUOTE=PoliticalM;17421528] honestly I don't think he "owns" stripes?[/QUOTE] no you just copied his style which is ugly and overused
Sorry, you need to Log In to post a reply to this thread.