A color scheme for LibreOffice based on LibreOffice-BreezeDark by RaitaroH. Fits better with Steam Grey for LibreOffice.
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
## | |
# Bash-only parser that leverages sed and awk to parse simple yaml files. | |
# Code based from: http://stackoverflow.com/a/21189044 | |
# Usage: eval $(parse_yaml sample.yml) | |
# or | |
# Usage: variable = parse_yaml sample.yml | |
# | |
# @param $1 the path of the .yml file | |
# @param $2 an optional prefix to the name of the variables | |
# @author stefan-farestam |
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
const Nightmare = require('nightmare'); | |
var NightmareInitializer = {}; | |
NightmareInitializer.initialize = function (URLToTest, callback) { | |
var nightmare = Nightmare({ show: true, width: 1024, height: 768 }); | |
auth = { | |
username: 'john', | |
password: 'doe' | |
}; |
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
e : o : a : os : as : um : uma : uns : umas : no : na : nos : nas : de : do : da : dos : das : pelo : pela : pelos : pelas : entre : sobre : |
Nº | Site | Descrição |
---|---|---|
1 | We Work Remotely | Oportunidades de trabalho remoto em diversos setores – desde negócios a copywriting. |
2 | Remoteok.io | Trabalhos em várias áreas e uma comunidade de mais de um milhão de trabalhadores remotos. |
3 | RemoteOnly | Para quem gostaria de trabalhar com suporte ao consumidor, design, desenvolvimento de software, administração e marketing. |
4 | Working Nomads | Vagas em muitas áreas e possibilidade de programar alertas para oportunidades específicas. |
5 | CryptoJobs | Trabalhos ligados a blockchain e criptomoedas. |
6 | Satoshi Careers | Plataforma que compila trabalhos remotos com criptomoeda. |
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> | |
<title>Chave de Acesso NF-e</title> | |
<style type="text/css"> | |
.container { | |
display: flex; | |
flex-direction: column; | |
font-family: Arial, sans-serif; | |
width: 100%; |
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
;----------------------------------------------------------------------------------------------------------------------- | |
; AddAnimatedClick.ahk - Animate mouse clicks | |
; | |
; See https://autohotkey.com/boards/viewtopic.php?f=6&t=28837 | |
;----------------------------------------------------------------------------------------------------------------------- | |
#SingleInstance, Force | |
#Persistent | |
;----------------------------------------------------------------------------------------------------------------------- |
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
#NoEnv | |
#SingleInstance force | |
#InstallKeybdHook | |
Global KeyStates, MouseState, ClickCount, IdleDelay, LargeDisplay | |
IdleDelay=2000 | |
LargeDisplay=1 | |
; 0 = Tooltip near mouse pointer |
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
Date::toMSJSON = -> | |
"/Date(" + @getTime() + ")/" | |
String::convertMSJSONtoDate = -> | |
if @startsWith '/Date(' | |
timestamp = @substr 6, 13 | |
new Date(parseInt timestamp) |
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
; Press Ctrl+Shift+Space to set any currently active window to be always on top. | |
; Press Ctrl+Shift+Space again set the window to no longer be always on top. | |
; Source: https://www.howtogeek.com/196958/the-3-best-ways-to-make-a-window-always-on-top-on-windows | |
^+SPACE:: | |
WinGetTitle, activeWindow, A | |
if IsWindowAlwaysOnTop(activeWindow) { | |
notificationMessage := "The window """ . activeWindow . """ is now always on top." | |
notificationIcon := 16 + 1 ; No notification sound (16) + Info icon (1) | |
} |