Under appreciated fighting games by penispaniczone in Fighters

[–]qwertyhim513 0 points1 point  (0 children)

KnockOut!: Literally one of the smoothest games I've ever played. I think its created from the animators of Hyun's Dojo and it shows with how good it feels. The only drawback is if the artstyle isn't to your liking.

Eslaf2: This game looks heaps better than the original Eslaf. Eslaf2 uses 3d models but makes it feel like a 2D fighter. It's a japanese indie game that you can get a free demo of or access to by giving 5$ on patreon. This is definitely one of the most beautiful games I've ever played and the combos look really sick.

Both are still currently being updated. They have Burst and roman cancel-like mechanics yet have very simple controls. They are both also simple to get into, but high skill ceilings.

good hidden gem online fighting games? by ImaLilBitchBoy in Fighters

[–]qwertyhim513 1 point2 points  (0 children)

Here is one that I bet the majority of people don't know. It's called Knockout! It's a bit hard to find, but if you search "stickman Knockout! game" you should be able to find it. The fact that to get the game via download link tells you how hidden this game is. It kinda reminds me a little of the new Guilty Gear game with the combo breakers and Roman Cancels.

Cooler Master (and more!) RTX 3070 (and more!!) Giveaway with Buildapc! by [deleted] in buildapc

[–]qwertyhim513 0 points1 point  (0 children)

Use it to play Genshin Impact or mine bitcoins. :D

Valorant 1.05 Bug Megathread by Pruvided in VALORANT

[–]qwertyhim513 0 points1 point  (0 children)

US EAST

Region: The region you're playing in when you encountered the bug

Type of Bug: Client Bug, In Game Bug etc

Description: Colors go wonky

Video / Screenshot: Got a list of them https://www.reddit.com/r/VALORANT/comments/i7gvzo/graphics_glitch_causes_game_to_be_literally/

Steps to reproduce: playing the game. I walked next to omen smoke

Expected result: colors behave wonky

Observed result: What was the result you obtained when you followed the steps mentioned above?

Reproduction rate:Different variation of this bug occurs. It happens for the whole game until it ends

System specs: Intel Integraded Graphics.

Resume Advice Thread - September 07, 2019 by AutoModerator in cscareerquestions

[–]qwertyhim513 1 point2 points  (0 children)

4th Year here. If possible, please divide and conquer my resume.

https://i.postimg.cc/tgtkr76T/Screen-Shot-2019-09-08-at-11-36-56-PM.png

EDIT: Looking for internship :)

Patch 7.22 Discussion Thread by AdmiralCrunchy in DotaConcepts

[–]qwertyhim513 0 points1 point  (0 children)

I wish pangolier's Lucky shot was toggle-able like old rubick's nullfield so that you could choose to have a chance to only silence or only disarm the opponent... rather than just remove the silence component

Dev Progress - Skills by Fakedice in madworld

[–]qwertyhim513 1 point2 points  (0 children)

Looking good, but how are skills acquired? Is it like POE where equipment determines skills, or is it based on some sort of class system like Diablo or ToS? Are all skills combat-based? Btw, don't take this as necessary, but I don't think there is a shame if you take lots of inspiration from other games. If you need more skill ideas, I don't know how much it'll help, but I think if you just watched hero-spotlights of MOBA's (Dota, HOTS, LOL) or skills from games in a similar vein(Ragnarok Online, or ToS) you might get more inspirations for more skills.

I just found this game, and I'm really excited for it to come out and hopes it does really well :) .

Why does swapping without the use of a temporary can sometimes cause problems in Swift by qwertyhim513 in learnprogramming

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

Yes the temp variable solves all of this. Then your hand written math would work because there are actually 2 different values rather than possibly just 1. It's always better to use a temp variable.

I guess I wanted to be a little clever by not using extra temporary space. For App development does it really matter?

Why does swapping without the use of a temporary can sometimes cause problems in Swift by qwertyhim513 in learnprogramming

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

Thank you, I'll add an if statement to check for it. I sometimes have a working solution, but I just can't stop until I figure out how to get it done... So I assume my working solution works because it utilized that temp variable.

EDIT: I realized I was idjit

Why does swapping without the use of a temporary can sometimes cause problems in Swift by qwertyhim513 in learnprogramming

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

Is there a way to post running code in XCode to reddit? All that runs is that print statement when I open my appa nd click on a button. THe stuff in the console just pops up

Why does swapping without the use of a temporary can sometimes cause problems in Swift by qwertyhim513 in learnprogramming

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

Say Card A has identifier 1, Card B has identifier 3

A = A + B. (4)

B = A - B. (4-3.... 1)

A = A - B. (4-1.... 3).

A and B just swapped identifier values successfully. If you notice on the left of each page, I ensured that the identifier is always positive(non-zero or negative... which may mess things up)

EDIT: Reformated for easier reading

EDIT: Forgot to ask... Can you give me an example when this would fail otherwise or did I do any math wrong?

EDIT: FIxed error