Skip to content

Instantly share code, notes, and snippets.

View stoneparker's full-sized avatar
🚀
always learning

Vitória Lopes stoneparker

🚀
always learning
View GitHub Profile
@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@lopspower
lopspower / README.md
Last active July 28, 2024 13:35
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@rikkit
rikkit / package.json.example
Last active July 14, 2024 07:35
Rollup + TypeScript + source maps + .d.ts files
{
...
"source": "src/index.ts",
"main": "dist/main.cjs",
"module": "dist/module.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -w -c",
"build": "rollup -c",
"prepack": "yarn run build",