Skip to content

Instantly share code, notes, and snippets.

View shonnly's full-sized avatar

Shonn Lyga shonnly

View GitHub Profile
using Newtonsoft.Json;
using System;
using System.Net;
using System.Xml;
namespace StockQuotePrinter
{
class Program
{
static void Main(string[] args)
package main
import (
"encoding/xml"
"fmt"
"io/ioutil"
"net/http"
"runtime"
"time"
)
//For a full explanation on this code, checkout Mike Van Sickle' Go course on pluralsight
package main
import (
"encoding/xml"
"fmt"
"io/ioutil"
"net/http"
)
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using System.Xml;
namespace StockQuotePrinter
{
class Program
namespace StashFileFetcher.Controllers
{
using System.Diagnostics;
using System.IO;
using System.Text;
using LibGit2Sharp;
class RepoDigger : IDisposable
{
public static RepoDigger GetRepositoryInformationForPath(string path)
public ApiResponse getPerson(int id) {
Person person = repository.get(id);
if(person != null){
return createdSuccessfulResponse(person);
}
else{
return createFailedResponse();
}
}
Person person = getPerson();
if(person != null){
System.out.println(person.sayHi());
}
Optional<Person> person = getPerson();
if(person.isPresent()){
System.out.println(person.get().sayHi());
}
var s1 = Symbol();
var s2 = Symbol();
console.log(s1 == s2); // false
var s1 = Symbol('foo');
var s2 = Symbol('foo');
console.log(s1 == s2); // false