Skip to content

Instantly share code, notes, and snippets.

@ericclemmons
ericclemmons / example.md
Last active April 24, 2024 18:09
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here
@willnet
willnet / be_a_rails_contributer.md
Last active August 21, 2023 05:44
Railsコントリビュータへの道

これはなに

  • Railsにプルリクストを送るときに知っておくと便利なお作法集
  • Railsにプルリクエストを送りたいけど何から始めたらいいのかわからない人向けの指針

お作法についてはRuby on Rails に貢献する方法 | Rails ガイドを参考にしています。

前提知識

Railsのコードを読むには、最低限次の二つの知識があったほうがよいです

@rowanmanning
rowanmanning / README.md
Last active February 18, 2024 21:12
Writing a Friendly README. This a companion-gist to the post: http://rowanmanning.com/posts/writing-a-friendly-readme/
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 2.
Have you focused specifically on improving your JS skills at any time in the last year?,Which resources did you use to help you learn?,"Of the resources you used, which kind was the MOST helpful?","Of the resources you used, which kind was the LEAST helpful?","During your learning, which areas have been particularly challenging?",What one resource would you recommend to someone trying to learn JS?,Why do you recommend it?,What one resource would you NOT recommend to someone trying to learn JS?,Why do you NOT recommend it?,Which technologies do you use in your current role?,How long have you been working professionally in web development?,How would you rate the improvement of your JS skills in the last year?,"Have you gotten a new job, a promotion, or new responsibilities since improving your JS skills?",Do you consider yourself a minority in tech?
Yes,"Online courses, Blogs, Books, Help from friends, Help from coworkers, Meetups, Conferences",Help from coworkers,Books,"Debugging, Understanding how to apply th
@gaearon
gaearon / slim-redux.js
Last active March 25, 2024 19:12
Redux without the sanity checks in a single file. Don't use this, use normal Redux. :-)
function mapValues(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
result[key] = fn(obj[key], key);
return result;
}, {});
}
function pick(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
if (fn(obj[key])) {
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@voluntas
voluntas / webrtc_service_ question.rst
Last active July 4, 2023 08:59
WebRTC サーバサイド技術質問一覧
@voluntas
voluntas / webrtc_stack.rst
Last active June 4, 2023 13:23
WebRTC スタックコトハジメ

WebRTC スタックコトハジメ

WebRTC スタックについて

@voluntas

バージョン

0.0.3

url

https://voluntas.github.io/

@yannickcr
yannickcr / Resources.md
Last active September 15, 2016 09:31
React.js Conf 2015 - From the Internet