• Web Development - WAYWO - #8
    5,514 replies, posted
[t]http://i.imgur.com/CQMcRZS.jpg[/t] placekitten! new website for the school i work at, gotta get the images though
I recently open-sourced my image uploader, which I also happened to port from web.py to bottle. [url]https://github.com/russelg/bottleimg[/url] If anyone has the spare time to look through my code and point out horrible parts, I'd be ecstatic!
[IMG]http://i39.tinypic.com/2wgt76d.png [/IMG] Better?
[QUOTE=Coffeee;41361264][IMG]http://i39.tinypic.com/2wgt76d.png [/IMG] Better?[/QUOTE] Certainly better, but I still wouldn't say I like it. Try something like Chocolate from [url]http://www.google.com/fonts[/url]
I'm just going to be picky and say I don't like how it's fragmented as: "Hi, I'm Manolis and..." "...I make websites" That "and" doesn't belong
That and also "I make websites" is a boring/generic as fuck statement.
Working on a follow-up to [URL="http://saming.free.fr/p/defcon"]DEFCON[/URL]. Getting better at Javascript === more story telling.
Sorry for posting again about this, but got it displaying nicely on mobile too! :) [t]http://tbx.me/gcol.png[/t] [t]http://tbx.me/aF.png[/t] [t]http://tbx.me/DRmym.png[/t]
[QUOTE=saming;41365478]Getting better at Javascript === more story telling[/QUOTE] SyntaxError: Unexpected identifier
[QUOTE=TerabyteS_;41367158]SyntaxError: Unexpected identifier[/QUOTE] [url]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comparison_operators[/url] === is a strict equal comparison, which also checks that the two values given are of the same type.
[QUOTE=KmartSqrl;41367667][URL]https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comparison_operators[/URL] === is a strict equal comparison, which also checks that the two values given are of the same type.[/QUOTE] [IMG]http://i.imgur.com/iCCNnML.png[/IMG] [sp]I think it was intended as a joke[/sp]
[QUOTE=deadeye536;41369548][sp]I think it was intended as a joke[/sp][/QUOTE] [sp]I'm not sure now[/sp]
[QUOTE=saming;41373516][sp]I'm not sure now[/sp][/QUOTE] It's pretty obvious it was.
[img]https://dl.dropboxusercontent.com/u/14273442/adventure-present.png[/img] Text adventure
[img]http://i.imgur.com/jXiU9xU.png[/img] [img]http://i.imgur.com/BuEzhK0.png[/img] [img]http://i.imgur.com/nLuU20x.png[/img] [img]http://i.imgur.com/MjKPg3E.png[/img] Game server rental with a timed kill switch (For warservers etc).
Working on a site for a moderately big school, should i really implement no-javascript support? It's such a hassle, is it really needed anymore?
Learning Drupal, need to for my new job. It's pretty swish.
[QUOTE=Giraffen93;41391390]Working on a site for a moderately big school, should i really implement no-javascript support? It's such a hassle, is it really needed anymore?[/QUOTE] If its a large school chances are they are going to have visitors with some kind of disability. Screen Readers don't interpret Javascript so make sure all essential functionality works without it.
[QUOTE=AMD Bulldozer;41391957]If its a large school chances are they are going to have visitors with some kind of disability. Screen Readers don't interpret Javascript so make sure all essential functionality works without it.[/QUOTE] How would i check for that?
[QUOTE=Giraffen93;41391974]How would i check for that?[/QUOTE] Disable Javascript in your browser and use the website?
[QUOTE=AMD Bulldozer;41392037]Disable Javascript in your browser and use the website?[/QUOTE] well then it won't work at all, since a dropdown menu is fully javascript [url]http://new.waldorfumea.se/[/url] maybe i should rethink this
[QUOTE=Giraffen93;41392044]well then it won't work at all, since a dropdown menu is fully javascript [url]http://new.waldorfumea.se/[/url] maybe i should rethink this[/QUOTE] you can use css to do a drop down menu. take a look at this [url]http://www.w3.org/TR/CSS2/selector.html#pattern-matching[/url] [editline]10th July 2013[/editline] there's also css3 which gives you more options [url]http://www.w3.org/TR/css3-selectors/#selectors[/url]
[QUOTE=jung3o;41392282]you can use css to do a drop down menu. take a look at this [url]http://www.w3.org/TR/CSS2/selector.html#pattern-matching[/url] [editline]10th July 2013[/editline] there's also css3 which gives you more options [url]http://www.w3.org/TR/css3-selectors/#selectors[/url][/QUOTE] yes i know but markup tends to be really shitty when only using css
[QUOTE=Giraffen93;41392320]yes i know but markup tends to be really shitty when only using css[/QUOTE] In it's most simple form it's a list in a div?
[QUOTE=Giraffen93;41392320]yes i know but markup tends to be really shitty when only using css[/QUOTE] you should really jump at any chance you have to use CSS over javascript
[QUOTE=Giraffen93;41392320]yes i know but markup tends to be really shitty when only using css[/QUOTE] Uh, no. This is just wrong. You can seriously do it without anythin but a <nav> and nested unordered lists.
Well i suppose it would work in my situation, since it doesn't need to hide after moving the mouse out of it [editline]10th July 2013[/editline] Though, how would i do it? The sub-bar is not even in the same div
[QUOTE=Giraffen93;41394521]Well i suppose it would work in my situation, since it doesn't need to hide after moving the mouse out of it [editline]10th July 2013[/editline] Though, how would i do it? The sub-bar is not even in the same div[/QUOTE] You obviously can't do it with your current markup but just because you move it around doesn't make it shitty.
[QUOTE=Giraffen93;41394521]Well i suppose it would work in my situation, since it doesn't need to hide after moving the mouse out of it[/QUOTE] It should hide when you mouse out because that is expected behavior and an established convention, and that's going to happen if you do it with pure CSS anyways.
[QUOTE=Giraffen93;41392320]yes i know but markup tends to be really shitty when only using css[/QUOTE] NEVER ever make something as basic as page navigation rely on scripting, not only will it destroy your page rank on search engines but its excluding a whole bunch of visually impaired people who otherwise could use your site. Oh and it will piss off no-script users. Javascript is there to enhance your page, not prop it up.
Sorry, you need to Log In to post a reply to this thread.