• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:55
CET 15:55
KST 23:55
  • 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
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 9-15): herO, Clem, ByuN win02026 KungFu Cup Announcement5BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains16Weekly Cups (March 2-8): ByuN overcomes PvT block4
StarCraft 2
General
Weekly Cups (March 9-15): herO, Clem, ByuN win Blizzard Classic Cup - Tastosis announced as captains GSL CK - New online series BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced
Tourneys
2026 KungFu Cup Announcement [GSL CK] #2: Team Classic vs. Team Solar [GSL CK] #1: Team Maru vs. Team herO RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion Gypsy to Korea BSL 22 Map Contest — Submissions OPEN to March 10 Are you ready for ASL 21? Hype VIDEO
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Path of Exile Nintendo Switch Thread PC Games Sales Thread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Tokyo Olympics 2021 Thread Formula 1 Discussion General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1578 users

The Big Programming Thread - Page 573

Forum Index > General Forum
Post a Reply
Prev 1 571 572 573 574 575 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.
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
Last Edited: 2015-01-28 19:59:56
January 28 2015 19:38 GMT
#11441
On January 29 2015 04:04 darkness wrote:
Show nested quote +
On January 29 2015 04:03 bangsholt wrote:
On January 29 2015 03:56 darkness wrote:
On January 29 2015 02:18 Manit0u wrote:
On January 29 2015 02:08 bangsholt wrote:
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much


You're not. C++ is scrapcode. Nothing like glorious C or elegant C#

If you want truly elegant metaprogramming you need to look no further than Lisp, which is ahead of any other programming language since 1958


I disagree. C++ is really cool but some people do their best to make their code unreadable. "Glorious C" - good luck with that unsafe language. :D


I'm interpolating a bit here, but are you trying to say that C is unsafe and C++ is... safe?


Well, I've recently started learning C++ and I can say it looks safer so far. Provided that you use the right tools, of course.

Edit: C's macros immediately come to mind.

I'm also not saying C++ is completely safe, it obviously has a lot of undefined behaviour (e.g. dangling raw pointers) but I think it's safer than C.


Define "safe". The biggest plague of C++ is that it lets people who don't know any better do horrible things (mostly unknowingly), like overloading a comma operator or something. Not a big issue if you're working alone on some project, but if you have many contributors of vastly varying skill level you have the skilled guys painstakingly hunting down and fixing errors done by the less skilled people, which are much harder to track in the entire class hierarchy than a piece of C code. Also, STL and Boost, which provide you with nice features aren't the most stable, portable or optimized (even simple stuff like string concatenation can easily get out of hand).

Also relevant:

*hidden complexity*
(1) it's hard to say what code will compile down to. viz., constructors can
be elided, but there is no fitness warranty; profiling your compiler to find out
whether it is elided is tedious and "searching for secrets" that should be
_explicit_
(2) people don't understand static polymorphism and compile-time dispatch;
people are used to objects sending messages dynamically (run-time dispatch)
(3) coercion
(4) networks of objects are not explicitly laid out, hiding quadratically
complex patterns of communication between objects
(5) data structure and data flow come before algorithms. Sometimes, data
structure dictates data flow (ad-hoc networks of objects); sometimes, data flow
dictates data structure (one of life's most disagreeable tasks - waiting in line
- is characterized as FIFO). This, I feel, is the most important point, because
the first rule of programming is to figure out what you want to say before you
figure out how to say it. In C++, ad-hoc networks of objects with cyclic
message paths are all too easy to create [see (4)] which means _code_ _is_ _not_
_explicit_ and as a result _code_ _is_ _not_ _fast_.

*transfer semantics on objects are not robust*
this ties into (1) in hidden complexity
the code author needs to specify a lot of boilerplate to achieve desired
transfer semantics on objects. Similarly, the code audience, be it reviewer,
maintainer or merger, needs to read a lot of boilerplate to understand how
objects get moved around in memory. Moreover, most of these concepts are
intuitively declarative in nature, such as a parent object/child object relation.

