Skip to content

Instantly share code, notes, and snippets.

View ashishkharcheiu's full-sized avatar

Ashish Kharche ashishkharcheiu

View GitHub Profile
@masrahman
masrahman / index.js
Created June 27, 2019 09:45
Example POST Notification FCM with Express
var app = require('express')();
var http = require('http').Server(app);
var admin = require('firebase-admin');
var bodyParser = require('body-parser');
var serviceAccount = require("your server key");
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: "your database url"
});
@lopspower
lopspower / README.md
Last active November 17, 2025 18:27
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.

All hex value from 100% to 0% alpha:

@staltz
staltz / introrx.md
Last active November 17, 2025 19:44
The introduction to Reactive Programming you've been missing