Skip to content

Instantly share code, notes, and snippets.

View julia-'s full-sized avatar

Julia julia-

View GitHub Profile
@julia-
julia- / readme.md
Created September 23, 2018 01:49 — forked from benstr/readme.md
Gist Markdown Cheatsheet

#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6


Paragraph

@julia-
julia- / less.md
Created September 22, 2018 04:05 — forked from nnja/less.md
A cheatsheet for using less on the command line

Tips for using less on the command line.

To navigate:

  • f = for next page
  • b = for previous page

To search:

  • /<query>
@julia-
julia- / config-editor.md
Created September 22, 2018 04:01 — forked from nnja/config-editor.md
Configure git editor

Set which editor git should use.

This is the program that will open during a commit with no -m flag, a merge, a rebase, etc...

Select from any installed editor. Examples:

  • emacs: emacs
  • vi: vi or vim
@julia-
julia- / antd_sc_example.js
Created September 19, 2018 05:18 — forked from newswim/antd_sc_example.js
Wrapping Ant Design components with Styled Components
import { Link } from 'react-router-dom'
import { Badge, Col, Menu } from 'antd'
const StyledBadge = styled(Badge)`
.ant-badge-count {
background-color: #7ECBBF;
color: white;
box-shadow: 0 0 0 1px #d9d9d9 inset;
}
`

#WDI Week 3 Notes

##Monday

Australia Day Public Holiday

##Tuesday

###CRUD

@julia-
julia- / readme.md
Last active August 29, 2015 14:16 — forked from ga-wolf/readme.md

Nucleotide Count

DNA is represented by an alphabet of the following symbols: 'A', 'C', 'G', and 'T'.

Each symbol represents a nucleotide, which is a fancy name for the particular molecules that happen to make up a large part of DNA.

Shortest intro to biochemistry EVAR:

  • twigs are to birds nests as
  • nucleotides are to DNA and RNA as
@julia-
julia- / 0_reuse_code.js
Last active August 29, 2015 14:15
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

database table name: always plural

CREATE TABLE products (
);

model class and filename: always singular

product.rb

class Product