- I work for GDS
- Cabinet Office
- we started by building GOV.UK
- replaced older sites like direct gov, business link
- we’re not just fixing websites
- we also build and run digital services
- working with depts across the country
- eg: register to vote
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
@file:Suppress("JAVA_MODULE_DOES_NOT_EXPORT_PACKAGE") | |
import jdk.internal.vm.Continuation | |
import jdk.internal.vm.ContinuationScope | |
import javax.swing.SwingUtilities | |
class UILoomScope( | |
private val continuationScope: ContinuationScope, | |
private val continuation: Continuation | |
) { |
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 day7; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Objects; | |
import java.util.Scanner; | |
import com.google.common.annotations.VisibleForTesting; | |
import com.google.common.primitives.Ints; |
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 testng.samples; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Random; | |
import org.testng.ITestContext; | |
import org.testng.TestNG; |