![]() |
€uromeinke, FEJ. and Ghoulish Delight RULE!!! NA abides. |
![]() |
#11 |
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Yeah, but your, well... you
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln |
![]() |
Submit to Quotes
![]() |
![]() |
#12 |
I Floop the Pig
|
Wow. In just 2 weeks I've learned (and retained) more about programming (well, Python) than the whole of the last 14 years combined. It's amazing how much easier it is to make sense of it all when I have a practical goal that I actually give a crap about rather than arbitrary exercises thought up by professors and text book writers. Concepts that I once only vaguely grasped in isolation but could never wrap my brain around how to use them in any sort of practical code are suddenly crystal clear.
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ |
![]() |
Submit to Quotes
![]() |
![]() |
#13 |
SQUIRREL!
Join Date: Jan 2005
Location: On the curbside.
Posts: 5,098
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
GD, for Action Script, I look for basic code online (most programmers share code), cut and paste it, then modify it to my needs.
Not sure if that can work in other languages, but it's a huge time saver in AS. I still have to know what the code is doing in order to modify it, but I've been able to accomplish some really awesome stuff in a short period of time with "starter code". ![]() |
![]() |
Submit to Quotes
![]() |
![]() |
#14 |
I Floop the Pig
|
What I'm coding is pretty low-level and specific, there aren't many people who are trying to accomplish exactly what I am, so there's not much code that I can simply paste. Plus, as a general rule, I learn better by building up rather than untangling existing code. But as a source of examples of how individual calls and commands work, the internet is obviously invaluable.
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ |
![]() |
Submit to Quotes
![]() |
![]() |
#15 | |
I Floop the Pig
|
Incidentally, I have a question for anyone familiar with Python.
Is there a way to tell the interpreter that certain commands MUST be executed in order? e.g. Quote:
ClassList[0].Method1() subprocess.call other work ClassList[1].Method1() subprocess.call other work ClassList[2].Method1(0 .... I get: ClassList[0].Method1() ClassList[1].Method1() ClassList[2].Method1() ClassList[3].Method1() ClassList[4].Method1() subprocess.call other work subprocess.call other work subprocess.call other work subprocess.call other work subprocess.call other work Clearly what's happening is that the interpreter looks at Method1, decides that it's not doing anything that is internally dependent on order of execution, so it optimizes by lumping all 5 executions together. The problem is, the results of the subprocess call ARE dependent on order of execution. I came up with a workaround. I threw a dummy variable assignment (garbage=self.var1) at the end of Method1. That's enough to convince the interpreter that work is being done and it should keep things in order. But that seems inelegant. Is there a better way to stop the interpreter from thinking it knows better than me?
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ |
|
![]() |
Submit to Quotes
![]() |
![]() |
#16 |
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
I don't know why I keep clicking in this thread.
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln |
![]() |
Submit to Quotes
![]() |
![]() |
#17 |
I LIKE!
Join Date: Jan 2005
Posts: 7,819
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Don't know python, but pretty much every language I've ever worked with has to be tricked in certain circumstances. Code isn't always pretty....I just comment a lot in the code when I have to do the "inelegant".
|
![]() |
Submit to Quotes
![]() |
![]() |
#18 |
I Floop the Pig
|
I suppose that level of control is one of the many things one sacrifices for the convenience of not having to fuss around with malloc.
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ |
![]() |
Submit to Quotes
![]() |
![]() |
#19 |
check your head
Join Date: Oct 2005
Posts: 4,174
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
are you sure python recognizes indexing as zero relative? Ive never used (or honestly ever heard of) Python, but I know some languages vary on that aspect.
try starting it with an initial value of 1 instead /shrug
__________________
![]() a clear conscience is a sure sign of a fuzzy memory ![]() |
![]() |
Submit to Quotes
![]() |
![]() |
#20 |
I Floop the Pig
|
Python definitely indexes from 0. This is just a matter of the compiler/garbage collector optimizing code.
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ |
![]() |
Submit to Quotes
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|