• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:21
CEST 03:21
KST 10:21
  • 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: Voting3[ASL20] Ro4 Preview: Descent7Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)71Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Ladder Impersonation (only maybe) 5.0.15 Patch Balance Hotfix (2025-10-8) The New Patch Killed Mech! TL.net Map Contest #21: Voting Weekly Cups (Oct 6-12): Four star herO
Tourneys
Master Swan Open (Global Bronze-Master 2) Tenacious Turtle Tussle WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
BW General Discussion [ASL20] Ro4 Preview: Descent BSL Season 21 BW caster Sayle ASL20 General Discussion
Tourneys
[ASL20] Semifinal B [ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
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
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
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
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2128 users

The Big Programming Thread - Page 187

Forum Index > General Forum
Post a Reply
Prev 1 185 186 187 188 189 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
white_horse
Profile Joined July 2010
1019 Posts
November 05 2012 19:47 GMT
#3721
thanks for helping me
some really noob mistakes -______________-
Translator
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
November 05 2012 22:47 GMT
#3722

$(document).ready(function(){
$(".triggers").click(function(){
$(".panels").toggle("fast");
$(this).toggleClass("active");
return false;
});

$('.trigger').add('.triggerz').click(function(){
$(".panels").hide();
});

});

$(document).ready(function(){
$(".trigger").click(function(){
$(".panel").toggle("fast");
$(this).toggleClass("active");
return false;
});
$('.triggers').add('.triggerz').click(function(){
$(".panel").hide();
});
});

$(document).ready(function(){
$(".triggerz").click(function(){
$(".panelz").toggle("fast");
$(this).toggleClass("active");
return false;
});
$('.triggers').add('.trigger').click(function(){
$(".panelz").hide();
});
});


Is there anything wrong with this? It works fine in Firefox, Safari and IE, but in Chrome it's acting up. It doesn't run the jQuery. This is the error I get in the JS Developer section of chrome: $ is not defined; but when I look, I don't see anything wrong with my code. All the $ are closed correctly.
Life?
tofucake
Profile Blog Joined October 2009
Hyrule19135 Posts
November 05 2012 22:49 GMT
#3723
try $(window).load instead of $(document).ready
Chrome has issues with firing doc ready.
Liquipediaasante sana squash banana
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
November 05 2012 22:55 GMT
#3724
On November 06 2012 07:49 tofucake wrote:
try $(window).load instead of $(document).ready
Chrome has issues with firing doc ready.


Same issue, hrpmf... Still says $ is not defined.
Life?
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
November 05 2012 22:57 GMT
#3725
On November 06 2012 07:55 ShoCkeyy wrote:
Show nested quote +
On November 06 2012 07:49 tofucake wrote:
try $(window).load instead of $(document).ready
Chrome has issues with firing doc ready.


Same issue, hrpmf... Still says $ is not defined.


That means jQuery is not included. Check your <script> tags.
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
November 05 2012 23:00 GMT
#3726
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="https://www.paydayloandebtassistance.com/test/js/triggers.js"></script>

Can it be I'm using an older version of the jquery library for chrome?
Life?
speknek
Profile Joined February 2012
758 Posts
November 05 2012 23:04 GMT
#3727
Hi, I wanna make some money with coding/programming. What would you recommend me to focus on (and why)? I know it's kind of a vague/broad question, but I'd appreciate any tips. I have "some" experience with scripting in matlab (Mech Eng student) and helping some friends out with random things in java, but I never really learned it properly, just google-engineered everything.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
Last Edited: 2012-11-05 23:07:46
November 05 2012 23:05 GMT
#3728
On November 06 2012 08:00 ShoCkeyy wrote:
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="https://www.paydayloandebtassistance.com/test/js/triggers.js"></script>

Can it be I'm using an older version of the jquery library for chrome?


The problem seems to be that http://jqueryjs.googlecode.com/files/jquery-1.3.2.js appears to send the file as attachment, not as simple plaintext, so chrome doesn't treat it as javascript. Other browsers seem to be more forgiving. Download the file and put it somewhere else and include it from there.

On November 06 2012 08:04 speknek wrote:
Hi, I wanna make some money with coding/programming. What would you recommend me to focus on (and why)? I know it's kind of a vague/broad question, but I'd appreciate any tips. I have "some" experience with scripting in matlab (Mech Eng student) and helping some friends out with random things in java, but I never really learned it properly, just google-engineered everything.


Programming is no make-money-quick scheme. Spend the next 6 month learning whatever you are interested in (mobile apps, websites, whatever) and if you are still interested, spend another year doing the same until you know enough to start working in the field.
Nihilnovi
Profile Joined May 2010
Sweden696 Posts
Last Edited: 2012-11-05 23:14:01
November 05 2012 23:13 GMT
#3729
On November 06 2012 07:49 tofucake wrote:
try $(window).load instead of $(document).ready
Chrome has issues with firing doc ready.


Almost right.

The issue is with having several doc ready on a page loaded with 1 call.
The reason is there is should never be a situation where you need to enclose logic in more than 1 document ready per dom rendering, its fine to have doc ready in content included at a later stage with XHR. Chrome is funny this way.

Either way, this should fix it. If it doesn't, then you are probably having some caching issues with chrome, try to clear your cache and make sure its actually loaded as js with chrome dev tools, and good luck with your homework/training.



$(document).ready(function(){
$(".triggers").click(function(){
$(".panels").toggle("fast");
$(this).toggleClass("active");
return false;
});

$('.trigger').add('.triggerz').click(function(){
$(".panels").hide();
});


$(".trigger").click(function(){
$(".panel").toggle("fast");
$(this).toggleClass("active");
return false;
});

$('.triggers').add('.triggerz').click(function(){
$(".panel").hide();
});


$(".triggerz").click(function(){
$(".panelz").toggle("fast");
$(this).toggleClass("active");
return false;
});

$('.triggers').add('.trigger').click(function(){
$(".panelz").hide();
});

});
Nihilnovi
Profile Joined May 2010
Sweden696 Posts
November 05 2012 23:18 GMT
#3730
On November 06 2012 08:00 ShoCkeyy wrote:
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="https://www.paydayloandebtassistance.com/test/js/triggers.js"></script>

Can it be I'm using an older version of the jquery library for chrome?


That file is being sent as an attachment and not included a javascript into Chrome, thats why it cant find jQuery! Also thats a REALLY old version.
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
Last Edited: 2012-11-05 23:42:53
November 05 2012 23:19 GMT
#3731
LOL I FIXED IT........ I just needed a https:// in front of my script call. I'm such an idiot - _ -;;;

Thanks for all the help, the most that helped me was moving the jquery to my server. That basically fixed most of the problems. Just needed to add the https in front of it and it was good to go. Thanks all once again!
Life?
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
November 05 2012 23:45 GMT
#3732
Ughfh,
Spend all day at work coding (sort-of, debugging other people's code is considered coding, right?), then try to go home and code my own side project, but just get burnt out incredibly fast and give up because of the poor quality of code generated and no accountability.

Any suggestions for overcoming programming fatigue? Caffeine is nice and all, but see the above comment on poor quality of code generated; sleep deprivation doesn't sound like a good path forward.
Any sufficiently advanced technology is indistinguishable from magic
Hairy
Profile Joined February 2011
United Kingdom1169 Posts
November 05 2012 23:50 GMT
#3733
TDD! :D
Sometimes I sits and thinks, and sometimes I just sits
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
November 05 2012 23:59 GMT
#3734
On November 06 2012 08:50 Hairy wrote:
TDD! :D

Lol that would be excellent... except my side project is for an embedded target, and I don't want to spend my precious energy writing a test-case for "that LED turns on" :/

Agree though TDD is pretty much the choicest of development environments
Any sufficiently advanced technology is indistinguishable from magic
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
November 06 2012 00:01 GMT
#3735
On November 06 2012 08:45 RoyGBiv_13 wrote:
Ughfh,
Spend all day at work coding (sort-of, debugging other people's code is considered coding, right?), then try to go home and code my own side project, but just get burnt out incredibly fast and give up because of the poor quality of code generated and no accountability.

Any suggestions for overcoming programming fatigue? Caffeine is nice and all, but see the above comment on poor quality of code generated; sleep deprivation doesn't sound like a good path forward.


Switch careers.

Working with bad programmers and fixing their stupid bugs every day threw me into a complete burnout that i most likely never will recover from. Even in my private projects i now have a complete "writer's block" and have trouble solving minor problems.

Other than that:
Try to teach others proper programming techniques so you don't have to debug their code all the time. Working with at least a decent codebase is so much less stressful and might make you enjoy it.
I at least got people from writing horrible, messy code to writing horrible but at least properly formatted code that even had proper variable names. I still had to spend 75% of my workday cleaning up their messes but maybe if i had survived another year or two, maybe it would have only been 50% by then.

Bad programmers are the scourge of professional programming, you will never get rid of them since there are too many people similar to the poster a few posts above with "I want to earn money with programming. I don't know anything about programming though."

Hairy
Profile Joined February 2011
United Kingdom1169 Posts
November 06 2012 00:07 GMT
#3736
BTW, I would absolutely 100% recommend these videos:
http://www.cleancoders.com/

Clean Coders from 'Uncle Bob'. We've been watching them at work and they have been both entertaining and massively educational - there's no one thing that we've done through training that has had a greater impact on how we code and how we think about code at our company. Its style is eccentric (and you will be worried about it when you start watching), but you quickly realise that the mad costumes and crazy cuts are there simply to keep you focused and concentrating... and it works.

A good way to passively get better at programming while you give your hands a rest.
Sometimes I sits and thinks, and sometimes I just sits
JeanLuc
Profile Joined September 2010
Canada377 Posts
November 06 2012 00:09 GMT
#3737
On November 06 2012 08:45 RoyGBiv_13 wrote:
Ughfh,
Spend all day at work coding (sort-of, debugging other people's code is considered coding, right?), then try to go home and code my own side project, but just get burnt out incredibly fast and give up because of the poor quality of code generated and no accountability.

Any suggestions for overcoming programming fatigue? Caffeine is nice and all, but see the above comment on poor quality of code generated; sleep deprivation doesn't sound like a good path forward.


Kind of similar situation here. I found what helped incredibly was, when I come home, only concentrating on projects truly meaningful to me. Stuff that I enjoy just for its own sake, rather than stuff "I should learn". Other than that just keep it up, I know you're discouraged but it sounds like you're doing well. Your body will adjust if you persevere.
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
speknek
Profile Joined February 2012
758 Posts
November 06 2012 00:10 GMT
#3738
On November 06 2012 08:05 Morfildur wrote:
Programming is no make-money-quick scheme. Spend the next 6 month learning whatever you are interested in (mobile apps, websites, whatever) and if you are still interested, spend another year doing the same until you know enough to start working in the field.

Your reply has no content whatsoever, you just said "spend 1.5 yrs learning something".
To clarify, I don't want to work in the field fulltime or learn every in and out about a certain subject, I just want some freelance jobs or make some (web)apps that earn me some money. I helped friends before and released a android app together with a buddy which landed me some decent cash, etc. This was nice and all, but I'm just looking for some advice on where/how I can get some simple projects or other ways that get me some money. I'm not trying to get rich quick or whatever you tried to imply, just wanna get a little extra income.
HowitZer
Profile Joined February 2003
United States1610 Posts
November 06 2012 00:10 GMT
#3739
On November 06 2012 08:45 RoyGBiv_13 wrote:
Ughfh,
Spend all day at work coding (sort-of, debugging other people's code is considered coding, right?), then try to go home and code my own side project, but just get burnt out incredibly fast and give up because of the poor quality of code generated and no accountability.

Any suggestions for overcoming programming fatigue? Caffeine is nice and all, but see the above comment on poor quality of code generated; sleep deprivation doesn't sound like a good path forward.


Improving my fitness and diet worked for me.
Human teleportation, molecular decimation, breakdown and reformation is inherently purging. It makes a man acute.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
November 06 2012 00:11 GMT
#3740
On November 06 2012 09:01 Morfildur wrote:
Show nested quote +
On November 06 2012 08:45 RoyGBiv_13 wrote:
Ughfh,
Spend all day at work coding (sort-of, debugging other people's code is considered coding, right?), then try to go home and code my own side project, but just get burnt out incredibly fast and give up because of the poor quality of code generated and no accountability.

Any suggestions for overcoming programming fatigue? Caffeine is nice and all, but see the above comment on poor quality of code generated; sleep deprivation doesn't sound like a good path forward.


Switch careers.

Working with bad programmers and fixing their stupid bugs every day threw me into a complete burnout that i most likely never will recover from. Even in my private projects i now have a complete "writer's block" and have trouble solving minor problems.

Other than that:
Try to teach others proper programming techniques so you don't have to debug their code all the time. Working with at least a decent codebase is so much less stressful and might make you enjoy it.
I at least got people from writing horrible, messy code to writing horrible but at least properly formatted code that even had proper variable names. I still had to spend 75% of my workday cleaning up their messes but maybe if i had survived another year or two, maybe it would have only been 50% by then.

Bad programmers are the scourge of professional programming, you will never get rid of them since there are too many people similar to the poster a few posts above with "I want to earn money with programming. I don't know anything about programming though."



Probably worth mentioning that I work in support for an embedded toolchain company. My coworkers are probably some of the brightest code magicians I've had the pleasure of working with.

It's in my job description to help customers though, and my greatest fear is not debugging a stupid customer's code, but rather, the one who manages to break the OS in a new and spectacular way. I rarely come across poorly written/designed code (unless I'm dealing with gov't contractors...).

I think its most just the 24/7 aspect of programming. I suppose its time to go spin things in the park before getting back to work
Any sufficiently advanced technology is indistinguishable from magic
Prev 1 185 186 187 188 189 1032 Next
Please log in or register to reply.
Live Events Refresh
PiGosaur Monday
00:00
#53
PiGStarcraft552
SteadfastSC132
davetesta33
rockletztv 23
EnkiAlexander 17
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft552
WinterStarcraft391
SteadfastSC 132
RuFF_SC2 92
CosmosSc2 77
Nathanias 72
Vindicta 23
StarCraft: Brood War
Larva 707
Artosis 662
NaDa 23
League of Legends
JimRising 446
Counter-Strike
fl0m1653
Other Games
summit1g8019
Day[9].tv605
C9.Mang0394
Skadoodle259
Maynarde141
ViBE125
fpsfer 4
Organizations
Other Games
gamesdonequick1031
BasetradeTV31
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Berry_CruncH66
• Hupsaiya 56
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV610
League of Legends
• Stunt266
Other Games
• Scarra1215
• Day9tv605
Upcoming Events
OSC
21h 39m
The PondCast
1d 8h
OSC
1d 10h
Wardi Open
2 days
CranKy Ducklings
3 days
Safe House 2
3 days
Sparkling Tuna Cup
4 days
Safe House 2
4 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
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
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.