I hereby claim:
- I am haikyuu on github.
- I am abdellah (https://keybase.io/abdellah) on keybase.
- I have a public key ASDSV5ep5eikmJUbbdnkSR0Ig-xV6VAJ4xkqvh432PTJPQo
To claim this, I am signing this object:
| const Box = styled.div` | |
| width: 70%; | |
| height: 24vw; | |
| background: white; | |
| border-radius: 1.2vh; | |
| position: relative; | |
| ${debug('BOX')} | |
| ` |
| A cluster is a group of databases runing on the same server; | |
| - `COPY tablename FROM '/home/user/weather.txt'` *inserts* rows from the given file to `tablename`; [Copy](http://devdocs.io/postgresql~9.6/sql-copy) |
| CACHE MANIFEST | |
| index.html | |
| stylesheet.css | |
| images/logo.png | |
| scripts/main.js | |
| http://cdn.example.com/scripts/main.js |
| CACHE MANIFEST | |
| # 2010-06-18:v3 | |
| # Explicitly cached entries | |
| index.html | |
| css/style.css | |
| # offline.html will be displayed if the user is offline | |
| FALLBACK: | |
| / /offline.html |
I hereby claim:
To claim this, I am signing this object:
| var airbrake = new airbrakeJs.Client({ | |
| projectId: 157180, | |
| projectKey: 'b4831e7abc62eceb3f0e49a822e0daa3' | |
| }); | |
| airbrake.addFilter(function (notice) { | |
| notice.context.environment = 'production'; | |
| return notice; | |
| }); | |
| var HelloSign = |
| FROM ubuntu:16.04 | |
| MAINTAINER Abdellah Alaoui | |
| RUN apt-get update && apt-get install -y nginx \ | |
| && apt-get clean \ | |
| && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ | |
| && echo "daemon off;" >> /etc/nginx/nginx.conf | |
| #override default nginx config |
| FROM ubuntu:16.04 | |
| MAINTAINER Abdellah Alaoui | |
| RUN apt-get update \ | |
| && apt-get install -y locales \ | |
| && locale-gen en_US.UTF-8 | |
| ENV LANG en_US.UTF-8 | |
| ENV LANGUAGE en_US:en |
// https://hackernoon.com/redux-flow-type-getting-the-maximum-benefit-from-the-fewest-key-strokes-5c006c54ec87
// https://github.com/facebook/flow/issues/4002
// eslint-disable-next-line no-unused-vars
type _ExtractReturn<B, F: (...args: any[]) => B> = B;
export type ExtractReturn = _ExtractReturn<*, F>;