Skip to content

Instantly share code, notes, and snippets.

WEBHOOK EVENT
{
"id": "WH-290666983S543943B-5WC710453C4596920",
"create_time": "2022-12-15T05:10:15.945Z",
"resource_type": "capture",
"event_type": "PAYMENT.CAPTURE.COMPLETED",
"summary": "Payment completed for GBP 449.24 GBP",
"resource": {
"amount": {
### Keybase proof
I hereby claim:
* I am jpark3000 on github.
* I am jpark3000 (https://keybase.io/jpark3000) on keybase.
* I have a public key whose fingerprint is 9127 EAA8 5582 51D2 8FAC 4796 A58F 01DE ABB0 A947
To claim this, I am signing this object:
@jpark3000
jpark3000 / carousel.js
Last active August 29, 2015 13:56 — forked from ksolo/carousel.js
Image Carousel
@jpark3000
jpark3000 / form-validator.js
Last active August 29, 2015 13:56 — forked from ksolo/form-validator.js
Form Validation
// shorthand for $(document).ready();
$(function(){
var emailPattern = /.+\@.+\..+/;
var pwdCapitalPattern = /[A-Z]/;
var pwdNumPattern = /\d/;
function checkEmail(email) {
return emailPattern.test(email);
};
@jpark3000
jpark3000 / index.html
Created February 6, 2014 17:06 — forked from dbc-challenges/index.html
DBC Phase 2 Practice Assessment Part 3
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/normalize/2.1.0/normalize.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,900">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css">
</head>
//------------------------------------------------------------------------------------------------------------------
// YOUR CODE: Create your Zoo "object literal" and Animal "constructor" and "prototypes" here.
//------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------
// DRIVER CODE: Do **NOT** change anything below this point. Your task is to implement code above to make this work.
//------------------------------------------------------------------------------------------------------------------

####JQuery Quiz Here is your chance to take over Socrates!

Spend 10 minutes on each of the following hacks to the Socrates website. Enter them in the console to make sure it works and then save your results here.

Choose a new pair for each. Add your names to the section you complete.

class Car
@@WHEELS = 4
def initialize(args)
@color = args[:color]
@wheels = @@WHEELS
end
def drive
@status = :driving
end
def brake
@jpark3000
jpark3000 / jquery_example.html
Last active January 1, 2016 18:59 — forked from dbc-challenges/jquery_example.html
Intro to jQuery for Phase 0
<!DOCTYPE html>
<html>
<head>
<title>DOM manipulation with jQuery</title>
<!-- Add a link to jQuery CDN here script here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery_example.js"></script>
</head>
<body>