• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:12
CEST 17:12
KST 00:12
  • 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
RSL Season 1 - Final Week6[ASL19] Finals Recap: Standing Tall15HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0
Community News
Esports World Cup 2025 - Brackets Revealed14Weekly Cups (July 7-13): Classic continues to roll8Team TLMC #5 - Submission extension3Firefly given lifetime ban by ESIC following match-fixing investigation17$25,000 Streamerzone StarCraft Pro Series announced7
StarCraft 2
General
RSL Revival patreon money discussion thread Who will win EWC 2025? Server Blocker Weekly Cups (July 7-13): Classic continues to roll The GOAT ranking of GOAT rankings
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament FEL Cracov 2025 (July 27) - $8000 live event Sea Duckling Open (Global, Bronze-Diamond) RSL: Revival, a new crowdfunded tournament series $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response
Custom Maps
External Content
Mutation # 482 Wheel of Misfortune Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Soulkey Muta Micro Map? Flash Announces (and Retracts) Hiatus From ASL [ASL19] Finals Recap: Standing Tall BW General Discussion
Tourneys
Starcraft Superstars Winner/Replays [Megathread] Daily Proleagues Cosmonarchy Pro Showmatches CSL Xiamen International Invitational
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread CCLP - Command & Conquer League Project The PlayStation 5
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
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2025!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Ping To Win? Pings And Their…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 735 users

The Big Programming Thread - Page 573

Forum Index > General Forum
Post a Reply
Prev 1 571 572 573 574 575 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.
Manit0u
Profile Blog Joined August 2004
Poland17249 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
Poland17249 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
Poland17249 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
Poland17249 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Epic.LAN
12:00
Epic.LAN 45 Group Stage
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 638
Hui .271
mcanning 94
SC2Nice 53
StarCraft: Brood War
Britney 46960
EffOrt 2096
Shuttle 1379
actioN 770
Larva 693
Stork 534
firebathero 483
Hyuk 476
Barracks 459
Light 351
[ Show more ]
TY 175
PianO 150
ToSsGirL 144
Dewaltoss 107
Mind 95
Snow 95
Sharp 42
sSak 42
Aegong 38
[sc1f]eonzerg 37
scan(afreeca) 24
Free 14
Terrorterran 14
Bale 12
SilentControl 10
Shinee 8
Dota 2
Gorgc10941
singsing2963
qojqva2204
Counter-Strike
sgares629
allub185
markeloff93
edward35
Other Games
FrodaN1566
hiko1196
Scarlett`687
DeMusliM631
Lowko399
Happy331
Harstem245
Fuzer 219
KnowMe153
ArmadaUGS99
ROOTCatZ84
Trikslyr48
QueenE41
SpiritSC27
Organizations
Other Games
gamesdonequick2954
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• poizon28 26
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis7397
• Jankos1600
Upcoming Events
Big Brain Bouts
48m
sebesdes vs SpeCial
Harstem vs YoungYakov
GgMaChine vs uThermal
CranKy Ducklings
18h 48m
Epic.LAN
20h 48m
CSO Contender
1d 1h
Sparkling Tuna Cup
1d 18h
Online Event
2 days
Esports World Cup
3 days
ByuN vs Astrea
Lambo vs HeRoMaRinE
Clem vs TBD
Solar vs Zoun
SHIN vs Reynor
Maru vs TriGGeR
herO vs Lancer
Cure vs ShoWTimE
Esports World Cup
4 days
Esports World Cup
5 days
Esports World Cup
6 days
Liquipedia Results

Completed

JPL Season 2
RSL Revival: Season 1
Murky Cup #2

Ongoing

BSL 2v2 Season 3
Copa Latinoamericana 4
Jiahua Invitational
BSL20 Non-Korean Championship
CSL Xiamen Invitational
CSL Xiamen Invitational: ShowMatche
Championship of Russia 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25

Upcoming

2025 ACS Season 2
CSLPRO Last Chance 2025
CSLPRO Chat StarLAN 3
BSL Season 21
RSL Revival: Season 2
SEL Season 2 Championship
uThermal 2v2 Main Event
FEL Cracov 2025
Esports World Cup 2025
Underdog Cup #2
ESL Pro League S22
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
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.