- 👋 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 ...
Here we go, again!!!
Pinned Loading
-
A few helper functions for assisting...
A few helper functions for assisting with operations on a Directory. 1public static List<string> GetFileNamesWithoutExtensionAsList(string dir, string pattern)
2{
3if (Directory.Exists(dir))
4{
5return new DirectoryInfo(dir).GetFiles(pattern, SearchOption.TopDirectoryOnly)
-
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/) 1class InferenceTest {
2matches(nodeContent) {
3throw new TypeError('This method should be overridden by inheriting classes.');
4}
5get parsedValue() {
-
Parse XML Document using LINQ
Parse XML Document using LINQ 1var xDoc = XDocument.Load(filePath);
2string bookISBN = xDoc.Descendants("BookISBNCode").First().Value,
3bookName = xDoc.Descendants("BookName").First().Value,
4authorName = xDoc.Descendants("AuthorName").First().Value,
5releaseDate = xDoc.Descendants("ReleaseDate").First().Value;
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.