• 5ffd57393a85553ab55b
• 5cd28e2a812e5c65c9f7320e0726da18
• b6a6676a84b51c8200d0673a5b4a87c5
The quotes on this page come from this deleted question on Stackoverflow:
| #!/bin/sh | |
| # Requirements: | |
| # - a system running systemd-journald service | |
| # - fzf | |
| # - jq | |
| # Usage: | |
| # journalfzf.sh UNIT_NAME_PATTERN | |
| # Example: | |
| # journalfzf.sh network |
The quotes on this page come from this deleted question on Stackoverflow:
| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| RED="\[\033[1;31m\]" | |
| YELLOW="\[\033[1;33m\]" | |
| GREEN="\[\033[1;32m\]" | |
| BLUE="\[\033[1;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[1;37m\]" | |
| COLOR_NONE="\[\e[0m\]" |
| These are all the tags from the RestructuredText.tmtheme, it honestly needs to be a little bit better to come close to VIM. | |
| comment.line.double-dot.restructuredtext | |
| constant.other.citation.link.restructuredtext | |
| constant.other.footnote.link.restructuredtext | |
| entity.name.tag.restructuredtext | |
| markup.bold.restructuredtext | |
| markup.heading.restructuredtext | |
| markup.italic.restructuredtext | |
| markup.other.command.restructuredtext |
| RED="\[\033[1;31m\]" | |
| YELLOW="\[\033[1;33m\]" | |
| GREEN="\[\033[1;32m\]" | |
| BLUE="\[\033[1;34m\]" | |
| LIGHT_RED="\[\033[1;31m\]" | |
| LIGHT_GREEN="\[\033[1;32m\]" | |
| WHITE="\[\033[1;37m\]" | |
| LIGHT_GRAY="\[\033[1;37m\]" | |
| COLOR_NONE="\[\e[0m\]" |
| /**********************************************/ | |
| /* | |
| /* Espresso-inspired theme for Google Chrome Inspector | |
| /* | |
| /* By: Paul Redmond http://github.com/paulredmond | |
| /* | |
| /* Inspired by Darcy Clarke's post - http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* Darcy Clarke's "Darker Skin" theme - http://darcyclarke.me/dev/inspectorskin/Custom.css | |
| /* | |
| /**********************************************/ |
| /**********************************************/ | |
| /* | |
| /* IR_Black Skin by Ben Truyman - 2011 | |
| /* | |
| /* Based on Todd Werth's IR_Black: | |
| /* http://blog.toddwerth.com/entries/2 | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: | |
| /* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* |