Skip to content

Instantly share code, notes, and snippets.

View ellielle's full-sized avatar
:octocat:
octothorpeoctocat

Noelle L'Amour ellielle

:octocat:
octothorpeoctocat
View GitHub Profile
@ellielle
ellielle / Storing-Images-On-Github.md
Created November 9, 2020 12:23 — forked from joncardasis/Storing-Images-On-Github.md
Storing Images and Demos in your Repo

Storing Images and Demos in your Repo

In this quick walkthough you'll learn how to create a separate branch in your repo to house your screenshots and demo gifs for use in your master's readme.

How to

1. Clone a fresh copy of your repo

In order to prevent any loss of work it is best to clone the repo in a separate location to complete this task.

2. Create a new branch

Create a new branch in your repo by using git checkout --orphan assets

@ellielle
ellielle / gw2-wiki-dark-mode.user.js
Last active July 20, 2023 14:00
A simple userscript to automatically enable the dark theme on GW2's wiki
// ==UserScript==
// @name GW2 Wiki Dark Mode
// @version 0.2
// @description Automatically set the GW2 wiki theme to the Vector dark theme
// @author ellielle
// @match *://*.guildwars2.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=wiki.guildwars2.com
// @downloadURL https://gist.github.com/ellielle/e9182e1822d089122db9c8f6981f4ba5#file-gw2-wiki-dark-mode-user-js
// @updateURL https://gist.github.com/ellielle/e9182e1822d089122db9c8f6981f4ba5#file-gw2-wiki-dark-mode-user-js
// ==/UserScript==
@ellielle
ellielle / curl.md
Created April 4, 2024 15:28 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.