Skip to content

Instantly share code, notes, and snippets.

View sudodoki's full-sized avatar

Джон, просто Джон sudodoki

View GitHub Profile
REST API over Node
API
- что такое и зачем
- API в WEB (http, soap, xml-rpc)
- API first, преимущества, use cases
- небольшой пример на Twitter API
REST API
- определение REST систем (отсылки к Roy Fielding)
@ALF-er
ALF-er / Opinion.md
Last active April 29, 2020 21:16
ReactJS Conf 2016

Disclaimer 1: Первую которая "про то чего мы достигли" я таки пропустил.

Disclaimer 2: Многие доклады смотрелись и отчёты писались в состоянии алкогольного опьянения.

Сейчас посмотрел Ben Alpert - What Lies Ahead она про то какие идеи они имеют о дальнейшем развитии. И они делят на UX-идеи и DX-идеи. В UX у них:

@akella
akella / break-word.sass
Last active March 30, 2026 04:05
Breaking long words
=force-new-lines-for-long-words
-ms-word-break: break-all
word-break: break-all
word-break: break-word
-webkit-hyphens: auto
-moz-hyphens: auto
hyphens: auto

Food

  • Racja Mięsa - if you like meat, that's your place. Amazing tartars.
  • Święta Krowa - a decent burger place
  • Pizza a Pezzi - great pizza
  • Ptasie radio - various food, has has some Italian stuff
  • Manekin - pancakes
  • Sofa - good for lunch

Drinks

  • Lot Chmiela - lots of craft beers
if (__DEV__) {
window.devtoolsFormatters = window.devtoolsFormatters || [];
window.devtoolsFormatters.push((function() {
/* mori's type check methods */
var checks = [
'isReduceable', 'isSeqable',
'isReversible', 'isCounted', 'isIndexed',
@danawoodman
danawoodman / flux-options.md
Last active April 22, 2016 13:39
Flux and Flux-like Options

Flux and Flux-like Options

A non-exhaustive list of flux and flux-like libraries with relevant information and notes.

Library Stars Latest Release
Facebook flux
reflux
fluxxor
marty [](https:/
// with static data, do filtering and sorting in the client
<Autocomplete
initialValue="Ma"
items={getUnitedStates()}
getItemValue={(item) => item.name}
shouldItemRender={(item, value) => (
state.name.toLowerCase().indexOf(value.toLowerCase()) !== -1 ||
state.abbr.toLowerCase().indexOf(value.toLowerCase()) !== -1
)}
sortItems={(a, b, value) => (
@nkbt
nkbt / .eslintrc.js
Last active May 28, 2026 08:17
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {
var slice = Array.prototype.slice.call.bind(Array.prototype.slice);
function use(fn, fns){
return function(){
var args = slice(arguments);
return fn.apply(null, args.map(function(arg, index){
return fns[index](arg);
}));
}