Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{
"name": "The Daily",
"authors": [
"The New York Times"
],
"contributors": null,
"categories": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"copyright": "\u00a9 2020-2021 THE NEW YORK TIMES COMPANY; The New York Times encourages the use of RSS feeds for personal use in a news reader or as part of a non-commercial blog, subject to your agreement to our Terms of Service.",
"image": {
{
"name": "Good For A Girl",
"authors": [
"Courtney LaPlante"
],
"contributors": null,
"categories": null,
"description": "<p>Join Courtney LaPlante, vocalist of Spiritbox, for her latest project - <i>Good For A Girl<\/i>. This podcast is an inside look at the realities and challenges of being a woman in the music industry, especially the metal scene - which has been male-dominated for a long time and still is today.\u00a0<\/p>\n\n<p>Through conversations with Musicians, Radio DJs, Record Executives, and more Courtney explores how their personal experiences of gender inequality influenced and shaped them as they navigated their way along difficult career paths. Because as a woman working in metal, nothing comes easy.\u00a0<\/p>\n\n<p>Each episode gives behind-the-scenes insight on how the music industry operates and what life is really like for working musicians. There\u2019s also lots of advice for other women who are struggling to carve out their own path in traditionally mal
{
"name": "Good For A Girl",
"authors": [
"Courtney LaPlante"
],
"contributors": null,
"categories": null,
"description": "<p>Join Courtney LaPlante, vocalist of Spiritbox, for her latest project - <i>Good For A Girl<\/i>. This podcast is an inside look at the realities and challenges of being a woman in the music industry, especially the metal scene - which has been male-dominated for a long time and still is today.\u00a0<\/p>\n\n<p>Through conversations with Musicians, Radio DJs, Record Executives, and more Courtney explores how their personal experiences of gender inequality influenced and shaped them as they navigated their way along difficult career paths. Because as a woman working in metal, nothing comes easy.\u00a0<\/p>\n\n<p>Each episode gives behind-the-scenes insight on how the music industry operates and what life is really like for working musicians. There\u2019s also lots of advice for other women who are struggling to carve out their own path in traditionally mal
{
"name": "Aethelflaed",
"features": [
"LEADERSHIP",
"PEACEKEEPING",
"SUPPORT"
],
"rarity": "LEGENDARY",
"obtained_from": "Expedition",
"kingdom_age": "1",
Proposal Basic Information
Project Name: Electrum Altcoin
Author: Ahmed Bodiwala
Proposer’s Email Address: ahmedbodi@crypto-expert.com
Funds requested: 500 CRW/month for 6 months - 3000 CRW total
Proposal Hash: PROPOSAL_HASH
How To Vote YES: mnbudget vote-many PROPOSAL_HASH yes
How To Vote NO: mnbudget vote-many PROPOSAL_HASH no
Project Details
import struct
import socket
import time
import hashlib
import random
from p2p.encoding import ser_string
magic = bytes.fromhex("f9beb4d9")
class CAddress(object):
# ssc
# snssc
# merkleblock
# spork
# mnw
# mvote
# mprop
# fbvote
# fbs
# snw
PAYMENT_URI_PREFIX = 'bitcoin:'
APPLICATION_PAYMENT_REQUEST_TYPE = 'application/bitcoin-paymentrequest'
APPLICATION_PAYMENT_TYPE = 'application/bitcoin-payment'
APPLICATION_PAYMENT_ACK_TYPE = 'application/bitcoin-paymentack'
COINBASE_MATURITY = 100
SIGNED_MESSAGE_PREFIX = b"\x18Bitcoin Signed Message:\n"
@ahmedbodi
ahmedbodi / gist:489d6122d8dec524f9f1220ad4138014
Last active September 15, 2019 21:31 — forked from pazdera/gist:1098119
Singleton example in C++
/*
* Example of a singleton design pattern.
* Copyright (C) 2011 Radek Pazdera
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
@app.before_request
def before_request():
if session_obj.get('needs_auth', False) and not 'two_factor_authorize' in str(request.url_rule):
return redirect(url_for('security.two_factor_authorize'))
@mod.route('/login', methods=['GET', 'POST'])
@anon_required
def login():
form = LoginForm()