This UserScript allows you to extract and display CV data from LinkedIn profiles and generate a custom CV in PDF format.
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
import matplotlib.pyplot as plt | |
import math | |
def probabilidade(numeros_escolhidos): | |
""" | |
Calcula a probabilidade de acertar exatamente 6 números em um conjunto maior. | |
Parameters: | |
numeros_escolhidos (int): Número de elementos escolhidos. |
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
// ==UserScript== | |
// @name Azure Devops Git Helper | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Adds a button beside a work item number that copies a suggested branch name for the item to the clipboard. | |
// @author Saulo Dias | |
// @match https://dev.azure.com/*/_workitems/edit/* | |
// @match https://*.visualstudio.com/*/_workitems/edit/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=azure.com | |
// @grant none |
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
mkdir -p _output | |
for i in *.svg | |
do | |
inkscape --actions="select-all;selection-ungroup;select-all;selection-ungroup;select-all;object-stroke-to-path;" --export-filename=- $i > _output/$i | |
echo "done with "$i | |
done |
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
import { useState, useEffect } from 'react' | |
// Check if the code is running in the browser (Next.js support) | |
const isClient = typeof window !== 'undefined' | |
type StorageType = 'localStorage' | 'sessionStorage' | |
/** | |
* A prefix to identify session and local storage keys saved using | |
* the storage hooks in this application. |
Este script adiciona botões na grade horária do CEFET/RJ para exportar as aulas para o Google Calendar. Também é possível exportar em massa clicando no botão no canto superior direito do calendário. O arquivo salvo é aceito pelo Google Calendar, Outlook Calendar, Apple Calendar, e outras aplicações de calendário que suportam o formato ICS.
Clique aqui para ir para a página da extensão, e depois clique no botão Usar no Chrome
. O Tampermoney é um gerenciador de userscript para o Google Chrome. Ele permite que scripts de terceiros sejam utilizados para adicionar funcionalidade a páginas da web, como botões de atalho, customização de elementos e etc.
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" /> | |
<title>parseTable</title> | |
</head> | |
<body> | |
<table> | |
<thead> | |
<tr> |