| name | review-refactoring |
|---|---|
| description | リファクタリングPR/ブランチを第三者視点で批判的にレビューし、各変更が純粋リファクタリングか動作変更を含むかを評価する |
| argument-hint | base branch is <branch-name> |
| context | fork |
| disable-model-invocation | true |
| allowed-tools | Bash(git:*), Bash(mkdir), Bash(ls), Read, Grep, Glob, Write, Agent(Explore) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> | |
| <script src="//platform.twitter.com/widgets.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <script> | |
| $( function() { | |
| $.getScript("http://platform.twitter.com/widgets.js", function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net" | |
| "net/http" | |
| "os" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "github.com/PuerkitoBio/goquery" | |
| "net/url" | |
| "os" | |
| "regexp" | |
| "strconv" | |
| "strings" |
Create a new bookmark somewhere handy in your browser with the following URL:
javascript:var el=document.createElement('style');el.media='print';el.innerHTML='#header,.pagehead.repohead,.gist-description.container,.file-box .meta,#comments,.js-comment-form,.gist-header,.file-header,.gisthead,#footer{display:none;}.file-box{border:0!important;}';document.getElementsByTagName('head')[0].appendChild(el);alert('Now, cmd+p to print');- Navigate to your Gist of choice
- Hit the bookmarklet
- Now print
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LIBUV_HOME := $(HOME)/src/github.com/joyent/libuv | |
| LIBUV := $(LIBUV_HOME)/build/Release/libuv.a | |
| INC = $(LIBUV_HOME)/include | |
| all: | |
| gcc -o main -I$(INC) -Wall main.c $(LIBUV) | |
| PHONY: all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // File.swift | |
| // AudioSwitcher | |
| // | |
| // Created by Masakazu Ohtsuka on 2017/09/22. | |
| // Copyright © 2017 maaash.jp. All rights reserved. | |
| // | |
| import Foundation | |
| import Cocoa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <script src="keyserializer.js"></script> | |
| <script type="text/javascript"> | |
| console.log( keyserializer.serialize({ | |
| security : keyserializer.SECURITY_WPA_WPA2, | |
| ssid : "IRKitTester", | |
| password : "irkitone", | |
| devicekey : "0123456789ABCDEF0123456789ABCDEF" | |
| }) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Backend publishes 2 APIs | |
| 1. Fetch Near-to-Infected list | |
| Near-to-Infected list entry consists of: | |
| - userIDs that have been near to an infected person | |
| - Time when the userID was near an infected person | |
| This can be a static text file that gets updated when E-2 happens. | |
| 2. Append Near-to-Infected list | |
| This is going to be called when a person was diagnosed as positive. | |
| See E. |
NewerOlder