*poor re-use of effort*
"code re-use" is a misnomer; when programmers speak of code-reuse they mean
re-use of effort. There is no benefit to polymorphism if effort cannot be
consolidated easily.

*C++ Standard iffy*
Some things just disappear quickly for *frantic* reasons (strstream was
removed for aesthetics), indicating not enough foresight into what is important.
I do not want to pick a language where I have to worry about features in it's
"standard library" becoming deprecated mainly for aesthetics. As Dijkstra
preached, programming is _not_ supposed to be a frantic exercise.

--
Z-Bo



[...]
The problem with C++ is that every C++ developer has his own style,
and reuse is an illusion within that style. Take a look at classes
implementing matrix arithmetic: there are as many around as the day is
long, and all of them are incompatible with one another.

With regard to programming styles, C++ does not support multiple
inheritance. For a single project grown from a single start, you can
get reasonable solutions. But combining stuff is creating maintenance
messes.

With C, the situation is not dissimilar, but you spent less time
fighting the illusion that you don't need to reimplement, anyway.

The difference is that you can pass structures from one library into
another with tolerable efficiency. Because there are only basically 2
ways to lay out a two-dimensional array of floats.
[...]

Care to explain why there are still not two numerical C++ libraries
with compatible matrix classes?

What use is talking about portability and high level when a basic
interoperability feature that has been available since the sixties
(more than 4 decades ago) in Fortran has not yet managed to make it
into C++? C++ by now more or less offers a (somewhat deficient)
standardized way to work with complex numbers, but matrices are still
not standardized in any manner, and libraries won't interoperate.

So C++ should get its head wrapped around the _low_ level problems
first. It is a bloody shame that it still has not caught up with
Fortran IV (or even Fortran II) with regard to usefulness for
numerical libraries.

It is not a matter of "hating high level" to see that C++ is mostly
focused about addressing the wrong kinds of problems in the wrong
ways. The pain/gain ratio is just bad.
[...]

Making a language huge and bloated in order to be able to use the
language itself for defining a set of basic data types is just
masturbation. C++ has the most complicated set of implicit
conversions from any language in the world, and what for? It is
modeled for being able to create a user-defined "complex" type which
behaves almost as well as Fortran's. Too bad that this mostly means
everybody will define his own type (well, at least we have seen two or
three different library "standards" by now), and that the implicit
conversion rules and chains are appallingly wrong for a number of
other possible user-defined arithmetic types.

--
David Kastrup
Time is precious. Waste it wisely.
BlueRoyaL
Profile Blog Joined February 2006
United States2493 Posts
January 28 2015 20:50 GMT
#11442
Question for you guys coming from someone that does mainly webdev and .NET stuff.

I'm looking to create some mobile app (ideally and eventually for both the Android and iOS markets).

Is my understanding that for Android you use Java and for iOS either swift or objective-c correct?

If I have a choice between learning swift versus objective-c, which would you say is the better path?

And any generally recommendations for a newbie wanting to learn mobile app development would be pretty sweet!
WHAT'S HAPPENIN
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-28 21:08:41
January 28 2015 21:05 GMT
#11443
Even with a Computer Science degree, I cannot appreciate Dijkstra's programming views, so I can only sympathise with ill souls who believe and quote him. That said, he is right about goto's but that's it. Other than that, I'm not going into language religious wars. I'm happy with the programming languages I use at work, and you may continue to use whatever language you use. Just note that "varying levels" of programming skills applies to all languages not just C++ or any particular.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
January 28 2015 21:15 GMT
#11444
Swift because Objective-C is going to be outdated. Unless you need to release in the next 3 months, no point in learning that mess.
There is no one like you in the universe.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-01-28 21:28:09
January 28 2015 21:26 GMT
#11445
@manitou
your ignorance will always reveal itself
when you attempt to give insights into
a language you know little about.

try to keep it constructive, and
focus on the languages you know and like.
conspired against by a confederacy of dunces.
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 28 2015 21:29 GMT
#11446
On January 29 2015 05:50 BlueRoyaL wrote:
Question for you guys coming from someone that does mainly webdev and .NET stuff.

