Skip to content
View ieaster1's full-sized avatar
🎮
🎮

Block or report ieaster1

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. docker-logs-localtime docker-logs-localtime Public

    python exec to replace UTC dates to localtime in docker logs pipe

    Python 2

  2. Output human readable IGMP Groups fr... Output human readable IGMP Groups from /proc/net/igmp
    1
    import re
    2
    
                  
    3
    regex = re.compile(r'[0-9A-F]{8}', flags=re.MULTILINE | re.IGNORECASE)
    4
    
                  
    5
    def readable(s):
  3. ianeaster.com ianeaster.com Public

    HTML

  4. transfernetic transfernetic Public

    Python

  5. scripts scripts Public

    Random Scripts or tools created

    Go 1

  6. pcap2mpeg.py pcap2mpeg.py
    1
    from scapy.all import PcapReader, Raw
    2
    
                  
    3
    pcap = PcapReader("test.pcap")
    4
    
                  
    5
    f = open("test.mpg", "wb")