• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:41
CEST 09:41
KST 16:41
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Chinese SC2 server to reopen; live all-star event in Hangzhou14Weekly Cups (Oct 13-19): Clem Goes for Four0BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)80
StarCraft 2
General
Chinese SC2 server to reopen; live all-star event in Hangzhou RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (March 17-23): Clem Bounces Back DreamHack Open 2013 revealed The New Patch Killed Mech!
Tourneys
$1,200 WardiTV October (Oct 21st-31st) SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
Is there anyway to get a private coach? BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL Season 21 OGN to release AI-upscaled StarLeague from Feb 24
Tourneys
300$ 3D!Community Brood War Super Cup #4 [ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament [Megathread] Daily Proleagues
Strategy
Current Meta Roaring Currents ASL final [I] Funny Protoss Builds/Strategies BW - ajfirecracker Strategy & Training
Other Games
General Games
Path of Exile Nintendo Switch Thread Stormgate/Frost Giant Megathread Dawn of War IV ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Things Aren’t Peaceful in Palestine The Chess Thread US Politics Mega-thread Russo-Ukrainian War Thread Men's Fashion Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
The Heroism of Pepe the Fro…
Peanutsc
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1074 users

Life as a Web Developer - Page 2

Blogs > tofucake
Post a Reply
Prev 1 2 3 Next All
AssuredVacancy
Profile Blog Joined September 2008
United States1167 Posts
July 06 2010 16:01 GMT
#21
That man is a genius at coding. He's securing his job for life.
We spend our youth attaining wealth, and our wealth attaining youth.
Deleted User 61629
Profile Blog Joined March 2010
1664 Posts
Last Edited: 2010-07-06 18:52:45
July 06 2010 18:41 GMT
#22
--- Nuked ---
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
July 06 2010 18:53 GMT
#23
On July 07 2010 03:41 Inori wrote:
Show nested quote +
function createpasswordhash($user, $raw_pass)
{
// this should ONLY be used to create NEW passwords, as
// the salt is based on the time
$salt = sha1($user . array_sum(explode(' ', microtime())));
$raw = $salt . sha1(sha1($user) . sha1($salt . $raw_pass));

return $raw;
}

This is quite common with beginner coders really. Everyone has this period where they feel they need to reinvent everything and are smarter than everyone. I remember wondering why I'm the only one "smart" enough to use sha1(md5(base64_encode()));
Except I'm a professional PHP developer ^^
That's code I wrote when I was a beginner, I admit, but it's easy and copypasta is my friend. It's perfectly secure and quicker than using mcrypt. And the SHA'ing of multiple things is just for diversity. A 40 character salt is better than a 20 character salt, after all.
Liquipediaasante sana squash banana
Deleted User 61629
Profile Blog Joined March 2010
1664 Posts
Last Edited: 2010-07-06 19:03:10
July 06 2010 18:57 GMT
#24
--- Nuked ---
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
July 06 2010 19:16 GMT
#25
That's only true when the SHA hash is shorter than the source, so unless someone has a 28 character password (and I usually cap length at about 20 anyway), there's no impact on the security.
Liquipediaasante sana squash banana
nath
Profile Blog Joined May 2010
United States1788 Posts
July 06 2010 19:22 GMT
#26
meh...this isn't really bad. just overkill...

