Skip to content

Instantly share code, notes, and snippets.

View damianesteban's full-sized avatar
🎯
Focusing

Damian Esteban damianesteban

🎯
Focusing
View GitHub Profile
My Awesome Sketch
Logged Out
login -> Logged In
Logged In
<definitions name="HelloService"
targetNamespace="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.examples.com/wsdl/HelloService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SayHelloRequest">
<part name="firstName" type="xsd:string"/>
<?xml version="1.0"?>
<definitions name="Tutorial"
targetNamespace=http://Guru99.com/Tutorial.wsdl
xmlns:tns=http://Guru99.com/Tutorial.wsdl
xmlns:xsd1=http://Guru99.com/Tutorial.xsd
xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace=http://Guru99.com/Tutorial.xsd
xmlns="http://www.w3.org/2000/10/XMLSchema">
Verifying my Blockstack ID is secured with the address 1BUSneeEF3f5tE5awiJEhDWZDsBzPVRJpq https://explorer.blockstack.org/address/1BUSneeEF3f5tE5awiJEhDWZDsBzPVRJpq
@damianesteban
damianesteban / keyGeneration.swift
Created November 1, 2017 19:39
Basic Key Generation w/ Swift
let keyData = NSMutableData(length: 64)!
let result = SecRandomCopyBytes(kSecRandomDefault, 64, keyData.mutableBytes.bindMemory(to: UInt8.self, capacity: 64))
echo "nice test!"
@damianesteban
damianesteban / bootstrap_node.sh
Last active July 26, 2017 03:11
Simple bash script to bootstrap an EC2 instance with cfn and node.js
cd /home/ec2-user
sudo yum update -y aws-cfn-bootstrap
sudo yum install -y aws-cli
sudo yum install -y python27-devel python27-pip gcc
curl -sL https://rpm.nodesource.com/setup_8.x | sudo bash -
sudo yum install -y nodejs
sudo npm install pm2 -g
@damianesteban
damianesteban / keybase.md
Created March 24, 2017 02:19
keybase.md

Keybase proof

I hereby claim:

  • I am damianesteban on github.
  • I am damianesteban (https://keybase.io/damianesteban) on keybase.
  • I have a public key ASD3UYqJvusJy79OThPjnXsmaGf75JjCd_LOFJ-51BUQwgo

To claim this, I am signing this object:

set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @shell_mode 'vi'
# make tmux display things in 256 colors
set -g default-terminal "screen-256color"
source /Users/damianesteban/antigen/antigen.zsh
# # Load the oh-my-zsh's library.
antigen use oh-my-zsh
# # Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle heroku
antigen bundle pip
antigen bundle lein