Skip to content

Instantly share code, notes, and snippets.

View gusbemacbe's full-sized avatar
🎯
Focusing

Gustavo Benedetto Papi Muñiz Costa gusbemacbe

🎯
Focusing
View GitHub Profile
@gusbemacbe
gusbemacbe / fonts.conf
Last active August 28, 2020 07:54
Color emoji font on Arch Linux (updated)
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
@gusbemacbe
gusbemacbe / Safeness of Cloud Storage Services.md
Last active June 20, 2020 03:41
Safeness of Cloud storage services with two-factor auth and long and strong password

Hello and good evening, cryptographers, hackers and security information specialists!

I would like to hear your judgmental and sceptical feedback about the safeness of [git] cloud storage services accounts with two-factor authentication, and passwords of more than 16 special characters and case-sensitive alphanumerics, and the efficiency and usefulness of ccrypt and scrypt.

I've already been aware two-factor authentication sessions of [git] cloud storage services have already been broken, but the password of more than 20 characters (ambiguous characters, case-sensitive alphanumerics and symbols) can not be cracked because it takes 4 sextillion years to be totally deciphered.

I posted two topics Is it safe to back up the whole Firefox profile folder to my private dotfiles repository at GitHub/GitLab? And at Google Drive and Mega? on subreddit /r/firefox, and [Is it possible to use synchronously and mut

@gusbemacbe
gusbemacbe / README.md
Created October 18, 2021 12:05
For job computer

It is for getting from my personal computer to my job computer.

@gusbemacbe
gusbemacbe / index.html
Created January 11, 2023 10:47
Responsive CSS Web Browser
<h2>Iframe Web Browser</h2>
<div class="browser-window-osx">
<div class="header">
<div class="menu">
<span class="close"></span>
<span class="minimize"></span>
<span class="maximize"></span>
</div>
<div class="search">
<p><span>https://</span>tristanwhite.info</p>
@gusbemacbe
gusbemacbe / custom-reporter-01.ts
Last active June 7, 2023 20:34
Customising CSS Jest coverage files
import fs from 'fs';
import path from 'path';
const sourceFolder = 'assets/css/dark/';
const destinationFolders = ['app', 'pages'];
const baseDirectory = '../coverage';
function copyDirectory(source: string, destination: string) {
if (!fs.existsSync(destination)) {
fs.mkdirSync(destination, { recursive: true });
This file has been truncated, but you can view the full file.
data:application/gzip;base64,H4sIAAAAAAAAA+xbbXMbN5LO5/kVKH6xVEvJerXOzt7VybKceOPYqshxKp+2wBmQRDgz4A5mSDM/7P7A/bF7uhuYF2qk3N3mdutql7UbmxwM0OiXp59uwGv95c+L3M10/uel0Zmpvvr9Pyf4vHjxgv/EZ/9PPLz46vTi8vzs/Or06vwMv+Pb2elXi/8DWR58Gl/rCktWztVPjfut5/ub+3/yuTxTqSsKU9b/+vLlyUk2u9Lm8url+dnFhTk7OzOZvpqbk6vz2dmL83R2/i+X81ny95b5n5/f77PWa1s1/simrjyql6YwR2cnZ+enZyenz3+vNSgerq4uH49//H0v/i8vgBeXv5cAT33+weP/Kftf//jp248/3P/Vawj+Xzxm/4sXJ5f79n9xeXH+1d9Eif/g9r+r3C8mrVWhbVnj/6byr5JEqSN1nZsvZqc+62ruclcYs1EHy7pe+1fPny9svWxmx8gczze6yo1fHuIdpd6DQqjMeLvARFNklsrgP2Vd2VlTO/yiy0zBy5Ru6qWrlJurO3FARQ6o2AFl+bQyZm2qunLly8vRlQcjZP3v9S+YtbcirUAze5n03QI/vdnpOnfju7EYcJTJAJnyk1s/MeG9qRbGqtsKcpcrNzrnfaGr+q0tS5nwjdmY3K0f109nClqsXlqv1mKlJEluutFeHXhX1SZTOl8v9czUNtV5vjtkA3735hZT5xiWklKVb9ZrjI7GLbPKaK++wzq/jkr9RlerVWkXy/r6u0N66ZpN5kkm86WutKghzPdGb2ym7qzXpR2dLoOZ6eEhD/9GzyprcnVnKmMx1dgbCxmTmdyTQsKLlSETfufmOdQz9tpn6KkyX2T4d2ZjS2yyNKNjt+fV+dblm3MfhlcWaIAXTFnC9cde8atiZcSUR3C3qsb8P/3nf9CLjwhUWO3TZrGUV4pfVrY4uTq7Gh8bn4b53VKDm2Xq+i+NnanrXxFdY69pPNA0JKzhqgVU7evxNeJ
@gusbemacbe
gusbemacbe / global.css
Created December 12, 2023 14:28
Pure CSS and HTML drtopdown navbar
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);
body {
background: #212121;
font-size:22px;
line-height: 32px;
color: #ffffff;
@gusbemacbe
gusbemacbe / update-vscode
Created December 13, 2023 11:14
Downloading and installing automatically the new version of VSCode
#!/usr/bin/env bash
# Using wget to download VSCode archive file from the direct URL
wget -O vscode.tar.gz 'https://code.visualstudio.com/sha/download?build=stable&os=linux-x64'
# Create a directory to extract the file
mkdir -p vscode
# Extract the file
tar -xvf vscode.tar.gz -C vscode
@gusbemacbe
gusbemacbe / index.html
Created December 18, 2023 11:35
Simple CSS Dropdown Menu with Hover and :focus-within and Focus states and ARIA
<nav role="navigation">
<ul>
<li><a href="#">One</a></li>
<li><a href="#" aria-haspopup="true">Two</a>
<ul class="dropdown" aria-label="submenu">
<li><a href="#">Sub-1</a></li>
<li><a href="#">Sub-2</a></li>
<li><a href="#">Sub-3</a></li>
</ul>
</li>
@gusbemacbe
gusbemacbe / index.html
Created December 26, 2023 00:47
Modern Button Styles - 45 CSS Only Buttons
<body class="bg-gray-50">
<!-- Section Start -->
<section class="section pt-28 pb-20" id="home">
<div class="mx-10">
<div class="lg:flex justify-center">
<div class="text-center">
<div class="text-center">
<h1 class="text-4xl font-semibold leading-[50px] tracking-wide text-transparent bg-clip-text bg-gradient-to-l from-pink-400 to-blue-600 mb-10">
45 CSS Only Modern Button Styles
</h1>