Skip to content

Instantly share code, notes, and snippets.

View tailorvj's full-sized avatar
🤠
Yes, it's me

Tailor VJ tailorvj

🤠
Yes, it's me
View GitHub Profile
@tailorvj
tailorvj / docker-compose.yml
Created July 30, 2019 16:41
Docker compose file for FullPageOS
version: '3.6'
services:
custompios:
image: guysoft/custompios:devel
container_name: mydistro_builder
tty: true
restart: always
privileged: true
volumes:
@tailorvj
tailorvj / dotsession-example.json
Created February 20, 2019 23:33
cat ~/.fullpagedashboard-client/.session.json data from a real live session before data model change to playlists
{
"dashboards": {
"active": "slidespresentation",
"items": [
{
"id": "slidespresentation",
"display": "Slides Presentation",
"url": "https://docs.google.com/presentation/d/e/2PACX-1vQAvcs1q2d1ftuMtmOm1pV2cawiHbNS8jRY52a8vJX9FNIB_LxyX52oYlI6a5cB0esDIoC4EugRDp5E/pub?start=true&loop=true&delayms=3000"
},
{
@tailorvj
tailorvj / fullpagedashboard-client-playlist.json
Created February 20, 2019 17:34
Initial playlist data model for fullpagedashboard-client
{
"schedules": [
{
"schedule_id": "833ADC6F-B47D-4398-9EE7-43525BEB15D8",
"schedule_settings" : [
{
"defaultUrl": "http://404.jodi.org/",
"defaultDuration": 1200000 ,
"name": "hourly rotating schedule"
}
@tailorvj
tailorvj / Firebase database rules #1
Created February 8, 2019 12:56
Firebase database rules set that allows logged in users only to read and write their own user into the users collection
{
"rules": {
"users" {
"$uid": {
".read": "$uid === auth.uid",
".write": "$uid === auth.uid"
}
}
}
}