Skip to content

Instantly share code, notes, and snippets.

View roelofjan-elsinga's full-sized avatar
Building fast applications

Roelof Jan Elsinga roelofjan-elsinga

Building fast applications
View GitHub Profile
@roelofjan-elsinga
roelofjan-elsinga / index.html
Created July 30, 2020 08:04
Load FB messenger widget on click
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script defer>
function loadMessenger() {
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v7.0'
});
};
@roelofjan-elsinga
roelofjan-elsinga / webpack.mix.js
Last active June 17, 2022 19:44
Laravel Mix Workbox example
const mix = require('laravel-mix');
// Import the workbox plugin
require('laravel-mix-workbox');
mix
// ... js, scss, and other rules
// webpackConfig is important here
.webpackConfig({
@roelofjan-elsinga
roelofjan-elsinga / index.html
Created August 5, 2020 11:23
Include Service worker in your HTML
<script>
// Check that service workers are supported
if ('serviceWorker' in navigator) {
// Use the window load event to keep the page load performant
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js');
});
}
</script>
@roelofjan-elsinga
roelofjan-elsinga / test.csv
Created January 26, 2022 14:33
Test CSV file
ID Titel Custom ranking Description
10001 Henk 1 Telt niet mee
10002 Henk 2 Telt niet mee
10003 Henk 3 Telt niet mee
10004 Henk 4 Telt niet mee
10005 Henk 5 Telt niet mee
10006 Henk 6 Telt niet mee
10007 Henk 7 Telt niet mee
10008 Henk 8 Telt niet mee
10009 Henk 9 Telt niet mee