Ссылки на материалы, позволяющее лучше понять оригинальную идею.
Java and C++ make you think that the new ideas are like the old ones. Java is the most distressing thing to hit computing since MS-DOS.
Alan Kay
| // Tests built around our Storybook | |
| describe('Storybook', () => { | |
| beforeEach(() => { | |
| // Visiting our app before each test removes any state build up from | |
| // previous tests. Visiting acts as if we closed a tab and opened a fresh one. | |
| // In this case, we are using the publicly accessible AirBnB react-dates Storybook | |
| cy.visit('http://airbnb.io/react-dates/') | |
| }) | |
| // Let's build some tests around the DateRangePicker | |
| context('DateRangePicker', () => { |
| // @flow | |
| import * as React from 'react'; | |
| import styled from 'styled-components'; | |
| type Props = { | |
| className: string, | |
| }; |
| #!/usr/bin/env php | |
| <?php | |
| use Symfony\Bundle\FrameworkBundle\Console\Application; | |
| use Symfony\Component\Console\Input\ArgvInput; | |
| use Symfony\Component\Debug\Debug; | |
| // if you don't want to setup permissions the proper way, just uncomment the following PHP line | |
| // read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information | |
| //umask(0000); |
| create unlogged table int4_aa (id int, id2 int, col1 int, col2 int, col3 text, col4 text, col5 timestamptz, col6 timestamptz); | |
| create unlogged table int4_bb (id int, id2 int, col1 int, col2 int, col3 text, col4 text, col5 timestamptz, col6 timestamptz); | |
| insert into int4_aa | |
| select i, i, i, i, i, i, now(), now() | |
| from generate_series(1, 5*1e6) i; | |
| insert into int4_bb | |
| select * from int4_aa; |
I have been an aggressive Kubernetes evangelist over the last few years. It has been the hammer with which I have approached almost all my deployments, and the one tool I have mentioned (shoved down clients throats) in almost all my foremost communications with clients, and it was my go to choice when I was mocking my first startup (saharacluster.com).
A few weeks ago Docker 1.13 was released and I was tasked with replicating a client's Kubernetes deployment on Swarm, more specifically testing running compose on Swarm.
And it was a dream!
All our apps were already dockerised and all I had to do was make a few modificatons to an existing compose file that I had used for testing before prior said deployment on Kubernetes.
And, with the ease with which I was able to expose our endpoints, manage volumes, handle networking, deploy and tear down the setup. I in all honesty see no reason to not use Swarm. No mission-critical feature, or incredibly convenient really nice to have feature in Kubernetes that I'm go
| // routes.js | |
| const routes = [ | |
| { | |
| path: '/', | |
| component: Home, | |
| exact: true | |
| }, | |
| { | |
| path: '/gists', | |
| component: Gists |
Here is the list of talks that I found most useful to me.
| kubectl get rs,secrets -o json --namespace old | jq '.items[].metadata.namespace = "new"' | kubectl create-f - |
Этот текст о том, с чего начать прежде чем писать в https://telegram.me/prophp7