• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:04
CEST 17:04
KST 00:04
  • 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
[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists16[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0
Community News
2026 GSL Season 1 Qualifiers14Maestros of the Game 2 announced82026 GSL Tour plans announced14Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid24
StarCraft 2
General
Maestros of the Game 2 announced Team Liquid Map Contest #22 - The Finalists MaNa leaves Team Liquid 2026 GSL Tour plans announced Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool
Tourneys
2026 GSL Season 1 Qualifiers Sparkling Tuna Cup - Weekly Open Tournament GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 522 Flip My Base The PondCast: SC2 News & Results Mutation # 521 Memorable Boss Mutation # 520 Moving Fees
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion ASL21 Strategy, Pimpest Plays Discussions Pros React To: ASL S21, Ro.16 Group C Data needed
Tourneys
[ASL21] Ro16 Group D [Megathread] Daily Proleagues [ASL21] Ro16 Group B [ASL21] Ro16 Group C
Strategy
Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Diablo IV Dawn of War IV Starcraft Tabletop Miniature Game General RTS Discussion Thread
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
McBoner: A hockey love story 2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1339 users

The Big Programming Thread - Page 295

Forum Index > General Forum
Post a Reply
Prev 1 293 294 295 296 297 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.
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 States3702 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 1032 Next
Please log in or register to reply.
Live Events Refresh
OSC
15:00
King of the Hill #245
Liquipedia
WardiTV Map Contest Tou…
11:00
Playoffs Day 2
ShoWTimE vs RogueLIVE!
WardiTV1051
Ryung 431
IntoTheiNu 312
IndyStarCraft 241
Rex108
3DClanTV 70
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 431
IndyStarCraft 241
Rex 108
StarCraft: Brood War
Britney 33139
Sea 11357
Mini 898
EffOrt 737
BeSt 724
Soma 579
Larva 483
Stork 470
Light 408
firebathero 259
[ Show more ]
ZerO 239
Snow 221
actioN 208
Leta 188
Soulkey 176
hero 154
Zeus 120
Hyun 109
ToSsGirL 59
Sea.KH 56
JYJ 50
Barracks 47
Sharp 47
Sexy 38
Aegong 34
sorry 24
Rock 22
HiyA 18
scan(afreeca) 15
zelot 15
IntoTheRainbow 11
ajuk12(nOOB) 10
SilentControl 10
GoRush 9
Terrorterran 6
Shine 6
Dota 2
Gorgc6020
qojqva1357
BananaSlamJamma112
League of Legends
Reynor50
Counter-Strike
byalli991
zeus308
allub204
Super Smash Bros
Mew2King86
Other Games
singsing1897
B2W.Neo776
FrodaN749
hiko708
DeMusliM390
Hui .160
QueenE157
crisheroes146
XaKoH 127
ArmadaUGS68
RotterdaM65
KnowMe57
Trikslyr33
ZerO(Twitch)13
Organizations
Dota 2
PGL Dota 2 - Main Stream14531
Other Games
BasetradeTV92
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 18 non-featured ]
StarCraft 2
• StrangeGG 93
• poizon28 24
• Kozan
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Michael_bg 4
• HerbMon 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV269
League of Legends
• Nemesis2460
• TFBlade1704
Other Games
• Shiphtur125
Upcoming Events
Replay Cast
8h 57m
Escore
18h 57m
RSL Revival
1d 1h
Replay Cast
1d 8h
WardiTV Map Contest Tou…
1d 19h
Universe Titan Cup
1d 19h
Rogue vs Percival
Ladder Legends
1d 23h
uThermal 2v2 Circuit
1d 23h
BSL
2 days
Sparkling Tuna Cup
2 days
[ Show More ]
WardiTV Map Contest Tou…
2 days
Ladder Legends
2 days
BSL
3 days
CranKy Ducklings
3 days
Replay Cast
3 days
Wardi Open
3 days
Afreeca Starleague
3 days
Soma vs hero
Monday Night Weeklies
4 days
Replay Cast
4 days
Afreeca Starleague
4 days
Leta vs YSC
Replay Cast
5 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2026-04-22
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
Nations Cup 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026

Upcoming

Escore Tournament S2: W4
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 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.