defmodule One do
def run() do
IO.inspect {
p1(Input.read("day-01-input-01.txt")),
p2(Input.read("day-01-input-02.txt"))
}
end
I hereby claim:
- I am ordepdev on github.
- I am ordepdev (https://keybase.io/ordepdev) on keybase.
- I have a public key ASB0p-Agc_zKoVnX7mz655AJjzjC4CLrt5EUrpRcv4EMgwo
To claim this, I am signing this object:
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
test-driven developers: building a testing culture. | |
testcontainers: integration testing without a hassle. | |
Optional<Java>: avoiding NullPointerException's. | |
Testing Microservices: discussing problems and approaches. | |
consumer-driven contracts: deploy with confidence. |
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
{ | |
"week":12, | |
"stats":{ | |
"GP":"55", | |
"PB":"0", | |
"GR":"758,872", | |
"TM":"2", | |
"TC":"0", | |
"TV":"104.9m", | |
"OP":"578", |
You need to know Big-O. It's a must. If you struggle with basic big-O complexity analysis, then you are almost guaranteed not to get hired. It's, like, one chapter in the beginning of one theory of computation book, so just go read it. You can do it.
Know how to sort. Don't do bubble-sort. You should know the details of at least one n*log(n) sorting algorithm, preferably two (say, quicksort and merge sort). Merge sort can be highly useful in situations where quicksort is impractical, so take a look at it. For God's sake, don't try sorting a linked list during the interview.
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
using System.Web.Mvc; | |
using Umbraco.Core; | |
using Umbraco.Core.Services; | |
using Umbraco.Web; | |
namespace ContentServiceExample | |
{ | |
public class ContentServiceExampleController : Controller | |
{ | |
private IContentService _contentService; |
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
var proxy = new System.Net.WebProxy() | |
{ | |
Address = new System.Uri("http://000.000.000.000:0000"), | |
Credentials = new System.Net.NetworkCredential("username", "password") | |
}; |