Skip to content
View asquigglytwist's full-sized avatar
💭
Here we go, again!!!
💭
Here we go, again!!!
  • Devil's WorkShop
Block or Report

Block or report asquigglytwist

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
asquigglytwist/README.md
  • 👋 Hi, I’m @asquigglytwist
  • 👀 I’m interested in Security, Reverse Engineering, PostMortem analysis
  • 🌱 I’m currently learning Reverse Engineering
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

Pinned

  1. Utils Utils Public

    A set of Utils that I had put together

    C# 1 1

  2. A few helper functions for assisting... A few helper functions for assisting with operations on a Directory.
    1
    public static List<string> GetFileNamesWithoutExtensionAsList(string dir, string pattern)
    2
    {
    3
        if (Directory.Exists(dir))
    4
        {
    5
            return new DirectoryInfo(dir).GetFiles(pattern, SearchOption.TopDirectoryOnly)
  3. An independent library for parsing a... An independent library for parsing and inferring from content within a web-page. (https://asquigglytwist.github.io/JSUtils/InferenceEngine/)
    1
    class InferenceTest {
    2
        matches(nodeContent) {
    3
            throw new TypeError('This method should be overridden by inheriting classes.');
    4
        }
    5
        get parsedValue() {
  4. Parse XML Document using LINQ Parse XML Document using LINQ
    1
    var xDoc = XDocument.Load(filePath);
    2
    string bookISBN = xDoc.Descendants("BookISBNCode").First().Value,
    3
        bookName = xDoc.Descendants("BookName").First().Value,
    4
        authorName = xDoc.Descendants("AuthorName").First().Value,
    5
        releaseDate = xDoc.Descendants("ReleaseDate").First().Value;
  5. SeeBee SeeBee Public

    A PML Analyzer.

    C# 6 2

  6. InScrutable InScrutable Public

    Secure Password Storage / Manager

    C# 2