nicolasMLV | 7 years ago | on: Django zero-downtime migrations for Postgres that respect database locks
nicolasMLV's comments
nicolasMLV | 7 years ago | on: BreezyPDF Lite: HTML to PDF generation as a Service
`#{chrome_alias} --headless --disable-gpu --print-to-pdf="#{pdf_path}" "#{html_url}"`
nicolasMLV | 8 years ago | on: Modern Front-end in Rails
There's also turbolinks-ios and turbolinks-android, I built my mobile apps with minimal knowledge of Swift and Kotlin.
nicolasMLV | 9 years ago | on: Ask HN: Which developers do you closely follow?
nicolasMLV | 9 years ago | on: Vue.js is easier to learn than jQuery
<script>
var counter = 0;
$(document).ready(function() {
var $output = $('#output');
$('#increment').click(function() {
counter++;
$output.html(counter);
});
$output.html(counter);
});
</script>
with <script>
var counter = 0;
$(document).on('click', '#increment', function() {
counter++;
$('#output').html(counter);
});
</script>nicolasMLV | 9 years ago | on: Karabiner – Easy Keyboard Remapping for OS X
nicolasMLV | 9 years ago | on: Ask HN: How much do you make in London?
nicolasMLV | 9 years ago | on: Stepping Backwards from AngularJS to JQuery – An Experiment
nicolasMLV | 9 years ago | on: Stepping Backwards from AngularJS to JQuery – An Experiment
nicolasMLV | 9 years ago | on: Ruby on Rails Tutorial
nicolasMLV | 9 years ago | on: My condolences, you’re now the maintainer of a popular open source project
nicolasMLV | 9 years ago | on: My time with Rails is up
https://m.signalvnoise.com/provide-sharp-knives-cc0a22bf7934
nicolasMLV | 10 years ago | on: Show HN: Open Hunt – an open and community-run alternative to Product Hunt
Then this line is generated `add_reference :things, :this, foreign_key: true`
and then we call the migration, and there is the foreign key.