Open/Install My clockface Fitbit mobile app here [My Clockface - Fitbit app] go to Settings
! Enjoy playing with text + emojis, take some motivation :
Some | Examples |
---|
{"latitude":-33.8688,"longitude":151.2093,"timezone":"Australia/Sydney","currently":{"time":1584326846,"summary":"Mostly Cloudy","icon":"wind","precipIntensity":0.6398,"precipProbability":0.21,"precipType":"rain","temperature":20.88,"apparentTemperature":20.88,"dewPoint":15,"humidity":0.69,"pressure":1025.3,"windSpeed":6.88,"windGust":8.6,"windBearing":157,"cloudCover":0.78,"uvIndex":5,"visibility":16.093,"ozone":276.6},"offset":11} |
const base64EncodedString = "YWJjZDEyMzQ=" ; // abcd1234 | |
console.log("INPUT >> ",base64EncodedString," <<"); | |
if(!base64EncodedString.length > 0) { | |
pm.test("FAIL ", () => {throw new Error(" 'base64EncodedString' can not be empty !!")}); | |
}else{ | |
try{ | |
var wordArray = CryptoJS.enc.Base64.parse(base64EncodedString); | |
var decodedString = CryptoJS.enc.Utf8.stringify(wordArray); | |
console.log("OUTPUT >> ",decodedString," <<"); |
{ | |
"info": { | |
"_postman_id": "c23935f1-3640-45fd-adf2-0e342084262e", | |
"name": "Base64", | |
"description": "Some Interesting ause cases of Postman for making Day to Day live easier", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Base64__EN-CODING", |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Section | |
title={ | |
<Text bold align="center"> | |
Demo Settings |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
const NEW_EMOJI_URL = "http://bit.ly/emojiHelp"; | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Section> | |
<Text align="center"> |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
// ref Official : https://www.paypal.com/us/webapps/mpp/logo-center | |
//const PP_LOGO = 'https://www.paypalobjects.com/webstatic/mktg/logo/pp_cc_mark_74x46.jpg' | |
//you may also pick one from https://www.flaticon.com/free-icons/paypal | |
const PP_LOGO = "https://cdn-icons-png.flaticon.com/512/888/888871.png"; | |
//replace with your personalised link | |
const PAYPAL_ME_LINK = "https://www.paypal.com/au/webapps/mpp/paypal-me"; |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Text align="right">This text will align to the right side</Text> | |
<Text align="left">This text will align to the left side</Text> | |
<Text align="center"> Text at center </Text> | |
<Text bold>Bold Text.</Text> |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Section> | |
<Text> | |
Sync frequence in minutes :{" "} | |
<Text bold>{props.settingsStorage.getItem("minutes")}</Text> |
// author : https://github.com/eaccmk | |
// created : sep-2021 | |
function mySettings(props) { | |
return ( | |
<Page> | |
<TextInput | |
title="Click me to type" | |
label="Type (one, two ...)" | |
placeholder="Type here" |