re: https://twitter.com/apiblueprint/status/374456335846612992
application/json;charset=utf-8
application/json; charset=utf-8
application/json; charset="utf-8"
application/json // since JSON's default unicode charset is UTF-8
| set +x | |
| # Add this as the 1st build Exec shell | |
| # Only for situations where you have 1 and only 1 executor per machine | |
| # And you don't care about processes being left running after the job run ends | |
| # Look for processes that have a BUILD_ID env var | |
| # that is NOT the same as the current job's BUILD_ID | |
| # nor same as dontKillMe | |
| echo "Killing orphan spawned processes..." |
re: https://twitter.com/apiblueprint/status/374456335846612992
application/json;charset=utf-8
application/json; charset=utf-8
application/json; charset="utf-8"
application/json // since JSON's default unicode charset is UTF-8
By no means do I want to sound assertive. I lack a lot of knowledge in the area, so please slap me and set me straight, teach me a thing or two. The only thing that I standby is that it is stupid to explain syntax, to re-invent syntax, to argue about syntax, to have a liberal syntax, etc. Whatever does not matter (i.e. produce added value) should be standardized IMO. Eliminate mundane topics from the discussion to elevate the quality level. There are better things to do. That said readability, performance, simplicity, portability, ... still matter. A lot, I'd say.
| class A | |
| @temp: 'A' | |
| constructor: () -> | |
| console.log A.temp | |
| class B extends A | |
| @temp: 'B' | |
| constructor: () -> | |
| super | |
| console.log B.temp |
| If you have | |
| /cars | |
| /cars/{carId} | |
| /individuals | |
| /individuals/{individualId} | |
| and then | |
| /individuals/andrei | |
| needs to link to my cars, which would be /cars?individual=andrei | |
| (( side-tracking here: maybe http://api.garage.com/cars?individual=http://api.garage.com/individuals/andrei seems better since the URIs are the IDs ? wdyt? )) |