I hereby claim:
- I am asxyzp on github.
- I am asxyzp (https://keybase.io/asxyzp) on keybase.
- I have a public key ASDkhPrGideliNj5ufyb1qEGYh_FN75T4SbIC33rIYNFgAo
To claim this, I am signing this object:
{ | |
"2049": { | |
"name": "exclamation question mark", | |
"unicode_version": 3, | |
"category": "symbols", | |
"order": 3046, | |
"display": 1, | |
"shortname": ":interrobang:", | |
"shortname_alternates": [], | |
"ascii": [], |
/** | |
* @name textResize() | |
* @description RE-SIZING FONT-SIZE TO THE OPTIMAL VALUE (OVERFLOW CORRECTION METHOD) | |
* @param: UNDEFINED | |
* @returns: UNDEFINED | |
*/ | |
const textResize = () => { | |
//RE-SIZING TEXT FOR ALL THE POSTS CONTAINING ".main" CLASS | |
document.querySelectorAll(".main").forEach((main) => { |
I hereby claim:
To claim this, I am signing this object:
#Handling Python API of jisho.org | |
#See the output in output.txt | |
#By @asxyzp | |
import requests | |
import json | |
import sys | |
sys.stdin.reconfigure(encoding='utf8') | |
sys.stdout.reconfigure(encoding='utf8') |
/* | |
Setting up Deta Base | |
Created By Aashish Loknath Panigrahi | |
*/ | |
const {Deta} = require('deta'); | |
const dotenv = require('dotenv').config({path: __dirname + '/.env'}); | |
const deta = Deta(dotenv['parsed']['PROJECT_KEY']); | |
const db = deta.Base('emoji-karma'); | |
function Karma(fire,water,earth,air,space){ |
/* | |
Basic example of server side handling & database updates | |
Created by Aashish Loknath Panigrahi (@asxyzp) | |
*/ | |
const path = require('path'); | |
const http = require('http'); | |
const dotenv = require('dotenv').config({'path':path.join(__dirname,'.env')}); | |
const karma = require('./database'); |
/* | |
Creating a CRUD App using Deta : https://docs.deta.sh/docs/base/node_tutorial/#building-a-simple-crud-with-deta-base | |
Created by Aashish Loknath Panigrahi (@asxyzp) | |
*/ | |
const dotenv = require('dotenv').config({path: __dirname + '/.env'}); | |
const {Deta} = require('deta'); | |
const deta = Deta(dotenv['parsed']['PROJECT_KEY']); | |
const db = deta.Base('users'); | |
async function signup (email,pswrd) { |