Skip to content

Instantly share code, notes, and snippets.

View javi830810's full-sized avatar

Javier de Paula javi830810

  • Ultimate Software
  • Miami, FL
View GitHub Profile
package main
import (
"fmt"
"math"
"strconv"
)
func formatZeros(binary string, total int) string {
def find_longest_sequence(arr):
start = 0
seq_result = []
def sum_array(arr):
_sum = 0
public class MySingleton {
private static MySingleton instance;
private MySingleton() {
}
public static MySingleton create() {
package main
import "fmt"
type User struct {
Name string
}
func main() {
u:= createUser()
package main
import "fmt"
type User struct {
Name string
}
func main() {
u:= createUser()
package main
import "fmt"
type User struct {
Name string
}
func main() {
u:= createUser()
{
"integration__c": "a6Cg0000000Dlbv",
"direction__c": "Incoming",
"action__c": "Insert Record",
"long_Text_Parameter__c": "{ \"recordTypeId\": \"012g00000005h0s\", \"partner_service__c\": \"Benefits Administration/Outsourcing\", \"partner_name__c\": \"Businessolver\", \"firstName\": \"CoreyTEST\", \"lastName\": \"Chin\", \"title\": \"TEST\", \"phone\": \"9543313333\", \"email\": \"coreychin@ultimatesoftware.com\", \"company\": \"TEST\", \"numberOfEmployees\": \"300\", \"state\": \"FL\", \"postalCode\": \"33326\", \"country\": \"US\", \"description\": \"Testing email alert for BusinessSolver from Marketplace\", \"leadSource\": \"Connect.ultipro.com\", \"explicit__c\": true, \"explicit_as_of__c\": \"2017-11-20\" }",
"target_Object_Type__c": "Lead"
}
class Tree(object):
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def add(self, number):
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"flag"
"time"
)
@javi830810
javi830810 / my_dict.go
Last active May 10, 2016 15:54
My Dictionary
package main
import (
"errors"
"fmt"
)
type KeyPair struct{
key string
value string