- Install XCode from App Store.
- Open XCode and agree to terms and conditions.
xcode-select --install
| ## | |
| # Creates an alias called "git hist" that outputs a nicely formatted git log. | |
| # Usage is just like "git log" | |
| # Examples: | |
| # git hist | |
| # git hist -5 | |
| # git hist <branch_name> | |
| # git hist <tag_name> -10 | |
| ## | |
| git config --global alias.hist "log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short" |
| { | |
| "name": "meanjs", | |
| "description": "Full-Stack JavaScript with MongoDB, Express, AngularJS, and Node.js.", | |
| "version": "0.3.3", | |
| "private": false, | |
| "author": "https://github.com/meanjs/mean/graphs/contributors", | |
| "repository": { | |
| "type": "git", | |
| "url": "https://github.com/meanjs/mean.git" | |
| }, |
| 'use strict'; | |
| /** | |
| * Module dependencies. | |
| */ | |
| var _ = require('lodash'), | |
| glob = require('glob'), | |
| fs = require('fs'); | |
| /** |
| Debugger listening on port 5858 | |
| module.js:338 | |
| throw err; | |
| ^ | |
| Error: Cannot find module './env/undefined' | |
| at Function.Module._resolveFilename (module.js:336:15) | |
| at Function.Module._load (module.js:278:25) | |
| at Module.require (module.js:365:17) | |
| at require (module.js:384:17) | |
| at resolvingConfig (/Volumes/Nishant/Project/contribute/mean/mean/config/config.js:20:3) |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!--Anagrafica del clienti del mercato--> | |
| <anagrafica> | |
| <testata> | |
| <nomemercato id="007">Mercato di test</nomemercato> | |
| <data>Giovedi 18 dicembre 2003 16.05.29</data> | |
| </testata> | |
| <record> | |
| <codice_cliente>5</codice_cliente> | |
| <rag_soc>Miami American Cafe</rag_soc> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!--Anagrafica del clienti del mercato--> | |
| <anagrafica> | |
| <testata> | |
| <nomemercato id="007">Mercato di test</nomemercato> | |
| <data>Giovedi 18 dicembre 2003 16.05.29</data> | |
| </testata> | |
| <record> | |
| <codice_cliente>5</codice_cliente> | |
| <rag_soc>Miami American Cafe</rag_soc> |
| The MIT License (MIT) | |
| Copyright (c) 2015 Justin Perry | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| the Software, and to permit persons to whom the Software is furnished to do so, | |
| subject to the following conditions: |
| [ | |
| { | |
| "id": 1, | |
| "title": "Packers and Movers", | |
| "description": "Some Description of Services", | |
| "totalProviders": 42, | |
| "tags": [ | |
| "Hotels", | |
| "Dolwy" | |
| ] |
| var Ver36 = function() { | |
| "use strict"; | |
| var N = 18, N2 = N*2; | |
| var d18_op; // D18 group operation table | |
| var d18_inv; // D18 group inverse | |
| var perm; // the permutation decomposed into cycles | |
| var a2i,i2a; // ASCII translation tables | |
| var NA=0xff; // invalid digit marker in ASCII table | |
| // initialization code |