- Rename your local branch. If you are on the branch you want to rename:
git branch -m new-name
If you are on a different branch:
| description "Site Name" | |
| author "Your Name" | |
| # Start service after everything loaded | |
| start on (local-filesystems and net-device-up IFACE=eth0) | |
| stop on shutdown | |
| # Automatically restart service | |
| respawn | |
| respawn limit 3 15 |
| server { | |
| listen 80; | |
| # Your server's IP | |
| server_name 11.222.33.44; | |
| # Uncomment to enable: | |
| # access_log /var/log/nginx/log/host.access.log main; | |
| location / { |
| [Unit] | |
| Description=NodeJS Startup | |
| After=network.target | |
| [Service] | |
| ExecStart=/usr/bin/nodejs /var/www/repo/build/server | |
| Environment=NODE_ENV=production | |
| User=nodejs | |
| Restart=on-failure |
git branch -m new-name
If you are on a different branch:
Add your Node user. If Apache or something else this could be www-data.
sudo adduser nodejs
Add users to that group to allow access to the www directory.
sudo usermod -aG nodejs <username>
| // Taken from https://bost.ocks.org/mike/shuffle/ | |
| function shuffle(array) { | |
| var m = array.length, t, i; | |
| // While there remain elements to shuffle… | |
| while (m) { | |
| // Pick a remaining element… | |
| i = Math.floor(Math.random() * m--); |
| // Taken from https://stackoverflow.com/questions/22367711/construct-hierarchy-tree-from-flat-list-with-parent-field | |
| function treeify(list, idAttr, parentAttr, childrenAttr) { | |
| if (!idAttr) idAttr = 'id'; | |
| if (!parentAttr) parentAttr = 'parent'; | |
| if (!childrenAttr) childrenAttr = 'children'; | |
| var treeList = []; | |
| var lookup = {}; | |
| list.forEach(function(obj) { | |
| lookup[obj[idAttr]] = obj; |
| // Taken from https://stackoverflow.com/questions/33063213/pdf-js-with-text-selection | |
| PDFJS.getDocument('file.pdf').then(function(pdf){ | |
| var page_num = 1; | |
| pdf.getPage(page_num).then(function(page){ | |
| var scale = 1.5; | |
| var viewport = page.getViewport(scale); | |
| var canvas = $('#the-canvas')[0]; | |
| var context = canvas.getContext('2d'); | |
| canvas.height = viewport.height; | |
| canvas.width = viewport.width; |
| git config --unset-all core.ignorecase && git config --system core.ignorecase false |