• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:09
CEST 00:09
KST 07:09
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL59Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event19Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher Statistics for vetoed/disliked maps The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event RSL: Revival, a new crowdfunded tournament series Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) [GSL 2025] Code S: Season 2 - Semi Finals & Finals
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Flash Announces Hiatus From ASL SC uni coach streams logging into betting site BGH Mineral Boosts Tutorial Video Player “Jedi” cheat on CSL Replays question
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 544 users

The Big Programming Thread - Page 295

Forum Index > General Forum
Post a Reply
Prev 1 293 294 295 296 297 1031 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.
cydial
Profile Blog Joined September 2010
United States750 Posts
May 07 2013 02:58 GMT
#5881
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.
Roe
Profile Blog Joined June 2010
Canada6002 Posts
May 07 2013 03:19 GMT
#5882
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?
waxypants
Profile Blog Joined September 2009
United States479 Posts
May 07 2013 03:25 GMT
#5883
On May 07 2013 12:19 Roe wrote:
Show nested quote +
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


What is your environment (mainly talking just about OS here).
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-05-07 03:52:19
May 07 2013 03:51 GMT
#5884
On May 07 2013 12:25 waxypants wrote:
Show nested quote +
On May 07 2013 12:19 Roe wrote:
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


What is your environment (mainly talking just about OS here).

If it's windows then you can only run .exe's(starcraft) (and other files with default opening methods set up(.docx files)) or .bat(windows batch) files natively.

You can probably set up shell scripts(or any other language) to run with double click I think using cygwin but that's more complex. Also .bat files are looked down upon because they're hard to work with. You could have one .bat file that both compiles and runs the compiled file.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
cydial
Profile Blog Joined September 2010
United States750 Posts
May 07 2013 04:04 GMT
#5885
On May 07 2013 12:19 Roe wrote:
Show nested quote +
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


I'd like to do it in python (linux) or c++ / c (windows).
JeanLuc
Profile Joined September 2010
Canada377 Posts
Last Edited: 2013-05-07 04:41:05
May 07 2013 04:30 GMT
#5886
On May 07 2013 13:04 cydial wrote:
Show nested quote +
On May 07 2013 12:19 Roe wrote:
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


I'd like to do it in python (linux) or c++ / c (windows).


In windows you just double click the exe file and it should run. Create a shortcut for the .exe file or whatever and give it a different picture other than the default. You might need to put in some code that will wait for the user to press a keystroke before exiting (in your console io application)
(when you are compiling C program in windows an .exe file will get created. just look for that)
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
Last Edited: 2013-05-07 06:14:09
May 07 2013 06:10 GMT
#5887
On May 07 2013 09:20 Craton wrote:
How does one go about writing a select statement (PL/SQL) that will accomplish the following:

Assume a "lookup" table with a pair of fields "match" and "replace" that have values like: À, A; È, E (such that you have pairs of "accented" characters in the match and "normal" characters in the replace).

Assume you have another table with n number of records, any of which have one or more characters matching this pattern. The end translation should go something like ÀNYWHÈRÈ -> ANYWHERE.

For a single value, I can use a CONNECT BY LEVEL to split each character into a separate field, join to the lookup table, and then use a MODEL construct to perform the replacement and concatenation of each character (ordering maintained), taking only the final "built" value. However, I can't make it work when I have multiple values (i.e. from a table), since I can't just connect it by level.

I feel there might also be a way to skip the CONNECT BY step altogether, but I can't make it happen.

Thoughts?

I've only had experience with Microsoft T-SQL, and my solution there would be to build a cursor, loop through the multiple values, and process them one at a time. Not sure what would be the PL/SQL equivalent. Instead of processing them one by one, you could even group them together by string length and process all the values that are the same length all at once.
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
May 07 2013 12:06 GMT
#5888
Shouldn't unsigned int a = -10 give 0? Is there a way to make a number that will only go as low as 0, so if you got a = 5-10 -> 0?
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
DertoQq
Profile Joined October 2010
France906 Posts
May 07 2013 12:18 GMT
#5889
no, -10 is probably represented by something like that in binary (on 8 bits) : 10001010. The bit on the left represent the negative value. But if you tell the computer it is an unsigned int, the bit on the left will be interpreted as a 'real' number, so : 138

If you want to do that, you can create your own class
"i've made some empty promises in my life, but hands down that was the most generous" - Michael Scott
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
May 07 2013 12:31 GMT
#5890
Isn't there an easier way to declare a variable that can't get less than zero?
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
netherh
Profile Blog Joined November 2011
United Kingdom333 Posts
May 07 2013 12:47 GMT
#5891
On May 07 2013 21:31 Arnstein wrote:
Isn't there an easier way to declare a variable that can't get less than zero?


