Skip to content

Instantly share code, notes, and snippets.

View JrogeT's full-sized avatar
🏕️
Working from Home

Jorge Rodrigo Torrez Aramayo JrogeT

🏕️
Working from Home
View GitHub Profile
<?xml version="1.0"?>
<ads>
<ad id="68">
<id>68</id>
<last_updated>2021-11-15T06:20:00Z</last_updated>
<headline>Simple Bike Version 2</headline>
<text>This is the text Version 2</text>
<price>4999</price>
<type>TYPE_OF_THE_PRODUCT_VERSION_2</type>
<category>/cykler-og-tilbehor</category>
<Danbase><firmanr>221</firmanr><firmanavn>Klarup Caravan A/S</firmanavn><gade>Jørgensmindevej 22</gade><Postnr>9270</Postnr><PostBy>Klarup</PostBy><web>http://www.klarupcaravan.dk/</web><tlf>98318888</tlf><Vogn><id>148960</id><Last_updated>2024-08-21T16:00:00</Last_updated><kategori>Campingvogn</kategori><weburl>https://www.klarupcaravan.dk/produkter/campingvogn/brugt/knaus-scandinavian-selection-580-uf/148960?p=148960</weburl><kategoriUrl>http://www.guloggratis.dk/camping/campingvogne/knaus/ </kategoriUrl><Headline>2021 - Knaus Scandinavian Selection 580 UF </Headline><filter><producent>Knaus</producent><model>Scandinavian Selection 580 UF</model><pris>279.980</pris><aargang>2021</aargang><sengetype>Fransk seng</sengetype><egenvaegt>1549</egenvaegt><totaltvaegt>1800</totaltvaegt></filter><space /><kategori>Brugt</kategori><Lagernr>14315</Lagernr><HovedBeskrivelse>Super lækker vintervogn med centralvarme og vandbåren gulvvarme. Indrettet med stor lækker rundsiddegruppe i front under den store panoramarude o
- Activating wsl:
https://techcommunity.microsoft.com/t5/windows-11/how-to-install-the-linux-windows-subsystem-in-windows-11/td-p/2701207/page/2
-----------INSIDE WSL-------------
- Installing Docker engine:
https://docs.docker.com/engine/install/ubuntu/
**problem related to "sudo apt-get update: jammy-security InRelease" -> https://stackoverflow.com/questions/62314789/no-internet-connection-on-wsl-ubuntu-windows-subsystem-for-linux
/etc/resolv.conf -> nameserver 8.8.8.8
@JrogeT
JrogeT / NodeTs deploy heroku
Last active September 27, 2022 00:08
steps
Procfile:
web: npm start
package.json:
"start": "node /dist/project/abc.js"
"build": "tsc"
"dependencies":[
..
"tslint": "x.x.xx",
1. slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
2. slmgr /skms kms8.msguides.com
3. slmgr /ato
Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
@JrogeT
JrogeT / steps
Created January 23, 2022 20:23
Flutter Google Login
check if all your current project dependencies support null safety by using:
```dart pub outdated --mode=null-safety```
Then, run the following command to migrate:
```dart migrate```
@JrogeT
JrogeT / laravel in apache(xampp)
Last active June 5, 2024 15:04
xampp windows configuration to host php project
# "xampp/apache/conf/extra/httpd-vhosts.conf"
# "/opt/lampp/etc/extra"
<VirtualHost *:80>
DocumentRoot "C:/Projects/Php/Test/public"
ServerName test.localhost
</VirtualHost>
in ubuntu:
@JrogeT
JrogeT / .gitpod.yml.example
Last active November 18, 2021 15:23
Gitpod configuration file for a new workspace
tasks:
- name: Configuring Wakatime
command: |
echo "[settings]" >> /home/gitpod/.wakatime.cfg
echo "api_key = $WAKATIME_API_KEY" >> /home/gitpod/.wakatime.cfg
exit
- name: Configuring Laravel Project
command: |
@JrogeT
JrogeT / config
Last active October 20, 2022 12:51
shh configuration host names
# file ~/.ssh/config
# JrogeT
Host github.com
HostName github.com
User jroget
IdentitiesOnly=yes
PreferredAuthentications publickey
PasswordAuthentication no
IdentityFile ~/.ssh/jroget_github
@JrogeT
JrogeT / ubuntu-composer
Last active June 26, 2024 10:43
install composer
sudo apt update
sudo apt install php-cli unzip
cd ~
curl -sS https://getcomposer.org/installer -o composer-setup.php
HASH=`curl -sS https://composer.github.io/installer.sig`
echo $HASH
php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
composer