but yeah i guess it wastes processing power, not that much though (don't lie to yourself, setting the variable again takes nothing)

comments aren't bad; where i work we have this 'genius' who is amazing at coding but his shit is impossible to decipher. we're lucky because he will just redo it form scratch instead of making it easy to modify so we could just modify it -.-

(I have extensive knowledge of PHP/SQL)
Founder of Flow Enterprises, LLC http://flow-enterprises.com/
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
Last Edited: 2010-07-06 19:27:22
July 06 2010 19:27 GMT
#27
This one page I'm working on now was originally 800 lines with 12 SQL queries. I have reduced it to 350 lines and 2 SQL queries, and still managed to add functionality. That's BAD.
Liquipediaasante sana squash banana
michiko
Profile Joined April 2010
United States75 Posts
Last Edited: 2010-07-06 21:31:00
July 06 2010 21:28 GMT
#28
So how long have you been PHP programming?

My only qualm with PHP is despite it being really easy/fun/extensive to learn and code in...I've heard that PHP coding is pretty entry level as far as a career goes.

A coding friend of mine started OFF in PHP and moved into other languages.

That said...I'm like ultra excited about an upcoming potential opportunity to start coding full-time, from part-time.

Also - and maybe this will help spark more of a debate, especially regarding life as a web developer - how much are we/you being replaced by the really smart coders?

As in - There are a dozen CMS and Web Cart framework applications that business people can purchase...

Why pay someone a pretty decent salary when you can just BUY the framework/CMS/Cart and install it yourself?

==

Just as our individual 'EXP' bars go up as we code, and become veterans from beginners....I feel that the whole industry of programming has that same EXP bar...and it is constantly weeding out the un-needed...Like poor Bob that wrote the silly code in the OP.

==

And Oh Yeah! PDO. I remember that stuff. I don't see why I would incorporate PDO functions into a Project that is going to stay strictly with MySQL. Am I missing something? Does it reduce lines of code that much? I'm by far the infant of the group - so i'll take knowledge spankings -

tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
Last Edited: 2010-07-06 21:41:40
July 06 2010 21:40 GMT
#29
I've been programming in PHP for about 8 years now? Something like that. The best analogy I can think of for PHP is one not many people understand (but all of you will!): It's like StarCraft - easy to get started in and damn hard to master.

And, once again, I'm not using PDO, just OOP.

As for being replaced....I'm one of the really smart coders doing the replacing. I know another 5 programming languages, I know how a CPU works (and can/have built a functioning computer, and I don't mean from parts off Newegg), and I have tons of experience. What I lack, being mostly self taught, is formatted knowledge about things. For instance, I used MVC style coding for 4 years before I knew what MVC style was. I also lack in some areas, but my primary job is getting me experience in those areas. And not to too my own horn, I know I still have a very long way to go before I'd ever even be able to consider maybe thinking about possibly calling myself an expert.

And yes! Networking is important. I've got friends in all kinds of tech jobs (mostly programming), from Northrup Grumman to the Canadian Government. References from those guys go a lot farther than a reference from your boss over at Best Buy.
Liquipediaasante sana squash banana
Deleted User 61629
Profile Blog Joined March 2010
1664 Posts
Last Edited: 2010-07-07 04:35:11
July 07 2010 04:32 GMT
#30
--- Nuked ---
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2010-07-07 04:43:47
July 07 2010 04:36 GMT
#31
Dude that's nothing this is what I had to work with when I had to fix up someone's website that was never finished.


//checks what certificate they purchased
function ninjapants($g, $c) {
$co2 = ($c > 0) ? true : false;
$green = ($g > 0) ? true : false;

if($co2 && $green) return 1;
elseif($co2) return 3;
elseif($green) return 2;
else return false;
}

