Questions tagged [dashing]

A Sinatra based framework for building dashboards in simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Dashing is a Sinatra based framework that lets you build dashboards in a simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Questions tagged should also be tagged .


Resources


Reated tags

241 questions
0
votes
1 answer

How to push data into widget using dashing dashboard

I want to push numeric data from a file to my dashboard. I am using the following .rb file as job for pushing the data SCHEDULER.every '30s' do var = File.open("/dashing/abhi/sample.txt", "r") var.each_line do |line| puts…
Abhi
  • 1
  • 1
0
votes
1 answer

Call bash script on button click in a Ruby/Smashing web app

I was asked to contribute to a simple web app built using Smashing (a Sinatra-based framework). I have a little experience with rails, but I am not familiar with this framework (or Sinatra) nor I am sure why it was chosen. I understand it is useful…
Tommy
  • 628
  • 11
  • 22
0
votes
0 answers

CoffeeScript time check

I'm trying to make a dashboard for work with Smashing (used to be called Dashing), it runs on a Raspberry Pi 3B. I am new to coffeescript. I'm trying to make an open sign, It should: Check the day and the hours and if it is tuesday, wednesday or…
BillRay
  • 51
  • 5
0
votes
1 answer

Dashing.io Widget with a marquee

iam working with dashing.io and i want to build a widget with a marquee. I did a marquee with css animation and html (http://jsfiddle.net/oLLzsyud/). It works with that, but it got it the widget like that: sccs: .widget-marquee { background:…
0
votes
0 answers

Designing dashing for Jenkins job for recent 10 changes

anyone did code for dashing for- last 10 changes for a job in Jenkins , which we can view on dashing?I am working on it, but it is giving error.Can anyone provide the code for the same ?
0
votes
1 answer

How can I stop Dashing from updating widgets outside of viewport

I have set up a Home-automation dashboard using Shopify/Dashing as base. Dashing uses Gridster.js to allocate the large amount of widgets I have in columns & pages. The pages are being switched with Dashing.cycleDashboards(). The widgets are binded…
mdbxz
  • 189
  • 2
  • 11
0
votes
1 answer

Django-Dashing Custom Widget HTML Location

I'm using the Django-Dashing framework (https://github.com/talpor/django-dashing), and I can't figure out where to place my HTML file for the custom widget that I am using. I have the following code in my dashboard.html file, which is being loaded…
Hugh Han
  • 11
  • 2
  • 4
0
votes
0 answers

Two scripts - read / write clash

I have two separate scripts, one written in Python and one in Ruby, which run on a schedule to achieve a single goal. Ruby isn't my code of choice, but it is all I can use for this task. The Python script is run every 30 seconds, talks to a few…
Mark
  • 1,277
  • 3
  • 13
  • 27
0
votes
2 answers

How to parse value with rivets.js?

I am using Dashing framework based on Django. HTML using the Rivets.js conventions to bind data to the script file.

{ title }

{ value }

{ detail }

Ndrew
  • 1
  • 1
0
votes
1 answer

snapshot.jpg of Camera IP(D-LINK DSC 4201) not refresh in Dashing

Thanks for click on this post, I have a Dashboard powered by Dashing on my RPI 3 where I have add a widget for my camera IP (D-link DSC 4201). Camera-widget Link There is the ruby jobs who catch the snapshot.jpeg of my camera : require…
Thibz
  • 3
  • 4
0
votes
0 answers

Dashing: Prevent Movement Of Widgets

Is there any way to prevent movement / dragging of widgets in a dashing dashboard? My dashboard works perfectly well but people accidentally move the widgets around. I'd like to fix the dashboard layout to prevent this.
Mark
  • 1,277
  • 3
  • 13
  • 27
0
votes
1 answer

Connection refused using Dashing with Raspberry Pi

I've looked everywhere and can't find an elegant solution to this. I'm trying to run Dashing on a Raspberry Pi - and I'm having problems connecting to the dashboard. Dashing logs say: Listening on 0.0.0.0:3030 However, my localhost IP is…
Matt Visser
  • 102
  • 8
0
votes
1 answer

Host 2 application under one domain Apache HTTPD

I'm trying to configure Apache HTTPD 2.4 to front two different applications being hosted on the same server. App1 is reachable on port 8080 (Tomcat) mysingledomain.com:8080 App2 is reachable on port 3030 (Ruby…
SGM1
  • 968
  • 2
  • 12
  • 23
0
votes
1 answer

JIRA-Ruby_ scheduler caught exception: JIRA::HTTPError

i'm working on monitoring my jira bugs with dashing and jira-ruby. I found this widget but i have an error, when i started dashing. Here the error: scheduler caught exception: JIRA::HTTPError …
emoleumassi
  • 4,881
  • 13
  • 67
  • 93
0
votes
2 answers

How do I install Ruby on a server through VPN?

So, I'm doing sort of a challenge where I need to present a dashboard that shows real-time data about an array of things. Decided to use dashing gem for ruby (dashing.io), I've managed to do it on my Windows PC, i've learned the basics about it and…