http://www.theatlantic.com/sponsored/cathay-pacific-2016/the-long-road-to-healing/879/
http://www.theatlantic.com/sponsored/cathay-pacific-2016/a-new-way-to-care-for-nepals-poorest/894/
| <html> | |
| <h1>Clean Code Checklist</h1> | |
| <form action=#"> | |
| <fieldset> | |
| <br/><label><input type="checkbox">Reasonable unit test coverage</label> | |
| <br/><label><input type="checkbox">Code is easily understandable</label> | |
| <br/><label><input type="checkbox">Logical module structure</label> | |
| <br/><label><input type="checkbox">Regresssion tests passed</label> | |
| <br/><label><input type="checkbox">Code style tests passed</label> |
| #+STARTUP: showall | |
| * Interesting | |
| ** jezhumble Must-read on contempt culture in tech. Also, for the | |
| record, PHP is my go-to language to get things done. | |
| https://t.co/qjAW0ospit | |
| ** pagerduty Quick Tips: How to Post Mortem Every Incident, by | |
| @pagerduty Product Manager @eurica #devops | |
| https://t.co/Llb7up02Xo https://t.co/7JvtEmR8Qy | |
| ** seradio ser 244: @ewolff talks to @gernotstarke about the |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright (c) 2014 Alexey Kutepov a.k.a. rexim | |
| # Permission is hereby granted, free of charge, to any person | |
| # obtaining a copy of this software and associated documentation files | |
| # (the "Software"), to deal in the Software without restriction, | |
| # including without limitation the rights to use, copy, modify, merge, | |
| # publish, distribute, sublicense, and/or sell copies of the Software, |
| MIT License Copyright (c) 2016 Jan Mewes | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software | |
| and associated documentation files (the "Software"), to deal in the Software without restriction, | |
| including without limitation the rights to use, copy, modify, merge, publish, distribute, | |
| sublicense, and/or sell copies of the Software, and to permit persons to whom the Software | |
| is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or |
| SCRIPT_DIR=$(dirname "$0") |
by Joshua Kerievsky
https://www.industriallogic.com/wp-content/uploads/2005/09/ContinuousLearning.pdf
https://www.oreilly.com/ideas/neal-ford-on-evolutionary-architecture
Interview conducted by Jeff Bleiel (May 4, 2017)
| import org.junit.Test; | |
| import static org.hamcrest.CoreMatchers.is; | |
| import static org.junit.Assert.assertThat; | |
| public class StringTest { | |
| @Test | |
| public void should_format_string() { | |
| String formattedString = String.format("%s, %s, %s.", "a", "b", "c"); |