Skip to content

Instantly share code, notes, and snippets.

View nmospmos's full-sized avatar
💭
I may be slow to respond.

AOYAMA Akira nmospmos

💭
I may be slow to respond.
  • Japan
View GitHub Profile
#!/bin/bash
# http://www.nongnu.org/avr-libc/user-manual/install_tools.html
# For optimum compile time this should generally be set to the number of CPU cores your machine has
JOBCOUNT=$(getconf _NPROCESSORS_ONLN)
# Build for Linux
# A Linux AVR-GCC toolchain is required to build a Windows toolchain
# If the Linux toolchain has already been built then you can set this to 0
@nmospmos
nmospmos / .htaccess
Last active April 22, 2020 02:03
キャッシュを無効にする .htaccess
FileEtag None
RequestHeader unset If-Modified-Since
Header set Pragma "no-cache"
Header set Cache-Control "no-store"
Header set X-UA-Compatible "IE=edge"