Skip to content

Instantly share code, notes, and snippets.

View LJBD's full-sized avatar

Łukasz Dudek LJBD

  • Kraków, Polska
View GitHub Profile
@LJBD
LJBD / Taurus4.1.0Review.md
Last active July 25, 2017 10:02
Taurus 4.1.0 review

Installation

  • Install Taurus from the tar.gz : pip install <tarball_artifact_URL>

Taurusdemo

  • Test all of the buttons of the taurusdemo. All demos should launch correctly and without raising exceptions
  • For TaurusLabel, check foreground role, the background role, the prefix, the suffix, etc.
  • For TaurusLabel, use a model with fragment (e.g., sys/tg_test/1/ampli#magnitude, eval:Q("1 mm")#unit")
    • When setting a model using eval (like the one above), I have to make a change to the foreground role for the value to be displayed correctly. It also happens when I change the eval expression.
  • For LCD: Test the foreground roles and the background role
@LJBD
LJBD / list_gitorious_repos.py
Created November 8, 2016 11:29 — forked from chillu/list_gitorious_repos.py
Python script to list all repos for gitorious projects. Since this feature is not available through the UI, we need to use the provided XML data as a start to aggregate these results. Requires Python 3. Example usage: python3.3 list_gitorious_repos.py -u myuser@test.com -p mypassword --repo cms http://gitorious.silverstripe.com
import argparse
import xml.etree.ElementTree as ET
import urllib.request
import base64
import json
import os.path
import re
class GitoriousRepoLister:
"""