Search found 575 matches

by Yumtard
May 8th, 2019, 3:52 pm
Forum: Everything
Topic: Intermediate HW 16 - Problem 2 error with istream_iterator
Replies: 2
Views: 1752

Re: Intermediate HW 16 - Problem 2 error with istream_iterator

try this std::istringstream ss( nambies ); std::transform( std::istream_iterator<std::string>( ss ), std::istream_iterator<std::string>(), std::ostream_iterator<int>( std::cout ), [&numbers]( const std::string& word ) according to the documentation, istream_iterator takes a ref to stream, not a cons...
by Yumtard
May 5th, 2019, 8:32 am
Forum: Everything
Topic: Learning and messing around
Replies: 34
Views: 21027

Re: Learning and messing around

Awesome! I'll follow this.

Good luck and have fun
by Yumtard
April 9th, 2019, 7:16 pm
Forum: Everything
Topic: [Updated 2019-06-25] Revamped C++ Networking Series using Sockets
Replies: 10
Views: 5152

Re: Revamped C++ Networking Series using Sockets

Awesome, I'm doing some socket programming for a project. Will check it out
by Yumtard
April 7th, 2019, 12:20 pm
Forum: Everything
Topic: Noob learns to code in 3 months
Replies: 670
Views: 198870

Re: Noob learns to code in 3 months

:O Congrats :D Great job. Thanks guys :) Thats all great n shit but I am still waiting for a working Spaceballs patch... Haha I believe it worked from the kk branch? If not I'll have to take a look at it. Epic journey. Thanks Chili :) And the journey continues! Still have lots to learn. this thing ...
by Yumtard
April 3rd, 2019, 10:06 am
Forum: Everything
Topic: Noob learns to code in 3 months
Replies: 670
Views: 198870

Re: Noob learns to code in 3 months

Update:
Somehow this noob made it and is now a professional programmer! :shock:

/thread
by Yumtard
March 5th, 2019, 8:25 pm
Forum: Everything
Topic: Android
Replies: 12
Views: 13011

Re: Android

I've used android studio a bit. And also xamarin in visual studio (c#)
Xamarin is fun because you can easily make cross platform apps.
by Yumtard
October 6th, 2018, 2:27 pm
Forum: Everything
Topic: why have my solution failed?
Replies: 10
Views: 4256

Re: why have my solution failed?

same. did 80m numbers on my computer in 24ms but failed
by Yumtard
October 6th, 2018, 12:17 am
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 234706

Re: Coding Challenge 4!

guess my optimized version had bugs. can we get the tests you used?
by Yumtard
September 26th, 2018, 12:31 pm
Forum: Everything
Topic: I dont have enough time to be active on forum :(
Replies: 3
Views: 1728

Re: I dont have enough time to be active on forum :(

good luck with your exams!
by Yumtard
September 25th, 2018, 9:02 pm
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 234706

Re: Coding Challenge 4!

Finally managed to do some optimizing

Went from ~110ms to ~24ms for my 80 million test. No multi threading.
And the code went from neat to a mess :D


Image