Skip to content

Instantly share code, notes, and snippets.

Final Report

Student: Xiangxiu Meng

Mentors: Paula Popa, Lia

Project: Monitor Sensors signal in 2D and 3D

Organization: INCF

@kimonoki
kimonoki / Golang Challenge
Last active April 16, 2018 01:51
Loops without for keyword
package main
import (
"bufio"
"fmt" // A package in the Go standard library.
"os"
"strconv"
"strings"
)
@kimonoki
kimonoki / ejs conditionals
Created February 23, 2018 11:17
ejs if else conditionals
if
<% if(...) { %> xxx <% } %>
if else
<% if(...) { %> xxx <% } else { %> xxx <% } %>