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: | |
| #------------------------------------------------------------------------------- | |
| # * User @jimklimov (and probably some others called out in the long comment | |
| # thread below) have modified this script to make it more robust and keep | |
| # up with various changes in the GitHub API and response format at: | |
| # https://github.com/jimklimov/github-scripts |
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>; |