tar -zcvf nombreDelArchivo.tar.gz public/js/modules/all.js frontend/js/application/yoson.js
This file contains hidden or 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
| # Docker | |
| # Build a Docker image | |
| # https://docs.microsoft.com/azure/devops/pipelines/languages/docker | |
| trigger: | |
| - develop | |
| - release/* | |
| - main | |
| resources: |
This file contains hidden or 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
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | |
| <HTML> | |
| <HEAD> | |
| <TITLE>Email Signature</TITLE> | |
| <META content="text/html; charset=utf-8" http-equiv="Content-Type"> | |
| </HEAD> | |
| <BODY style="font-size: 10pt; font-family: Arial, sans-serif;"> | |
| <table style="width: 515px; font-size: 10pt; font-family: Arial, sans-serif;" cellpadding="0" cellspacing="0"> |
This file contains hidden or 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
| # touch ~/.ssh/config | |
| #therajanmaurya account | |
| Host github.com-therajanmaurya | |
| HostName github.com | |
| User git | |
| IdentityFile ~/.ssh/id_rsa | |
| #example account | |
| Host github-example | |
| HostName github.com |
This file contains hidden or 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 numpy as np | |
| class Perceptron: | |
| """Clasificador Perceptron basado en la descripción del libro | |
| "Python Machine Learning" de Sebastian Raschka. | |
| Parametros | |
| ---------- | |
| eta: float |
This file contains hidden or 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
| #! /usr/bin/env python2.7 | |
| #coding=utf-8 | |
| """ | |
| Use positive and negative review set as corpus to train a sentiment classifier. | |
| This module use labeled positive and negative reviews as training set, then use nltk scikit-learn api to do classification task. | |
| Aim to train a classifier automatically identifiy review's positive or negative sentiment, and use the probability as review helpfulness feature. | |
| """ |
This file contains hidden or 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
| #Backup | |
| mysqldump --opt -u root -p acffaa > acffaa.sql | |
| #Retore | |
| mysql -u root -p acffaa < acffaa.sql |
This file contains hidden or 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 | |
| set_time_limit(0); | |
| require_once __DIR__ . '/../vendor/autoload.php'; | |
| use Knp\Provider\ConsoleServiceProvider; | |
| use ORM\Provider\DoctrineORMServiceProvider; | |
| $app = new Silex\Application(); |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # script: watch | |
| # author: Mike Smullin <mike@smullindesign.com> | |
| # license: GPLv3 | |
| # description: | |
| # watches the given path for changes | |
| # and executes a given command when changes occur | |
| # usage: | |
| # watch <path> <cmd...> | |
| # |
This file contains hidden or 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 xrandr --newmode "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync Vsync | |
| xrandr --addmode DVI-0 "1280x1024_60.00" |