This file contains 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
# Hola Mundo | |
## Hola soy un titulo mas pequeño | |
- Yasser 1 | |
- Yasser 2 | |
``` | |
Select * from TABLE WHERE x ==1 | |
``` |
This file contains 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
package main | |
import ( | |
"fmt" | |
"math" | |
"strconv" | |
) | |
func formatZeros(binary string, total int) string { |
This file contains 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
def find_longest_sequence(arr): | |
start = 0 | |
seq_result = [] | |
def sum_array(arr): | |
_sum = 0 |
This file contains 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
public class MySingleton { | |
private static MySingleton instance; | |
private MySingleton() { | |
} | |
public static MySingleton create() { |
This file contains 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
package main | |
import "fmt" | |
type User struct { | |
Name string | |
} | |
func main() { | |
u:= createUser() |
This file contains 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
package main | |
import "fmt" | |
type User struct { | |
Name string | |
} | |
func main() { | |
u:= createUser() |
This file contains 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
package main | |
import "fmt" | |
type User struct { | |
Name string | |
} | |
func main() { | |
u:= createUser() |
This file contains 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
{ | |
"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\": \"[email protected]\", \"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" | |
} |
This file contains 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
class Tree(object): | |
def __init__(self, value): | |
self.value = value | |
self.left = None | |
self.right = None | |
def add(self, number): |
This file contains 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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"log" | |
"net/http" | |
"flag" | |
"time" | |
) |
NewerOlder