Skip to content

Instantly share code, notes, and snippets.

View AlecksJohannes's full-sized avatar
🎯
Focusing

MinhDang AlecksJohannes

🎯
Focusing
  • Ho Chi Minh City, Vietnam
View GitHub Profile
#include <SoftwareSerial.h>
#include <ArduinoJson.h>
#include <DHT.h>
SoftwareSerial BTserial(10, 11); // RX | TX
StaticJsonBuffer<200> jsonBuffer;
int sensorPin = A0;
@AlecksJohannes
AlecksJohannes / init.vim
Created April 1, 2018 02:32
YADR for NeoVim
" YADR for NEOVIM
" please keep it separate if you want cleaner code
" ========= PLUGINS ========
call plug#begin('~/.config/nvim/plugged')
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'rking/ag.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
using System;
using System.Collections.Generic;
using System.Linq;
using HSUProj.Helpers;
using HSUProj.Models;
using HSUProj.ViewModels;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;