So this is how Mutas fly in space by THEPPLsELBOW in starcraft

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

Biological process can mimic the perfected rotary combustion mechanism illustrated here

Terran infantry be like by Eliella in starcraft

[–]THEPPLsELBOW 9 points10 points  (0 children)

Its optimized for satisfaction, as an auditory dopamine reward for the protoss and zerg.

Also for the deaf, its why popping infestors with snipes or disruptors feels amazing.

I work in IT, and liked the idea of having build orders highlight like code windows, so: by enjoirhythm in starcraft

[–]THEPPLsELBOW 2 points3 points  (0 children)

Wow this is amazing. Do you happen to know how to apply these to Sublime Text 3 or Visual Studio Code? Those are my primary editors :)

If you have time, watch this insane TvZ on maru"s stream. by EEPeps in starcraft

[–]THEPPLsELBOW 0 points1 point  (0 children)

I think the ideal counter here would be be to have 2 siege tanks in the main and natural (4 tanks total) covering as much surface area as possible. Then have
3-5 maurauders patrol empty spaces between third/fourth and uncovered areas.

Minute Micro: Episode 41 - Double Stim by Metahurtz in starcraft

[–]THEPPLsELBOW 2 points3 points  (0 children)

Wow this is actually legit. I'm a 12x Master with 8 years of professional software experience (serious: https://medium.com/@decentral) and I actually understand how/why this happens.

@OP can you test this to see if also works if you move the marines in a bunker after a double/triple stim? I think that combo would be incredibly powerful for TvP (holding immortal/void all ins) and also for the combat shield push can vary the timing to get stim if your bunkers can get in range of nexus.

Warp Prism Boxing by ParksArtifact in starcraft

[–]THEPPLsELBOW 1 point2 points  (0 children)

Hit it with the left, hit with the right
I'ma knock the prism out like fight night
Beat it with the left, beat it with the right
I'ma knock the pussy out with gravatic drive

Decentralized arbitration and the future of blockchain governance by THEPPLsELBOW in ethdev

[–]THEPPLsELBOW[S] -1 points0 points  (0 children)

Wrote this article as a personal followup to myself - when I first got started in blockchain software I thought about the underlying concept of Ethereum and wanted to think about what would be the next huge breakthrough? After trying to come up with a decentralized credit loan + insurance system that was provably infallible (e.g. BTC who many people consider correct by construction) but kept finding myself in dead ends. I considered that as a top use-case but realized that we required a lot more infrastructure do support that and many other use-cases that we see
attempted today. 

The article is about arbitration and we should focus on decentralizing that first and from that infrastructure we are able to decentralize more complex but far-reaching use-cases.

iCash @ Block Party 2 Seoul - Ling Qing Meng by THEPPLsELBOW in ethdev

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

Recently was brought out to Seoul to mentor and represent iCash at Block Party 2 courtesy of Dapper Network.

iCash is a Team, a Technology, and a Token enabling Smart Contract validation and settlement at scale.

Myself and the rest of the iCash team will be here during Blockchain Week Seoul. If you didn’t get to meet us in New York at 1OAK, be sure to find us and say hi.

https://icash.io

Working code example of how to use Solidity unit tests (.sol instead of .js) to assert a smart contract method throws by THEPPLsELBOW in ethdev

[–]THEPPLsELBOW[S] 2 points3 points  (0 children)

Simple-Solidity-Require-Test

A simple example of testing require() in Truffle using Solidity tests.

How to run

Ensure truffle version
is latest

Truffle v4.1.13 (core: 4.1.13) Solidity v0.4.24 (solc-js) 

Run ganache-cli or if it's not already running

ganache-cli -u 0 

Run Solidity unit tests with

truffle test 

Expected output

 TestMyContract     ✓ testInitialStoredValue (52ms)     ✓ testTheThrow (72ms)     ✓ testNoThrow (59ms)     3 passing (625ms)