Search Results for "c for windows 8" - Page 41

Showing 52749 open source projects for "c for windows 8"

View related business solutions
  • Cloudflare secures and ensures the reliability of your external-facing resources such as websites, APIs, and applications. Icon
    It protects your internal resources such as behind-the-firewall applications, teams, and devices.
  • Free and Open Source HR Software Icon
    Free and Open Source HR Software

    OrangeHRM provides a world-class HRIS experience and offers everything you and your team need to be that HR hero you know that you are.

    Give your HR team the tools they need to streamline administrative tasks, support employees, and make informed decisions with the OrangeHRM free and open source HR software.
  • 1
    gopsutil

    gopsutil

    psutil for golang

    gopsutil tag policy is almost same as Semantic Versioning but automatically increases like Ubuntu versioning. gopsutil aims to keep backward compatibility until a major version change. Tagged at the end of the month, but if there are only a few commits, it can be skipped. All works are implemented without cgo by porting C structs to golang structs.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    Irony-Mode

    Irony-Mode

    A C/C++ minor mode for Emacs powered by libclang

    irony-mode is an Emacs minor-mode that aims at improving the editing experience for the C, C++ and Objective-C languages. It works by using a combination of an Emacs package and a C++ program (irony-server) exposing libclang. irony-server provides the libclang interface to irony-mode. It uses a simple protocol based on S-expression. This server, written in C++ and requires the specified packages to be installed on your system. Exactly one package manager should manage irony-mode. If using apt...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    mlpack

    mlpack

    mlpack: a scalable C++ machine learning library

    mlpack is an intuitive, fast, and flexible C++ machine learning library with bindings to other languages. It is meant to be a machine learning analog to LAPACK, and aims to implement a wide array of machine learning methods and functions as a "swiss army knife" for machine learning researchers. In addition to its powerful C++ interface, mlpack also provides command-line programs, Python bindings, Julia bindings, Go bindings and R bindings. Written in C++ and built on the Armadillo linear...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Firebird

    Firebird

    Firebird server, client and tools

    ... Search UDR" to perform full-text search queries within SQL and PSQL. UDR works with Firebird 3 and 4, for Windows, there are ready-to-use binaries, for Linux, it is necessary to build the UDR. The UDR is based on Lucene++ engine, with all the powerful features required for full-text search and with very fast performance (build as native C++ library). The Firebird Project is a commercially independent project of C/C++ programmers.
    Downloads: 0 This Week
    Last Update:
    See Project
  • RMM Software | Remote Monitoring Platform and Tools Icon
    RMM Software | Remote Monitoring Platform and Tools

    Best-in-class automation, scalability, and single-pane IT management.

    Don’t settle when it comes to managing your clients’ IT infrastructure. Exceed their expectations with ConnectWise RMM, our MSP RMM software that provides proactive tools and NOC services—regardless of device environment. With the number of new vulnerabilities rising each year, smart patching procedures have never been more important. We automatically test and deploy patches when they are viable and restrict patches that are harmful. Get better protection for clients while you spend less time managing endpoints and more time growing your business. It’s tough to locate, afford, and retain quality talent. In fact, 81% of IT leaders say it’s hard to find the recruits they need. Add ConnectWise RMM, NOC services and get the expertise and problem resolution you need to become the advisor your clients demand—without adding headcount.
  • 5
    dqlite

    dqlite

    Embeddable, replicated and fault tolerant SQL engine

    Dqlite is a fast, embedded, persistent SQL database with Raft consensus that is perfect for fault-tolerant IoT and Edge devices. Dqlite (distributed SQLite) extends SQLite across a cluster of machines, with automatic failover and high-availability to keep your application running. It uses C-Raft, an optimised Raft implementation in C, to gain high-performance transactional consensus and fault tolerance while preserving SQlite’s outstanding efficiency and tiny footprint. Stable Golang client...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    AWS IoT Device SDK for JavaScript v2

    AWS IoT Device SDK for JavaScript v2

    Next generation AWS IoT Client SDK for Node.js using the AWS Runtime

    This document provides information about the AWS IoT device SDK for Javascript V2. If you have any issues or feature requests, please file an issue or pull request. This SDK is built on the AWS Common Runtime, a collection of libraries (aws-c-common, aws-c-io, aws-c-mqtt, aws-c-http, aws-c-cal ...) written in C to be cross-platform, high-performance, secure, and reliable. The libraries are bound to JS by the awscrt package. You will need to install NodeJS in orderto run the SDK on Windows...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    doctest

    doctest

    Fastest feature-rich C++11/14/17/20 single-header testing framework

    doctest is a new C++ testing framework but is by far the fastest both in compile times (by orders of magnitude) and runtime compared to other feature-rich alternatives. It brings the ability of compiled languages such as D / Rust / Nim to have tests written directly in the production code thanks to a fast, transparent and flexible test runner with a clean interface. The framework is and will stay free but needs your support to sustain its development. There are lots of new features...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    xmake

    xmake

    A cross-platform build utility based on Lua

    A cross-platform build utility based on Lua. Xmake is a lightweight, cross-platform build utility based on Lua. It is very lightweight and has no dependencies due to the integration of the Lua runtime. It uses xmake.lua to maintain project builds with a very simple and readable syntax. We can use it to build projects directly like Make/Ninja or generate project files like CMake/Meson. It also has a built-in package management system to help users integrate C/C++ dependencies. The official...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    ModernCppStarter

    ModernCppStarter

    Kick-start your C++! A template for modern C++ projects

    Setting up a new C++ project usually requires a significant amount of preparation and boilerplate code, even more so for modern C++ projects with tests, executables and continuous integration. This template is the result of learnings from many previous projects and should help reduce the work required to setup up a modern C++ project. Installable target with automatic versioning information and header generation via PackageProject.cmake. Automatic documentation and deployment with Doxygen...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Field Service Management Software | BlueFolder Icon
    Field Service Management Software | BlueFolder

    Maximize technician productivity with intuitive field service software

    Track all your service data in one easy-to-use system, enabling your team to move faster and generate more revenue for your bottom line.
  • 10
    moodycamel::ConcurrentQueue

    moodycamel::ConcurrentQueue

    Multi-producer, multi-consumer lock-free concurrent queue

    There are not that many full-fledged lock-free queues for C++. Boost has one, but it's limited to objects with trivial assignment operators and trivial destructors, for example. Intel's TBB queue isn't lock-free, and requires trivial constructors too. There're many academic papers that implement lock-free queues in C++, but usable source code is hard to find, and tests even more so. This queue not only has less limitations than others (for the most part), but it's also faster. It's been fairly...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    EASTL

    EASTL

    EASTL, Electronic Arts Standard Template Library

    EASTL stands for Electronic Arts Standard Template Library. It is a C++ template library of containers, algorithms, and iterators useful for runtime and tool development across multiple platforms. It is a fairly extensive and robust implementation of such a library and has an emphasis on high performance above all other considerations. If you are familiar with the C++ STL or have worked with other templated container/algorithm libraries, you probably don't need to read this. If you have...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    Halide

    A language for fast, portable data-parallel computation

    Halide is a programming language for fast, portable data-parallel computation. It was designed to make writing high-performance image and array processing code much easier on modern machines. It works on all major operating systems and with several CPU architectures (X86, ARM, MIPS, Hexagon, PowerPC) and GPU Compute APIs (CUDA, OpenCL, OpenGL, among others). It isn't a standalone programming language however; rather it is embedded in C++ which means that you write C++ code, building...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    CV-CUDA

    CV-CUDA

    CV-CUDA™ is an open-source, GPU accelerated library

    CV-CUDA is an open-source project that enables building efficient cloud-scale Artificial Intelligence (AI) imaging and computer vision (CV) applications. It uses graphics processing unit (GPU) acceleration to help developers build highly efficient pre- and post-processing pipelines. CV-CUDA originated as a collaborative effort between NVIDIA and ByteDance.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    HARFANG 3D engine

    HARFANG 3D engine

    HARFANG 3D source code public repository

    ... and optimized manner, without compromising the integration in other development environments. HARFANG Studio’s philosophy is in line with that of HARFANG 3D engine, a compliant, straightforward, fast & lightweight. Everything that runs in HARFANG Studio is compatible with our Framework and its supported coding languages. HARFANG Framework is an easy-to-adapt, cross-platform, multi-language, powerful and optimized 3D visualization engine written in C++ and accessible via an open API in C++.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    LDoc

    LDoc

    LDoc is a LuaDoc-compatible documentation generator

    LDoc is a LuaDoc-compatible documentation generator which can also process C extension source. Markdown may be optionally used to render comments, as well as integrated readme documentation and pretty-printed example files.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    slua-unreal

    slua-unreal

    lua dev plugin for unreal engine 4 or 5

    Slua-unreal is an unreal4 plugin, which allows you to use Lua language to develop game logic and hot fix your code. It gives you 3 ways to wrap your C++ interface to Lua, including reflection by blueprint, C++ template, and static code generation. It also enables two-way communication between Blueprint and Lua. The advantage of Lua over C++ is that it requires no compilation for logic change, which significantly speeds up the game development process.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Webots ROS2 Interface

    Webots ROS2 Interface

    Webots ROS 2 packages

    webots_ros2 is a package that provides the necessary interfaces to simulate a robot in the Webots open-source 3D robots simulator. It integrates with ROS2 using ROS2 messages, services and actions.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    lidarslam_ros2

    lidarslam_ros2

    ROS 2 package of 3D lidar slam using ndt/gicp registration

    ROS 2 package of 3D lidar slam using ndt/gicp registration and pose-optimization. ros2 slam package of the frontend using OpenMP-boosted gicp/ndt scan matching and the backend using graph-based slam.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    Direct LiDAR-Inertial Odometry

    Direct LiDAR-Inertial Odometry

    A new lightweight LiDAR-inertial odometry algorithm

    DLIO is a new lightweight LiDAR-inertial odometry algorithm with a novel coarse-to-fine approach in constructing continuous-time trajectories for precise motion correction. It features several algorithmic improvements over its predecessor, DLO, and was presented at the IEEE International Conference on Robotics and Automation (ICRA) in London, UK in 2023.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    Chatterino 2

    Chatterino 2

    Chat client for Twitch

    Chatterino 2 is a chat client for Twitch.tv. Commands are used as shortcuts for long messages. If a message starts with the "trigger" then the message will be replaced with the Command. Chatterino comes with a collection of built-in commands to help with channel management, Twitch interaction, and other misc. features.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    pwru

    pwru

    eBPF-based Linux kernel networking debugger

    pwru is an eBPF-based tool for tracing network packets in the Linux kernel with advanced filtering capabilities. It allows fine-grained introspection of kernel state to facilitate debugging network connectivity issues.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Touchégg

    Touchégg

    Linux multi-touch gesture recognizer

    Touchégg is an app that runs in the background and transforms the gestures you make on your touchpad or touchscreen into visible actions in your desktop. For example, you can swipe up with 3 fingers to maximize a window or swipe left with 4 finger to switch to the next desktop. Many more actions and gestures are available and everything is easily configurable.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    GameMode

    GameMode

    Optimise Linux system performance on demand

    GameMode is a daemon/lib combo for Linux that allows games to request a set of optimizations be temporarily applied to the host OS and/or a game process. GameMode was designed primarily as a stop-gap solution to problems with the Intel and AMD CPU power save or on-demand governors but is now host to a range of optimization features and configurations.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    XAML-Math

    XAML-Math

    A collection of .NET libraries for rendering mathematical formulae

    A collection of .NET libraries for rendering mathematical formulae using the LaTeX typesetting style, for the WPF and Avalonia XAML-based frameworks.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    xlswriter

    xlswriter

    PHP Extension for creating and reader XLSX files

    PHPExcel has been unable to work properly for memory reasons at 40,000 and 100000 points, but it can be resolved by modifying the ini configuration, but the time may take longer to complete the work. xlswriter is a PHP C Extension that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
    Downloads: 0 This Week
    Last Update:
    See Project