One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
## Steve Jenkins' E4200 v1 Speed Optimizations | |
## Can be used on any Broadcom-based DD-WRT device | |
## PLEASE READ: http://wp.me/p1iGgP-DW | |
## Have fun, but use and tweak at your own risk :) | |
## Updated Feb 4, 2016 | |
## INITIAL SLEEP COMMAND | |
## First command in script is ignored in some builds, so this is a throw-away | |
sleep 10 |
# C++ Boilerplate Generator Send-To Scripts | |
# Maintained at https://gist.github.com/rpavlik/fbdf1347e52b64b833c5 | |
# Main script | |
# | |
# Look at that gist for a bootstrapper script that installs or upgrades this script for you. | |
# Create shortcuts like | |
# %SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -File C:\Users\Ryan\Dropbox\configs\win-scripts\boilerplate.ps1 | |
# to use this easily - or just use the bootstrapper/installer to make them for you. |
::IsRowMajor
::IsVectorAtCompileTime
::RowsAtCompileTime
- note that in the case of dynamic sizes, this is weird (-1, iirc - specifically, Eigen::Dynamic
)::ColsAtCompileTime
- same as above::SizeAtCompileTime
- works like picking the right one of the above for either arrangement of vectors, or full size (I assume?) for matrices.SDCC = sdcc | |
STM8FLASH = stm8flash | |
CHIP = STM8S003 | |
CHIP_LCASE = $(shell echo $(CHIP) | tr '[:upper:]' '[:lower:]') | |
CFLAGS = -lstm8 -mstm8 -L./libsrc/build/ -lstm8s_periph.lib -I./libsrc/inc -D$(CHIP) -DUSE_STDPERIPH_DRIVER | |
MAIN_SOURCE = launcher |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
(Based in part on https://ericniebler.github.io/meta/index.html, designed to be a printable quick reference.)
Using the C++14 standard library.
std::add_pointer
typename std::add_pointer<int>::type
(aka typepack::t_<std::add_pointer<int>>
) is int *
std::add_pointer_t
std::add_pointer_t
is int *
$UpdateSession = New-Object -ComObject Microsoft.Update.Session | |
$UpdateSearcher = $UpdateSession.CreateupdateSearcher() | |
$Updates = @($UpdateSearcher.Search("IsHidden=0 and IsInstalled=0").Updates) | |
$Updates | Select-Object Title |
# udev file for USB interfaces on Sensics-based HMDs and emulated devices | |
### | |
# Section to permit access to HID streaming | |
### | |
# OSVR HDK (via HIDAPI/libusb) | |
SUBSYSTEM=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0b00", MODE="0660", GROUP="plugdev" |