Skip to content
View freddyb's full-sized avatar

Block or report freddyb

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 Loading

  1. html2dom html2dom Public

    generates JavaScript source code to create Elements from a given html string

    JavaScript 51 8

  2. 0e.vc 0e.vc Public

    a shared short domain for XSS and other hacks

    PHP 31 2

  3. webext-discard-tab webext-discard-tab Public

    Web Extension that allows freezing (discarding) tabs via right-click.

    JavaScript 14 7

  4. passdown passdown Public

    passive downloading

    Python 13 2

  5. python pickle compiler python pickle compiler
    1
    ## compile arbitrary python source code into pickle 
    2
    ##  format. will execute on unpickling.
    3
    ## 
    4
    ## Author: Frederik Braun, Jun 2011
    5
    ## Contact: <fb(AT)frederik-braun.com>
  6. python iterator that returns IP addr... python iterator that returns IP addresses (as strings) for given ip/cidr string
    1
    class cidrator():
    2
        def __init__(self, mask ="192.168.1.1/16", skip255=True, skip0=True):
    3
    	self.skip255 = skip255
    4
    	self.skip0 = skip0
    5