Search Results for "linux file parser" - Page 9

Showing 773 open source projects for "linux file parser"

View related business solutions
  • Gemini 3 and 200+ AI Models on One Platform Icon
    Gemini 3 and 200+ AI Models on One Platform

    Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console.

    Build, govern, and optimize agents and models with Gemini Enterprise Agent Platform.
    Start Free
  • Forever Free Full-Stack Observability | Grafana Cloud Icon
    Forever Free Full-Stack Observability | Grafana Cloud

    Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.

    Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
    Create free account
  • 1
    The-New-M3U8-Downloader

    The-New-M3U8-Downloader

    Rebulid of M3U8-Downloader

    The-New-M3U8-Downloader is a redesigned version of the original M3U8 downloading tool that focuses on improving usability, download visibility, and performance efficiency. The project introduced a refreshed interface and added real-time feedback features such as taskbar progress indicators and download speed calculation. It improved regex parsing accuracy and optimized internal logic to increase reliability when processing streaming playlists. The tool also displays file sizes and integrates...
    Downloads: 8 This Week
    Last Update:
    See Project
  • 2
    MS Word documents are one of the most commonly used file types. Therefore, extorting textual data from the MS Word document (docx file) can be achieved by decompressing the file. MS-Office Forensics is a tool developed so that it allows investigators to automatically decompress (unzip) the investigated MS Word document. Additionally, it automatically parses and analyzes the contents of the resulted XML files and subfolders. The user can extract various parts such as the document's textual...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    MoonSharp

    MoonSharp

    An interpreter for the Lua language, written entirely in C#

    A complete Lua solution is written entirely in C# for the .NET, Mono, Xamarin and Unity3D platforms. Support for the complete Lua standard library with very few exceptions (mostly located on the 'debug' module) and a few extensions (in the string library, mostly). Supports dumping/loading bytecode for obfuscation and quicker parsing at runtime. An embedded JSON parser (with no dependencies) to convert between JSON and Lua tables. Easy opt-out of Lua standard library modules to sandbox what...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    CommonMark Help

    A help file format based upon CommonMark-compatible text files.

    The CommonMark Help project strives for creating a help file format based upon Markdown documents conformant to the CommonMark specification.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Try Google Cloud Risk-Free With $300 in Credit Icon
    Try Google Cloud Risk-Free With $300 in Credit

    No hidden charges. No surprise bills. Cancel anytime.

    Use your credit across every product. Compute, storage, AI, analytics. When it runs out, 20+ products stay free. You only pay when you choose to.
    Start Free
  • 5

    WindowsUnixFileDeleter

    Software to delete files that start with a "." in the file name. Relev

    Software to delete files that start with a "." in the file name. Relevant if you want to copy data from Unix to Windows systems. Software, um Dateien zu löschen, die mit einem "." beginnen im Dateinamen. Wird gebraucht, wenn man Dateien von Linux- auf Windows-Systeme kopiert.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    VCF Reader

    VCF Reader

    A tool that enables users select and view contact details from a vCard

    A tool that enables users select and view contact details from a vCard (.vcf) format. It also has search functionality and remembers your last viewed file.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7

    [C#] Secure Shredder Console

    A console file shredder that supports many algorithms.

    There are many ways to delete a file, whether you want it to be secure or not, fast or not. Since nowadays, we use computers to store data (including confidential ones), we want to totally delete a file with no traces for any file recovery solution. The program supports Zero Data 1 Pass, British HMG IS5-Baseline 1 Pass, Russian GOST P50739-95 2 Passes, British HMG IS5-Enhanced 3 Passes, US DoD 5220.22-M / Canadian RCMP DSX 3 Passes, German VSITR 7 Passes, Bruce Schneier's 7 Passes,...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8

    appromalib

    light weight application configuration file library

    provides classes to incorporate an application configuration file and manage app properties.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    yaba

    Yet another budget application

    There are lots of "personal finance" and "corporate finance" softwares out there to keep track of what you've done with your money in the past. This one is focused on budgeting, it's about planning the future!
    Downloads: 0 This Week
    Last Update:
    See Project
  • Go from Code to Production URL in Seconds Icon
    Go from Code to Production URL in Seconds

    Cloud Run deploys apps in any language instantly. Scales to zero. Pay only when code runs.

    Skip the Kubernetes configs. Cloud Run handles HTTPS, scaling, and infrastructure automatically. Two million requests free per month.
    Try it free
  • 10
    OpenMobile

    OpenMobile

    A cross platform, modular, C# driven, mobile computing front end.

    A cross platform, modular, C# driven, mobile computing front end.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    MFLib
    MFLib is a c# library to add/edit/delete securities and data to file-based MetaStock databases. It provides a higher level structure to control various MetaStock directories at once. Donations: All the work is being done on spare time by myself. Please consider donating. A little goes a long way. (The link is on the menu bar)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    PrepareForGame

    PrepareForGame

    Reduce resource usage in your Windows 10 PC

    Badly written, poorly coded program that allows you to free resources and preparing the PC for gaming. *** ALPHA version *** Tested on Windows 10 Home Edition, may work on other versions as well but not guaranteed. The program must be copied into the System32 folder. *** Use it under your own risk *** You will probably find bugs and errors. In case, please take note of the error, open a ticket and upload the file PrepareForGame.log located in the System32 folder. I hope you...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13

    NaiveLanguageTools

    C# lexer and parser

    NLT is free, open-source C# lexer and GLR parser suite -- which translates to ability to parse ambiguous grammars. Grammar can be defined directly in code or (preferably) in separate file (lex/yacc-like) for included generator. If you understand/guess the meaning of grammar in C#: // scanning lexer.AddStringRule(")", match => SymbolEnum.RPAREN); // parsing prod_builder.AddProduction(SymbolEnum.exp, SymbolEnum.LPAREN, SymbolEnum.exp, SymbolEnum.RPAREN, (_1, e, _3) => (AstNode)e); or grammar in NLT format: // scanning /[A-Za-z_][A-Za-z_0-9]*/ -> IDENTIFIER, IdentifierSymbol.Create($text); // parsing program -> list:namespace_list { new Program(currCoords(), (Namespaces)list) }; you should be able to use it :-). ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    This application (CD/DVD cataloguer) creates indexes (table of contents) of your floppy or CD/DVD discs. It helps you maintain and organize your collection of floppies, CDs and DVDs. It is designed to be simple, small, effective and easy to use.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15

    Hex File Loader

    A software for upload .hex files to ATMEGA328P and compile .asm files

    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Benkyou Studio

    Benkyou Studio

    Benkyou Studio is a Language study toolkit.

    Benkyou Studio is intended to be a One-stop integrated solution for working and learning with languages, For the Learner, it has flashcards,A multi choice Quiz which remembers and adjusts to the words you are struggling with, Speech Synthesis helps you hear the words as you study, you can even export the wordlist to sound files for your portable music player For the Professional, it has unicode lookup and converters, a character map viewer and exporter, a text file converter for...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17

    COOL C# framework

    COOL C# framework

    This framework is translation of COOL Java framework for Compilers course by Prof. Alex Aiken on Coursera platform: https://www.coursera.org/course/compilers Note: the framework is unofficial, but Honor Code still applies! Please download framework file and refer to README for further information how to use this framework.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    The dotSesame project is a C# port of the Sesame project, which is originally written in Java. It is an open source RDF database with support for RDF Schema inferencing and querying. Full documentation of Sesame can be found at http://www.openrdf.org/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    Marvel Heroes Advanced Settings

    Marvel Heroes tool for adding extra keybindings.

    Marvel Heroes Advanced Settings allows you to configure and add extra keybindings beyond the default and add them automatically to your keybindings .ini file.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20

    Brainwave Analyzer

    Discrete Fourier Transform of Brainwaves

    The Brainwave Analyzer is NOT a finished program. So far it does do Discrete Fourier Transform of brainwaves (very slow), but does not yet do Fast Fourier Transform of brainwaves, nor does it yet calculate frequency. (Later more complete versions should be coming over the next few months.) Written in C# 2010 Access file and csv sample files included. Program assumes that access file is at: C:\Openvibe\OpenVibe.accdb The Brainwave Analyzer is a free open source program written by...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    KlickTel Parser

    KlickTel Parser

    With this tool you can search on KickTel and save Dates as DBF

    Downloads: 0 This Week
    Last Update:
    See Project
  • 22

    KPSourceForgeUpdateChecker

    A plugin to allow other plugins to check for updates on SourceForge

    This is a plugin to KeePass <http://www.KeePass.info> to allow other plugins to check for updates using the latest file release on SourceForge. On it's own, it does nothing, but other plugins may require this one in order to provide version information when KeePass checks for upades
    Downloads: 10 This Week
    Last Update:
    See Project
  • 23
    Double File

    Double File

    Examine your file collection: what's backed up; disk usage.

    On the surface, Double File may look like WinDirStat (from which it borrows code) or similar graphical drive utilization utilities: e.g. the second assembly 'Volume Treemap'. However, Double File is project-based: it saves file checksums in directory listings you store locally. It facilitates planning and transitioning between computers and operating systems: snapshot your drive and safely archive it.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    DotNetWikiBot Framework

    DotNetWikiBot Framework

    Make robots for MediaWiki-powered sites!

    The DotNetWikiBot Framework was developed so that it can offer a helping hand with many complicated and routine tasks of wiki site development and maintenance. DotNetWikiBot Framework is a cross-platform full-featured client API, that allows you to build programs and web robots easily to manage information on MediaWiki-powered sites. DotNetWikiBot Framework can also be used for learning C# and .NET.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Michel Max Spread - XLSX Loader/Creator

    Michel Max Spread - XLSX Loader/Creator

    Michel Max MMSpread is an API XLSX files without the MS Excel ins...

    The Michel Max - MMSpread is an API to generate XLSX Spreadsheets without having the Microsoft Excel installed in the Machine. It allows you to Load XLSX files and edit them, or even create them from nothing, without having annoying alerts when it is open. It supports the following Microsoft Excel items: - All styles (font, border, background, etc). - Validation: List ONLY, and it has to be sequential. - Conditional Formula Formatting. - Comments. - Number Format. Extra...
    Downloads: 0 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB