Skip to content

Instantly share code, notes, and snippets.

View mussacharles60's full-sized avatar
:octocat:

Mussa Charles mussacharles60

:octocat:
View GitHub Profile
@mussacharles60
mussacharles60 / box-shadow.html
Created March 14, 2022 19:00 — forked from ocean90/box-shadow.html
CSS3 Box Shadow, only top/right/bottom/left and all
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;
@mussacharles60
mussacharles60 / webhook.js
Created January 21, 2021 10:42 — forked from RWaltersMA/webhook.js
MongoDB Stitch webhook for IoT blog
exports = function(payload,response) {
const mongodb = context.services.get("mongodb-atlas");
const sensordata = mongodb.db("iotdb").collection("sensordata");
var body = {};
if (payload.body) {
try{
@mussacharles60
mussacharles60 / EachDirectoryPath.md
Created October 30, 2019 02:51 — forked from granoeste/EachDirectoryPath.md
[Android] How to get the each directory path.

System directories

Method Result
Environment.getDataDirectory() /data
Environment.getDownloadCacheDirectory() /cache
Environment.getRootDirectory() /system

External storage directories