- Order new joiner's preference of laptop (MBP of XPS)
- Obtain licence for PHP Storm
- Provision Email account (request in #it-help-desk)
- Invite to appropriate recurring meetings (standups, tech planning etc)
- Access to Github and assign required role(s)
package main | |
import ( | |
"context" | |
"fmt" | |
"time" | |
profiler "github.com/mannion007/whatever/profiler" | |
) |
package main | |
import ( | |
"context" | |
"fmt" | |
"time" | |
"github.com/mannion007/whatever/session" | |
) |
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
func main() { | |
var wg sync.WaitGroup |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
slowChan := make(chan string) |
package main | |
import ( | |
"fmt" | |
"time" | |
"sync" | |
) | |
func main() { |
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
q := make(chan bool) | |
c := gen(q) | |
receive(c, q) |
package main | |
import ( | |
"fmt" | |
"runtime" | |
"sync" | |
) | |
func main() { | |
var counter int |
package main | |
import ( | |
"fmt" | |
"log" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/sqs" | |
) |
<?php | |
/** ...Make the request, decode the response */ | |
/** Check scan reference is present before we can use it */ | |
if (!isset($decodedResponse->scanReference)) { | |
throw new \Exception("Invalid response - Scan Reference is missing"); | |
} | |
if (!is_string($decodedResponse->scanReference)) { |