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
from __future__ import unicode_literals | |
import sys | |
from prompt_toolkit import prompt, AbortAction | |
from prompt_toolkit.history import InMemoryHistory | |
from prompt_toolkit.contrib.completers import WordCompleter | |
import meetup.api | |
def get_names(): | |
client = meetup.api.Client('3f6d3275d3b6314e73453c4aa27') |
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
<form id="checkout-form" action="/transaction-endpoint" method="post"> | |
<div id="error-message"></div> | |
<label for="card-number">Card Number</label> | |
<div class="hosted-field" id="card-number"></div> | |
<label for="cvv">CVV</label> | |
<div class="hosted-field" id="cvv"></div> | |
<label for="expiration-date">Expiration Date</label> |
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" enableEventValidation="false" %> | |
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<title></title> | |
<style> | |
#card-number | |
{ |