Glimmer Clock

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • glimmer-dsl-swt

    Glimmer DSL for SWT (JRuby Desktop Development Cross-Platform Native GUI Framework) - The Quickest Way From Zero To GUI - If You Liked Shoes, You'll Love Glimmer!

    # From: https://github.com/AndyObtiva/glimmer-dsl-swt/blob/master/docs/reference/GLIMMER_SAMPLES.md#clock class Clock include Glimmer::UI::CustomShell body { shell { text 'Glimmer Clock' minimum_size 400, 430 canvas { initial_time = Time.now background :black animation { every 0.01 # every hundredth of a second to ensure higher accuracy frame { |index| time = Time.now oval(0, 0, 400, 400) { background :white } polygon(-5, -5, 180, 0, -5, 5) { background :black transform { translate 200, 200 rotate(time.sec*6 - 90) } } polygon(-5, -5, 135, 0, -5, 5) { background :dark_gray transform { translate 200, 200 rotate(time.min*6 - 90) } } polygon(-5, -5, 90, 0, -5, 5) { background :gray transform { translate 200, 200 rotate((time.hour - 12)*30 - 90) } } } } } } } end Clock.launch

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts