Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
[
{
"breakdown": {
"solar": {
"power": {
"unit": "MW",
"value": 0
}
},
"wind": {
@ttben
ttben / data.json
Last active August 5, 2020 18:48
Issue facteur charge 52
[
{
"breakdown": {
"solar": {
"power": {
"unit": "MW",
"value": 0
}
},
@ttben
ttben / Services dependencies.md
Last active June 22, 2020 10:17
This file describes the services dependencies identified in each SPLC 2020 challenge use-cases

1. Google Cloud

From Service To Service Techno
Checkout Email gRPC (send mail)
Checkout Payment gRPC (charge card)
Checkout Shipping gRPC (ship order, Get shipping quote)
Checkout ProductCatalog gRPC (GetProduct)
@ttben
ttben / Mapping routes to features.md
Created June 22, 2020 10:03
This file describes the mapping endpoints/features in each SPLC 2020 challenge use-cases
  1. GoogleCloudPlatform/microservices-demo
  2. dotnet-architecture/eShopOnContainers
  3. instana/robot-shop
  4. microservices-demo/microservices-demo (is built as follows: each service is a different github project. Neat.)
  5. sczyh30/vertx-blueprint-microservice
  6. thangchung/ShoppingCartDemo

Ad service

| | Get Ads | Get Random Ads | Get Ads by category | Cre. Campaign | Get Camp | Upd. Camp. | Del. Camp | Get. Camp. By User | |

@ttben
ttben / Codevelopments - SPLC 2020.md
Last active June 22, 2020 10:01
This file describes the the measured codevelopment in each SPLC 2020 challenge use-cases

Top 5 of codevelopments

  1. GoogleCloudPlatform/microservices-demo

  2. dotnet-architecture/eShopOnContainers

  3. instana/robot-shop

  4. microservices-demo/microservices-demo (is built as follows: each service is a different github project. Neat.)

  5. sczyh30/vertx-blueprint-microservice

  6. thangchung/ShoppingCartDemo

@ttben
ttben / explanations-docker-hackhathon2020-concordia.md
Last active May 8, 2020 17:46
Wrapping code into Dockerfiles

Summary

Here is the overall point-of-view of what you will end up with :) A folder named as the targeted language (here elixir and another folder for erlang). The language folder contains two files (Dockerfile and build-and-run.sh) and a folder (data). The folder data contains all the files that you need to run your example, and start.sh specify how to start your example. Some languages can have fancy way to run one of their program, and you want to hide this, encapsulate it.

Recap

function onOpen ()
{
var ss = SpreadsheetApp.getActiveSpreadsheet();
var menu = [{name: "Reverse", functionName: "reverseOrder"}];
ss.addMenu("Extra", menu);
}
function reverseOrder()
{
var range = SpreadsheetApp.getActiveRange();
var values = range.getValues();

✅ - Adding submodule

✅ - Initialize submodules

✅ - Update/Retrieve submodules

Team les-pushit

# Guidelines
---
###### 1. `FROM` command first
the `FROM` command must be the first to appear in a dockerfile
---
###### 2. `RUN` Exec form
`RUN` commands have two syntaxes, one with brackets and one without. Interpretation of arguments differ from the two syntaxes. The one with brackets must be used.
---