I'm looking to create some mobile app (ideally and eventually for both the Android and iOS markets).

Is my understanding that for Android you use Java and for iOS either swift or objective-c correct?

If I have a choice between learning swift versus objective-c, which would you say is the better path?

And any generally recommendations for a newbie wanting to learn mobile app development would be pretty sweet!


Xamarin. Costs money but saves effort in the sense that it's write the core once, port to Windows Mobile/Android/iOS. If you look into Xamarin.Forms you can even make the interfaces look cool with the same pieces of code.

Best of all Xamarin is C#.
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 28 2015 21:38 GMT
#11447
On January 29 2015 06:05 darkness wrote:
Even with a Computer Science degree, I cannot appreciate Dijkstra's programming views, so I can only sympathise with ill souls who believe and quote him. That said, he is right about goto's but that's it. <snip generic stuff about languages>


You disagree with his programming views?

I mean, as an example, the goto paper is about using structured programming instead of using goto as control structures, to make code easier to write and to debug because you won't be jumping all over the place ^_^

Or do you dislike his algorithms? I really don't follow what you mean :D
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-28 21:49:06
January 28 2015 21:44 GMT
#11448
On January 29 2015 06:38 bangsholt wrote:
Show nested quote +
On January 29 2015 06:05 darkness wrote:
Even with a Computer Science degree, I cannot appreciate Dijkstra's programming views, so I can only sympathise with ill souls who believe and quote him. That said, he is right about goto's but that's it. <snip generic stuff about languages>


You disagree with his programming views?

I mean, as an example, the goto paper is about using structured programming instead of using goto as control structures, to make code easier to write and to debug because you won't be jumping all over the place ^_^

Or do you dislike his algorithms? I really don't follow what you mean :D


His algorithms aren't exactly programming related, so I didn't mean that. However, his hatred towards OOP is a prime example why I don't agree with his programming views. I also said I agree with goto's criticism.

Edit:

Object-oriented programming is an exceptionally bad idea which could only have originated in California.
-Edsger Dijkstra
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
January 28 2015 21:52 GMT
#11449
On January 29 2015 06:26 nunez wrote:
@manitou
your ignorance will always reveal itself
when you attempt to give insights into
a language you know little about.

try to keep it constructive, and
focus on the languages you know and like.


