• What are you working on? v2
    2,000 replies, posted
[QUOTE=jaybuz;22656310]I was just saying because there are many other services.[/QUOTE] Why would you want users to stay when they are costing you money and not generating any revenue in return?
I'm calling the bully helpline
[QUOTE=jaybuz;22656310]I was just saying because there are many other services.[/QUOTE] None of which have no content or filetype/filesize restrictions, zero wait time, and direct links to the file instead of a shitty landing page containing said wait time. All that for a tiny fucking Google ad. If you don't want the ads, get premium like me.
[QUOTE=Zayfox;22657058]None of which have no content or filetype/filesize restrictions, zero wait time, and direct links to the file instead of a shitty landing page containing said wait time. All that for a tiny fucking Google ad. If you don't want the ads, get premium like me.[/QUOTE] I've always used solidfiles.
[QUOTE=jaybuz;22657150]I've always used solidfiles.[/QUOTE] Solidfiles doesn't have a sky+clouds+shrubs background.
[QUOTE=Zayfox;22657724]Solidfiles doesn't have a sky+clouds+shrubs background.[/QUOTE] That is the most ridiculous reasoning, just stop defending him because everyone is to themself. fuck.
I do like Filebox still, although I still prefer Anyhub, and I have adblock off for it. :downs:
[QUOTE=Wipmuck;22657739]That is the most ridiculous reasoning, just stop defending him because everyone is to themself. fuck.[/QUOTE] Out. Get it. That was a joke reasoning, so quit it with the 'angry-cause-there's-a-fist-up-my-ass' rantings because I really don't care for them whatsoever. I can defend him if I like, you can't do shit about it. The lack of restrictions, ads and shite landing pages on Anyhub make it an awesome service, it made it to Lifehacker a couple of days after (re)launch, you can't say that about anything [b]you've[/b] developed. [editline]Hurr[/editline] [QUOTE]That is the most ridiculous reasoning, just stop defending him because everyone is to themself. fuck.[/QUOTE] [QUOTE]just stop defending him because everyone is to themself.[/QUOTE] [QUOTE]everyone is to themself.[/QUOTE] :byodood: [QUOTE]themself[/QUOTE] :byodood::byodood:
Why does it keep logging me out of Anyhub? :saddowns:
[QUOTE=Snakess;22657821]Why does it keep logging me out of Anyhub? :saddowns:[/QUOTE] Cookie issue, it used to be something like 1hr before I ranted at turb_ to fix it. Should be at like 999999999999 days or something now as you can't set permanent ones.
Session state is currently stored in memory, so when the mono worker process recycles, sessions go too. I'll look into setting up out of process session state or storing session state on disk [editline]11:07PM[/editline] [QUOTE=Zayfox;22657859]Cookie issue, it used to be something like 1hr before I ranted at turb_ to fix it. Should be at like 999999999999 days or something now as you can't set permanent ones.[/QUOTE] It was at 'logout when browser is exited', but now the cookies are set to expire after a week
Only thing. I'm not blocking ads and I still get your shitty page telling me that I am. :derp:
[QUOTE=turb_;22657867]Session state is currently stored in memory, so when the mono worker process recycles, sessions go too. I'll look into setting up out of process session state or storing session state on disk [editline]11:07PM[/editline] It was at 'logout when browser is exited', but now the cookies are set to expire after a week[/QUOTE] Well I login.. then the page reloads, and I'm logged out again. Or I get to press one link like account, and I'm logged out again?
[QUOTE=Zayfox;22657794]Out. Get it. That was a joke reasoning, so quit it with the 'angry-cause-there's-a-fist-up-my-ass' rantings because I really don't care for them whatsoever. I can defend him if I like, you can't do shit about it. The lack of restrictions, ads and shite landing pages on Anyhub make it an awesome service, it made it to Lifehacker a couple of days after (re)launch, you can't say that about anything [b]you've[/b] developed. [editline]Hurr[/editline] :byodood: :byodood::byodood:[/QUOTE] Thanks for stealing my byodood gimmick :saddowns: Also I'm back from a trip to Rome (it was nice) and I'm not satisfied with the fact that you guys are failing badly at helping null :v:
Starting to create pages to distribute Feather. :dance: [url]http://feather.z-dev.org/[/url] If you find any mistakes with my grammar and/or spelling let me know!
[QUOTE=andersonmat;22666849]Starting to create pages to distribute Feather. :dance: [url]http://feather.z-dev.org/[/url] If you find any mistakes with my grammar and/or spelling let me know![/QUOTE] And I thought up the name :buddy:
[QUOTE=andersonmat;22658492]Only thing. I'm not blocking ads and I still get your shitty page telling me that I am. :derp:[/QUOTE] Surf to [url]http://static.anyhub.net/ads/ads.css[/url] and tell me if it loads
[QUOTE=turb_;22667570]Surf to [url]http://static.anyhub.net/ads/ads.css[/url] and tell me if it loads[/QUOTE] It loads.
[QUOTE=Fizzadar;22652974][img]http://yipoorg.lg1x8.simplecdn.net/cb91c2.download[/img] That's the browse page start, it'll cover the home page, all game and category pages. Each time you submit the form it rebuilds your url to a nice friendly url.[/QUOTE] Just a heads up; check out the <optgroup> tag if you want to have headers/groups within the drop down list, makes it look a little nicer.
[QUOTE=streeter;22673060]Just a heads up; check out the <optgroup> tag if you want to have headers/groups within the drop down list, makes it look a little nicer.[/QUOTE] I need the headers to be selectable too, unfortunately :( [editline]11:22PM[/editline] Rather than using SVN, I've come up with my own development solution, seeing as I'm the only developer. Firstly I change local stuff, then I upload to the public dev site, which is an exact mirror (with it's own database, I still need to tell this script to skip the db config, but whatever). Then the following function/PHP file will copy over from dev to live. [code] function copyDir( $dir ) { global $config; foreach( glob( $dir . '*' ) as $resource ): if( is_dir( $resource ) ): if( !is_dir( str_replace( $config['readDir'], $config['writeDir'], $resource ) ) ): if( @mkdir( str_replace( $config['readDir'], $config['writeDir'], $resource ), 0777, true ) ): echo '<br /><strong>Directory:</strong> ' . str_replace( $config['readDir'], '', $resource ) . '<br />'; else: echo '<br /><strong>Directory Error:</strong> ' . str_replace( $config['readDir'], '', $resource ) . '<br />'; endif; else: echo '<br /><strong>Directory:</strong> ' . str_replace( $config['readDir'], '', $resource ) . '<br />'; endif; copyDir( $resource . '/' ); else: if( @copy( $resource, str_replace( $config['readDir'], $config['writeDir'], $resource ) ) ): echo 'File: ' . str_replace( $config['readDir'], '', $resource ) . '<br />'; else: echo '<strong>Error</strong>: ' . str_replace( $config['readDir'], '', $resource ) . '<br />'; endif; endif; endforeach; } [/code]
A colourtheme chooser, that prints out likes this: [img]http://www.jalsoedesign.net/colourtheme.jpg[/img] For a colourblind like me, it's really useful to see what colours do and do not fit together when they're actually on it.
[url]http://youarelate.com[/url] Only bought the domain yesterday, I intend to add more late.
I just realized how fucking terrible my website is :v: Hell, run this through the WC3 tester [url]http://www.echo-photoshop.com/index.html[/url] I'm so bad :v: Time to start from scratch again!
[QUOTE=Protocol7;22678354]I just realized how fucking terrible my website is :v: Hell, run this through the WC3 tester [url]http://www.echo-photoshop.com/index.html[/url] I'm so bad :v: Time to start from scratch again![/QUOTE] You know, you could just fix all the errors.
[QUOTE=Crhem van der B;22679037]You know, you could just fix all the errors.[/QUOTE] Yea I think it looks okay, apart from your content text isn't getting wrapped in Firefox 3.6.3
[QUOTE=h2ooooooo;22676270]A colourtheme chooser, that prints out likes this: Colorthing For a colourblind like me, it's really useful to see what colours do and do not fit together when they're actually on it.[/QUOTE] Is your site supposed to look like this? [IMG]http://dl.dropbox.com/u/2380919/Photos/20100617-22%3A14%3A45.png[/IMG] "et"?
[url]http://www.jalsoedesign.net/JDsplash.jpg[/url] Apprently, yes o_O
[QUOTE=Fizzadar;22674257]Rather than using SVN, I've come up with my own development solution, seeing as I'm the only developer. Firstly I change local stuff, then I upload to the public dev site, which is an exact mirror (with it's own database, I still need to tell this script to skip the db config, but whatever). Then the following function/PHP file will copy over from dev to live.[/QUOTE] And exactly how does this replace a [b]version control system[/b]? Sounds more like a deployment script to me.
[QUOTE=Tuntis;22679848]And exactly how does this replace a [b]version control system[/b]? Sounds more like a deployment script to me.[/QUOTE] He doesn't seem to use more advanced/svn-specific features (branching, merging) as much as he uses basic commit-update, so for him it pretty much replaces svn.
[QUOTE=Sleighyuh;22679263]Is your site supposed to look like this? [IMG]http://dl.dropbox.com/u/2380919/Photos/20100617-22%3A14%3A45.png[/IMG] "et"?[/QUOTE] [code] jalsoedesigN et [/code] You know.. the .net end of the domain
Sorry, you need to Log In to post a reply to this thread.