Skip to content

Instantly share code, notes, and snippets.

View gustavonovaes's full-sized avatar

Gustavo Novaes gustavonovaes

View GitHub Profile
@gustavonovaes
gustavonovaes / links.md
Created November 8, 2019 01:27 — forked from akitaonrails/links.md
Links de referência pro Episódio 66 do Canal Akitando
:root {
font-size: 16px;
--font-smaller: 12px;
--font-small: 14px;
--font-normal: 16px;
--font-big: 18px;
--font-bigger: 24px;
--font-bigest: 33px;
@gustavonovaes
gustavonovaes / flex-panels.html
Created August 21, 2019 17:58
Flex vertical panels with transition
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<title>Document</title>
@gustavonovaes
gustavonovaes / reset-xfce4-panel.sh
Created August 20, 2019 00:09
Reset XFCE4 to default settings
# Shut down the panel first,
xfce4-panel --quit
# Kill the xfce4 configuration daemon
pkill xfconfd
# First delete settings for the panel
rm -rf ~/.config/xfce4/panel
# Clear out the settings for xfconfd
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script
src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
#!/bin/sh
# pacman -S xorg-xprop xorg-xwininfo
# i3-get-window-criteria - Get criteria for use with i3 config commands
# To use, run this script, then click on a window.
# Output is in the format: [<name>=<value> <name>=<value> ...]
# Known problem: when WM_NAME is used as fallback for the 'title="<string>"' criterion,
@gustavonovaes
gustavonovaes / ScrollProgress.js
Last active February 11, 2019 20:51
Component that shows the progress of scroll on top of page
import React from 'react'
const ProgressBar = ({ height, color, progress }) => {
const containerStyle = {
position: 'fixed',
top: 0,
left: 0,
padding: 0,
margin: 0,
width: '100%',
@gustavonovaes
gustavonovaes / DB.php
Created February 5, 2019 12:42
Helper para PDO
<?php
class DB
{
/**
* @var \PDO
*/
private $pdo;
public function __construct(string $dsn, string $username, string $passwd, array $options = [])
<?php
const LOGIN = 'o_1233211233';
const API_KEY = 'R_2131233211234232111112223232323232';
function httpGet(string $url) : string
{
if (false === $result = file_get_contents($url)) {
throw new RuntimeException('Request failed');
}
@gustavonovaes
gustavonovaes / node-exit.js
Last active July 24, 2018 23:55
Events to listen to on NodeJS to exit gracefully
// prevent the program to close instantly
process.stdin.resume();
function exitHandler(options, err) {
if (options.cleanup) console.log('clean');
if (err) console.log(err.stack);
if (options.exit) process.exit();
}
// do something when app is closing