- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<v-app> | |
<v-content> | |
<v-container grid-list-sm> | |
<v-layout row wrap> | |
<v-flex md9 xs8 offset-xs2 v-for="letter in this.string"> | |
<v-card elevation="18" color="transparent" hover> | |
<v-card-text id='letters' class="text-xs-center headline"> | |
{{letter}} | |
</v-card-text> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @copyright Copyright (c) 2016, ownCloud, Inc. | |
* | |
* @author André Gaul <[email protected]> | |
* @author Arthur Schiwon <[email protected]> | |
* @author Christian Berendt <[email protected]> | |
* @author Christopher T. Johnson <[email protected]> | |
* @author Johan Björk <[email protected]> | |
* @author Jörn Friedrich Dreyer <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# search and copy/move files from folder structure to another location | |
find SOURCE -name "*.jpg" -exec cp '{}' LOCATION \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* COMMAND LINE */ | |
mongod & // start mongo server on port 27017 by default | |
mongo mydb // launch mongo shell using the specified database | |
// importing & exporting | |
mongoimport -d mydb -c mycollection --jsonArray --file input.json | |
mongoimport -d mydb -c mycollection --headerline --type csv --file input.csv | |
mongoexport -d mydb -c mycollection --out output.json | |
/* MONGO SHELL */ |