A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
#!/bin/bash | |
# A simple script to backup an organization's GitHub repositories. | |
#------------------------------------------------------------------------------- | |
# NOTES: | |
#------------------------------------------------------------------------------- | |
# * Under the heading "CONFIG" below you'll find a number of configuration | |
# parameters that must be personalized for your GitHub account and org. | |
# Replace the `<CHANGE-ME>` strings with the value described in the comments | |
# (or overwrite those values at run-time by providing environment variables). |
uninstall
JetBrains settings:curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | bash -s
backup
JetBrains settings:curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-backup.sh | bash -s
> expr("(a+b)*c") | |
{ "$multiply" : [ { "$add" : [ "$a", "$b" ] }, "$c" ] } | |
> expr("1+2*2+3") | |
{ | |
"$add" : [ | |
{ | |
"$add" : [ | |
1, | |
{ |
<!doctype html> | |
<html> | |
<head> | |
<title>Spinning Cube</title> | |
<script type="text/javascript"> | |
function Point3D(x,y,z) { | |
this.x = x; |
import {Meta, moduleMetadata, StoryObj} from '@storybook/angular'; | |
import {$ComponentName$Component} from './$componentName$.component'; | |
const meta: Meta<$ComponentName$Component> = { | |
title: '$StoryName$', | |
component: $ComponentName$Component, | |
}; | |
export default meta; | |
type Story = StoryObj<$ComponentName$Component>; |