Skip to content

Instantly share code, notes, and snippets.

@5pid3rm3n
5pid3rm3n / index.html
Created September 6, 2019 21:32
Vuetify
<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>
@5pid3rm3n
5pid3rm3n / Amazon.php
Created February 28, 2019 19:07
AmazonS3.php for NC fixed
<?php
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author André Gaul <gaul@web-yard.de>
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
* @author Christian Berendt <berendt@b1-systems.de>
* @author Christopher T. Johnson <ctjctj@gmail.com>
* @author Johan Björk <johanimon@gmail.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
# search and copy/move files from folder structure to another location
find SOURCE -name "*.jpg" -exec cp '{}' LOCATION \;
@5pid3rm3n
5pid3rm3n / mongo-cheat-sheet.js
Created August 5, 2018 13:50 — forked from raineorshine/mongo-cheat-sheet.js
Cheat Sheet: MongoDB
/* 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 */
@5pid3rm3n
5pid3rm3n / webdev_online_resources.md
Created July 16, 2018 19:39 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)