This file contains hidden or 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
server{ | |
listen 80; | |
server_name server_ip1 server_ip2 domain.com1 domain.com2; | |
root /path/to/root; | |
index index.html; | |
location = /favicon.ico { access_log off; log_not_found off; } | |
location / { | |
try_files $uri /index.html =404; |
This file contains hidden or 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 bash | |
SCM_THEME_PROMPT_PREFIX="${cyan}(${green}" | |
SCM_THEME_PROMPT_SUFFIX="${cyan})" | |
SCM_THEME_PROMPT_DIRTY=" ${red}✗" | |
SCM_THEME_PROMPT_CLEAN=" ${green}✓" | |
# Get Virtual Env | |
prompt() { |
This file contains hidden or 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
import React, { Component } from 'react' | |
import { connect } from 'react-redux' | |
import { bindActionCreators } from 'redux'; | |
import { | |
questionDetailAPICallRequestAsync, | |
questionDetailAPICallRequest | |
} from '../../actions'; | |
export class QuestionDetail extends Component { |
This file contains hidden or 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 python3 | |
import csv | |
import ntpath | |
import pathlib | |
import shutil | |
from unicodedata import normalize | |
def clean_string(text): |
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.0</real> |
This file contains hidden or 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
<script> | |
import { onMount } from 'svelte'; | |
import { posts } from './blogStore.js'; | |
onMount(async () => { | |
const data = await fetchPosts(); | |
posts.set(data); | |
}) | |
const fetchPosts = async (url=null) => { |
This file contains hidden or 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
Escape = 1 | |
D1 = 2 | |
D2 = 3 | |
D3 = 4 | |
D4 = 5 | |
D5 = 6 | |
D6 = 7 | |
D7 = 8 | |
D8 = 9 | |
D9 = 10 |
This file contains hidden or 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
0 rem | |
100 rem ************ alpa *********** | |
101 rem * * | |
110 rem * p.rosham, 12/4/1984 * | |
111 rem * and danny davis * | |
112 rem * * | |
115 rem * assembly language * | |
116 rem * programming aid * | |
118 rem * * | |
119 rem * typed by syneto * |