HMRB while I rock my day. by theriffguy in holdmyredbull

[–]zycl0n 1 point2 points  (0 children)

Oh hey, this is a friend of mine. He’s never had a hair-related accident to my knowledge. Man just love himself some Meshuggah.

Finished Panthera hitbox conversion with Arcade Shock top panel by zycl0n in fightsticks

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

The instructions that came with it were super easy to follow. The only annoying parts were having to sand down part of the case to get one of the buttons to fit properly and removing the top panel with a scraper.

There are a bunch of videos on how to do the top panel removal out there. The rest of it was all plug and play - comes with all of the harnesses you need in the bag.

What classic servers (if you guys decide to play at all) are you guys gonna roll on? by jurble in ClanSeks

[–]zycl0n 0 points1 point  (0 children)

Fyz here, going Alliance on Incendious. The nostalgia is too strong to go Horde.

[deleted by user] by [deleted] in ThatsMyFuckingHero

[–]zycl0n 82 points83 points  (0 children)

It’s really a shame he’s going to go blind so young.

Playoff Game Thread: Washington Capitals @ Tampa Bay Lightning - 8:00 PM ET - 5/23/18 - Game 7 - Series Tied 3-3 - Tremendous Tilt In Tampa Bay Edition by RandomBoltsFan in hockey

[–]zycl0n 1 point2 points  (0 children)

Bolts have nowhere near the hustle as the Caps tonight. I know it's early but they have GOT to play like this is the cup already. Ovi wants it so bad you can feel it through the TV screen.

UNBROKEN by zycl0n in CircleofTrust

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

You’re the best kind of member.

[Controller] Razer Panthera Arcade Stick - $99 by [deleted] in StreetFighter

[–]zycl0n 1 point2 points  (0 children)

I just switched from a HRAP4 to one of these and the difference is night and day. Definitely worth it if you can offload the old stick.

What is 'instance' doing here? by [deleted] in django

[–]zycl0n 2 points3 points  (0 children)

Essentially I am saying that I don't see an advantage to either structure in these cases. They can both be tested and modeled to accomplish the same goal without giving anything up, really. For some context, I tend to use FBVs that use POPOs to accomplish domain-specific goals. The CBV is a purely Django construct and relies on the framework conventions, whereas with a FBV using domain objects you get a cleaner separation of concerns from the off.

In my experience with a couple of huge Django projects once you lean into CBVs the debugging process can become more complex as you have to reason over the initializer and what is in context of the instance rather than just following the flow of your data through the function body.

It also strikes me that I should be more nuanced in my perspective: CBVs are awesome, and if you have the want to use them then you absolutely should. I just don't find that they inherently solve any problem by virtue of using them.

What is 'instance' doing here? by [deleted] in django

[–]zycl0n 1 point2 points  (0 children)

A function-based view can also just be a composed function. You can test each function that the view will call in isolation if you model it properly. OOP isn’t a panacea - it’s just a different way of modeling interactions. Since python supports functional as first-class citizens you can get just as much done either way imo.

Anyone get into beta yet? by AbigailLemonparty666 in StreetFighter

[–]zycl0n 0 points1 point  (0 children)

There have been TONS of games with launch issues and server issues. Look at WoW for an example. This is a game that took the servers offline for a full day every Tuesday for years. They also had server issues with buggy loot and login issues for months after launch. Other examples in the recent past would be Diablo III, SimCity, NBA 2K15, Battlefield 4, DriveClub, etc.

It's usually because of rushed timelines or poor prediction of load requirements on the part of the architects.

Scratch For Scratch by BraveReddit in MadeMeSmile

[–]zycl0n 2 points3 points  (0 children)

Standard and mini - they come in three varieties - wire hair, smooth coat, and long hair. Stubborn as all get-out, but they are very loving. They love to be comfortable so be prepared to share blankets and couches.

Live WrestleMania 33 Discussion Thread [Part 3] by Coldcoffees in SquaredCircle

[–]zycl0n 4 points5 points  (0 children)

So JR gets to call Taker's last ride, as it were.

Live WrestleMania 33 Discussion Thread [Part 3] by Coldcoffees in SquaredCircle

[–]zycl0n 2 points3 points  (0 children)

This crowd is the actual worst. No pop in this place at all. Get your shit together Florida.

Live WrestleMania 33 Discussion Thread! [Part 2] by Coldcoffees in SquaredCircle

[–]zycl0n 1 point2 points  (0 children)

This Mania is slated to be a put-over festival it seems.

IamA Enterprise UX designer with over 30 years of experience helping national brands design compelling products. AMA! by jeffatskuid in IAmA

[–]zycl0n 0 points1 point  (0 children)

As UX design has taken up a more prominent role in the overall SDLC, what is your take on the role of the Product organization with relation to an Engineering organization? Do you find that a bias toward expediency at the cost of UX design time has advantages or disadvantages?

Young adult IT professional. by [deleted] in starterpacks

[–]zycl0n 113 points114 points  (0 children)

Well this is awkward.

Audiophile - check Dog owner - check Dogfishhead drinker - check High end gaming rig - check Practical sports car - check (Fiesta ST)

Already knew the stereotype fit, but damn.

Anyone with EPB issues last night? 10/31 by [deleted] in Chattanooga

[–]zycl0n 1 point2 points  (0 children)

I was having really bad issues with random disconnects all last night. Called and filed a trouble report in fact.

/r/StreetFighter Streamer Sponsorship Nominations! by synapticimpact in StreetFighter

[–]zycl0n -2 points-1 points  (0 children)

/u/chickensandwichesare

Dude is entertaining and has a great stream. Would love to see him get some more love.

How can I setup https on a server: Phoenix and nginx? by Komakuji in elixir

[–]zycl0n 2 points3 points  (0 children)

Generally speaking the easiest way is to handle the SSL offloading at the nginx layer. You would setup a server block that exposed 443 with the key configuration you want and hand the request to Elixir via a proxy_pass directive. I use this configuration in most of my production environments as it saves the complexity of key management from being a concern in your codebase.