This file contains 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
{ | |
"name": "Keychron K3 Pro ANSI White", | |
"vendorProductId": 875823667, | |
"macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
"layers": [ | |
[ | |
"KC_ESC", | |
"KC_BRID", | |
"KC_BRIU", | |
"CUSTOM(4)", |
This file contains 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
{ | |
"name": "Keychron K3 Pro ANSI White", | |
"vendorProductId": 875823667, | |
"macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
"layers": [ | |
[ | |
"KC_ESC", | |
"KC_BRID", | |
"KC_BRIU", | |
"CUSTOM(4)", |
This file contains 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
plugins { | |
id 'io.micronaut.library' version '3.5.1' | |
} | |
version "0.1" | |
group "com.example" | |
repositories { | |
mavenCentral() | |
} |
This file contains 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
# CUSTOM geoffgarside theme | |
# .oh-my-zsh/themes/geoffgarside.zsh-theme | |
declare -A archs | |
archs=( | |
["arm64"]="$bg_bold[cyan]%}%{$fg_bold[white]%}m1%{$reset_color%}" | |
["x86_64"]="$bg_bold[yellow]%}%{$fg_bold[white]%}x86%{$reset_color%}" | |
) | |
arch=$(uname -m) | |
label=$archs[$arch] |
This file contains 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
daemon off; | |
#Heroku dynos have at least 4 cores. | |
worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>; | |
events { | |
use epoll; | |
accept_mutex on; | |
worker_connections 1024; | |
} |
This file contains 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 App = ({name}) => { | |
return ( | |
<h1>Hello {name}</h1> | |
); | |
}; | |
ReactDOM.render(<App name="World" />, document.getElementById("App")); |
This file contains 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
db: | |
image: postgres:9.6.3-alpine | |
ports: | |
- "5432" | |
web: | |
build: . | |
command: bundle exec rails s -p 9000 -b '0.0.0.0' | |
environment: | |
PORT: 9000 | |
links: |
This file contains 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
FROM ruby:2.4.1 | |
MAINTAINER "João Tarla" <[email protected]> | |
RUN apt-get update -qq && apt-get install -y -f --force-yes apt-transport-https && \ | |
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5 && \ | |
echo deb http://archive.ubuntu.com/ubuntu precise main universe > /etc/apt/sources.list && \ | |
echo deb http://archive.ubuntu.com/ubuntu precise-updates main universe >> /etc/apt/sources.list && \ | |
echo deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main >> /etc/apt/sources.list && \ | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ |
This file contains 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
image: "ruby:2.3.1" | |
variables: | |
POSTGRES_DB: "your_project-test" | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "" | |
RAILS_ENV: "test" | |
SETUP_DB: "false" | |
DATABASE_URL: "postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres:5432/$POSTGRES_DB" |
This file contains 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
/* | |
Some simple Github-like styles, with syntax highlighting CSS via Pygments. | |
*/ | |
body{ | |
font-family: helvetica, arial, freesans, clean, sans-serif; | |
color: #333; | |
background-color: #fff; | |
border: none; | |
line-height: 1.5; | |
margin: 2em 3em; |
NewerOlder