See this tweet.
This guide will describe how to rename your git master branch to main.
- Update local repository
git pull upstream main| /* USER CODE BEGIN Header */ | |
| /** | |
| ****************************************************************************** | |
| * @file : main.c | |
| * @brief : Main program body | |
| ****************************************************************************** | |
| * @attention | |
| * | |
| * <h2><center>© Copyright (c) 2020 STMicroelectronics. | |
| * All rights reserved.</center></h2> |
See this tweet.
This guide will describe how to rename your git master branch to main.
git pull upstream main| acroread | |
| catt | |
| clion | |
| colorpicker | |
| digikey-kicad-library-git | |
| digilent.waveforms | |
| figma-bin | |
| gnome-shell-extension-drop-down-terminal | |
| gnome-shell-extension-manjaro-update | |
| ignition-cmake-0 |
| git@github.com:wsh32/yoctoboard-agent.git | |
| git@github.com:wsh32/yoctoboard-cad.git | |
| git@github.com:wsh32/yoctoboard-electronics.git | |
| git@github.com:wsh32/yoctoboard-firmware.git |
| #include <Adafruit_NeoPixel.h> | |
| #ifdef __AVR__ | |
| #include <avr/power.h> | |
| #endif | |
| #define PIN 5 | |
| #define NUMPIXELS 1 | |
| Adafruit_NeoPixel led = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); | |
| void setup() { |
| set nocompatible " required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') |
| uno.name=Arduino Uno | |
| atmega328.name=Arduino Duemilanove w/ ATmega328 | |
| diecimila.name=Arduino Diecimila or Duemilanove w/ ATmega168 | |
| nano328.name=Arduino Nano w/ ATmega328 | |
| nano.name=Arduino Nano w/ ATmega168 | |
| mega2560.name=Arduino Mega 2560 or Mega ADK | |
| mega.name=Arduino Mega (ATmega1280) | |
| leonardo.name=Arduino Leonardo | |
| esplora.name=Arduino Esplora | |
| micro.name=Arduino Micro |
| from PIL import Image | |
| from os import listdir | |
| from os.path import join | |
| __author__ = "Wesley Soo-Hoo" | |
| __license__ = "MIT" | |
| input_dir = 'input/' | |
| output_file = 'output.png' |
| import time, math, threading | |
| from tba import * | |
| """main.py: It's all magic""" | |
| class PriorEvent: | |
| def __init__(self, event_code, ranking, chairmans, outcome): | |
| self.event = event_code | |
| self.ranking = ranking |