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
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> | |
<input name="business" type="hidden" value="[email protected]"> | |
<input name="cmd" type="hidden" value="_donations"> | |
<input name="item_name" type="hidden" value="Stanford Daily Donation"> | |
<input name="item_number" type="hidden" value="From Footer in Page: https://www.stanforddaily.com"> | |
<input name="currency_code" type="hidden" value="USD"> | |
<button name="submit" | |
style="font-family:'IBM Plex Sans Condensed', sans-serif;text-transform:uppercase;line-height:40px;border:none;border-radius:0;background-color:#8C1515;color:#FFFFFF;paddind-left:20px;paddind-right:20px;height:40px;display:inlineBlock;cursor:pointer;font-size:15px;font-weight:700;letter-spacing:1px;outline:0" | |
type="submit">Support the Daily</button> | |
<select name="amount" |
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
import fileinput | |
PATH = "website/www/site/content/en/documentation/programming-guide.md" | |
seen = [] | |
STATE_DEFAULT = 0 | |
STATE_IN_HIGHLIGHT = 1 | |
STATE_FINISHED_HIGHLIGHT = 2 | |
STATE_AFTER_HIGHLIGHT_NEWLINE = 3 |
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
import React from "react"; | |
import { Typeahead } from 'react-bootstrap-typeahead'; | |
import 'react-bootstrap-typeahead/css/Typeahead.css'; | |
export default class extends React.Component { | |
render() { | |
const { id, onChange, options, value } = this.props; | |
const { enumOptions, enumDisabled } = options; | |
return (<Typeahead | |
id={id} | |
selected={value ? [value]: []} |
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
.full-width { | |
left: 50%; | |
margin-left: -50vw; | |
margin-right: -50vw; | |
max-width: 100vw; | |
position: relative; | |
right: 50%; | |
width: 100vw; | |
} |
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
import timeit | |
code1 = """ | |
import array | |
value = "\u00e4\u00bd\u00a0\u00e5\u00a5\u00bd\u00e4\u00b8\u0096\u00e7\u0095\u008c\u00f0\u009f\u0098\u008a" | |
array.array('B', [ord(char) for char in value]).tostring().decode() | |
""" | |
code2 = r""" | |
value = b'\xe4\xbd\xa0\xe5\xa5\xbd\xe4\xb8\x96\xe7\x95\x8c\xf0\x9f\x98\x8a' | |
value.decode() | |
""" |
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
<style> | |
.cff-msc-header-container { | |
font-family: 'Open Sans'; | |
font-size: 16px; | |
text-transform: none; | |
line-height: normal; | |
} | |
.cff-msc-header { | |
color: #ec6b33; |
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
{ | |
"title": "<style>.cff-msc-header-container * { font-family: 'Open Sans'; font-size: 16px; text-transform: none; line-height: normal;} .cff-msc-header{color: #ec6b33; font-weight: bold; text-transform: capitalize; font-size: 24px; font-family: Verdana; text-align: center;}</style><a target=_blank href='https://chinmayaaradhana2020.org'><img class='img-fluid' style='float:left;max-width:200px' src=https://chinmayaaradhana2020.org/wp-content/uploads/2019/06/MSC_2020_LOGO_LightBG-3.png /></a><div class='cff-msc-header-container'><div class='cff-msc-header'>27th Chinmaya Mahasamadhi Aradhana Camp<br>“2020 - THE PERFECT VISION”</div><div style='float: center; text-align: center'>Thursday July 30th – Monday Aug 3rd, 2020<br>Hyatt Regency, 1333 Bayshore Highway, Burlingame, California, United States, 94010</div><br style='clear: both' /></div>", | |
"description": "<div style='text-align:center; font-family: 'Open Sans'; font-size: 18px; margin-top: 20px'><strong>REGISTRATION FORM</strong></div><br><div>All registr |
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 | |
# (Python 2) | |
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
# Written by Nathan Hamiel (2010) | |
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
from optparse import OptionParser | |
class RequestHandler(BaseHTTPRequestHandler): |
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
curl https://gist.githubusercontent.com/epicfaace/266324286be9759e7fc028091c923987/raw/fd0f896f9a9c783a0c10b215ad4588627201d65e/gistfile1.txt |
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
x = {...} | |
JSON.stringify(x).replace(/Silicon/g, "OONE").replace(/Platinum/g, "TTWO").replace(/Gold/g, "TTHREE").replace(/silicon/g, "oone").replace(/platinum/g, "ttwo").replace(/gold/g, "tthree").replace(/OONE/g, "Gold").replace(/TTWO/g, "Silver").replace(/TTHREE/g, "Bronze").replace(/oone/g, "gold").replace(/ttwo/g, "silver").replace(/tthree/g, "bronze") |