This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<pre> | |
height 200 | |
border 10 | |
margin 11 | |
padding 13 | |
</pre> | |
<table><tr><td> | |
<div id="box" style="width:200px;height:200px;overflow:auto;border:10px solid red;margin:11px;padding:13px;font-size:15px;"> | |
Lorem ipsum content dolor mita | |
Lorem ipsum content dolor mita |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"style": "vanilla_frameless", | |
"quality": 480, | |
"name": "Picovico API sample", | |
"aspect_ratio": "16:9", | |
"assets": [ | |
{ | |
"music": { | |
"asset_id": "aud_6j44J9zjbSQe54ZTTSqUj2" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ----------------- | |
# DISCLAIMER !!! | |
# To be used as is. | |
# -------------------- | |
# Syntax = wal_archive.sh wall_source_fullpath wall_name | |
# archive_command='wal_archive.sh "%p" "%f"' | |
# PS: The order is %p followed by %f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" | |
sudo apt update | |
apt-cache policy docker-ce | |
sudo apt install -y docker-ce | |
#sudo systemctl status docker | |
sudo usermod -aG docker ${USER} | |
sudo curl -L https://github.com/docker/compose/releases/download/1.25.0-rc1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Permission Map Generator and Loader | |
This script generates a permission map from one system and helps to load it into another system with exact permission mapping, | |
regardless of the primary keys in the new system. It also verifies if there are any mismatches between the loaded permissions | |
and the original dump. | |
Functions: | |
dump_groups_and_permissions: Dumps the current permission map from the system. | |
load_groups_and_permissions: Loads a permission map into the system and verifies for any mismatches. |