All of the following information is based on go version go1.14.7 darwin/amd64.
(Bold = supported by go out of the box, ie. without the help of a C compiler, etc.)
- aix
- android
| # GPG on Tower | 
| // https://gist.github.com/mkckr0/97ec5b0d99feede4c19ee6f905d5e722 | |
| val repoMirrorMap = mapOf( | |
| "https://repo.maven.apache.org/maven2" to "https://maven.aliyun.com/repository/central", | |
| "https://dl.google.com/dl/android/maven2" to "https://maven.aliyun.com/repository/google", | |
| "https://plugins.gradle.org/m2" to "https://maven.aliyun.com/repository/gradle-plugin", | |
| "https://jcenter.bintray.com" to "https://maven.aliyun.com/repository/jcenter", | |
| ) | |
| val repoReplaceMap = mapOf( | |
| "https://maven.google.com" to "https://dl.google.com/dl/android/maven2" | 
NokiaTool is a simple Bash script (nokiatool.sh) that allows you to use an undocumented serial connection in USB-enabled MediaTek-based Nokia feature phones manufactured by Microsoft (even the most basic ones, like the new 105) in order to control them from your PC.
This project is an ongoing work and uses only some bits and pieces of information about the phone internals available to the public, so under any circumstances don't consider it stable or a replacement for official tools if any are present.
| package main | |
| import "reflect" | |
| import "fmt" | |
| type User struct { | |
| Name string | |
| } | |
| func main() { | 
| image: docker:latest | |
| # When using dind, it's wise to use the overlayfs driver for | |
| # improved performance. | |
| variables: | |
| DOCKER_DRIVER: overlay | |
| GCP_PROJECT_ID: CHANGE-TO-GCP-PROJECT-ID | |
| IMAGE_NAME: image_id | |
| services: | 
| image: docker:latest | |
| # When using dind, it's wise to use the overlayfs driver for | |
| # improved performance. | |
| variables: | |
| DOCKER_DRIVER: overlay | |
| GCP_PROJECT_ID: CHANGE-TO-GCP-PROJECT-ID | |
| IMAGE_NAME: image_id | |
| services: | 
| // 🔥 Node 7.6 has async/await! Here is a quick run down on how async/await works | |
| const axios = require('axios'); // promised based requests - like fetch() | |
| function getCoffee() { | |
| return new Promise(resolve => { | |
| setTimeout(() => resolve('☕'), 2000); // it takes 2 seconds to make coffee | |
| }); | |
| } | 
| <?php | |
| class BlogController extends Controller | |
| { | |
| /** | |
| * Posts | |
| * | |
| * @return void | |
| */ | |
| public function showPosts() |