Skip to content

Instantly share code, notes, and snippets.

View shramee's full-sized avatar
🥳
Coding party

Shramee Srivastav shramee

🥳
Coding party
View GitHub Profile
@shramee
shramee / flexible-mega-menu-storefront-pro.css
Last active May 30, 2018 06:18
Makes mega menu sub menus flow freely in columns
#site-navigation .primary-navigation li.mega-menu>ul>li {
width: 100% !important;
}
#site-navigation .primary-navigation li.mega-menu:hover>ul.sub-menu {
column-count: 4; /* Set desired number of columns */
padding-top: 1em; /* Optional padding */
padding-bottom: 1em; /* Optional padding */
}
@shramee
shramee / Form.class.php
Created July 14, 2018 08:26 — forked from kalinchernev/Form.class.php
Basic class to build a form from an array
<?php
/**
* Form Class
*
* Responsible for building forms
*
* @param array $elements renderable array containing form elements
*
* @return void
@shramee
shramee / functions.php
Created October 17, 2018 08:30 — forked from wpscholar/functions.php
Enqueueing IE conditional stylesheets in WordPress the right way
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' );
/**
* Example callback function that demonstrates how to properly enqueue conditional stylesheets in WordPress for IE.
* IE10 and up does not support conditional comments in standards mode.
*
* @uses wp_style_add_data() WordPress function to add the conditional data.
* @link https://developer.wordpress.org/reference/functions/wp_style_add_data/
@shramee
shramee / firebase-batch.js
Created February 12, 2019 11:39
Class to do a batch set using firestore admin object.
/**
* Class to handle batch set to docs maximum 500 per commit
*/
class BatchSetHandler {
/**
* Construct BatchSetHandler object
* @param {firebase.firestore.WriteBatch} dbBatch
* @param {function} commitCallback Callback after commit promise is resolved.
*/
@shramee
shramee / code-dupllicator.php
Created February 16, 2019 11:40
Duplicates code in TPL replacing vars appropriately.
$tpl = <<<JS
// region BlkTitle
CaxtonBlock( {
id: 'woobuilder-blocks/BlkID',
title: 'BlkTitle',
icon: 'layout',
category: 'woobuilder',
@shramee
shramee / fb-hide-ads.css
Created November 3, 2020 16:13
Hide sponsored stuff on FB
/* Distracting top tabs */
a[aria-label="Watch"], a[aria-label="Marketplace"], a[aria-label="Groups"], a[aria-label="Gaming"] {
/* Make invisible */
opacity: 0;
}
/* Distracting top tabs on hover (mouseover) */
a[aria-label="Watch"]:hover, a[aria-label="Marketplace"]:hover, a[aria-label="Groups"]:hover, a[aria-label="Gaming"]:hover {
/* Slightly visible on hover */
opacity: .5;
@shramee
shramee / sdi-vehicles-drivers-sequelize.js
Created November 1, 2021 08:20
Resets the database for NTU SDI vehicles and driver database
async function addDataToDB() {
try {
// Destructive operation do only when needed
// await sequelize.sync( {force: true} );
await Vehicle.create( {
type: 'car',
carPlateNo: 'SA882'
} );
@shramee
shramee / mongodb-aggregations.js
Created November 26, 2021 03:46
NTU SDI 4.3: Mongo DB aggregation pipelines with restaurants sample data
// region Setup database client
const { MongoClient } = require( 'mongodb' );
// Server to connect to
const uri = "mongodb://localhost:27017";
const dbServer = new MongoClient( uri );
// endregion Setup database client
@shramee
shramee / google-reviews.php
Last active March 11, 2024 18:34
Get and shows google reviews
<?php
/**
* Get google reviews
* @return array Google reviews data
*/
function get_google_reviews(){
// URL to fetch
$google_api = 'https://maps.googleapis.com/maps/api/place/details/json?placeid=<your_place_id>&sensor=true&key=<key>';
@shramee
shramee / String-to-felt.js
Last active October 12, 2022 19:11
Converts a string to felt, @uses BigInt
function asciiToFelt(str) {
if ( ! isNaN( str ) ) return '' + str;
var arr1 = [];
for (var n = 0, l = str.length; n < l; n++) {
const hex = Number(str.charCodeAt(n)).toString(16);
arr1.push(hex);
}
let hex = arr1.join("");
if ( hex %2 ) hex = '0' + hex;
return BigInt('0x' + hex).toString();