魂签,一款用于自动签到的Chrome插件
这里存放由我创建或改进的魂签 (Soulsign) 脚本
- 从这里复制你想要的脚本 Raw URL
- 打开魂签「任务管理」
- 点击「添加脚本」按钮
- 粘贴 URL 并点击「保存」按钮
The following is capturing instructions on how to add custom naming for an Arduino Leonardo (or generic pro-micro) for my Arcade Controller device. I wanted to have a simple record so that when I inevitably come back to this someday I can recall how I accomplished this. Reference was taken from the following YouTube video (https://youtu.be/hoCOq9Ngp44?t=1156) at approximately 19m16s.
Create a new set of folders:
~\Documents\Arduino\hardware\daemonbite\avr
Copy everything from C:\Program Files (x86)\Arduino\hardware\arduino\avr to this new folder.
如果你想补充内容,建议优先给 free-for-dev 提PR,还能混个高星repo的contributor,没必要加到本列表里。
If you want to make improvements, I would recommend you contributing to free-for-dev rather than this list.
| #!/usr/bin/env bash | |
| # | |
| # Description: Auto test download & I/O speed script | |
| # | |
| # Copyright (C) 2015 - 2016 Teddysun <i@teddysun.com> | |
| # | |
| # Thanks: LookBack <admin@dwhd.org> | |
| # | |
| # URL: https://teddysun.com/444.html | |
| # |
| INSTALL JAVA | |
| $ sudo apt-get update && sudo apt-get install default-jre | |
| INSTALL ELASTIC SEARCH https://www.elastic.co/guide/en/elasticsearch/reference/current/setup-repositories.html | |
| $ wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | |
| $ echo "deb https://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list | |
| $ sudo apt-get update && sudo apt-get install elasticsearch | |
| $ sudo update-rc.d elasticsearch defaults 95 10 | |
| $ sudo service elasticsearch restart | |
| $ sudo service elasticsearch status |
| #!/usr/bin/env sh | |
| echo "Creating a self-signed certificate..." | |
| openssl req -new -newkey rsa:2048 -sha1 -days 3650 -nodes -x509 -subj "/C=US/ST=Georgia/L=Atlanta/O=BNR/CN=localhost.ssl" -keyout config/server.key -out config/server.crt | |
| if ! grep -q "\blocalhost\.ssl\b" /private/etc/hosts; then | |
| echo "Adding localhost.ssl to your hosts file..." | |
| echo "127.0.0.1 localhost.ssl" | sudo tee -a /private/etc/hosts | |
| fi |
| <form action="http://v0.api.upyun.com/rbtest/" method="post" enctype="multipart/form-data"> | |
| <%= upyun_form_input_tag(:return_url => new_post_path) %> | |
| <input type="file" name="file" /> | |
| <button type="submit">上传图片</button> | |
| </form> |
| <% flash.each do |type, message| %> | |
| <div class="alert <%= bootstrap_class_for(type) %> fade in"> | |
| <button class="close" data-dismiss="alert">×</button> | |
| <%= message %> | |
| </div> | |
| <% end %> |
This helper has finally been moved into a gem called nav_lynx!
https://github.com/vigetlabs/nav_lynx
http://rubygems.org/gems/nav_lynx
Thanks to @brianjlandau and @reagent for getting that set up and tested!