Skip to content
View tnt's full-sized avatar
  • openthinclient gmbh
  • Dresden, Germany
Block or Report

Block or report tnt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. text_hyphen_rails text_hyphen_rails Public

    This is a Rails/ActiveRecord-wrapper for the https://github.com/halostatue/text-hyphen package

    Ruby

  2. ansible-gpg-import-module ansible-gpg-import-module Public

    Ansible module for managing GPG-keys

    Python 32 9

  3. sanos sanos Public

    Sanos editor from http://www.jbox.dk/downloads/edit.c

    C

  4. t-type t-type Public

    Fork from https://www.tipp10.com/en/download/

    C++

  5. Repairing botched youtube time links... Repairing botched youtube time links in a pry session
    1
    require 'nokogiri'
    2
    
                  
    3
    d = '<p><a href="https://www.youtube.com/watch?v=kSx8HJfBl7U#">00:04</a> November 20, 2013, <a href="https://www.youtube.com/watch?v=kSx8HJfBl7U#">01:13</a> … <a href="https://www.youtube.com/watch?v=kSx8HJfBl7U#">04:32:27</a> July 17, <a href="https://www.youtube.com/watch?v=kSx8HJfBl7U#">05:03:33</a> Credits</p>'
    4
    
                  
    5
    def str2secs st; s,m,h = st.split(':').reverse.map(&:to_i); h.to_i*3600+m*60+s;end
  6. A working version of https://devblog... A working version of https://devblogs.microsoft.com/scripting/creating-a-platform-independent-function-in-powershell/
    1
    function ConvertFrom-HereString {
    2
      param (
    3
        [string]$String=''
    4
      )
    5