dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --install
wsl --set-default-version 2
-
ChatGPT La IA por excelencia, pidele lo que quieras y ella te lo dara, multiples usos, 100% recomendado y más aun con la extensión AIPRM https://chat.openai.com/chat
-
Bing con acceso a Internet y enfocado a búsquedas https://www.bing.com/
-
You
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
document | |
.querySelectorAll("*") | |
.forEach(el => { | |
const { offsetWidth } = document.documentElement | |
if (el.offsetWidth > offsetWidth) { | |
console.log(el); | |
} | |
}) |
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
name: deploy-production | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: |
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
name: deploy-production | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: |
Es una ayuda memora en referencia a la excelente información que está en Mercadopago Developers
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 | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
// Libreria Cloud Log para Codeigniter | |
use Google\Cloud\Logging\LoggingClient; | |
class Cloudlog | |
{ | |
private $projectId; | |
private $logging; |
A Pen by Bradley Treweek on CodePen.
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
#!/bin/bash | |
clear | |
read -p "Ingrese el nombre de usuario:, (ej. dplenco):" USER; | |
read -p "Ingrese el host del dominio:, (ej. google.com):" DOMAIN; | |
sudo groupadd $USER | |
sudo useradd -g $USER -G www-data -m -k /home/diegoplenco/skel_dir/ -s /bin/bash $USER | |
touch $USER.conf |
NewerOlder