Skip to content

Instantly share code, notes, and snippets.

View rn4n's full-sized avatar

RN4N rn4n

View GitHub Profile
@rn4n
rn4n / names.md
Created May 4, 2021 11:46
💡 Project Names

Male

Alioth: Alioth comes from Arabic roots and translates to "fat tail of the sheep". Alioth is the brightest star in the Great Bear constellation, Ursa Major. It's famed for being a navigational star often used by sailors in bygone days.

Altair: Depending on the translation, Altair can mean "the flying one," "soar," or "bird." The name is Arabic but has partly Greek origins. Altair is in the Aquila constellation and is the 11th brightest star in the galaxy. It's a space-worthy name but could be confused with a commercial airline.

Apollo: Apollo was the son of Zeus and a principal deity in Greek mythology. Apollo is known primarily in the U.S. as the NASA space program between 1961 and 1972, which took the first humans to the moon. Apollo might be too much of a burden as a first name but would make an unusual middle name.

Aries: Aries, pronounced, AYR-eez, comes from Latin. This name is best known as the first zodiac sign "The Ram", a constellation of brilliant stars located in the nort

@rn4n
rn4n / usage.md
Created February 25, 2021 10:32
Vue 3 snippet for vscode

Usage

Just type comp and press TAB

@rn4n
rn4n / media_queries.styl
Last active April 12, 2021 04:06
Media queries mixin for Stylus
/**
* Thanks to Martin Laine
* http://1pixelout.net/2015/10/02/simple-breakpoint-media-queries-with-stylus/
**/
media_queries = {
mobile : "only screen and (max-width: 600px)",
tablet : "only screen and (min-width: 601px) and (max-width: 800px)",
desktop : "only screen and (min-width: 801px)"
}
@rn4n
rn4n / refresh_internet_settings.ps1
Created May 14, 2019 19:30
Update the internet settings.
<#
.DESCRIPTION
Atualiza as configurações de Internet, deve-se chamar este script após alterar
uma configuração de proxy, por exemplo.
#>
function RefreshInternetSettings(){
$signature = @'
[DllImport("wininet.dll", SetLastError = true, CharSet=CharSet.Auto)]
public static extern bool InternetSetOption(IntPtr hInternet, int dwOption, IntPtr lpBuffer, int dwBufferLength);
'@