Skip to content

Instantly share code, notes, and snippets.

View DavidTheProgrammer's full-sized avatar

Code Is Art DavidTheProgrammer

View GitHub Profile
@DavidTheProgrammer
DavidTheProgrammer / .bashrc
Created March 19, 2021 06:23
Show Git Branch on Terminal
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
// Import Lodash library
const _ = require('lodash');
// Permissions array from the database.
const permissionsArray = [
{
name: 'Home Appliances',
rules : {
read: true,
write: true,
Permissions = [
{
name: 'Home Appliances',
rules : {
read: true,
write: true,
delete: true
}
},
{
// Import Lodash library
const _ = require('lodash');
// Original perissions object
const _permissions = {
homeAppliances: {
read: true,
write: true,
delete: true
},
const permissions = {
homeAppliances: {
read: true,
write: true,
delete: true
},
haberdashery: {
read: true,
write: true,
delete: false
// ... Schema above
productCategories:[
{
name: "Home Appliances",
products: [
// ... List of products
]
},
{
name: "Haberdashery",