• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:51
CEST 16:51
KST 23:51
  • 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
[ASL22] Ro16 Preview: Rough Waters9[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244
Community News
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism5Official StarCraft website teases new content ahead of BlizzCon?118Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!46
StarCraft 2
General
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game Balance hotfix patch 5.0.16b (July 16) SC4ALL: II Winner Will Earn a Spot at HSC 30! Weekly Cups (August 24-30): Patches' balance mod takes over
Tourneys
Sea Duckling Open (Global, Bronze-Diamond) 2026 GSTL Announcement Sparkling Tuna Cup - Weekly Open Tournament Stellar Fest TWO the Moon (Dec 16-20) IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 542 The Ascended Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This
Brood War
General
Official StarCraft website teases new content ahead of BlizzCon? [ASL22] Ro16 Preview: Rough Waters ASL22 General Discussion Pros React To: Calm's Big Brain Play Vs Mini New 3v3 BGH Ladder (and more) on ShieldBattery!
Tourneys
[ASL22] Ro16 Group B [Megathread] Daily Proleagues 2v2v2v2 Tournament [ASL22] Ro16 Group A
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Nintendo Switch Thread EVE Corporation Diablo IV [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
F* the Children and Get Off …
TrAiDoS
Dreaming of BW patches (mod…
c3rberUs
Regacy Esports: The Bh…
regacyesports
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6526 users

The Big Programming Thread - Page 825

Forum Index > General Forum
Post a Reply
Prev 1 823 824 825 826 827 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.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-06 22:12:01
January 06 2017 21:25 GMT
#16481
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
January 06 2017 21:57 GMT
#16482
When I'm looking at intern or new hire resumes I look for projects that the person has worked on. Most of the new grads have a senior design project that I'll ask them questions about during the interview and ideally some other work that they were interested in. Having some giant list of languages and frameworks you've seen or worked on is fairly useless in my opinion, but different people look for different things.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 06 2017 22:08 GMT
#16483
On January 07 2017 02:44 spinesheath wrote:
First of all you should sort your lines by length. There should be a sort-method readily available in Java, you might have to pass it a Comparer of sorts, which converts a line into its length. The result of this step is a sorted list of lines.

Then in the second step, you iterate over the sorted lines. For each line, you check it against all lines, which you do again by iterating over the sorted lines, skipping the one you're currently checking. If you find one that doesn't intersect any line, you return that one as a result. It is the smallest one because it's the first in the sorted list.

There is no recursion here. It's a naive approach, but clean and simple. It's O(n^2). More sophisticated approaches probably would keep the first part, but tweak the second part to use sort of a divide and conquer approach, but that won't be very simple at all. I can imagine O(n log n), but I don't know if it actually is possible.

This approach includes a number of pointless checks, in the worst case 50%. This is because I check against all lines without skipping the pairs already covered. We can avoid that easily by storing the sorted lines in a list, then iterate over the list by index. If we are currently at list[5], we only check against list[6] and beyond:

for(int i = 0; i < list.Count; ++i) {
for(int k = i + 1; k < list.Count; ++k) {
check if list[i] intersects list[k];
}
}
Still is O(n^2) though.

Always ask yourself if you can split your problem into smaller chunks. Sort first, check after. Simple approach first, optimization after.

Also Java or rather the JVM is not well equipped for heavy recursion. Don't avoid recursion at all costs, but if you're doing a lot of work with deep recursion, you probably should try to avoid it.

Why keep a list? You know you've checked intersections with all the lines up to i-1, so just check i+1 forward. This has to go together with roomofmush's optimization of removing intersecting lines from the list, of course. That seems like a pretty efficient way of doing it. Not quite sure how you could optimize further (which is of course Nesserev's cue to show how to make a vast improvement ).
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 06 2017 22:36 GMT
#16484
That's what the list is for, so I can do index access. And in the inner for, notice the initialization of k.
If you have a good reason to disagree with the above, please tell me. Thank you.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
January 07 2017 14:09 GMT
#16485
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.
"windows bash is a steaming heap of shit" tofucake
RoomOfMush
Profile Joined March 2015
1296 Posts
January 07 2017 15:52 GMT
#16486
On January 07 2017 23:09 Djagulingu wrote:
Show nested quote +
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 07 2017 19:48 GMT
#16487
On January 08 2017 00:52 RoomOfMush wrote:
Show nested quote +
On January 07 2017 23:09 Djagulingu wrote:
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.


Am I right in guessing that you need it for reverse engineering?
tofucake
Profile Blog Joined October 2009
Hyrule19253 Posts
January 07 2017 20:11 GMT
#16488
Microcontroller programming uses it a lot as well
Liquipediaasante sana squash banana
RoomOfMush
Profile Joined March 2015
1296 Posts
January 07 2017 20:14 GMT
#16489
On January 08 2017 04:48 travis wrote:
Show nested quote +
On January 08 2017 00:52 RoomOfMush wrote:
On January 07 2017 23:09 Djagulingu wrote:
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.


Am I right in guessing that you need it for reverse engineering?

I dont know how much you would need it. It could certainly be helpful. Most of the work is done by algorithms though.
tofucake
Profile Blog Joined October 2009
Hyrule19253 Posts
January 07 2017 21:00 GMT
#16490
On January 08 2017 05:14 RoomOfMush wrote:
Show nested quote +
On January 08 2017 04:48 travis wrote:
On January 08 2017 00:52 RoomOfMush wrote:
On January 07 2017 23:09 Djagulingu wrote:
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.


Am I right in guessing that you need it for reverse engineering?

I dont know how much you would need it. It could certainly be helpful. Most of the work is done by algorithms though.
"Algorithms" is a thing that can be done in any language. This statement confuses me.
Liquipediaasante sana squash banana
Mr. Wiggles
Profile Blog Joined August 2010
Canada5894 Posts
January 07 2017 21:22 GMT
#16491
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

On my own resume, I use "Comfortable with:" and "Familiar with:", and then provide a short list of languages. This takes two lines, and that's it. I more or less define comfortable to be that I can sit down and start being productive in the language immediately, while a language I'm familiar with is one I've used before, but would need some time/support to brush up on it again and get back up to speed.

On the other hand, I'm unsure of how closely anyone's even going to look at what languages you put down. If the language is actually important, and isn't something that it's ok to bootstrap as you start, then I'd think they'd be more interested in past professional experience or demonstrable skill through something else like projects.

I'd say it also depends a bit on where you're applying to. There's nothing stopping you from tweaking your resume to highlight different things depending on the company you're trying to work with. I think a good rule of thumb is to also try to highlight "soft" skills as well, to show that you've worked well in the past as part of a team, have leadership experience, etc.
you gotta dance
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 07 2017 22:54 GMT
#16492
On January 08 2017 06:00 tofucake wrote:
Show nested quote +
On January 08 2017 05:14 RoomOfMush wrote:
On January 08 2017 04:48 travis wrote:
On January 08 2017 00:52 RoomOfMush wrote:
On January 07 2017 23:09 Djagulingu wrote:
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.


Am I right in guessing that you need it for reverse engineering?

I dont know how much you would need it. It could certainly be helpful. Most of the work is done by algorithms though.
"Algorithms" is a thing that can be done in any language. This statement confuses me.

Presumably most of the lower level work in reverse engineering is automated? I wouln't know, because I know next to nothing about reverse engineering. When I was still interested in that kinda stuff, I mostly just tried to decompile stuff, took one look at the gigantic mess I was left with and gave up.
RoomOfMush
Profile Joined March 2015
1296 Posts
January 08 2017 00:37 GMT
#16493
On January 08 2017 06:00 tofucake wrote:
Show nested quote +
On January 08 2017 05:14 RoomOfMush wrote:
On January 08 2017 04:48 travis wrote:
On January 08 2017 00:52 RoomOfMush wrote:
On January 07 2017 23:09 Djagulingu wrote:
On January 07 2017 06:25 travis wrote:
Okay I've got a question for the professionals out there

on my resume, what sort of terminology should I use to explain how familiar I am with languages/systems?

For example, I've been programming almost exclusively in Java, have finished 2 rigorous classes on it, and feel like with just a small amount of research I could do most of what there is to do in Java. But there's still lots to learn, of course.
Would it be reasonable to say that I am "fluent in java" on my resume?

Let's say I finish a large introductory text on python and learn all the concepts, and I am now capable of writing basic python programs. could I say that I am "familiar" with python?

etc etc

thanks



also, I am filling out an online application for an internship and they ask me "are you familiar with high and low level languages". I feel like the answer is obviously "no" since I don't know any low level languages. I do, however, have a basic idea of how assembly works.. But they are wanting me to actually know how to program in assembly / something comparable?

You might rate yourself on your skills on a scale of 1 to either 3, 5 or 10. Also, nobody wants you to know how to program in assembly. I know how to do it and never had to use it for anything professionally. I don't rate my skills in my resume. They are just a comma separated list. I don't even think that people take this stuff seriously.

What matters most is always projects. If you feel like with just a small amount of research I could do most of what there is to do in Java, do something with it. Not just say you're "fluent in java" or whatever the bull crap that is. You're going to be a fresh grad. Projects will be a yes/no question for you, not a "wh-" question (unlike more senior developers). If you have something to show, you're golden.

Also, Low level languages are C and C++. I don't even think your recruiter/boss/manager can program in assembly, even if s/he is a "lead/staff/senior embedded systems developer". They only teach assembly to students so that they have a better idea about what happens under the hood.

There are a few select positions where you need to use assembly though. Highly unlikely travis will end up with one of these but perfectly possible. I wouldnt recommend learning it though unless out of curiousity. If you really need it for your job it will probably be something very specific which you will need to learn again anyways.


Am I right in guessing that you need it for reverse engineering?

I dont know how much you would need it. It could certainly be helpful. Most of the work is done by algorithms though.
"Algorithms" is a thing that can be done in any language. This statement confuses me.

When you compile things you just transform information from one model to "roughly equal" information in a different model. The process is usually not perfect though and some information is lost during the transformation. Reverse engineering is the process of reversing compilation. Transforming from the second model back to the first is difficult though because of that lost information I was talking about earlier.

However, there is a lot of information which can be "guessed" or deducted through statistical analysis, heuristics or simple brute force computational power. Todays computers are strong enough to reverse the process of compilation fairly well. You will never get an identical product (because names will be missing for most languages since they are not part of the compilation output) but you get something workable. Assembly is then no longer necessary because the output can be C or C++ or any other language you like.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 09 2017 15:33 GMT
#16494
I am learning python right now and I figured it would be easiest to just ask this here

If I make a list, listOne

and I say

listTwo = listOne

did I just assign a reference to listOne or did I copy the values?
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 09 2017 15:43 GMT
#16495
Reference, but it's easy enough to test, and in general, get used to figuring out such stuff

Try:


listOne = [1, 2, 3]
listTwo = listOne
listTwo[1] = "foo"
print(listOne)

Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-09 16:02:47
January 09 2017 15:53 GMT
#16496
yeah I guess I could have just tested it, which I kind of did but not in a proper context

for the life of me I can't figure out what this program is doing

I am doing this little online coding game for fun and the question is to take a list of elements and return a list of non unique elements. for example [5, 5, 3, 2, 2] would return [5,5,2,2]

my code



def checkio(data):
#Your code here
#It's main function. Don't remove this function
#It's used for auto-testing and must return a result for check.

newlist = []

for k in data:
newlist.append(k)

templist = []

for n in newlist:
if not n in templist:
templist.append(n)
newlist.remove(n)

for j in data:
if not j in newlist:
data.remove(j)



return data




I'd expect this to work, and for some situations it does seem to, but when the test passes [1, 2, 3, 1, 3] I seem to return 1, 2, 3, 1, 3 back. which doesn't make sense to me


my thinking is that I make an empty list
make a copy of data to play with

take 1 of each element in my copy, put them in my empty list and remove them from my copy

which should leave me with

data = [1, 2, 3, 1, 3]
templist = [1, 2, 3]
newlist = [1, 3]

then for each element in data, if it isn't in newlist, remove it

which should leave me with data = [1, 3, 1, 3]

but it doesn't.

what am I doing wrong?


does the problem actually have something to do with concurrent modification?





disclaimer: I know there's probably methods to use and other ways that are probably easier. I'll find those out as I go along. Though if you want to tell me feel free



edit 2. yay I solved it, I did this:


def checkio(data):
#Your code here
#It's main function. Don't remove this function
#It's used for auto-testing and must return a result for check.

copyList = []

for j in data:
copyList.append(j)

for n in copyList:
if copyList.count(n) == 1:
data.remove(n)



return data


and it looks like concurrent modification does mess it up so I can't modify a list as I iterate. is that something that tends to happen in all languages?
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 09 2017 16:22 GMT
#16497
On January 10 2017 00:53 travis wrote:
yeah I guess I could have just tested it, which I kind of did but not in a proper context

for the life of me I can't figure out what this program is doing

I am doing this little online coding game for fun and the question is to take a list of elements and return a list of non unique elements. for example [5, 5, 3, 2, 2] would return [5,5,2,2]

my code



def checkio(data):
#Your code here
#It's main function. Don't remove this function
#It's used for auto-testing and must return a result for check.

newlist = []

for k in data:
newlist.append(k)

templist = []

for n in newlist:
if not n in templist:
templist.append(n)
newlist.remove(n)

for j in data:
if not j in newlist:
data.remove(j)



return data




I'd expect this to work, and for some situations it does seem to, but when the test passes [1, 2, 3, 1, 3] I seem to return 1, 2, 3, 1, 3 back. which doesn't make sense to me


my thinking is that I make an empty list
make a copy of data to play with

take 1 of each element in my copy, put them in my empty list and remove them from my copy

which should leave me with

data = [1, 2, 3, 1, 3]
templist = [1, 2, 3]
newlist = [1, 3]

then for each element in data, if it isn't in newlist, remove it

which should leave me with data = [1, 3, 1, 3]

but it doesn't.

what am I doing wrong?


does the problem actually have something to do with concurrent modification?





disclaimer: I know there's probably methods to use and other ways that are probably easier. I'll find those out as I go along. Though if you want to tell me feel free



edit 2. yay I solved it, I did this:


def checkio(data):
#Your code here
#It's main function. Don't remove this function
#It's used for auto-testing and must return a result for check.

copyList = []

for j in data:
copyList.append(j)

for n in copyList:
if copyList.count(n) == 1:
data.remove(n)



return data


and it looks like concurrent modification does mess it up so I can't modify a list as I iterate. is that something that tends to happen in all languages?


Most languages. It's something you should avoid. Java outright doesn't allow it, hence why you haven't seen it before. The only situations in which it is okay to add/remove stuff in a list you are looping through if you loop through with a regular for loop rather than an iterator, and ensure your for loop ends at the end of the list despite your modifications. I *think* that with the way Python works, it is okay to remove elements that your iterator has already passed, but make extra double sure that that is actually true, and even then it's still best practice to not do that kind of thing, because it's just way too easy to send things going screwy when you decide to modify your code to work slightly differently.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 09 2017 16:42 GMT
#16498
Most of the time, you're much better off constructing a new list with all the good stuff instead of removing the bad stuff from the original list.
If you have a good reason to disagree with the above, please tell me. Thank you.
RoomOfMush
Profile Joined March 2015
1296 Posts
Last Edited: 2017-01-09 18:11:33
January 09 2017 18:10 GMT
#16499
On January 10 2017 00:53 travis wrote:
and it looks like concurrent modification does mess it up so I can't modify a list as I iterate. is that something that tends to happen in all languages?

Whether concurrent modification is supported by a particular data structure depends on the implementation. If we take java as an example: The ArrayList and LinkedList do not support concurrent modification. This has technical reasons. The datastructures could be corrupted by concurrent modification. Instead of building in safeguards which make concurrent modification work they decided to disallow it. The safeguards would cost overhead of course and the devs argued that would not be a smart solution. Both of these data structures allow concurrent modification if you use an Iterator-Object though.

The CopyOnWriteArrayList on the other hand does allow concurrent modification in java. By design there is no possibility of corruption.


In other languages it is probably the same way. If concurrent modification can only be avoided at significant costs it is not supported. After all: the implementations of LinkedLists and ArrayLists are probably very similar in most languages.

Do as spinesheath said and use a new list. You could also save only the changes in the new list and then have them carried out after the iteration.
Hanh
Profile Joined June 2016
146 Posts
January 10 2017 05:00 GMT
#16500
You could avoid manipulating lists yourself and hence avoid side effects altogether.


from itertools import groupby

a = [5, 5, 3, 2, 2]

counts = {k:len(list(v)) for k, v in groupby(sorted(a))}
b = [x for x in a if counts[x] > 1]
print(b)


The complexity is lower too.
Prev 1 823 824 825 826 827 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
2026 Week 22
IntoTheiNu 1411
WardiTV543
RotterdaM495
TKL 181
IndyStarCraft 166
Rex139
SteadfastSC105
EnkiAlexander 38
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 495
TKL 181
IndyStarCraft 166
ProTech148
Rex 139
SteadfastSC 105
Trap 29
StarCraft: Brood War
Shuttle 1953
Soulkey 1475
Horang2 1247
EffOrt 622
Mini 545
Stork 303
firebathero 168
hero 104
Sharp 76
Hm[arnc] 56
[ Show more ]
Last 56
sSak 51
910 49
Barracks 48
Mind 48
Pusan 37
PianO 32
ToSsGirL 30
Bale 27
Terrorterran 24
soO 21
Rock 17
yabsab 13
Sacsri 13
NotJumperer 13
SilentControl 10
ajuk12(nOOB) 7
scan(afreeca) 7
Dota 2
qojqva3196
Dendi1617
syndereN769
Counter-Strike
byalli795
Super Smash Bros
hungrybox3249
Mew2King31
Other Games
singsing1867
B2W.Neo831
Lowko347
DeMusliM235
crisheroes225
XaKoH 177
Liquid`VortiX166
Sick132
C9.Mang0123
ArmadaUGS56
QueenE43
KnowMe38
[ Show 13 non-featured ]
StarCraft 2
• StrangeGG 32
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2480
League of Legends
• Nemesis2426
• Jankos2134
• TFBlade905
Upcoming Events
Replay Cast
9h 9m
The PondCast
19h 9m
KCM Race Survival
19h 9m
OSC
1d 7h
Escore
1d 19h
IntoTheTV X SOOP
1d 20h
CranKy Ducklings
2 days
Sparkling Tuna Cup
3 days
Shopify Rebellion Sundays
4 days
Spirit vs Mixu
Clem vs TBD
RSL Revival
4 days
Serral vs Rogue
[ Show More ]
BlizzCon
4 days
Replay Cast
4 days
Afreeca Starleague
4 days
WardiTV Weekly
4 days
Afreeca Starleague
5 days
GSL
5 days
PiGosaur Cup
6 days
The PondCast
6 days
Kung Fu Cup
6 days
Liquipedia Results

Completed

Proleague 2026-09-08
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
RSL Revival: Season 6
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Escore Tournament S3: King of Kings
Acropolis #5 - GSA
Blizzard Classic Cup 2026
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Blizzard Classic Cup 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
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 © 2026 TLnet. All Rights Reserved.