These two suggestions are just something that stands out in our preferences, but all in all you will find a lot of cozy high quality places all around the city.
- Delta Two michelin star restaurant, havenβt been but reviews are outstanding
These two suggestions are just something that stands out in our preferences, but all in all you will find a lot of cozy high quality places all around the city.
| const express = require('express') | |
| const bodyParser = require('body-parser'); | |
| const crypto = require('crypto'); | |
| const app = express() | |
| const port = 8000 | |
| const webhook_secret = process.env.WEBHOOK_SECRET || '1234' | |
| app.use(bodyParser.json()); | |
| app.use(bodyParser.urlencoded({ extended: false })); |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Debug CRA Tests", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts", | |
| "args": ["test", "--runInBand", "--no-cache", "--watchAll=false"], | |
| "cwd": "${workspaceRoot}", |
| # Iterate through all invenio repositoried and find which ones changes since | |
| # the since_date. Also find out which repositories have their last commits | |
| # which are not releases | |
| # NOTE: pip install PyGithub | |
| import os | |
| import json | |
| from datetime import datetime | |
| from github import Github |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| # Create | |
| curl -k --header "Content-Type: application/json" --request POST \ | |
| --data '{"title":"Some title", "contributors": [{"name": "Doe, John"}]}' \ | |
| https://localhost:5000/api/records/\?prettyprint\=1 | |
| curl -k --header "Content-Type: application/json" --request POST \ | |
| --data '{"title":"This is a title indeed", "contributors": [{"name": "Da Chris, Pop"}]}' \ | |
| https://localhost:5000/api/records/\?prettyprint\=1 | |
| # GET |
| plugins=( | |
| git | |
| z | |
| zsh-syntax-highlighting | |
| zsh-autosuggestions | |
| ) | |
| source $ZSH/oh-my-zsh.sh | |
| # User configuration |
| windows: | |
| - name: invenio-app-ils | |
| root: ~/Work/invenio-app-ils | |
| layout: even-vertical | |
| panes: | |
| - docker-compose up | |
| - celery worker -A invenio_app.celery -l INFO | |
| - commands: | |
| - workon ils | |
| - code . |
Hi Nicholas,
I saw you tweet about JSX yesterday. It seemed like the discussion devolved pretty quickly but I wanted to share our experience over the last year. I understand your concerns. I've made similar remarks about JSX. When we started using it Planning Center, I led the charge to write React without it. I don't imagine I'd have much to say that you haven't considered but, if it's helpful, here's a pattern that changed my opinion:
The idea that "React is the V in MVC" is disingenuous. It's a good pitch but, for many of us, it feels like in invitation to repeat our history of coupled views. In practice, React is the V and the C. Dan Abramov describes the division as Smart and Dumb Components. At our office, we call them stateless and container components (view-controllers if we're Flux). The idea is pretty simple: components can't