• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 15:10
CET 21:10
KST 05:10
  • 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
SC2 All-Star Invitational: Tournament Preview5RSL Revival - 2025 Season Finals Preview8RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2
Community News
Weekly Cups (Jan 12-18): herO, MaxPax, Solar win0BSL Season 2025 - Full Overview and Conclusion6Weekly Cups (Jan 5-11): Clem wins big offline, Trigger upsets4$21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7)16Weekly Cups (Dec 29-Jan 4): Protoss rolls, 2v2 returns7
StarCraft 2
General
Weekly Cups (Jan 12-18): herO, MaxPax, Solar win When will we find out if there are more tournament I am looking for StarCraft 2 Beta Patch files Stellar Fest "01" Jersey Charity Auction SC2 All-Star Invitational: Tournament Preview
Tourneys
SC2 All-Star Invitational: Jan 17-18 Sparkling Tuna Cup - Weekly Open Tournament SC2 AI Tournament 2026 $21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7) OSC Season 13 World Championship
Strategy
Simple Questions Simple Answers
Custom Maps
Map Editor closed ?
External Content
Mutation # 509 Doomsday Report Mutation # 508 Violent Night Mutation # 507 Well Trained Mutation # 506 Warp Zone
Brood War
General
[ASL21] Potential Map Candidates Gypsy to Korea Video Footage from 2005: The Birth of G2 in Spain BW General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] Non-Korean Championship - Starts Jan 10 Small VOD Thread 2.0 Azhi's Colosseum - Season 2
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Game Theory for Starcraft Current Meta
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Beyond All Reason Awesome Games Done Quick 2026! Mechabellum
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread NASA and the Private Sector Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread
Fan Clubs
The herO Fan Club! The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece
Sports
2024 - 2026 Football Thread
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Navigating the Risks and Rew…
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
James Bond movies ranking - pa…
Topin
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1338 users

The Big Programming Thread - Page 961

Forum Index > General Forum
Post a Reply
Prev 1 959 960 961 962 963 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.
supereddie
Profile Joined March 2011
Netherlands151 Posts
May 24 2018 10:20 GMT
#19201
Don't scrape websites. Scraping breaks as soon as the website changes the structure of the page. It also puts additional strain on the server. It might not even fall under the Terms of Use of the site.

Try to find out if the website has an api, or a pre-made dataset, that you can use. You can try contacting them via Twitter or something.
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
Liquid`Jinro
Profile Blog Joined September 2002
Sweden33719 Posts
Last Edited: 2018-05-24 10:37:11
May 24 2018 10:35 GMT
#19202
On May 24 2018 19:20 supereddie wrote:
Don't scrape websites. Scraping breaks as soon as the website changes the structure of the page. It also puts additional strain on the server. It might not even fall under the Terms of Use of the site.

Try to find out if the website has an api, or a pre-made dataset, that you can use. You can try contacting them via Twitter or something.

I think they do have an API, but it's such a small # of requests I really don't think it would be very disruptive (there's like 8 categories with an average of maybe 4 sub categories, so the upperbound is really low for # of requests).

But I don't actually need this data since (like I said) it took like 5 minutes to copy paste it by hand, but I'd still like to know HOW to do it >_<
Moderatortell the guy that interplanatar interaction is pivotal to terrans variety of optionitudals in the pre-midgame preperatories as well as the protosstinal deterriggation of elite zergling strikes - Stimey n | Formerly FrozenArbiter
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
May 24 2018 13:44 GMT
#19203
Here you go Jinro

https://www.digitalocean.com/community/tutorials/how-to-scrape-web-pages-with-beautiful-soup-and-python-3

http://www.nyu.edu/projects/politicsdatalab/localdata/workshops/BeautifulSoup.pdf

Hopefully these help.
Life?
Hanh
Profile Joined June 2016
146 Posts
May 24 2018 16:23 GMT
#19204
On May 24 2018 19:35 Liquid`Jinro wrote:
Show nested quote +
On May 24 2018 19:20 supereddie wrote:
Don't scrape websites. Scraping breaks as soon as the website changes the structure of the page. It also puts additional strain on the server. It might not even fall under the Terms of Use of the site.

