- Trade in a post coronavirus World (Politico)
- The World after Coronavirus (Financial Times)
- India and global economy in a post Covid-19 world
- A post-coronavirus World where digital is King (Diginomica)
- 10 Consumer Trends for a Post-Coronavirus World (Skift)
- Shaping a sustainable post-Covid-19 world: five lessons for business
- [Good After Covid19: from crisis to global opportunity](https://sergiocaredda.eu/myself/good-after-covid19-from-crisis-t
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('N', 1000); | |
class Redis | |
{ | |
public function run($n) | |
{ | |
$a = rand($n, 2 * $n); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROJECT = spine | |
DEPS = cowboy | |
dep_cowlib = pkg://cowlib 0.9.0 | |
TEST_DEPS = ct_helper | |
dep_ct_helper = https://github.com/extend/ct_helper.git master | |
include erlang.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(feature/erlangmk●●)$ make | |
APP cowlib.app.src | |
APP ranch.app.src | |
APP cowboy.app.src | |
APP mimetypes.app.src | |
./rebar compile | |
==> json (compile) | |
ERROR: compile failed while processing /Users/ronnylt/workspace/sp/spchat-erlang/deps/json: {'EXIT',{badarg,[{re,split, | |
[[118,99,115,95,105,110,102,111,95,109,115,103,95,48,95, | |
61,40,37,70,123,99,121,97,110,125,102,101,97,116,117, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am ronnylt on github. | |
* I am ronnylt (https://keybase.io/ronnylt) on keybase. | |
* I have a public key whose fingerprint is FE3B F389 D20C 1F39 487F 772A 65B5 6D4F 6D86 095E | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package domain | |
// An Aggregate is a tree of object relations that protect business invariants (business rules). | |
// Concretely, an aggregates handle commands and have a state model encapsulated within it that allows | |
// it to implement the required command validation, thus upholding the invariants (business rules) of the aggregate. | |
// Aggregates are usually composed of several entities and values objects. | |
// The lifetimes of the components of an aggregate are bounded by the lifetime of the entire aggregate. | |
// Aggregate is abstract concept, it's just represented as an empty interface with no specific contract. | |
type Aggregate interface{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
beee hapy |
In this gist I would like to describe an idea for GraphQL subscriptions. It was inspired by conversations about subscriptions in the GraphQL slack channel and different GH issues, like #89 and #411.
At the moment GraphQL allows 2 types of queries:
query
mutation
Reference implementation also adds the third type: subscription
. It does not have any semantics yet, so here I would like to propose one possible semantics interpretation and the reasoning behind it.