All in good faith I never was much into Language Wars so don't take my views on it very seriously. Also, I quoted some stuff I've found interesting (without the over-used Torvalds' C++ bashing) in hopes that perhaps someone can clarify that or post counter-arguments.
Time is precious. Waste it wisely.
TMG26
Profile Joined July 2012
Portugal2017 Posts
Last Edited: 2015-01-28 21:59:01
January 28 2015 21:57 GMT
#11450




Object-oriented programming is an exceptionally bad idea which could only have originated in California.
-Edsger Dijkstra




I agree with that statement.
Supporter of the situational Blink Dagger on Storm.
slmw
Profile Blog Joined October 2010
Finland233 Posts
January 28 2015 21:59 GMT
#11451
On January 29 2015 06:15 Blisse wrote:
Swift because Objective-C is going to be outdated. Unless you need to release in the next 3 months, no point in learning that mess.


That is simply not true. Objective-C will stay and be the main platform of iOS development for a long long time. Swift however is not even 'complete' yet - it has plenty of deficiencies and incomplete features.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 28 2015 22:00 GMT
#11452
if you think you are man enough
to make a meaningful critique,
go ahead and make it, instead of
spamming vacuous nonsense.

however if you are having problems
coming to terms with operator overloading,
then i suggest you leave it be.
conspired against by a confederacy of dunces.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
January 29 2015 02:34 GMT
#11453
--- Nuked ---
MichaelEU
Profile Joined February 2011
Netherlands816 Posts
January 29 2015 03:33 GMT
#11454
An example of a good non-programming book I personally recommend would be Coders at Work. It's interviews with known programmers (Joshua Bloch, Knuth, Ken Thompson, etc.), a lot of history and anecdotes. Very interesting read.
世界を革命する力を!― znf: "Michael-oniichan ( *^▽^*)ノ✩キラ✩"
ZenithM
Profile Joined February 2011
France15952 Posts
January 29 2015 04:27 GMT
#11455
I never can't know if nunez is trying to write poetry or if he's just writing TL posts with emacs.
Prillan
Profile Joined August 2011
Sweden350 Posts
January 29 2015 06:07 GMT
#11456
On January 29 2015 13:27 ZenithM wrote:
I never can't know if nunez is trying to write poetry or if he's just writing TL posts with emacs.

It all makes sense now!
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
Last Edited: 2015-01-29 06:22:19
January 29 2015 06:20 GMT
#11457
Just to warn you:

https://community.qualys.com/blogs/laws-of-vulnerabilities/2015/01/27/the-ghost-vulnerability
Time is precious. Waste it wisely.
iNsaNe-
Profile Joined January 2005
Finland5201 Posts
January 29 2015 15:22 GMT
#11458
On January 29 2015 06:44 darkness wrote:
Object-oriented programming is an exceptionally bad idea which could only have originated in California.
-Edsger Dijkstra



Well, according to Google he never even said that. There is this though:


(For those who have wondered: I don't think object-oriented programming is a structuring paradigm that meets my standards of elegance.)
It takes a fool to remain sane.
Manit0u
Profile Blog Joined August 2004
Poland17694 Posts
Last Edited: 2015-01-29 22:02:16
January 29 2015 17:10 GMT
#11459
Guys, can you help? Have you encountered such a thing before?

-- nevermind, it's the easiest things that get you (as usual), should have thought about not using the wrappers included in the project by previous programmers and go for the basic thing instead --
Time is precious. Waste it wisely.
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
January 29 2015 17:25 GMT
#11460
Yesterday I implemented UDP in Ada in a stupid way(by using streams). What would be the best way to do this?
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Prev 1 571 572 573 574 575 1032 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
12:00
#78
WardiTV1105
Rex127
IntoTheiNu 9
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Rex 127
RushiSC 38
StarCraft: Brood War
Horang2 8698
Sea 2662
Soma 931
Mini 663
Light 600
EffOrt 535
ZerO 470
Stork 433
Snow 368
ggaemo 237
[ Show more ]
Rush 213
hero 160
Killer 150
Mind 76
PianO 63
Sea.KH 61
sorry 60
Aegong 58
sSak 49
NotJumperer 44
[sc1f]eonzerg 44
Barracks 40
Shinee 31
GoRush 18
IntoTheRainbow 17
scan(afreeca) 15
Terrorterran 11
Noble 11
SilentControl 11
soO 9
ivOry 8
Rock 6
Britney 1
Dota 2
qojqva3459
League of Legends
JimRising 318
Counter-Strike
fl0m804
markeloff176
byalli58
adren_tv9
Super Smash Bros
Mew2King83
Heroes of the Storm
crisheroes345
Other Games
singsing2651
B2W.Neo1199
hiko744
Lowko447
Hui .235
Fuzer 166
XaKoH 141
QueenE77
ArmadaUGS68
ZerO(Twitch)13
Trikslyr11
Organizations
Dota 2
PGL Dota 2 - Main Stream645
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift2723
• Jankos1671
• TFBlade403
Upcoming Events
Monday Night Weeklies
2h 5m
WardiTV Team League
21h 5m
PiGosaur Cup
1d 9h
Kung Fu Cup
1d 20h
OSC
2 days
The PondCast
2 days
KCM Race Survival
2 days
WardiTV Team League
2 days
Replay Cast
3 days
KCM Race Survival
3 days
[ Show More ]
WardiTV Team League
3 days
Korean StarCraft League
4 days
RSL Revival
4 days
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
5 days
BSL
5 days
RSL Revival
5 days
herO vs MaxPax
Rogue vs TriGGeR
BSL
6 days
Replay Cast
6 days
Replay Cast
6 days
Afreeca Starleague
6 days
Sharp vs Scan
Rain vs Mong
Wardi Open
6 days
Liquipedia Results

Completed

Proleague 2026-03-15
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open 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.