Skip to content

Instantly share code, notes, and snippets.

View marwann's full-sized avatar
📂
www.superdocu.com - make onboarding a breeze

Marwann marwann

📂
www.superdocu.com - make onboarding a breeze
View GitHub Profile
@marwann
marwann / posts.md
Last active February 6, 2023 14:01
Superdocu 2-year anniversary posts

Two-year anniversary of Superdocu: lessons learned

Superdocu celebrates two years in business. It wouldn’t be there without all the resources we read, the podcasts we listened to, and the people we met. It’s time for us to give back in a series of posts, where we’ll reflect on our journey: marketing, design, entrepreneurship, and strategy are topics I’ll talk about.

  1. Lesson 1: How to define your startup’s brand identity?
  2. Lesson 2: Positioning is crucial for any startup
  3. Lesson 3: When you should automate stuff (or not)
  4. Lesson 4: Freelancing while growing your (boostrapped) startup is a good idea
  5. Lesson 5: [Good things come to those who wait (and hustle in the meantime)](https://www.linkedi
@mrmartineau
mrmartineau / stimulus.md
Last active April 9, 2025 15:37
Stimulus cheatsheet

MVP and Alumni



À la recherche d'un Dev pour lancer ton MVP ? À la recherche d'un projet pour continuer à progresser après ton Bootcamp ? Rejoins le groupe Facebook MVP and Alumni


Awesome Bootcamps List

@dtoki
dtoki / PostData.js
Last active November 15, 2022 16:44
Sending data to a web hook using javascript XMLHttpRequest #clientside
function postDataToWebhook(data){
//get the values needed from the passed in json object
var userName=data.name;
var userPlatform=data.platform;
var userEmail=data.email;
//url to your webhook
var webHookUrl="webhook_url";
//https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
var oReq = new XMLHttpRequest();
@phatty
phatty / SQLDateUtility
Last active September 22, 2021 10:37
SQL Date Utility
– Microsoft SQL Server T-SQL date and datetime formats
– Date time formats – mssql datetime
– MSSQL getdate returns current system date and time in standard internal format
SELECT convert(varchar, getdate(), 100) – mon dd yyyy hh:mmAM (or PM)
– Oct 2 2008 11:01AM
SELECT convert(varchar, getdate(), 101) – mm/dd/yyyy - 10/02/2008
SELECT convert(varchar, getdate(), 102) – yyyy.mm.dd – 2008.10.02
SELECT convert(varchar, getdate(), 103) – dd/mm/yyyy
SELECT convert(varchar, getdate(), 104) – dd.mm.yyyy
SELECT convert(varchar, getdate(), 105) – dd-mm-yyyy