This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
</head> | |
<body> | |
<div id="root" /> | |
<script type="module"> | |
import { React, ReactDOM } from 'https://unpkg.com/[email protected]' | |
import htm from 'https://unpkg.com/htm?module' | |
const { createElement, useState } = React |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
from threading import Thread | |
from PyQt5.QtCore import QThread, pyqtSignal | |
from PyQt5.QtWidgets import ( | |
QApplication, | |
QDialog, | |
QDialogButtonBox, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option -g default-shell "/bin/bash" | |
#set-option -g mouse on | |
unbind-key C-b | |
set -g prefix ` | |
bind-key ` send-prefix | |
bind-key e setw synchronize-panes on | |
bind-key E setw synchronize-panes off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your snippets | |
# | |
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to | |
# expand the prefix into a larger code block with templated values. | |
# | |
# You can create a new snippet in this file by typing "snip" and then hitting | |
# tab. | |
# | |
# An example CoffeeScript snippet to expand log to console.log: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Crunchex's Bash Prompt | |
# Reset | |
Color_Off='\[\e[0m\]' # Text Reset | |
# Colors will work nice when used with "Solarized" palette. | |
# Nothing new here | |
White='\[\e[0;37m\]' # White | |
BPurple='\[\e[1;35m\]' # Purple | |
Green='\[\e[0;32m\]' # Green | |
Blue='\[\e[0;34m\]' # Blue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export HELLO="cool" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global_config] | |
title_transmit_bg_color = "#000000" | |
handle_size = 2 | |
title_inactive_bg_color = "#000000" | |
[keybindings] | |
hide_window = <Shift><Control>a | |
[profiles] | |
[[default]] | |
scrollbar_position = hidden | |
palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3" |