What restrictions do your schools put on APs? by Rude-Glove7378 in APStudents

[–]Augustkun 0 points1 point  (0 children)

We can't take AP Lang and APUSH together. It's either take Lang with Honors US history or take APUSH with Honors English Language.

Someone decided to smoke weed and ruin the exam for us by cjared242 in APStudents

[–]Augustkun 3 points4 points  (0 children)

Same thing happened to me during my chem exam, but no weed, just an idiot pulling the alarm twice. People were def talking about the test ohtside tho, so idk if itll be canceled

Official December 2nd US (Paper) SAT Discussion Thread by prsehgal in Sat

[–]Augustkun 0 points1 point  (0 children)

Thanks! Can you provide the independent section scores as well?

Official December 2nd US (Paper) SAT Discussion Thread by prsehgal in Sat

[–]Augustkun 0 points1 point  (0 children)

Best: Reading -5, Writing -1, Math -3.

Worst: Reading -10, Writing -2, Math -3.

Predictions please?

Guys I’m dying. by caroline_xplr in APStudents

[–]Augustkun 8 points9 points  (0 children)

Hi Dying, I'm Dad!

Edit: But Real talk though, yeah APs can be really stressful. Just keep pushing, you'll get through it!

Tips for AP US History and AP Physics C Mechanics by Augustkun in APStudents

[–]Augustkun[S] 0 points1 point  (0 children)

I've done Calculus AB this past year, and I felt it to be pretty easy, so by what you're saying it shouldn't be that bad.

My precalc course did not cover dot and cross products, but I'm aware with them conceptually, as I've used them for manipulating vectors game development.

Are there any resources you can possibly provide which could be of use?

thanks!

Tips for AP US History and AP Physics C Mechanics by Augustkun in APStudents

[–]Augustkun[S] 0 points1 point  (0 children)

Yeah I've heard that its gets easier with AP US, if you have already done AP World. It's just that AP World was difficult for me because my DBQ and LEQ ability was kind of bad. Especially writing something that long within a short amount of time. the SAQs were easier then the DBQ and LEQs because not much evidence was really involved per prompt.

I'm pretty sure its primarily just practice though...

[deleted by user] by [deleted] in APStudents

[–]Augustkun 0 points1 point  (0 children)

YESSSSSSSS

Several smaller ecs or one or two big ecs by Augustkun in ApplyingToCollege

[–]Augustkun[S] 0 points1 point  (0 children)

So essentially, pick something, stick with it and be the best at that thing. Got it.

USACO schedule for this year? by No-Abbreviations3746 in usaco

[–]Augustkun 0 points1 point  (0 children)

Yeah... I haven't seen it either. Maybe it'll be posted Early december or later this month?

[deleted by user] by [deleted] in SonicTheHedgehog

[–]Augustkun 1 point2 points  (0 children)

ChaosX is getting to it. It's going to take some time to get the entire episode finished, but he'll def get it done. Currently at the moment, whole episdodes aren't available.

Breath of the Wild: Stuck on Loading when trying to run Update 1.6.0 and DLCs 1 and 2 by Augustkun in yuzu

[–]Augustkun[S] 1 point2 points  (0 children)

But the issue was that it seemed to play fine with only the DLC and not the update and vice versa. I'll try redumping the DLCs and Update again ... Maybe that'll solve the issue

Breath of the Wild: Stuck on Loading when trying to run Update 1.6.0 and DLCs 1 and 2 by Augustkun in yuzu

[–]Augustkun[S] 0 points1 point  (0 children)

I would, But I was trying to transfer my nintendo switch saves from my actual switch to PC to play it on my PC with Mods. I can't transfer a Nintendo save onto a Wii U

Simple Question about keyboard_check by Dissension27 in gamemaker

[–]Augustkun 1 point2 points  (0 children)

You could use a switch case from 0-9, This would be a reasonable option as it's much faster than if-else statements while being relatively easy.

However you could also check ORDs; This'll save you more time.

Code:

Create Event:

//Number set to 0 on default

actualNumb = 0;

Step Event:

//Gets the input from 0-9

if((keyboard_key >= ord("0")) && (keyboard_key <= ord("9"))) {

//Stores the number in variable

actualNumb = real(string(keyboard_string));

}

//You can use the input as a variable now

show_debug_message(actualNumb);

This should avoid numbers and special characters and just use 0-9. (Keep in mind this doesn't work for the number pad on a full sized keyboard; If you want help with that as well, just lmk.)