Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
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
# -*- coding: UTF-8 -*- | |
# author: jianingy.yang@gmail.com | |
""" Example: | |
# -*- coding: UTF-8 -*- | |
from ..common import patch_io # noqa | |
from ..common import idol | |
from ..common.falconkit import create_app | |
from ..model import database | |
from . import view |
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
#include <M5Stack.h> | |
const int PIN_EA = 1; | |
const int PIN_I1 = 16; | |
const int PIN_I2 = 17; | |
const int CHANNEL_EA = 3; | |
const int PIN_EB = 3; | |
const int PIN_I3 = 21; | |
const int PIN_I4 = 22; |
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
<?php | |
function uuid32() { | |
return sprintf("%08X", rand(0, pow(2, 32))); | |
} | |
function uuid96() { | |
$uuid = uuid32() . uuid32() . uuid32(); | |
$serial = ""; |
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
# client | |
conn %default | |
keyexchange=ikev2 | |
authby=secret | |
conn roadwarrior | |
type=tunnel | |
left=192.168.224.186 | |
leftsubnet=192.168.224.186/32[icmp],192.168.224.186/32[gre] |
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
--- | |
dependencies: | |
- hostname && uptime |
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
// Jianing Yang @ 19 Feb, 2017 | |
use chrono::offset::local::Local; | |
use errors::*; | |
use errors::ErrorKind::*; | |
use models::AirQualityRecord; | |
use serial; | |
use serial::prelude::*; | |
use std::io::prelude::*; | |
use std::time::Duration; |
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
(setq package-archives '(("gnu" . "http://elpa.emacs-china.org/gnu/") | |
("melpa" . "http://elpa.emacs-china.org/melpa/"))) |
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
/* | |
* filename : background.cpp | |
* created at : 2016-10-21 11:28:31 | |
* author : Jianing Yang <jianingy.yang@gmail.com> | |
*/ | |
#include "background.h" | |
task_t TASKS[10] = {NULL}; |
NewerOlder