https://youtu.be/BxlcSXKoiiU
wsl --install wsl --set-default-version 2 wsl --help wsl -l -o wsl -l -all
# elementaryOS 8 after install | |
sudo apt update && sudo apt upgrade | |
sudo ubuntu-drivers autoinstall | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg curl wget | |
# sudo apt install libdvd-pkg | |
sudo apt install rar unrar zip unzip xz-utils p7zip-full p7zip-rar sharutils file-roller | |
sudo apt install synaptic gdebi dconf-editor |
#!/bin/bash | |
####################################################################################### | |
# | |
# MIT License | |
# | |
# Copyright (c) 2014-2024 HomeInside Inc. and other contributors, | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
https://youtu.be/BxlcSXKoiiU
wsl --install wsl --set-default-version 2 wsl --help wsl -l -o wsl -l -all
gen-req reads a 'pyproject.toml' (Poetry) file and exports the list of dependencies to a 'requirements.txt' file, in a more easily understood, simple and traditional way.
Copyright (c) 2021 Jorge Brunal Perez [email protected]
gen-req is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either
# KDE Neon 15.18.0 post install | |
# first step, upgrade | |
sudo pkcon refresh | |
sudo pkcon update | |
# opera web browser | |
wget -qO- https://deb.opera.com/archive.key | sudo apt-key add - | |
sudo add-apt-repository 'deb https://deb.opera.com/opera-stable/ stable non-free' | |
sudo apt-get update |
# elementary OS Hera post install | |
# first step, upgrade | |
sudo apt update && sudo apt upgrade | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install libavcodec-extra ffmpeg | |
sudo apt install firefox vlc | |
sudo apt install screenfetch flameshot |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>docsify</title> | |
<link rel="icon" href="_media/favicon.ico"> | |
<meta name="keywords" content="doc,docs,documentation,docsify,gitbook,creator,generator,github,jekyll,github-pages"> | |
<meta name="description" content="A magical documentation generator."> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
# elementary OS post install | |
sudo apt update && sudo apt upgrade | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg | |
sudo apt install firefox vlc | |
sudo apt install audacious audacious-plugins | |
sudo apt install screenfetch |
#!/bin/bash | |
if [ $# -le 0 ];then | |
echo -e $0: Especifique un nombre de archivo javascript; | |
exit 1; | |
fi | |
JS=$1; | |
function convert() { | |
if [ -e $JS ]; then | |
FILENAME=$(basename "$JS") |