###########################
### Common Applications ###
###########################
#Basic
sudo pacman -Sy flatpak appimagelauncher &&
flatpak install com.github.tchx84.Flatseal
## If exists pulseaudio
sudo pacman -Rdd pulseaudio pulseaudio-bluetooth pulseaudio-qt pulseaudio-alsa pulseaudio-ctl pulseaudio-zeroconf
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
javascript: (function() { | |
const appListParent = document.querySelector('li[data-testid]').parentElement; | |
let alternativesApps = []; | |
document.querySelector('nav[aria-label="Pagination Navigation"]').remove(); // Remove navigation links | |
const container = document.createElement("div"); | |
for (i = 2; i <= window.__NEXT_DATA__.props.pageProps.pagingMeta.totalPages; i++) | |
{ | |
fetch(window.location.href + "?p=" + i).then(res => | |
{ | |
return res.text(); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Data analysis</title> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
</head> | |
<body> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Пример зацикленной SVG-анимации, заданной в CSS</title> | |
</head> | |
<body> | |
<style> | |
* { |
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
#!/usr/bin/env bash | |
# this script save my setup steps | |
# tested on Ubuntu 20.04 | |
if [ "$UID" -ne 0 ]; then | |
echo "you are not root, you cannot execute this script!!!" | |
exit 1 | |
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
function BACKUPMENU { | |
echo "******* -select- *******" | |
echo "**************************" | |
echo " 1) = Backup with RESTIC " | |
echo " 2) = RESTORE with RESTIC" | |
echo " 3) = BACKUP with TAR " | |
echo " 4) = RESTORE with TAR " | |
echo " *) = EXIT " | |
echo "**************************" |
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
# gspm project.yml <https://gs-project-manager-docs.readthedocs.io/en/latest/schema.html> | |
name: Project | |
path: . | |
version: 0.0.0 | |
default_type: git | |
author: Max | |
email: [email protected] | |
twitter: (at)twitter | |
copyright: Copyright (c) 2020 | |
license: License Type |
NewerOlder