This file contains 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
# Remove single quote and space in file names | |
for f in *\'*; do mv "$f" "${f//\'/_}"; done | |
for f in *\ *; do mv "$f" "${f//\ /_}"; done | |
# Convert to PDF | |
echo *.eps | xargs -n1 pstopdf | |
# Move files to pdf folder | |
cd ../pdf/ | |
mv $(echo ../eps/*.pdf) . |
This file contains 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
const redux = require('redux'); | |
const createStore = redux.createStore; | |
const initialState = { | |
counter: 0, | |
}; | |
// Reducer |
This file contains 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
[ | |
{ | |
"key": "cmd+0", | |
"command": "workbench.action.openLastEditorInGroup" | |
}, | |
{ | |
"key": "cmd+1", | |
"command": "workbench.action.openEditorAtIndex1" | |
}, | |
{ |
This file contains 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
(function() { | |
const getLastName = guest => { | |
const title = guest.querySelector('.title-nom-prenom'); | |
const names = title.textContent.split(' '); | |
return names[names.length - 1]; | |
} | |
const isotope = document.querySelector('#isotope-list-invites'); | |
const guests = Array.prototype.slice.call(isotope.querySelectorAll('a')); | |
guests.sort((a, b) => { | |
const aLastName = getLastName(a); |
This file contains 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
document.querySelector('.piano-paywall').remove(); | |
[].forEach.call(document.querySelectorAll('.content'), div => div.style.filter = 'none'); |
This file contains 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
# Extend the official Matomo Docker image | |
FROM matomo:3.13.0 | |
# Install unzip | |
RUN apt update && apt install -y unzip | |
# Download, unzip and install the EnvironmentVariables plugin | |
RUN curl -o EnvironmentVariables.zip \ | |
https://plugins.matomo.org/api/2.0/plugins/EnvironmentVariables/download/latest \ | |
&& unzip EnvironmentVariables.zip \ |
OlderNewer