- https://www.pullreview.com
- Hook it up to your GitHub repo and open a Pull Request
- It runs Excellent, Rubocop, Flay, Brakeman, RailsBestPractices, Yard, and secret sauce
- Free for OS, paid starts at 20€/month
- See also: CodeClimate, Hound
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
Auth with Github -> github username | |
github username -> https://api.github.com/users/swanson/repos | |
Repos have a `language` field -> find most occuring language | |
Segment users based on most occurring language: | |
* ObjC/Swift -> iOS trail | |
* Ruby -> Rails trail | |
* Javascript -> React trail |
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
http://www.panozzaj.com/blog/2015/09/19/github-pull-request-workflow-labels/ | |
http://aimeeault.com/2015/09/21/disabling-superhero-mode-at-night-or-how-to-properly-turn-off-work-notifications-after-work/ |
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
Randy Skopecek podcast: https://itunes.apple.com/us/podcast/talk-about-know-priorities/id1031383725 | |
https://github.com/WhiteVoidia/ludum-dare-33 | |
Tech point hackathon | |
Dev workshop conf | |
react meetup | |
Anthony's "do it more" blog post | |
http://mike-rogers.github.io/2015/06/01/mutation-testing-totally-a-thing/ |
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
Failures: | |
1) ReportCreator premium report template requires manual testing if changed | |
Failure/Error: expect(md5).to eq("4a43fab339b4d07d623cfc447e40f57b"), manual_testing_instructions(md5) | |
Please do manual testing to verify the reports are still working. | |
Pay special attention to the dynamic graphs and any formatting issues. | |
Once tested, update this test with the new md5 value. | |
Actual: b725153eb5b5f4df402041c78eb73beb | |
# ./spec/services/foo/report_creator_spec.rb:44:in `block (3 levels) in <top (required)>' |
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
https://medium.com/@vernacchia/open-source-projects-and-version-control-50d8b5c45b61 |
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
devtown podcast | |
http://arktronic.com/weblog/2014-09-27/hashprop---a-better-way-to-md5-and-sha-in-windows/ | |
https://github.com/spraints/stripchart | |
elevenfifty course | |
midwest ux | |
http://www.meetup.com/Lafayettech/events/209906262/ | |
http://joeldart.wordpress.com/2014/10/01/september-bunkerjs/ | |
http://davefancher.com/2014/09/16/musings-on-cs-evolution/ |
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
CircleCI, Semaphore, Hound, Heroku button, PullReview, VersionEye, reposs, https://scrutinizer-ci.com/, https://hakiri.io/ |
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
public class ViewHelper { | |
@SuppressWarnings("unchecked") | |
public static <ViewType extends View> ViewType findView(final Activity activity, int id) { | |
return (ViewType) activity.findViewById(id); | |
} | |
@SuppressWarnings("unchecked") | |
public static <ViewType extends View> ViewType findView(final Fragment fragment, int id) { | |
return (ViewType) fragment.getView().findViewById(id); | |
} |
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
http://www.techdarkside.com/functionally-repetitive-code-is-best-served-dry-coincidentally-repetitive-code-is-best-served-simple | |
devworkshop conf |