I suggest using an int, and just checking to make sure it doesn't go below zero where necessary.

int i = ...;

i = std::max(i, 0);
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
Last Edited: 2013-05-07 12:48:31
May 07 2013 12:48 GMT
#5892
On May 07 2013 21:31 Arnstein wrote:
Isn't there an easier way to declare a variable that can't get less than zero?

In object oriented languages, you would probably implement it as a property.

Something like: (C#)

private int _notbelowzero;

public int NotBelowZero
{
get { return _notbelowzero; }
set {
if (value < 0)
_notbelowzero = 0;
else
_notbelowzero = value;
}
}
Kambing
Profile Joined May 2010
United States1176 Posts
May 07 2013 13:21 GMT
#5893
On May 07 2013 21:48 Tobberoth wrote:
Show nested quote +
On May 07 2013 21:31 Arnstein wrote:
Isn't there an easier way to declare a variable that can't get less than zero?

In object oriented languages, you would probably implement it as a property.

Something like: (C#)

private int _notbelowzero;

public int NotBelowZero
{
get { return _notbelowzero; }
set {
if (value < 0)
_notbelowzero = 0;
else
_notbelowzero = value;
}
}


In a standard OO language (Java, C++) this is the only way to do it. Unsigned in the context of C and C++ is insufficient because it only tells the compiler how to interpret the underlying memory rather than enforce any kind of property about that value. Refinement types allow you to do exactly that (in general, specify an arbitrary predicate over a type) but are not in any mainstream languages. For example, in an extension of F#, the property you want would be ascribed to a variable as follows:


x : int { x > 0 }
cydial
Profile Blog Joined September 2010
United States750 Posts
May 07 2013 16:24 GMT
#5894
On May 07 2013 13:30 JeanLuc wrote:
Show nested quote +
On May 07 2013 13:04 cydial wrote:
On May 07 2013 12:19 Roe wrote:
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


I'd like to do it in python (linux) or c++ / c (windows).


In windows you just double click the exe file and it should run. Create a shortcut for the .exe file or whatever and give it a different picture other than the default. You might need to put in some code that will wait for the user to press a keystroke before exiting (in your console io application)
(when you are compiling C program in windows an .exe file will get created. just look for that)


How would I do it in python?
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
Last Edited: 2013-05-07 16:32:12
May 07 2013 16:31 GMT
#5895
On May 08 2013 01:24 cydial wrote:
Show nested quote +
On May 07 2013 13:30 JeanLuc wrote:
On May 07 2013 13:04 cydial wrote:
On May 07 2013 12:19 Roe wrote:
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


I'd like to do it in python (linux) or c++ / c (windows).


In windows you just double click the exe file and it should run. Create a shortcut for the .exe file or whatever and give it a different picture other than the default. You might need to put in some code that will wait for the user to press a keystroke before exiting (in your console io application)
(when you are compiling C program in windows an .exe file will get created. just look for that)


How would I do it in python?


Create a new shortcut (typically with the menu opened by rightclicking on the desktop) and in the shortcut options, enter "python /path/to/file/nameofyourfile.py".

Basically call the 'python' program with the path to your python-file as argument and make a shortcut out of it.
Such flammable little insects!
Perscienter
Profile Joined June 2010
957 Posts
May 07 2013 18:03 GMT
#5896
That would still require Python to be installed on the end-user-system. You are probably looking for this:

http://cx-freeze.sourceforge.net/
cydial
Profile Blog Joined September 2010
United States750 Posts
May 07 2013 18:36 GMT
#5897
On May 08 2013 01:31 Rannasha wrote:
Show nested quote +
On May 08 2013 01:24 cydial wrote:
On May 07 2013 13:30 JeanLuc wrote:
On May 07 2013 13:04 cydial wrote:
On May 07 2013 12:19 Roe wrote:
On May 07 2013 11:58 cydial wrote:
I'm doing basic computer science atm and I'm wondering how people actually get a program to be executed through double clicking it.

Atm all I do is type it into a command prompt, first to compile, a second time to run.

what language is the program written in?


I'd like to do it in python (linux) or c++ / c (windows).


In windows you just double click the exe file and it should run. Create a shortcut for the .exe file or whatever and give it a different picture other than the default. You might need to put in some code that will wait for the user to press a keystroke before exiting (in your console io application)
(when you are compiling C program in windows an .exe file will get created. just look for that)


How would I do it in python?


Create a new shortcut (typically with the menu opened by rightclicking on the desktop) and in the shortcut options, enter "python /path/to/file/nameofyourfile.py".

Basically call the 'python' program with the path to your python-file as argument and make a shortcut out of it.


Ahh kk hadn't thought of that.
tec27
Profile Blog Joined June 2004
United States3696 Posts
May 07 2013 20:24 GMT
#5898
On May 07 2013 21:18 DertoQq wrote:
no, -10 is probably represented by something like that in binary (on 8 bits) : 10001010. The bit on the left represent the negative value. But if you tell the computer it is an unsigned int, the bit on the left will be interpreted as a 'real' number, so : 138

If you want to do that, you can create your own class

You have the right idea, but that's not actually how negative numbers are represented, generally.

See: http://en.wikipedia.org/wiki/Two's_complement

What the actual value will be therefore depends on the size of the int. For 8 bits, the representation of -10 would be: 11110110 (or 246 unsigned).
Can you jam with the console cowboys in cyberspace?
DertoQq
Profile Joined October 2010
France906 Posts
May 07 2013 20:40 GMT
#5899
On May 08 2013 05:24 tec27 wrote:
Show nested quote +
On May 07 2013 21:18 DertoQq wrote:
no, -10 is probably represented by something like that in binary (on 8 bits) : 10001010. The bit on the left represent the negative value. But if you tell the computer it is an unsigned int, the bit on the left will be interpreted as a 'real' number, so : 138

If you want to do that, you can create your own class

You have the right idea, but that's not actually how negative numbers are represented, generally.

See: http://en.wikipedia.org/wiki/Two's_complement

What the actual value will be therefore depends on the size of the int. For 8 bits, the representation of -10 would be: 11110110 (or 246 unsigned).


I know, I just though the "sign" method would be easier to explain (and understand) than the two's complement one.
"i've made some empty promises in my life, but hands down that was the most generous" - Michael Scott
Abductedonut
Profile Blog Joined December 2010
United States324 Posts
Last Edited: 2013-05-07 22:31:30
May 07 2013 22:30 GMT
#5900
Hey guys - this isn't really a "programming/technical" question but it's about hiring and it has bothered me for some time now.

I've been looking for software engineering internships/jobs as I'm almost out of school and I'm royally confused about some of the job requirements these employers have.

Most if not all job requirements that I look at for non-huge tech companies often want expertise in a certain language, including internships. Are these requirements bullshit/just there for show?

Companies like Microsoft, Amazon, Google, etc etc generally don't list specific language requirements. They'll say experience with C/C++/Java or other object oriented languages which to me, says they want someone who knows both theoretical software engineering as well some practical application of it. I ran into an undergraduate internship positions who wanted Erlang as a language requirement. This is how I figure: if you know how to program in general then you basically know every language (excluding different paradigms, bear with me here). To truly claim to know and understand a language then you must know the dark corners of it, and that takes YEARS of programming experience. Do these companies honestly expect me to have spent years learning Erland - a language I and most people haven't heard of? If they don't, then why the hell even bothering listing it as a requirement? If I know one language I can find my way around it.

The same issues pops up with the J2SE and J2EE. I know Java - isn't that enough? I understand J2EE is more for enterprise software but having theoretical experience in distributed systems would be more important than knowing the J2EE dialect of the language, right? Why bother listing it as a requirement?

And another thing - why bother listing language requirements at all? They're pointless. Software Engineering is not about programming, it's about the engineering behind the design of software. That's the job I'm applying for, C# just happens to be the tool I use to implement my design. I'm just so lost.
Prev 1 293 294 295 296 297 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 11h 51m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
JuggernautJason126
ProTech88
Nina 78
NeuroSwarm 0
StarCraft: Brood War
firebathero 239
NaDa 36
Rock 35
LancerX 26
Dota 2
LuMiX1
League of Legends
Grubby3573
Dendi1369
Heroes of the Storm
Liquid`Hasu538
Khaldor269
Other Games
summit1g9604
FrodaN2198
fl0m680
RotterdaM474
Sick60
ViBE28
Organizations
Other Games
BasetradeTV42
StarCraft 2
angryscii 27
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 23 non-featured ]
StarCraft 2
• Berry_CruncH288
• davetesta43
• musti20045 37
• tFFMrPink 19
• OhrlRock 4
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Pr0nogo 8
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21446
• Ler129
League of Legends
• Doublelift3976
• Jankos2548
Other Games
• imaqtpie1127
• Shiphtur467
• WagamamaTV375
Upcoming Events
RSL Revival
11h 51m
Clem vs Classic
SHIN vs Cure
FEL
13h 51m
WardiTV European League
13h 51m
BSL: ProLeague
19h 51m
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
2 days
WardiTV European League
2 days
The PondCast
3 days
Replay Cast
4 days
RSL Revival
4 days
[ Show More ]
Replay Cast
5 days
RSL Revival
5 days
FEL
5 days
RSL Revival
6 days
FEL
6 days
FEL
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
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
FISSURE Playground #1
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.