//generates the PDF file
function ninjagloves($type, $one, $two, $three, $four, $total, $five = ''){
$ski = array();
$ski[0] = 'This document confirms that';

$one = stripslashes($one);
$two = stripslashes($two);
$three = stripslashes($three);
$four = stripslashes($four);
$five = stripslashes($five);
$total = stripslashes($total);

$lah = $this->ninjapants($three, $four);

switch($type) {
case 'business':

... you get the idea


These guys still got paid around $10,000 for building a piece of crap that never worked.

Also I can't wait till PHP is replaced with Ruby (not RoR). PHP is the worst language ever (yeah I could write a whole book about it) and there will be less un-qualified script kiddies making websites.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
Hokum
Profile Joined February 2009
Norway9 Posts
July 07 2010 08:08 GMT
#32
Even though the code you snipped is harmless, it is still copyrighted company code, and not something you should be posting on a public forum.

The internet is fun when it is anonymous and it is easy to take these things lightly, but if I was your manager, I would show you the door... something to think about at least.
1 day pass could be like 3 days of ramen
haduken
Profile Blog Joined April 2003
Australia8267 Posts
July 07 2010 08:12 GMT
#33
LOL, ninjapants.
Rillanon.au
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
July 07 2010 10:19 GMT
#34
ninjagloves!

I couldn't stop laughing for 1 minute
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
evanthebouncy!
Profile Blog Joined June 2006
United States12796 Posts
July 07 2010 10:20 GMT
#35
hahahha shit still laughing about ninjapants and ninjagloves
Life is run, it is dance, it is fast, passionate and BAM!, you dance and sing and booze while you can for now is the time and time is mine. Smile and laugh when still can for now is the time and soon you die!
Adeny
Profile Blog Joined January 2009
Norway1233 Posts
July 07 2010 10:55 GMT
#36
I'm going to name all of my functions and variables arbitrary words, too! BTW, why is there no coding thread here? We've got threads for most other hobbies, and there seems to be quite a couple of coders here. Anyone feel like starting one?
wanderer
Profile Blog Joined May 2007
United States641 Posts
Last Edited: 2010-07-07 11:11:40
July 07 2010 11:10 GMT
#37
i don't understand... is this dumb because white space matters in PHP? so what if he wants to take the extra effort into making it look pretty. i would if i had the time and liked my job.

...or is it dumb because they didnt do it the fancy way
Fuck you, I have a degree in mathematics and I speak 12 languages. (I called the World Cup final in 2008 btw)
Adeny
Profile Blog Joined January 2009
Norway1233 Posts
Last Edited: 2010-07-07 11:33:50
July 07 2010 11:25 GMT
#38
On July 07 2010 20:10 wanderer wrote:
i don't understand... is this dumb because white space matters in PHP? so what if he wants to take the extra effort into making it look pretty. i would if i had the time and liked my job.

...or is it dumb because they didnt do it the fancy way


He basically does this:
(pseudo, ofcourse)

a = b
b = a

Except for with all the variables, so the second set is completely unneccesary and does aboslutely nothing, it's equal to doing

a = a

which it obviously is already.
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
July 07 2010 11:52 GMT
#39
On July 07 2010 20:10 wanderer wrote:
i don't understand... is this dumb because white space matters in PHP? so what if he wants to take the extra effort into making it look pretty. i would if i had the time and liked my job.

...or is it dumb because they didnt do it the fancy way

Like the guy said, he did a = b, b = a. The problem with the whitespace is that he aligns EVERYTHING in the file, not just blocks. There's parts where there's 23 (yes, 23) tabs before the start of a line of code. That's already a line wrap on a 1660x900 monitor.
Liquipediaasante sana squash banana
Adeny
Profile Blog Joined January 2009
Norway1233 Posts
July 07 2010 12:02 GMT
#40
Probably been told, by some professor, some time, in the ancient past, that it HAS to be done that way. Poor soul.
Prev 1 2 3 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 2h 19m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 113
StarCraft: Brood War
Aegong 68
ToSsGirL 48
Mong 1
Dota 2
XaKoH 233
XcaliburYe123
canceldota51
League of Legends
JimRising 741
Counter-Strike
Stewie2K579
shoxiejesuss296
Coldzera 291
Other Games
summit1g7401
WinterStarcraft408
ceh9400
Tasteless173
Hui .108
Mew2King76
Trikslyr15
Organizations
Other Games
gamesdonequick755
Counter-Strike
PGL259
Other Games
BasetradeTV92
StarCraft: Brood War
UltimateBattle 30
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• LUISG 23
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV499
League of Legends
• Lourlo1203
• Jankos1074
• Stunt664
Upcoming Events
Replay Cast
2h 19m
OSC
8h 19m
Tenacious Turtle Tussle
15h 19m
The PondCast
1d 2h
OSC
1d 4h
WardiTV Invitational
2 days
Online Event
2 days
RSL Revival
2 days
RSL Revival
3 days
WardiTV Invitational
3 days
[ Show More ]
Afreeca Starleague
4 days
Snow vs Soma
Sparkling Tuna Cup
4 days
WardiTV Invitational
4 days
CrankTV Team League
4 days
RSL Revival
4 days
Wardi Open
5 days
CrankTV Team League
5 days
Replay Cast
6 days
WardiTV Invitational
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.