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
/* | |
Por orden de popularidad | |
Fuente: | |
https://datos.gob.ar/dataset/otros-nombres-personas-fisicas | |
https://www.buenosaires.gob.ar/areas/registrocivil/nombres/busqueda/buscador_nombres.php | |
*/ | |
Isabella, | |
Martina, |
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
/* | |
Por orden de popularidad | |
Fuente: | |
https://datos.gob.ar/dataset/otros-nombres-personas-fisicas | |
https://www.buenosaires.gob.ar/areas/registrocivil/nombres/busqueda/buscador_nombres.php | |
*/ | |
Benjamin, | |
Bautista, |
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
/* Source: https://www.freecodecamp.org/news/the-100-correct-way-to-do-css-breakpoints-88d6a5ba1862/ */ | |
/* phone-only */ | |
@media (max-width: 599px) { | |
/* ... */ | |
} | |
/* tablet-portrait-only */ | |
@media (min-width: 599px) and (max-width: 899px) { | |
/* ... */ |
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
/** | |
* This is a list of the parameters for the gatsby-transformer-sharp fragments | |
* If you are trying to use, for example, '...GatsbyImageSharpFluid' and you are getting this error: | |
* Unknown fragment "GatsbyImageSharpFluid" | |
* Just use the parameters directly | |
* | |
* The simplest set of fields for fixed sharp images | |
* @type {Fragment} | |
* @example | |
* childImageSharp { |
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
//http://simplehtmldom.sourceforge.net | |
require get_template_directory() . '/simple_html_dom.php'; | |
$urls = "https://store.nike.com/us/en_us/pd/sb-icon-mens-hoodie-agklpO/pid-11983778/pgid-12133502 | |
https://store.nike.com/us/en_us/pd/training-utility-mens-long-sleeve-top-4yDbDJ/pid-11857251/pgid-11970545 | |
https://store.nike.com/us/en_us/pd/jordan-sportswear-flight-tech-fleece-mens-full-zip-hoodie-xOpY4K/pid-11528527/pgid-12286332 | |
https://store.nike.com/us/en_us/pd/jordan-sportswear-city-of-flight-mens-jacket-3MOVYl/pid-11924998/pgid-12130627 | |
https://store.nike.com/us/en_us/pd/therma-mens-training-jacket-7DRA7m/pid-11764247/pgid-11970496 | |
https://store.nike.com/us/en_us/pd/jordan-sportswear-wings-1988-mens-hoodie-0jmELv/pid-12127199/pgid-12196381 |
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
scp /Applications/MAMP/htdocs/Ghost/test/content/themes/teller.zip [email protected]:/var/www/ghost/content/themes/. | |
//Despues | |
ssh [email protected] | |
//Ir a la carpeta de Themes | |
cd /var/www/ghost/content/themes | |
//Unzip el archivo | |
unzip NameOfTheme.zip |
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
# Folders # | |
################### | |
framework/temp/*.* | |
framework/cache/*.* | |
# Compiled source # | |
################### | |
*.com | |
*.class |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Test</title> | |
<meta name="description" content=""> | |
<meta name="author" content=""> |
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
###Show Hidden Files### | |
defaults write com.apple.finder AppleShowAllFiles TRUE | |
killall Finder | |
### Hide Hidden Files ### | |
defaults write com.apple.finder AppleShowAllFiles FALSE | |
killall Finder |