• What are you working on? v6
    4,671 replies, posted
[QUOTE=anton2;31766360]I still have no idea why this has a white box [IMG]http://ahb.me/3Tz4[/IMG][/QUOTE] Yeah, I thought I removed that, let me try again
The about me text as well as the about me paragraph are hardly readable.
[QUOTE=Kirth;31767641]The about me text as well as the about me paragraph are hardly readable.[/QUOTE] That was intentional, he said he wanted it really small so that most people don't see it (for obvious reasons)
[url]http://v2.oct.vc/[/url] Opinions/Suggestions?
Why is it so dark?
Should I start blogging about design/dev stuff?
Yes, you are an awesome designer
[QUOTE=Alcapwne;31764760]I may have posted this some time earlier but I'm not sure: [url]http://taimur.me/choi/[/url] Made a site for an arrogant friend of mine[/QUOTE] [quote]I`m a selfish prick. A hot, rich, pampered intellectual with a big dick and a marathon tongue. I`m young enough to do it often and old enough to do it right. I don`t have time for petty drama or emotional hysterics. I do what I want, when I want.[/quote] jesus christ i cant stop laughing
[QUOTE=KmartSqrl;31764085]I'd like to see a tool like Muse built by someone who actually understands why hand coding is better and who doesn't add anything unless they make it spit out code that is just as clean as something would be if it were hand coded. Something that asks you for IDs and class names, that uses the new semantic tags from HTML5. Sort of a hybrid between what muse will end up being and a regular text editor. You hand code tricky parts that need hand coding and are able to tweak things like padding and margins and font sizes/families/spacing/whatever in the visual view without it generating more random messy markup.[/QUOTE] I do this with the chrome developer view. Of course you then have to copy the changes over.
Related:[URL="http://darcyclarke.me/design/skin-your-chrome-inspector/"] http://darcyclarke.me/design/skin-your-chrome-inspector/[/URL] [editline]16th August 2011[/editline] Also useful: [url]http://hipsteripsum.me/[/url]
This is the website I'm currently working on: [url]http://canterlothalls.net/[/url] I haven't coded the main page yet, due to the lack of content. Although I have coded a rather large part of the image viewer: [url]http://canterlothalls.net/pictures/view/1/Rainderp[/url] In case you want to check it out. It is meant to be a hub where people can share their [u]own[/u] pictures concerning MLP FIM. I don't know yet how I will enforce it though. I wonder how DeviantArt does it. What do you think about the overall design?
Using 3" sprites on the web? Solution: blow 'em up: [img]http://f.anyhub.net/3TUi[/img]
Can you not use 2x sal scaling to scale the images? Might be worth a shot, heres the wikipedia article: [url]http://en.wikipedia.org/wiki/Pixel_art_scaling_algorithms[/url]
yeah i think mspaint resizes that way [editline]17th August 2011[/editline] you could try zooming with the magnifying glass and taking screenshots
[QUOTE=cryticfarm;31783630]yeah i think mspaint resizes that way [editline]17th August 2011[/editline] you could try zooming with the magnifying glass and taking screenshots[/QUOTE] I think MS paint just makes every pixel bigger just giving you the same picture with larger pixels, the sal algorithm is shown on the right hand side of the image on wikipedia, it actually re-samples the image or whatever to maintain the same level of detail with smaller pixels.
crap i thought it was the one on the left
If you use Paint.NET (which I doubt! Photochop everywhere up in this bitch) you can always resize on the 'nearest neighbour' setting, which will forego such niceties as anti-aliasing or averaging colors and merely make one pixel into more of the same color. Then I doubt Photoshop lacks this. Also it always annoyed me how there's Pokemon remakes but not Pokemon-esque games, something in the vein of Jade Cocoon or a Pokemon battle system version of Impossible Creatures would be totally awesome. And also circumvent all the fun potential lawsuits.
Sweet I get to make an interactive version of that last design I posted because the client loved it and wants to see it in action. Flash, but it's contract work through another design firm so they know the implications of using flash, which means I just get to have fun working on it :)
I went from this: [php] case 'delete': if (!$mData['Auth']) { Redirect(); } if ($mData['Usergroup'] != 2 && $mData['Usergroup'] != 3) { Redirect(); } if (!is_numeric($_GET['pid'])) { echo "Non-numeric Post ID"; die(); } $d = $dbh->prepare('UPDATE post SET deleted = 1 WHERE pid = :pid'); $d->bindParam(':pid', $_GET['pid'], PDO::PARAM_STR); $d->execute(); echo "Post deleted"; break; case 'ban': if (!$mData['Auth']) Redirect(); if ($mData['Usergroup'] != 2 && $mData['Usergroup'] != 3) Redirect(); if (!is_numeric($_GET['uid'])) { echo "Non-numeric User ID"; die(); } if($uData['usergroup'] == 4) Redirect(); $b = $dbh->prepare('UPDATE users SET usergroup = :gid1, usergroup2 = :gid2 WHERE uid = :uid'); $four = 4; $b->bindParam(':gid1', $four, PDO::PARAM_INT); $b->bindParam(':gid2', $uData['usergroup'], PDO::PARAM_INT); $b->bindParam('uid', $_GET['uid'], PDO::PARAM_INT); $b->execute(); echo "Banned"; break; case 'unban': if (!$mData['Auth']) Redirect(); if ($mData['Usergroup'] != 2 && $mData['Usergroup'] != 3) Redirect(); if (!is_numeric($_GET['uid'])) { echo "Non-numeric Post ID"; die(); } if($uData['usergroup'] != 4) Redirect(); $zero = 0; $ub = $dbh->prepare('UPDATE users SET usergroup = :gid1, usergroup2 = :gid2 WHERE uid = :uid'); $ub->bindParam(':gid1', $uData['usergroup2'], PDO::PARAM_INT); $ub->bindParam(':gid2', $zero, PDO::PARAM_INT); $ub->bindParam('uid', $_GET['uid'], PDO::PARAM_INT); $ub->execute(); echo "Unbanned"; break; case 'undelete': if (!$mData['Auth']) Redirect(); if ($mData['Usergroup'] != 2 && $mData['Usergroup'] != 3) Redirect(); if (!is_numeric($_GET['pid'])) { echo "Non-numeric Post ID"; die(); } $udq = $dbh->prepare('UPDATE post SET deleted = :und WHERE pid = :pid'); $zero = 0; $udq->bindParam(':und', $zero, PDO::PARAM_INT); $udq->bindParam(':pid', $_GET['pid'], PDO::PARAM_INT); $udq->execute(); echo "Undeleted"; break;[/php] to [php]public function moderation($type, $data) { if ($type == 'ban' || $type == 'unban') { $userDataQuery = $this->dbh->prepare('SELECT users.username, users.usergroup, users.usergroup2 FROM users WHERE uid = ?'); $userDataQuery->execute($data); $userData = $userDataQuery->fetch(PDO::FETCH_ASSOC); } $modQueries = array( 'ban' => 'UPDATE users SET usergroup = 4, usergroup2 = :oldUsergroup WHERE uid = :uid', 'unban' => 'UPDATE users SET usergroup = :oldUsergroup, usergroup2 = 0 WHERE uid = :uid', 'delete' => 'UPDATE posts SET deleted = 1 WHERE pid = :pid', 'undelete' => 'UPDATE posts SET deleted = 0 WHERE pid = :pid' ); if(!in_array($type, $modQueries)) return false; $modAction = $this->dbh->prepare($modQueries[$type]); switch($type) { case 'ban': $modAction->bindParam(':oldUsergroup', $userData['usergroup'], PDO::PARAM_INT); $modAction->bindParam(':uid', $data, PDO::PARAM_INT); return '1'; break; case 'unban': $modAction->bindParam(':oldUsergroup', $userData['usergroup2'], PDO::PARAM_INT); $modAction->bindParam(':uid', $data, PDO::PARAM_INT); return '1'; break; case 'delete': case 'undelete': $modAction->bindParam(':pid', $data, PDO::PARAM_INT); return '1'; break; } $modAction->execute(); }[/php]
The external contractors which run my school's IT infrastructure locked my account because I said on Facebook that I could do a better job than they could (every person I talk to has valid complaints about them). I had a project I was working on saved on my network drive there, looks like it's gone. [editline]18th August 2011[/editline] There has to be some form of legislation that prevents that sort of crap. It's not like it was even slander; it's a true fact.
I've (probably) been hired by my school's business manager to code up a web app for them to manage their low-cost items (anything the school owns worth less than $1000 and more than $20).
[QUOTE=EJay;31799921]The external contractors which run my school's IT infrastructure locked my account because I said on Facebook that I could do a better job than they could (every person I talk to has valid complaints about them). I had a project I was working on saved on my network drive there, looks like it's gone. [editline]18th August 2011[/editline] There has to be some form of legislation that prevents that sort of crap. It's not like it was even slander; it's a true fact.[/QUOTE] protip dont be a smart ass
[QUOTE=EJay;31799921]The external contractors which run my school's IT infrastructure locked my account because I said on Facebook that I could do a better job than they could (every person I talk to has valid complaints about them). I had a project I was working on saved on my network drive there, looks like it's gone. [editline]18th August 2011[/editline] There has to be some form of legislation that prevents that sort of crap. It's not like it was even slander; it's a true fact.[/QUOTE] to be honest, it's not slander or anything but it is incredibly annoying when people act like that on facebook anyway so you shouldn't do that kind of stuff regardless of what the school will do
[QUOTE=moonage;31801167]protip dont be a smart ass[/QUOTE] Except I'm not. When their solution to 'school proxy' is Microsoft Forefront TMG and a blanket block on every single site except Google, you start to get a little bit frustrated. [editline]18th August 2011[/editline] Oh yeah, and it's been five years and my school's site still doesn't work without the 'www.' prefix. And it uses Flash. And DotNetNuke. [editline]18th August 2011[/editline] [QUOTE=Alcapwne;31801230]to be honest, it's not slander or anything but it is incredibly annoying when people act like that on facebook anyway so you shouldn't do that kind of stuff regardless of what the school will do[/QUOTE] The difference is I've actually offered to help them more than once. I wouldn't post anything like that if it wasn't so flaunted that they were ultra professional.
[QUOTE=EJay;31801696]Except I'm not. When their solution to 'school proxy' is Microsoft Forefront TMG and a blanket block on every single site except Google, you start to get a little bit frustrated. [editline]18th August 2011[/editline] Oh yeah, and it's been five years and my school's site still doesn't work without the 'www.' prefix. And it uses Flash. And DotNetNuke. [editline]18th August 2011[/editline] The difference is I've actually offered to help them more than once. I wouldn't post anything like that if it wasn't so flaunted that they were ultra professional.[/QUOTE] Educational organisations are almost obliged to use Microsoft products since they receive them at an incredibly discounted rate. So much hate on flash now, despite the fact it was at the forefront at making the web a much more interactive engaging experience. Its kinda sad.
[QUOTE=EJay;31801696]Except I'm not. When their solution to 'school proxy' is Microsoft Forefront TMG and a blanket block on every single site except Google, you start to get a little bit frustrated. [editline]18th August 2011[/editline] Oh yeah, and it's been five years and my school's site still doesn't work without the 'www.' prefix. And it uses Flash. And DotNetNuke.[/QUOTE] just get over it really you wouldn't have gotten your account suspended if you weren't showing off on facebook
Had some fun today: [img]http://i.imgur.com/Uzb4c.png[/img] [url]http://ujellybro.com[/url] Registered the domain, setup the nameservers, and coded the HTML all while I was on the phone going over a client's website with him.
So I've just spent two weeks in a fucking hot country with no internet and air conditioning / swimming pool. Looks like I've missed loads!
[QUOTE=EJay;31801696]Except I'm not. When their solution to 'school proxy' is Microsoft Forefront TMG and a blanket block on every single site except Google, you start to get a little bit frustrated. The difference is I've actually offered to help them more than once. I wouldn't post anything like that if it wasn't so flaunted that they were ultra professional.[/QUOTE] You're not a microsoft sysadmin. Trust me. Setting up large networks is much harder than it looks, especially when you have to manage tons of stuff besides just the "internet proxy". To be honest, a whitelist IS the best method for blocking sites. There's too many ways around filters otherwise. Blocking proxy sites on HTTPS is even harder. Having a whitelist eliminates this problem.
[QUOTE=adamjon858;31810098]You're not a microsoft sysadmin. Trust me. Setting up large networks is much harder than it looks,[/QUOTE] it's even harder when you're looking after a massive network of non-windows workstations
Sorry, you need to Log In to post a reply to this thread.