Search found 80 matches

by Slidy
September 29th, 2018, 11:34 pm
Forum: Everything
Topic: A better alternative to solution files
Replies: 21
Views: 8148

Re: A better alternative to solution files

FinalL worked on converting the framework to use CMake & OpenGL, I'm not sure if it's in a working state or not though. Link to the repo: https://github.com/FinalL/chili_framewo ... CMakeBuild
by Slidy
September 26th, 2018, 11:02 pm
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 235062

Re: Coding Challenge 4!

Not sure about NF files, but I created my files with the following Python script: import random TOTAL_NUMS = 10000 nums = "" for i in range(TOTAL_NUMS): nums += str(random.randint(0,65535)) + " " nums = nums[:-1] # remove trailing space with open('randnums.txt', 'w') as file: file.write("Slidy's Tes...
by Slidy
September 24th, 2018, 8:33 am
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 235062

Re: Coding Challenge 4!

A few minor edits + running without a debugger: PASS (0ms) File Test: Buck Futter's Sexy Test 1 PASS (0.000464ms) File Test: Buck Futter's Sexy Test 2 PASS (0.000464ms) File Test: Buck Futter's Sexy Test 3 PASS (0ms) File Test: Buck Futter's Sexy Test 4 PASS (0ms) File Test: Buck Futter's Sexy Test ...
by Slidy
September 24th, 2018, 2:53 am
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 235062

Re: Coding Challenge 4!

Managed to double the speed, give or take. PASS (0ms) File Test: Buck Futter's Sexy Test 1 PASS (0.000464ms) File Test: Buck Futter's Sexy Test 2 PASS (0ms) File Test: Buck Futter's Sexy Test 3 PASS (0ms) File Test: Buck Futter's Sexy Test 4 PASS (0.000464ms) File Test: Buck Futter's Sexy Test 5 PAS...
by Slidy
September 23rd, 2018, 7:52 am
Forum: Everything
Topic: Coding Challenge 4!
Replies: 93
Views: 235062

Re: Coding Challenge 4!

Here are my results: PASS (0ms) File Test: Buck Futter's Sexy Test 1 PASS (0.000928ms) File Test: Buck Futter's Sexy Test 2 PASS (0ms) File Test: Buck Futter's Sexy Test 3 PASS (0ms) File Test: Buck Futter's Sexy Test 4 PASS (0ms) File Test: Buck Futter's Sexy Test 5 PASS (0.000464ms) File Test: Buc...
by Slidy
June 22nd, 2018, 5:38 am
Forum: Everything
Topic: my solutions
Replies: 52
Views: 18663

Re: my solutions

Yeah that seems pretty good, but you can eliminate more words based on the guess. You're only eliminating words that have a score less than the targetScore, but if you think about it you can eliminate any word that has a score not equal to the targetScore. After doing that, the number of attempts it...
by Slidy
June 19th, 2018, 3:45 pm
Forum: Everything
Topic: my solutions
Replies: 52
Views: 18663

Re: my solutions

They were allowed at the time when I made this as long as you didn't use it to spam/advertise, but seems they recently made them completely banned. Looks like they don't enforce this all that well though, I used it about 10 times today, spamming around 10 messages each time and my account hasn't bee...
by Slidy
June 19th, 2018, 3:44 pm
Forum: Everything
Topic: Problems with Visual Studio Compiler
Replies: 11
Views: 4170

Re: Problems with Visual Studio Compiler

I think Chili mentioned before that he doesn't mind people using the framework to make games, but honestly the framework is just a light wrapper around some DirectX and WinAPI calls. It's more suited as a learning tool than as a game making tool. By the time you're proficient in C++ you'll be better...
by Slidy
June 19th, 2018, 4:41 am
Forum: Everything
Topic: my solutions
Replies: 52
Views: 18663

Re: my solutions

Sorry to hear that man, hope you're ok :( Making the solver is actually simpler than it seems. You have the source code to Chili's Werd Game on GitHub, which makes things a lot easier. You know exactly how the score is calculated, and you know exactly what words are used in the list. Knowing all of ...
by Slidy
June 18th, 2018, 6:55 am
Forum: Everything
Topic: Laziness
Replies: 9
Views: 3161

Re: Laziness

I wouldn't force yourself to "do" programming, just go at your own pace. Take a break like albinopapa said if needed then get back into it. Also personally I wouldn't try to just "learn" Unity, I find that style of just absorbing info really dry and difficult to do. Instead I prefer to take on a pro...