Title | BeanStalkd | RabbitMQ |
---|---|---|
Protocol | Own Text | AMQP |
Security | nope | Multiple security levels |
Transactional | seems nope | yes |
This file contains hidden or 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
<? | |
$httpClient = new \SocialConnect\Common\Http\Client\Guzzle( | |
new \GuzzleHttp\Client() | |
); |
This file contains hidden or 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 | |
$configureProviders = [ | |
'redirectUri' => getenv('API_HOST') . 'v1/oauth-cb', | |
'provider' => [ | |
'github' => [ | |
'applicationId' => getenv('OAUTH_GITHUB_APPID'), | |
'applicationSecret' => getenv('OAUTH_GITHUB_SECRET'), | |
'scope' => [ | |
'email', |
This file contains hidden or 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
// @flow | |
const API_BASE_PATH: string = "https://api.github.com"; | |
export type FetchOptions = { | |
headers?: Object | |
}; | |
export type RequestOptions = { | |
method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH' |
This file contains hidden or 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
https://join.slack.com/t/ghubber/shared_invite/MjE2OTgwODg0MDcwLTE1MDA2NTg5MTUtMWUzZmY3ZWVjNg |
This file contains hidden or 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
Это был 2017 год, уже Мавроди сказал что пока есть дебилы, они будут верить | |
Уже была пройдена война HYIP проектов, люди перестали верить, но не умирала только одна идея | |
Сетевого бизнеса, который из-за "алчность" людей не мог остановиться по природе людей | |
Но есть одно но, "алчность" тут не правильная характеристика, это просто промытые мозги, замотивированные зомби | |
1. Ты сможешь (лучше чем "я") | |
2. Это хороший продукт / Компании N лет / Сами пользуемся | |
3. Деньги | |
4. Это просто, первые пол года, а дальше постоянный пассивный доход |
This file contains hidden or 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
|-------205--------| | |
| | | |
80 80 | |
| | | |
| | | |
-------205---------- | |
я сижу тут | |
This file contains hidden or 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
<html><body><div class="announce instapaper_body md" data-path="README.md" id="readme"><article class="markdown-body entry-content" itemprop="text"><h1><a id="user-content-breakster" class="anchor" href="#breakster" aria-hidden="true"><svg aria-hidden="true" class="octicon octicon-link" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"></path></svg></a>Breakster</h1> | |
<p><a href="https://travis-ci.org/idchlife/breakster"><img src="https://camo.githubusercontent.com/eebe3a730a1ac79fca3329114ec9dff35c3c6dcf/68747470733a2f2f7472617669732d63692e6f72672f696463686c6966652f627265616b737465722e7376673f6272616e63683d6d6173746572" alt="Build Status" data-c |
This file contains hidden or 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
{ | |
repositoryOwner(login: "ovr") { | |
... on User { | |
contributedRepositories(first: 10, orderBy: {field: updated_at}) { | |
edges { | |
node { | |
name, | |
viewerCanUpdateTopics | |
} | |
}, |
This file contains hidden or 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
function request() { | |
if (this.middlewares) { | |
console.log("executing middlewares"); | |
this.middlewares.forEach(m => m.call(this, "anus"), this); | |
} | |
console.log("Request completed!"); | |
} |