Skip to content

Instantly share code, notes, and snippets.

@hachichaud
hachichaud / tutorial-custom.scss
Created April 9, 2020 12:07
How to migrate the custom css of the tutorial
/*
Ce qui était avant:
*/
.tutorial-swiper__button-start {
color: #4E3A63; // main color
position: relative;
transition: all .5s;
&::after {
@hachichaud
hachichaud / Code.gs
Created February 19, 2018 15:27
Google AppScript to collect Talkus+Slack data
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Data");
var toLog = handleTalkusEvent(e.postData.contents);
if (!toLog) {
return;
}
// Improve this by getting first row column names
sheet.appendRow([toLog.endTime, toLog.channelName, toLog.userAsking, toLog.userAskingJoinTime, toLog.firstResponder, toLog.firstResponseTime, toLog.messages]);
}