[QUOTE=101kl;37530989]I'd recommend doing it sooner if you plan on spreading it around, SQL injection galore right there.[/QUOTE]
It's cleaned.
[QUOTE=SCopE5000;37529964]Haha, gonna prune it at a later date with a function that works out what's an email and what's not.[/QUOTE]
Here (works for almost every email except for some 1% odd ones ):
[php]^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+(?:[a-zA-Z0-9-]+\.)*[a-zA-Z0-9]+\.[a-z]{2,4}$[/php]
[QUOTE=fritzel;37536151]
[php]^[a-zA-Z0-9]+[a-zA-Z0-9_.-]+[a-zA-Z0-9_-]+@[a-zA-Z0-9]+(?:[a-zA-Z0-9-]+\.)*[a-zA-Z0-9]+\.[a-z]{2,4}$[/php][/QUOTE]
Since he's using PHP just use it's filters:
[CODE]if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
// The email address is valid
} else {
// The email address is not valid
}[/CODE]
[t]http://i.imgur.com/bee2L.png[/t]
Inspired by the Sqaurespace website, when I'm done it shouldn't look too similar to it.
This week I get to have my focus at work be out-of-the-box design comps instead of development :)
Yay!
Yay! From shit to okay. What do you think?
[thumb]http://i.imgur.com/SLn03.png[/thumb]
[QUOTE=asantos3;37539767]Yay! From shit to okay. What do you think?
[thumb]http://i.imgur.com/SLn03.png[/thumb][/QUOTE]
If you want to be taken seriously, I suggest that you properly capitalise your letters (the 'i' in this case).
[QUOTE=ConTron123;37540063]If you want to be taken seriously, I suggest that you properly capitalise your letters (the 'i' in this case).[/QUOTE]
And make the , after [web developer] a .
Thanks.
[QUOTE=Darkwater124;37540271]And make the , after [web developer] a .[/QUOTE]
The , is there.
Had a idea of a relative button generator. In the end it creates a valid css class that contains the color scheme for the final button.
This is the first WIP build
[IMG]http://i.imgur.com/Fj0B5.png[/IMG]
live here (tested on opera, ff, chrome)
[URL="http://rndm.de/lab/bigFat/"]http://rndm.de/lab/bigFat/[/URL]
[QUOTE=usa;37533939]- Don't use wikia
- Colors are horrible (blue links on a blue background)
- Use of transparency just looks weird
Apart from that the layout is fine for a MediaWiki Wiki.
Actually enable the theme called Vector or something if you can, its the one they use on Wikipedia. (I don't think you can do that on Wikia thought)[/QUOTE]
Wikia wants everyone to use their shitty useless default skin that's plastered to fuck with ads and has a fixed width of 660px. I can't go to Vector. Their implementation of Monobook is broken to fuck as is. I'm still not migrating.
Where's the offending colors? For transparency, should I just remove the alpha channel CSS and everything be 100 opacity?
[QUOTE=DarKSunrise;37534643]The [url=http://wolfenstein.wikia.com/wiki/Episode_4/Floor_10]old theme[/url] looks a lot better. :e[/QUOTE]
That is actually Wikia's [I]new[/I] theme that they implemented, and that everyone universally despises. It's utter ad-plastered bullshit, especially as far as editing goes. Monobook (the theme I modified) is much more usable.
Wikia actually lost a good portion of users when they migrated to that new skin. They [I]royally[/I] pissed off the (tremendous) WoW Wiki, to the point that they quite literally seceded from Wikia and got their own domain.
[QUOTE=asantos3;37540625]The , is there.[/QUOTE]
Make it a .
[QUOTE=asantos3;37539767]Yay! From shit to okay. What do you think?
[thumb]http://i.imgur.com/SLn03.png[/thumb][/QUOTE]
Please don't use those shitty character generator icons, just use an actual picture of yourself or don't put anything there at all. Those things are way overused.
For reference this is what my wiki looked like before I changed the global CSS
[img]http://i.imgur.com/ukO8M.png[/img]
Except the logo in the top left was some shitty SVG I made in 2009
[img]http://images.wikia.com/wolfenstein/images/archive/b/bc/20120903213216%21Wiki.png[/img]
I would say that for an obscure wiki on an at-the-moment unpopular series of video games with literally 2 recurring members, I did a good job.
[QUOTE=douche beat;37541102]Please don't use those shitty character generator icons, just use an actual picture of yourself or don't put anything there at all. Those things are way overused.[/QUOTE]
The problem is: people are ugly (like me) and i like that pic. But I'll add one when possible.
[editline]5th September 2012[/editline]
I was talking with my friend about facebook and the horrible design/redesigns he's getting and remembered something i saw months ago and liked:
[url=http://dribbble.com/shots/133554-Facebook-redesign-UI-UX]Dribbble - Facebook Redesign[/url]
[img]http://i.imgur.com/ab4Ni.png[/img]
[QUOTE=asantos3;37541531]The problem is: people are ugly (like me) and i like that pic. But I'll add one when possible.
[editline]5th September 2012[/editline]
I was talking with my friend about facebook and the horrible design/redesigns he's getting and remembered something i saw months ago and liked:
[url=http://dribbble.com/shots/133554-Facebook-redesign-UI-UX]Dribbble - Facebook Redesign[/url]
[img]http://i.imgur.com/ab4Ni.png[/img][/QUOTE]
I don't agree on some aspects but hell Facebook can definitely pick up a few tips from that slick design. I really dislike the timeline, not the design but how it reads across and down.
So today at work, I had to display a list of images side by side, sharing borders.
Unfortunately, even with margin-left: -1px, there was some space in between. The solution? font-size: 0px.
This worked fine and dandy until I tried Safari, which decided to keep the spacing. The new solution?
[code]
<li><img src="bla.png" alt="bla"/></li><!--
--><li><img src="bla.png" alt="bla"/></li><!--
--><li><img src="bla.png" alt="bla"/></li>
[/code]
Ah, webdev :v:
display: block;
float: left;
[QUOTE=icantread49;37545185]So today at work, I had to display a list of images side by side, sharing borders.
Unfortunately, even with margin-left: -1px, there was some space in between. The solution? font-size: 0px.
This worked fine and dandy until I tried Safari, which decided to keep the spacing. The new solution?
[code]
<li><img src="bla.png" alt="bla"/></li><!--
--><li><img src="bla.png" alt="bla"/></li><!--
--><li><img src="bla.png" alt="bla"/></li>
[/code]
Ah, webdev :v:[/QUOTE]
[html]
<ul class="images">
<li><img src="bla.png" /></li>
<li><img src="bla.png" /></li>
<li><img src="bla.png" /></li>
</ul>
[/html]
[css]
ul.images{
margin:0;
padding:0;
}
ul.images li{
list-style:none;
display:inline-block;
}
[/css]
[QUOTE=Sc00by22;37536205]Since he's using PHP just use it's filters:
[CODE]if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
// The email address is valid
} else {
// The email address is not valid
}[/CODE][/QUOTE]
Wow, that's cool.
[url]http://gw2trading.com/[/url]
Got it implemented now. No more 'dicks' unless it's 'dicks@dicks.dicks'.
[QUOTE=Jelly;37545737]inline-block will create a margin.[/QUOTE]
true didn't even think about that, just use float:left then how you suggested :)
[QUOTE=SCopE5000;37545963]Wow, that's cool.
[url]http://gw2trading.com/[/url]
Got it implemented now. No more 'dicks' unless it's 'dicks@dicks.dicks'.[/QUOTE]
that was me :v:
[editline]asd[/editline]
feels good man
How does this look?
[t]http://i.imgur.com/z3Dz1.png.[/t]
[sp]Mind you, it's my first web site/page I've done on my own[/sp]
[QUOTE=asantos3;37541531][img]http://i.imgur.com/ab4Ni.png[/img][/QUOTE]
The black on that design really threw me off and it just ruins the flow for me. :(
Really like everything else though, looks a lot like an iPad app.
[QUOTE=SCopE5000;37545963]Wow, that's cool.
[url]http://gw2trading.com/[/url]
Got it implemented now. No more 'dicks' unless it's 'dicks@dicks.dicks'.[/QUOTE]
It will be better if you implement client side validation too.
That Facebook design is way too glossy. Really like the top, but the rest is just a tad overdone.
Facebook make a point of keeping their design simple and not "flashy". And personally I find most of that design dislikable.
[QUOTE=Amiga OS;37551072]The entire right column needs nuking and the area for your posts needs to be expanded.[/QUOTE]
The right column contains the ads.
[QUOTE=Amiga OS;37551392]The odd line of "You may also be interested in" adverts below every few posts would be a better idea.[/QUOTE]
Not really, that'd be horrid.
Sorry, you need to Log In to post a reply to this thread.