Skip to content

Instantly share code, notes, and snippets.

View Aenohe's full-sized avatar
🏠
Working from home

Fabien Gavory Aenohe

🏠
Working from home
View GitHub Profile
@Aenohe
Aenohe / tests.md
Created December 27, 2017 19:35
swift-mutability-tests
struct Test {
  var a: String
  var b: String
  var c: String
}

func copyTest(to: Test) -> Test {
  var copy = to
  
@Aenohe
Aenohe / atom-install-mac-osx.md
Last active August 21, 2020 20:41
Atom install on Mac OSX

#Atom install on Mac OSX

##Requirements

###Homebrew

If you already have Homebrew skip this part or take a moment to update Homebrew with $ brew update

  • Install Homebrew $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@Aenohe
Aenohe / .editorconfig
Last active November 9, 2015 21:57
JS boilerplate for server side files
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
@Aenohe
Aenohe / avr-cmu-c-blink-led.md
Last active August 30, 2015 17:29
blink-led program written in C for AVR Microcontroller
@Aenohe
Aenohe / avr-mcu-asm-blink-led.md
Last active January 2, 2023 10:33
Test AVR Microcontroller with blink-led program written in Assembly
@Aenohe
Aenohe / avr-mcu-on-mac-osx-setup.md
Last active August 30, 2015 17:02
Program AVR Microcontrollers on Mac OSX

Program AVR Microcontrollers on Mac OSX

Setup instructions for AVR MCU development tools on Mac OSX.

Requirements

Homebrew is a package manager for Mac OSX

If you already have Homebrew skip this part or take a moment to update Homebrew with $ brew update