Try to find out if the website has an api, or a pre-made dataset, that you can use. You can try contacting them via Twitter or something.

I think they do have an API, but it's such a small # of requests I really don't think it would be very disruptive (there's like 8 categories with an average of maybe 4 sub categories, so the upperbound is really low for # of requests).

But I don't actually need this data since (like I said) it took like 5 minutes to copy paste it by hand, but I'd still like to know HOW to do it >_<


For websites that use javascript to create the dom (like this one actually - it uses AngularJS), python will be difficult to use. In this case, I prefer web browser test automation tools that can simulate clicks and query the dom.

Here's a solution using puppeteer.

+ Show Spoiler +


const puppeteer = require('puppeteer')
const util = require('util')

const sleep = n => new Promise(resolve => setTimeout(resolve, n))

const main = async () => {
const browser = await puppeteer.launch({
headless: false,
executablePath: '/usr/bin/chromium'
})
const page = await browser.newPage()
await page.goto('https://warhammerunderworlds.com/deck-guides/')
await page.waitForSelector('.deck-guide__faction-name')

let factions = []
for (let i = 1; i <= 8; i++) {
await sleep(1000)
await page.click(`.deck-guide__factions > div:nth-child(${i})`)

await page.waitForSelector('.deck-guide__card-type')
const faction = await page.evaluate(i => {
const faction = document.querySelector(`.deck-guide__factions > div:nth-child(${i}) > div`).textContent
const cardTypes = Array.from(document.querySelectorAll('.deck-guide__card-types'))
const sets = cardTypes.map(cardType => {
const name = cardType.querySelector('.deck-guide__card-type > span').textContent
const items = Array.from(cardType.querySelectorAll('.card-list__table-list-item'))
const cards = items.map(card => {
const num = card.querySelector('.card-list__table-cell--number > span').textContent
const name = card.querySelector('.card-list__table-cell--name > span').textContent
return { num, name }
})
return { name, cards }
})
return { faction, sets }
}, i)
factions.push(faction)
}
console.log(util.inspect(factions, {depth: null}))
await browser.close()
}

main()



Results:

+ Show Spoiler +

[ { faction: 'Garrek’s Reavers',
sets:
[ { name: 'OBJECTIVE CARDS',
cards:
[ { num: '146', name: ' Arm\'s Length' },
{ num: '154', name: ' Skritch is the Greatest, Yes-yes' },
{ num: '234', name: ' Advancing Strike' },
{ num: '235', name: ' Alone in the Darkness' },
{ num: '243', name: ' Change of Tactics' },
{ num: '257', name: ' Escalation' },
{ num: '272', name: ' Master of War' },
{ num: '282', name: ' Ploymaster' },
{ num: '284', name: ' Precise Use of Force' },
{ num: '291', name: ' Superior Tactician' },
{ num: '292', name: ' Supremacy' },
{ num: '305', name: ' Victorious Duel' } ] },
{ name: 'POWER CARDS',
cards:
[ { num: '159', name: ' Musk of Fear' },
{ num: '166', name: ' Bodyguard for a Price' },
{ num: '171', name: ' Sneaky Stab-stab' },
{ num: '311', name: ' Confusion' },
{ num: '329', name: ' Great Concussion' },
{ num: '331', name: ' Hidden Paths' },
{ num: '332', name: ' Illusory Fighter' },
{ num: '347', name: ' Quick Thinker' },
{ num: '348', name: ' Ready for Action' },
{ num: '360', name: ' Sidestep' },
{ num: '368', name: ' Time Trap' },
{ num: '369', name: ' Trap' },
{ num: '372', name: ' Twist the Knife' },
{ num: '373', name: ' A Destiny to Meet' },
{ num: '374', name: ' Acrobatic' },
{ num: '376', name: ' Awakened Weapon' },
{ num: '384', name: ' Deathly Fortune' },
{ num: '391', name: ' Great Strength' },
{ num: '395', name: ' Incredible Strength' },
{ num: '410', name: ' Shadeglass Dagger' },
{ num: '412', name: ' Shadeglass Hammer' },
{ num: '424', name: ' Tethered Spirit' } ] } ] },

...


spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
May 24 2018 19:27 GMT
#19205
On May 24 2018 18:20 Silvanel wrote:
Show nested quote +
On May 23 2018 06:54 Manit0u wrote:


Quite an interesting presentation. Definitely recommended if you have time (even for non-Python people).


Begining was kinda meh. But later parts on decorator, generator and context manager were nice.

So far all I have seen (including the part where he enforces existence of a method in a derived class with a metaclass) made me appreciate that I get to use C# instead.
If you have a good reason to disagree with the above, please tell me. Thank you.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-05-24 19:34:51
May 24 2018 19:32 GMT
#19206
I've recently met a person who claimed Go is good enough and cross-platform when talking about C++. Surely there's never a cross-platform language if you need to use fancy stuff which is only available at operating system's API. I guess it's my bias that C++ (and C) beats any language any day in terms of control and possibilities (at least non-web software).
bo1b
Profile Blog Joined August 2012
Australia12814 Posts
May 24 2018 21:30 GMT
#19207
fortran,c,c++,rust are all incredibly powerful languages, generally far beyond the scope of what people program with that often go/java/python are good enough for the task at hand. If you need memory allocation, or as much performance as you can squeeze out then I don't think there is a way around choosing the above languages.

The trick is that in c++ case in particular, most people do not know how to write genuinely quick code, so it makes less of a difference then normal.
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2018-05-25 07:03:54
May 25 2018 06:59 GMT
#19208
On May 25 2018 04:27 spinesheath wrote:
Show nested quote +
On May 24 2018 18:20 Silvanel wrote:
On May 23 2018 06:54 Manit0u wrote:
https://www.youtube.com/watch?v=7lmCu8wz8ro

Quite an interesting presentation. Definitely recommended if you have time (even for non-Python people).


Begining was kinda meh. But later parts on decorator, generator and context manager were nice.

So far all I have seen (including the part where he enforces existence of a method in a derived class with a metaclass) made me appreciate that I get to use C# instead.


Huh. I think this is just matter of perception, people have natural preference towards their main langauge. When i was learning C# (Python is my main) i had to constatly remaind myself to not be angry about some features of C#. It felt to me uncessary clumsy, overly verbose and that features repeat itself often. Its personal preference i love the way Python use decorators and context managers.
Pathetic Greta hater.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
May 25 2018 19:41 GMT
#19209
On May 25 2018 15:59 Silvanel wrote:
Show nested quote +
On May 25 2018 04:27 spinesheath wrote:
On May 24 2018 18:20 Silvanel wrote:
On May 23 2018 06:54 Manit0u wrote:
https://www.youtube.com/watch?v=7lmCu8wz8ro

Quite an interesting presentation. Definitely recommended if you have time (even for non-Python people).


Begining was kinda meh. But later parts on decorator, generator and context manager were nice.

So far all I have seen (including the part where he enforces existence of a method in a derived class with a metaclass) made me appreciate that I get to use C# instead.


Huh. I think this is just matter of perception, people have natural preference towards their main langauge. When i was learning C# (Python is my main) i had to constatly remaind myself to not be angry about some features of C#. It felt to me uncessary clumsy, overly verbose and that features repeat itself often. Its personal preference i love the way Python use decorators and context managers.

It's mostly because of the sheer amount of awful I expect to encounter should I ever touch a large python project. The features he described so far will inevitably reach out to bad devs and make them create abominations I hope to never encounter.
If you have a good reason to disagree with the above, please tell me. Thank you.
sc-darkness
Profile Joined August 2017
856 Posts
May 25 2018 21:12 GMT
#19210
Does Python have a lot of bad developers actually when people say it's such an easy language?
Excludos
Profile Blog Joined April 2010
Norway8231 Posts
Last Edited: 2018-05-25 22:51:42
May 25 2018 22:35 GMT
#19211
On May 26 2018 06:12 sc-darkness wrote:
Does Python have a lot of bad developers actually when people say it's such an easy language?


Python is often the first (and only) language a lot of people learn when they're really educated in something else (Like Maths or Physics) but need to make a program to do calculations for them. They often have a poor or no concept of good practices, optimisation, or how half the things they're doing even works. For instance: Deep Learning is, at the moment, almost exclusively done in Python. Not because C++ wouldn't be vastly superior for it, but simply because half the people working on it have no idea how to program when they start out, and they're just grabbing the easiest tool they can learn in the shortest amount of time.

so tl;dr: Yes.

edit: Also, omg can people stop posting guides for OpenCV in only Python ffs?! I don't want to learn how to do facial recognition in the wrong language.

On May 25 2018 15:59 Silvanel wrote:
Huh. I think this is just matter of perception, people have natural preference towards their main langauge. When i was learning C# (Python is my main) i had to constatly remaind myself to not be angry about some features of C#. It felt to me uncessary clumsy, overly verbose and that features repeat itself often. Its personal preference i love the way Python use decorators and context managers.


I feel the opposite a lot of the time. "Oh, it can do this? Brilliant!". When I started learning C#, I was already well drilled thinking Qt framework was the best thing in programming since..uhm..something brilliant. It fixes most of the issues I have with c++ and adds a lot of features on top of it. Then I started working with C# and quickly learned that a lot of the things I love about Qt is already baked into C#. Signals and slots, proper containers and types, and actual f'ing error messages and not just "Hey uhm, your program crashed because.. reasons.. probably" for instance.

One of the languages I spent way too long dreading to learn, which ended up pleasantly surprising me, was Javascript (Especially with Node). Sure it's a clusterfuck of legacy code, but by using Lint it becomes surprisingly bearable, and the external library importer is fantastic.

Go and Python on the other hand can go clog themselves into the toilets they came from.
bo1b
Profile Blog Joined August 2012
Australia12814 Posts
Last Edited: 2018-05-25 22:56:00
May 25 2018 22:55 GMT
#19212
People do deep learning in c/c++ with a python front end, it's the same thing, just vastly easier to understand for a mathematician.
Excludos
Profile Blog Joined April 2010
Norway8231 Posts
Last Edited: 2018-05-25 23:03:55
May 25 2018 23:01 GMT
#19213
On May 26 2018 07:55 bo1b wrote:
People do deep learning in c/c++ with a python front end, it's the same thing, just vastly easier to understand for a mathematician.


This is true. A lot of the backend for this stuff is written in c++ with a Python api. That doesn't help me much when all the materials you can find about the subject is showcased with Python code. It's very difficult for an outside to learn anything about the subject whatsoever without Python.

edit: Before people start linking to ML tools not based on Python, I probably already know about them. It's a complaint about the general situation, not a cry for help.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
May 25 2018 23:53 GMT
#19214
@bo1b
c++ / python is a brilliant combo. it's super easy to set up bindings to a library with f.ex. pybind11, and make it accessible to domain-experts and data-scientists. but ihaving python bindings to libraries is also very useful for the c++-developer.

f.ex. at work i do data-driven regression tests to check that some new project computes similar enough results to some legacy project. a small library interfaces with the legacy project, and can pull data-sets (input / output) from legacy servers. with py-bindings cross platform scripts for data-retrieval (pulled from multiple serves) and running tests is easy-peasy (btw i wish boost-tests out-of-the-box data-testing capabilities were a bit more flushed out, but as always with boost you can make it work very well if you put in a small bit of effort).

i find python useful just in general wrt to building, testing and low-fi deployment, or experimentation in a library shell. in the context of py / c++ the prospect of getting better techniques and tools for doing static reflection in c++ is very nice.

@excludos
qt should be quarantined to the code that deals with the gui, and even there it should be used as sparingly as possible. for that it's an ok option, but for anything else there are better alternatives. if someone suggested that we use qt for signals / slots at work, he / she would also be quarantined to code that deals with gui.

some never get comfortable with the complexity of c++, and seek refuge in the abstract comfort of Qt or C# or python or whatever. parading this retreat as ersatz critique seems common.
conspired against by a confederacy of dunces.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
May 26 2018 00:00 GMT
#19215
speaking of openCV and gui's. i have been working on my desktop-recording tool a bit lately, where i use openCV to do kmeans on the recorded video to compress the gif:

the thing:
[image loading]
[image loading]

alien covenant:
[image loading]
[image loading]
conspired against by a confederacy of dunces.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
May 26 2018 00:05 GMT
#19216
i am going to test out mlpack to see if i like it better. i love the aesthetics of the armadillo library, i hope mlpack is similar. i really dislike the built-in "shared-pointer copy semantics" of openCV.
conspired against by a confederacy of dunces.
Liquid`Jinro
Profile Blog Joined September 2002
Sweden33719 Posts
Last Edited: 2018-05-26 01:40:23
May 26 2018 01:38 GMT
#19217
On May 24 2018 22:44 ShoCkeyy wrote:
Here you go Jinro

https://www.digitalocean.com/community/tutorials/how-to-scrape-web-pages-with-beautiful-soup-and-python-3

http://www.nyu.edu/projects/politicsdatalab/localdata/workshops/BeautifulSoup.pdf

Hopefully these help.

Thanks I'll take a look

On May 25 2018 01:23 Hanh wrote:
Show nested quote +
On May 24 2018 19:35 Liquid`Jinro wrote:
On May 24 2018 19:20 supereddie wrote:
Don't scrape websites. Scraping breaks as soon as the website changes the structure of the page. It also puts additional strain on the server. It might not even fall under the Terms of Use of the site.

Try to find out if the website has an api, or a pre-made dataset, that you can use. You can try contacting them via Twitter or something.

I think they do have an API, but it's such a small # of requests I really don't think it would be very disruptive (there's like 8 categories with an average of maybe 4 sub categories, so the upperbound is really low for # of requests).

But I don't actually need this data since (like I said) it took like 5 minutes to copy paste it by hand, but I'd still like to know HOW to do it >_<


For websites that use javascript to create the dom (like this one actually - it uses AngularJS), python will be difficult to use. In this case, I prefer web browser test automation tools that can simulate clicks and query the dom.

Here's a solution using puppeteer.

+ Show Spoiler +


const puppeteer = require('puppeteer'
const util = require('util'

const sleep = n => new Promise(resolve => setTimeout(resolve, n))

const main = async () => {
const browser = await puppeteer.launch({
headless: false,
executablePath: '/usr/bin/chromium'
})
const page = await browser.newPage()
await page.goto('https://warhammerunderworlds.com/deck-guides/'
await page.waitForSelector('.deck-guide__faction-name'

let factions = []
for (let i = 1; i <= 8; i++) {
await sleep(1000)
await page.click(`.deck-guide__factions > div:nth-child(${i})`)

await page.waitForSelector('.deck-guide__card-type'
const faction = await page.evaluate(i => {
const faction = document.querySelector(`.deck-guide__factions > div:nth-child(${i}) > div`).textContent
const cardTypes = Array.from(document.querySelectorAll('.deck-guide__card-types')
const sets = cardTypes.map(cardType => {
const name = cardType.querySelector('.deck-guide__card-type > span'.textContent
const items = Array.from(cardType.querySelectorAll('.card-list__table-list-item')
const cards = items.map(card => {
const num = card.querySelector('.card-list__table-cell--number > span'.textContent
const name = card.querySelector('.card-list__table-cell--name > span'.textContent
return { num, name }
})
return { name, cards }
})
return { faction, sets }
}, i)
factions.push(faction)
}
console.log(util.inspect(factions, {depth: null}))
await browser.close()
}

main()



Results:

+ Show Spoiler +

[ { faction: 'Garrek’s Reavers',
sets:
[ { name: 'OBJECTIVE CARDS',
cards:
[ { num: '146', name: ' Arm\'s Length' },
{ num: '154', name: ' Skritch is the Greatest, Yes-yes' },
{ num: '234', name: ' Advancing Strike' },
{ num: '235', name: ' Alone in the Darkness' },
{ num: '243', name: ' Change of Tactics' },
{ num: '257', name: ' Escalation' },
{ num: '272', name: ' Master of War' },
{ num: '282', name: ' Ploymaster' },
{ num: '284', name: ' Precise Use of Force' },
{ num: '291', name: ' Superior Tactician' },
{ num: '292', name: ' Supremacy' },
{ num: '305', name: ' Victorious Duel' } ] },
{ name: 'POWER CARDS',
cards:
[ { num: '159', name: ' Musk of Fear' },
{ num: '166', name: ' Bodyguard for a Price' },
{ num: '171', name: ' Sneaky Stab-stab' },
{ num: '311', name: ' Confusion' },
{ num: '329', name: ' Great Concussion' },
{ num: '331', name: ' Hidden Paths' },
{ num: '332', name: ' Illusory Fighter' },
{ num: '347', name: ' Quick Thinker' },
{ num: '348', name: ' Ready for Action' },
{ num: '360', name: ' Sidestep' },
{ num: '368', name: ' Time Trap' },
{ num: '369', name: ' Trap' },
{ num: '372', name: ' Twist the Knife' },
{ num: '373', name: ' A Destiny to Meet' },
{ num: '374', name: ' Acrobatic' },
{ num: '376', name: ' Awakened Weapon' },
{ num: '384', name: ' Deathly Fortune' },
{ num: '391', name: ' Great Strength' },
{ num: '395', name: ' Incredible Strength' },
{ num: '410', name: ' Shadeglass Dagger' },
{ num: '412', name: ' Shadeglass Hammer' },
{ num: '424', name: ' Tethered Spirit' } ] } ] },

...



Oh that looks good, I'll look into this also. This is the same kind of process as using Selenium right?
Moderatortell the guy that interplanatar interaction is pivotal to terrans variety of optionitudals in the pre-midgame preperatories as well as the protosstinal deterriggation of elite zergling strikes - Stimey n | Formerly FrozenArbiter
Hanh
Profile Joined June 2016
146 Posts
May 26 2018 02:35 GMT
#19218
On May 26 2018 10:38 Liquid`Jinro wrote:
Oh that looks good, I'll look into this also. This is the same kind of process as using Selenium right?


Yes, same idea than using Selenium.
Liquid`Jinro
Profile Blog Joined September 2002
Sweden33719 Posts
Last Edited: 2018-05-26 03:33:13
May 26 2018 03:28 GMT
#19219
Python is often the first (and only) language a lot of people learn when they're really educated in something else (Like Maths or Physics) but need to make a program to do calculations for them. They often have a poor or no concept of good practices, optimisation, or how half the things they're doing even works. For instance: Deep Learning is, at the moment, almost exclusively done in Python. Not because C++ wouldn't be vastly superior for it, but simply because half the people working on it have no idea how to program when they start out, and they're just grabbing the easiest tool they can learn in the shortest amount of time.

so tl;dr: Yes.

For the people not actively developing new algorithms, what would the benefit be to working in C++ instead of Python? From what I can recall, the performance of most of the computational python libraries are basically c/c++ levels of performance (since they are just calling c/c++ anyway), and can in some cases even be improved with something like cython.

(I don't work in this field, just learning because I'm interested - I'm basically what you describe: only know python... and a little bit of R)


EDIT: I guess basically what bo1b said already.
Moderatortell the guy that interplanatar interaction is pivotal to terrans variety of optionitudals in the pre-midgame preperatories as well as the protosstinal deterriggation of elite zergling strikes - Stimey n | Formerly FrozenArbiter
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
May 26 2018 06:11 GMT
#19220
On May 26 2018 07:35 Excludos wrote:
Show nested quote +
On May 26 2018 06:12 sc-darkness wrote:
Does Python have a lot of bad developers actually when people say it's such an easy language?


Python is often the first (and only) language a lot of people learn when they're really educated in something else (Like Maths or Physics) but need to make a program to do calculations for them. They often have a poor or no concept of good practices, optimisation, or how half the things they're doing even works. For instance: Deep Learning is, at the moment, almost exclusively done in Python. Not because C++ wouldn't be vastly superior for it, but simply because half the people working on it have no idea how to program when they start out, and they're just grabbing the easiest tool they can learn in the shortest amount of time.

so tl;dr: Yes.

edit: Also, omg can people stop posting guides for OpenCV in only Python ffs?! I don't want to learn how to do facial recognition in the wrong language.

Show nested quote +
On May 25 2018 15:59 Silvanel wrote:
Huh. I think this is just matter of perception, people have natural preference towards their main langauge. When i was learning C# (Python is my main) i had to constatly remaind myself to not be angry about some features of C#. It felt to me uncessary clumsy, overly verbose and that features repeat itself often. Its personal preference i love the way Python use decorators and context managers.


I feel the opposite a lot of the time. "Oh, it can do this? Brilliant!". When I started learning C#, I was already well drilled thinking Qt framework was the best thing in programming since..uhm..something brilliant. It fixes most of the issues I have with c++ and adds a lot of features on top of it. Then I started working with C# and quickly learned that a lot of the things I love about Qt is already baked into C#. Signals and slots, proper containers and types, and actual f'ing error messages and not just "Hey uhm, your program crashed because.. reasons.. probably" for instance.

One of the languages I spent way too long dreading to learn, which ended up pleasantly surprising me, was Javascript (Especially with Node). Sure it's a clusterfuck of legacy code, but by using Lint it becomes surprisingly bearable, and the external library importer is fantastic.

Go and Python on the other hand can go clog themselves into the toilets they came from.


You sure have some strong feelings about Python
Pathetic Greta hater.
Prev 1 959 960 961 962 963 1032 Next
Please log in or register to reply.
Live Events Refresh
Monday Night Weeklies
17:00
#37
RotterdaM462
TKL 359
IndyStarCraft 218
BRAT_OK 147
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 462
TKL 359
IndyStarCraft 218
BRAT_OK 169
MaxPax 162
ProTech146
UpATreeSC 138
JuggernautJason133
trigger 68
StarCraft: Brood War
GuemChi 607
Shuttle 333
Dewaltoss 137
scan(afreeca) 37
Dota 2
Gorgc5111
420jenkins296
BananaSlamJamma127
League of Legends
C9.Mang0133
Counter-Strike
fl0m1779
Fnx 1665
Coldzera 1332
Foxcn560
adren_tv105
Super Smash Bros
Mew2King71
Heroes of the Storm
Liquid`Hasu557
Other Games
summit1g3606
Grubby2799
FrodaN1246
Beastyqt788
ToD403
allub307
Harstem232
Fuzer 173
ArmadaUGS145
QueenE105
RushiSC67
Hui .35
PiLiPiLi4
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 21 non-featured ]
StarCraft 2
• kabyraGe 148
• Reevou 7
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Laughngamez YouTube
• Kozan
• IndyKCrew
StarCraft: Brood War
• HerbMon 35
• 80smullet 15
• FirePhoenix12
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 3893
League of Legends
• Jankos2343
• TFBlade1230
Other Games
• imaqtpie1625
• Shiphtur183
Upcoming Events
OSC
14h 50m
Shameless vs MaNa
Nicoract vs Percival
Krystianer vs TBD
Cure vs SHIN
PiGosaur Monday
1d 4h
The PondCast
1d 13h
OSC
1d 14h
Big Brain Bouts
3 days
Serral vs TBD
BSL 21
4 days
BSL 21
5 days
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

IPSL Winter 2025-26
SC2 All-Star Inv. 2025
NA Kuram Kup

Ongoing

C-Race Season 1
BSL 21 Non-Korean Championship
CSL 2025 WINTER (S19)
KCM Race Survival 2026 Season 1
OSC Championship Season 13
Underdog Cup #3
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025

Upcoming

Escore Tournament S1: W5
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
Rongyi Cup S3
Nations Cup 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League Season 23
ESL Pro League Season 23
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 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.