Skip to content

Instantly share code, notes, and snippets.

@stevecondylios
stevecondylios / resize-image-in-github-issue-github-flavored-markdown.md
Last active July 9, 2024 20:12
How to Resize an Image in a Github Issue (e.g. Github flavored Markdown)

How to Resize an Image in Github README.md (i.e. Github Flavored Markdown)

Percentage:

<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width=50% height=50%>

Pixels:

<img src="https://user-images.githubusercontent.com/16319829/81180309-2b51f000-8fee-11ea-8a78-ddfe8c3412a7.png" width="150" height="280">

@Moutard3
Moutard3 / mp3-upload-direct-link.md
Last active July 14, 2024 23:11
Tutorials / Walkthrough for uploading & getting direct link of sound file (mp3, ogg, ...)
@rmeekers
rmeekers / code.gs
Created December 11, 2017 08:46
Bulk Convert XLSX Files in Google Drive To Google Sheet
/*
* Setttings
*/
// Google Drive Folder ID which contains the Excel files you want to convert
var driveFolderId = '';
// Folder name in which we should place the original files after conversion
var sourceFilesFolderName = 'Source Files';