Skip to content

Instantly share code, notes, and snippets.

View Dufgui's full-sized avatar

Duff Dufgui

  • Arteris IP
  • Ermont
View GitHub Profile
@Dufgui
Dufgui / LICENSE.md
Last active April 18, 2017 21:30 — forked from joepadmiraal/LICENSE.md
Jenkins build status widget for Dashing

The MIT License (MIT)

Copyright (c) 2014 David Underwood

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

@Dufgui
Dufgui / Readme.md
Last active April 18, 2017 21:32 — forked from mavimo/Readme.md

Description

Dashing widget to display a Jenkins build status and build progress

The widget is based on the meter-widget which is default in the Dashing installation

The widget can also see the progress of a "pre-build", i.e if you have a job triggering the actual build you want to define, you can configure this job in the jenkins_build.rb as a prebuild.

For more information, please see Coding Like a tosser

@Dufgui
Dufgui / README.md
Last active April 18, 2017 21:39 — forked from dragonai/README.md
Atlassian JIRA Sprint Progress Meter

##Preview

Description

Simple Dashing widget that displays a progress meter for your current JIRA sprint, with the completed and total point values at the bottom.

##Usage

@Dufgui
Dufgui / README.md
Last active April 18, 2017 21:38 — forked from christiangalsterer/README.md
Atlassian Jira: Number of issues in a Jira Query Language (JQL) search

Description

A Dashing widget to display the number of issues returned by a Jira Query Language (JQL) search. The number of issues will be displayed using the Numbers widget. This widget is a generalized version of the Atlassian Jira: Number of issues in a Jira filter query widget, which shows the number of issues for saved Jira filter.

I just remove the alias on jira-ruby to be compliant with other plugin.

Dependencies

The following dependencies are required. Please add them to your dashing gemfile.

gem 'jira-ruby'
@Dufgui
Dufgui / gist:72debe81068bf3ecd7d8
Last active April 25, 2023 14:34 — forked from eduardocardoso/gist:82a629882ddb02ab3677
Script to delete exited containers and untagged/unused images from docker
#!/bin/bash
set -o errexit
echo "Removing exited docker containers..."
docker ps -a -f status=exited -q | xargs -r docker rm -v
echo "Removing dangling images..."
docker images --no-trunc -q -f dangling=true | xargs -r docker rmi