• Web Development - WAYWO - #8
    5,514 replies, posted
[QUOTE=Vietnow;39900225]418 - Content hierarchy not found[/QUOTE] Don't be such a coffeepot!
[t]https://dl.dropbox.com/u/11275736/Src/2013-03-13_14-43-50.png[/t] meh
Not strictly webdev but I've been blasting through C and OpenGL in the last 3 days: [thumb]http://i.imgur.com/zdouPbo.png[/thumb]
[QUOTE=Ac!dL3ak;39901413][t]https://dl.dropbox.com/u/11275736/Src/2013-03-13_14-43-50.png[/t] meh[/QUOTE] Graphs without labels don't really make any sense at all.
Hey. I don't post here often (I say this every time too), but could someone look over a website I quickly snapped together (I mean no longer than 20 minutes), and give me hints as to where to expand on? My aim is simplicity, which is why it's been so hard, because I have no idea what to add to give it that special something, without taking away what it already has. [URL="http://jamesswift.asia/simple/"]http://jamesswift.asia/simple/[/URL]
[QUOTE=James xX;39904569]Hey. I don't post here often (I say this every time too), but could someone look over a website I quickly snapped together (I mean no longer than 20 minutes), and give me hints as to where to expand on? My aim is simplicity, which is why it's been so hard, because I have no idea what to add to give it that special something, without taking away what it already has. [URL="http://jamesswift.asia/simple/"]http://jamesswift.asia/simple/[/URL][/QUOTE] Here's a first problem i see. Content. What is this going towards? anyways, get rid of padding and make margin a bit(?) smaller. Reason is because you don't even have top/bottom padding on those pictures. I don't know where you're trying to go for, but it looks fine atm. Maybe you can even add a footer to make it look nice and spacey. (because your header is big) (?) The spacing looks huge
[QUOTE=TerabyteS_;39903932]Graphs without labels don't really make any sense at all.[/QUOTE] where would I put the labels? :v
Below the bars? To the side of them as well? Typical x/y graph correlation. Some graphs are self-explanatory, like my day graph plotter for Timelog: [t]http://i.imgur.com/RjIICDY.png[/t] Even my day graph can be more explicit by me putting hour markers, but the point is clear already. What we don't gather from your graph is the relevance of the bar lengths; is it the magnitude of trades made for a given item, the demand for them? What is the relevance of them being graphed?
[img]https://dl.dropbox.com/u/11275736/Src/something_value_over_time.png[/img] [editline]13th March 2013[/editline] something like that?
Now you're making progress. But think about the relevance of this being a graph in a user interface rather than just being a standalone graph. Typically we map "X over time" as a ltr reading process, but the user reads immediate and current information as the most relevant, which diverges from what typical graphs orient around. As a result, your graph shows the "current" value of an item all the way on the right-most side while the image and name of the item are all the way on the left. So my eyes are moving left to right over the entire distance of the container element per item. To make the experience more visually pleasing, you could map the "X over time," or value over time in this case, in reverse chronology. Make the current value of the item as close to the descriptors as possible.
[QUOTE=acpm;39906319]Now you're making progress. But think about the relevance of this being a graph in a user interface rather than just being a standalone graph. Typically we map "X over time" as a ltr reading process, but the user reads immediate and current information as the most relevant, which diverges from what typical graphs orient around. As a result, your graph shows the "current" value of an item all the way on the right-most side while the image and name of the item are all the way on the left. So my eyes are moving left to right over the entire distance of the container element per item. To make the experience more visually pleasing, you could map the "X over time," or value over time in this case, in reverse chronology. Make the current value of the item as close to the descriptors as possible.[/QUOTE] the current value is closest to the descriptors V:v:V
might want to represent that with ← Time then, which is chronologically rtl
since google just shut down reader so I'm going to make my own reader in php wooo I don't know any php so this should be fun [editline]13th March 2013[/editline] unless there's something better to write in in, in which case please tell me because I'm pretty clueless when it comes to web programming
[QUOTE=Yumyumbublegum;39907356]since google just shut down reader so I'm going to make my own reader in php wooo I don't know any php so this should be fun [editline]13th March 2013[/editline] unless there's something better to write in in, in which case please tell me because I'm pretty clueless when it comes to web programming[/QUOTE] PHP is pretty solid for that. As a forewarning you will want to use cURL to download things instead of file_get_contents, it's a common beginner's mistake. My favourite cUrl function: [code] function get_data( $url ) { try { $timeout = 5; $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout ); $data = curl_exec( $ch ); curl_close( $ch ); return $data; } catch ( Exception $e ) { return 'Sorry.'; } } //URL is the address of the page you want to download. //example: $url = "http://facepunch.com"; //$FPHomepg = get_data( $url ); //var_dump ( $FPHomepg ); [/code]
This section is great to get answers. Just post on the question thread!
Use rails or even Sinatra, its much more enjoyable
[QUOTE=douche beat;39907774]Use rails or even Sinatra, its much more enjoyable[/QUOTE] Or you could use cherrypy or even django
Yo, webdev, what's the simplest user management library out there? Something that babies me like $errorCode = Userlib::CreateUser( username, passwordHash ); and provides junk like Userlib::getSecurityKey() and all that. [editline]14th March 2013[/editline] More people are wanting to use Timelog, and I'd like to implement a user system fast. I've got some other stuff to worry about and don't have much time to write my own user library. I took a look at CodeIgniter, but couldn't find anything stupidly simple.
[img_thumb]http://puu.sh/2hHXq[/img_thumb] This is my first real website since I've started learning HTML, CSS and a little javascript over 2 weeks ago. I was wondering if I'm off to a good start on the design or if I should throw it out.
[QUOTE=Themage;39914207][img_thumb]http://puu.sh/2hHXq[/img_thumb] This is my first real website since I've started learning HTML, CSS and a little javascript over 2 weeks ago. I was wondering if I'm off to a good start on the design or if I should throw it out.[/QUOTE] The design? What design?
It's a pretty good start for 2 weeks imo
I'm honestly not very good at this and if someone could take a look at my messy code and tell me where I could improve I would really appreciate it.
[QUOTE=Themage;39914207][img_thumb]http://puu.sh/2hHXq[/img_thumb] This is my first real website since I've started learning HTML, CSS and a little javascript over 2 weeks ago. I was wondering if I'm off to a good start on the design or if I should throw it out.[/QUOTE] [t] http://filesmelt.com/dl/2hHXq.png[/t] Get some gradients to separate the white and grey more, I think the buttons are very web 1.0 so I'd change them too.
Sup guys. Working on a simple calculator with automatic interface. CL = Clear Last Character CA = Clear All Characters Need feedback on my code though, what do you think? [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html][img]http://i.imgur.com/NwdHV1z.png[/img][/url] [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html]Here.[/url]
[QUOTE=asantos3;39915450]Sup guys. Working on a simple calculator with automatic interface. CL = Clear Last Character CA = Clear All Characters Need feedback on my code though, what do you think? [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html][img]http://i.imgur.com/NwdHV1z.png[/img][/url] [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html]Here.[/url][/QUOTE] No divide by zero error, screen does not clear when you get "infinity" and start typing in things resulting in loss of functionality unless you press clear. Should auto-clear if you press a button after getting "infinity".
[QUOTE=Amiga OS;39916137][img]http://i.imgur.com/HvFczHm.png[/img] Starting on my final college project.[/QUOTE] Reminds me a lot of twitch.tv's new channel pages, but don't get me wrong, I really like it. Nice job.
[QUOTE=asantos3;39915450]Sup guys. Working on a simple calculator with automatic interface. CL = Clear Last Character CA = Clear All Characters Need feedback on my code though, what do you think? [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html][img]http://i.imgur.com/NwdHV1z.png[/img][/url] [url=https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html]Here.[/url][/QUOTE] You can start with this: [IMG]http://i.imgur.com/Ks7ZeKg.png[/IMG]
[QUOTE=asantos3;39915450]Sup guys. Working on a simple calculator with automatic interface. CL = Clear Last Character CA = Clear All Characters Need feedback on my code though, what do you think? [URL="https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html"][IMG]http://i.imgur.com/NwdHV1z.png[/IMG][/URL] [URL="https://dl.dropbox.com/u/5169714/Dev/17728SantosAndre/calculadora/index.html"]Here.[/URL][/QUOTE] If you really want to be fancy, add numpad support. Because fuck clicking buttons.
[IMG]http://i.imgur.com/Yx5w0EB.png[/IMG] [URL=http://roots.cx/css/]Roots[/URL] is fantastic.
[QUOTE=Vietnow;39920543]If you really want to be fancy, add numpad support. Because fuck clicking buttons.[/QUOTE] What do you mean, what features should I put to add numpad support? You can type whatever and press enter but I that is not what you talking about, right? [editline]15th March 2013[/editline] [QUOTE=Killervalon;39919768]You can start with this: [/QUOTE] Fixed. I thought input size was in px. [editline]15th March 2013[/editline] [QUOTE=01271;39916170]Should auto-clear if you press a button after getting "infinity".[/QUOTE] What about auto-clear if after getting a result you pressed a number?
Sorry, you need to Log In to post a reply to this thread.