Skip to content

Instantly share code, notes, and snippets.

View kabalweg's full-sized avatar

Joel Badinas kabalweg

  • The List
View GitHub Profile
{
"git.ignoreLegacyWarning": true,
"workbench.colorTheme": "Monokai Dimmed",
"workbench.iconTheme": "vscode-great-icons",
"editor.fontFamily": "Monaco",
"editor.fontSize": 10,
"editor.minimap.enabled": false,
"editor.detectIndentation": false,
"editor.tabSize": 2,
# Git aliases
alias gs="git status"
alias gc="git checkout"
alias gd="git diff"
alias gb="git branch"
alias a="open -a atom"
alias c="open -a Visual\ Studio\ Code"
alias apache_start="sudo apachectl start"
require 'rails_helper'
RSpec.describe TodosController, :type => :controller do
describe "GET #index" do
#describe "POST #create" do
#describe "GET #show" do
#describe "PATCH #update" do (or PUT #update)
#describe "DELETE #destroy" do
#describe "GET #new" do
@kabalweg
kabalweg / StripeTutorialPage.html
Created October 18, 2012 12:44 — forked from boucher/StripeTutorialPage.html
Stripe Tutorial Payment Form
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Stripe Getting Started Form</title>
<script type="text/javascript" src="https://js.stripe.com/v1/"></script>
<!-- jQuery is used only for this example; it isn't required to use Stripe -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">
// this identifies your website in the createToken call below