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
# Conectarse al servidor remoto | |
$ ssh [email protected] | |
# Hago el dump en el sistema remoto | |
$ mongodump | |
# Comprimo el archivo en el sistema remoto | |
$ tar -zcvf armatubicicleta.tgz dump/armatubicicleta/ | |
# Me descargo el archivo a mi sistema local (desde la terminal local) | |
$ scp [email protected]:/root/dump/armatubicicleta.tgz /home/joaco/armatubicicleta.tgz | |
# Descomprimo el archivo | |
$ tar -zxvf armatubicicleta.tgz |
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
{ | |
"scopes": [ | |
// MINIMAL AUTO TRIGGER - NOT RECOMMENDED | |
// will always query files for auto completions | |
// { | |
// "scope": ".", | |
// "extensions": ["*"], | |
// "auto": true | |
// }, | |
{ |
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
// When meteor starts | |
Meteor.startup(function () { | |
// Recursive function to replace urls | |
function fixUrl (object) { | |
_.map(object, function (value, key) { | |
if (_.isArray(value)) { | |
_.map(value, function (value2, key2) { | |
value2 = fixUrl(value2) | |
}) | |
} else if (_.isObject(value)) { |
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
// Original price | |
var price = '$2.968.945' | |
// remove $ and . | |
price = price.replace(/\$/g,'').replace(/\./g,'') | |
// convert to Int | |
price = parseInt(price) | |
// Divide by 1000 and truncate to remove extra digits | |
price = Math.trunc(price/1000) | |
// Format the final price | |
price = price*1000-10 |
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
uploadImage = function (itemCode) { | |
// get the image link | |
var image = Meteor.call('getImageLink', itemCode) | |
// Upload to gridFs (vsivi:file-collection) | |
var imageStream = fc.upsertStream({ filename: itemCode + '.jpg', | |
contentType: 'image/jpeg', | |
metadata: {} | |
}) |
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
import React from 'react' | |
import { Meteor } from 'meteor/meteor' | |
import { createContainer } from 'meteor/react-meteor-data' | |
import {grey400} from 'material-ui/styles/colors' | |
import ArrowDownward from 'material-ui/svg-icons/navigation/arrow-downward' | |
import {Table, TableBody, TableHeader, TableHeaderColumn, TableRow} from 'material-ui/Table' | |
import _ from 'underscore' | |
class NoItems extends React.Component { | |
render () { |
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
<snippet> | |
<content><![CDATA[ | |
import React from 'react' | |
const propTypes = { | |
} | |
export default class ${1:${TM_FILENAME/^(\w)|(?:-(\w))|(?:.jsx)/(?1\u$1:)(?2\u$2:)/g:ComponentName}} extends React.Component { | |
constructor (props) { |
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
#!/bin/bash | |
set -e | |
echo "" | |
echo "====> Creating app bundle..." | |
echo "" | |
TMPFOLDER=$(mktemp -d) | |
meteor build --architecture=os.linux.x86_64 $TMPFOLDER --server-only --allow-superuser | |
echo "" | |
echo "====> Pushing Bundle" | |
echo "" |
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
sudo /etc/init.d/bluetooth restart |
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
sudo alsa force-reload |
OlderNewer