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
<?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> |
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
<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 |
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
- 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 |
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
Procfile: | |
web: npm start | |
package.json: | |
"start": "node /dist/project/abc.js" | |
"build": "tsc" | |
"dependencies":[ | |
.. | |
"tslint": "x.x.xx", |
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
1. slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX | |
2. slmgr /skms kms8.msguides.com | |
3. slmgr /ato | |
Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |
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
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``` | |
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
# "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: |
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
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: | |
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
# file ~/.ssh/config | |
# JrogeT | |
Host github.com | |
HostName github.com | |
User jroget | |
IdentitiesOnly=yes | |
PreferredAuthentications publickey | |
PasswordAuthentication no | |
IdentityFile ~/.ssh/jroget_github |
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 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 |
NewerOlder