NOTE: This post now lives (and kept up to date) on my blog: http://hakunin.com/rails3-load-paths
Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.
| git reset --hard | |
| git clean -f -d | |
| Description: | |
| ============ | |
| Git Tips: Remove untracked files and directories from the working | |
| tree when switching branches or checking out different commits. | |
| Explanation: |
| // Inspired by https://github.com/logicalparadox/backbone.iobind/blob/master/lib/sync.js | |
| // Overwrite Backbone.sync method | |
| Backbone.sync = function(method, model, options){ | |
| // create a connection to the server | |
| var ws = new WebSocket('ws://127.0.0.1:1234'); | |
| // send the command in url only if the connection is opened | |
| // command attribute is used in server-side. | |
| ws.onopen = function(){ |
| #!/bin/bash | |
| # Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/> | |
| # This script is licensed under GNU GPL version 2.0 or above | |
| # Source: http://www.cyberciti.biz/tips/move-mysql-users-privileges-grants-from-one-host-to-new-host.html | |
| # Author Vivek Gite <[email protected]>, | |
| # Peter Geil <[email protected]> | |
| # ------------------------------------------------------------ | |
| # SETME First - local mysql user/pass | |
| _lusr="src-db-user" | |
| _lpass="src-db-pw" |
| git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n |
NOTE: This post now lives (and kept up to date) on my blog: http://hakunin.com/rails3-load-paths
Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.
| <?php | |
| namespace NoxLogic\DemoBundle\Form\Type; | |
| use Doctrine\ORM\EntityManager; | |
| use NoxLogic\DemoBundle\Entity\Province; | |
| use Symfony\Component\Form\AbstractType; | |
| use Symfony\Component\Form\FormBuilderInterface; | |
| use Symfony\Component\Form\FormEvent; | |
| use Symfony\Component\Form\FormEvents; |
| openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr | |
| http://support.godaddy.com/help/article/3601/generating-a-certificate-signing-request-nginx | |
| http://support.godaddy.com/help/article/4976/rekeying-an-ssl-certificate | |
| # Be sure to remember to chain them! | |
| cat gd_bundle-g2-g1.crt >> yourdomain.crt | |
| # Move 'em | |
| sudo mv yourdomain.crt /etc/ssl/certs/yourdomain.crt |
Пропустить теорию и перейти прямо к задачам
Ссылка на учебник: http://learn.javascript.ru
Сразу расскажу про несколько особенностей яваскрипта, о которых может быть не написано (или мало написано) в учебниках, но которые стоит понимать:
I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might be really unintuitive at first but lambda functions have three states.
| NodeJS Chaincode Deploy and Test | |
| start Docker | |
| cd /fabric-samples/basic-network /basic network | |
| Edit docker-compose.yml change line no 72 comment and 73 uncomment. //prod to devp network | |
| Edit start.sh add ‘cli’ in 15 no. line (docker-compose -f docker-compose.yml up -d ca.example.com orderer.example.com peer0.org1.example.com couchdb cli) | |
| ./start.sh //run start script to up network | |
| docker logs -f peer0.org1.example.com //log (1 terminal) | |
| docker exec -it cli bash //peer (2 terminal) | |
| cd /fabric-samples/chaincode/hyperledger/fabric/peer/nodefiles (3 terminal) |