Showing 92 open source projects for "call"

View related business solutions
  • Our Free Plans just got better! | Auth0 by Okta Icon
    Our Free Plans just got better! | Auth0 by Okta

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
    Try free now
  • Bright Data - All in One Platform for Proxies and Web Scraping Icon
    Bright Data - All in One Platform for Proxies and Web Scraping

    Say goodbye to blocks, restrictions, and CAPTCHAs

    Bright Data offers the highest quality proxies with automated session management, IP rotation, and advanced web unlocking technology. Enjoy reliable, fast performance with easy integration, a user-friendly dashboard, and enterprise-grade scaling. Powered by ethically-sourced residential IPs for seamless web scraping.
    Get Started
  • 1
    fping

    fping

    High performance ping tool

    ... emails, so I decided to just step up and take over maintenanceship.To mark this change of maintenance, and avoid confusion, I decided to call it version 3. Besides a new maintainer, fping now also features a completely rewritten main loop implementation which improves performance significantly. The run time is now close to the theoretical time required to send and receive the pings under the specified parameters.
    Downloads: 41 This Week
    Last Update:
    See Project
  • 2
    Arduino core for the ESP32

    Arduino core for the ESP32

    Arduino core for the ESP32

    ESP32 is a single 2.4 GHz Wi-Fi-and-Bluetooth SoC (System On a Chip) designed by Espressif Systems. ESP32 is designed for mobile, wearable electronics, and Internet-of-Things (IoT) applications. It features all the state-of-the-art characteristics of low-power chips, including fine-grained clock gating, multiple power modes,and dynamic power scaling. For instance, in a low-power IoT sensor hub application scenario, ESP32 is woken-up periodically and only when a specified condition is...
    Downloads: 27 This Week
    Last Update:
    See Project
  • 3
    hangover

    hangover

    Hangover runs simple Win32 applications on arm64 Linux

    This is Hangover, a project started by André Zwing and Stefan Dösinger in 2016 that currently can run x86_32 Windows applications on aarch64 Wine. Hangover uses various emulators as DLLs (pick one that suits your needs, e.g. works for you) to only emulate the application you want to run instead of emulating a complete Wine installation. As soon as the application does a Windows/Wine system call, say NtUserCreateWindowEx, it's executed outside the emulator (read non-emulated, fast, native). Even...
    Downloads: 4 This Week
    Last Update:
    See Project
  • 4
    Sogou C++ Workflow

    Sogou C++ Workflow

    C++ parallel computing and asynchronous networking engine

    As Sogou`s C++ server engine, Sogou C++ Workflow supports almost all back-end C++ online services of Sogou, including all search services, cloud input method, online advertisements, etc., handling more than 10 billion requests every day. This is an enterprise-level programming engine in light and elegant design which can satisfy most C++ back-end development requirements.
    Downloads: 3 This Week
    Last Update:
    See Project
  • Global anycast DNS network. | IBM NS1 Connect Icon
    Global anycast DNS network. | IBM NS1 Connect

    Enjoy fast connections to consumers around the globe through an anycast network with 26 points of presence (PoPs).

    IBM NS1 Connect provides fast, secure connections to users anywhere in the world with premium DNS and advanced, customizable traffic steering. NS1 Connect’s always-on, API-first architecture enables your IT teams to more efficiently monitor networks, deploy changes and conduct routine maintenance.
    Learn More
  • 5
    onedriver

    onedriver

    A native Linux filesystem for Microsoft OneDrive

    ... your phone to auto-upload photos to OneDrive and edit and view them on your Linux computer. You can switch between LibreOffice on your local computer and the Microsoft 365 online apps as needed when working. Want to migrate from Windows to Linux? Just throw all your Windows files into OneDrive, add your OneDrive account to Linux with onedriver, and call it a day.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 6
    Bottlerocket OS

    Bottlerocket OS

    An operating system designed for hosting containers

    ... on reliable updates and on the API. Instead of making configuration changes manually, you can change settings with an API call, and these changes are automatically migrated through updates. Hosting containers doesn’t require much from an operating system and hosting containers is all Bottlerocket aims to do. Many of the packages, tools, interpreters, and dependencies installed by default in general-purpose Linux distributions are simply not needed to only host containers.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 7
    almond

    almond

    A Scala kernel for Jupyter

    ..., and vice versa. Almond exposes APIs to interact with Jupyter front-ends. Call them from notebooks… or from your own libraries. Several plotting libraries are already available to plot things from notebooks, such as plotly-scala or Vegas. Load the Spark version of your choice, create a Spark session, and start using it from your notebooks.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    IRkernel

    IRkernel

    R kernel for Jupyter

    For detailed requirements and install instructions see irkernel.github.io. Per default IRkernel::installspec() will install a kernel with the name “ir” and a display name of “R”. Multiple calls will overwrite the kernel with a kernel spec pointing to the last R interpreter you called that commands from. You can install kernels for multiple versions of R by supplying a name and display name argument to the install spec() call (You still need to install these packages in all interpreters you want...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Apache Dubbo

    Apache Dubbo

    A high performance Java RPC framework

    Apache Dubbo is a high performance, lightweight, open source RPC framework written in Java. It offers three key functionalities: interface based remote call, load balancing and fault tolerance, and automatic service registration and discovery. Apache Dubbo is built to support multiple service registries and load balancing strategies right out of the box. Due to its micro-kernel and plugin design it can also be easily extended through third-party implementations. Plenty of companies...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Discover Multiview ERP: The Financial Management Revolution Icon
    Discover Multiview ERP: The Financial Management Revolution

    Reclaim precious moments with loved ones while our robust cloud accounting software streamlines your financial processes.

    Built for growing businesses and well-established enterprises alike, Multiview is a highly scalable and robust ERP.
    Learn More
  • 10
    SlateDB

    SlateDB

    A cloud native embedded storage engine built on object storage

    ... is that object storage has a higher latency and higher API cost than local disk. To mitigate high write API costs (PUTs), SlateDB batches writes. Rather than writing every put() call to object storage, MemTables are flushed periodically to object storage as a string-sorted table (SST). The flush interval is configurable. To mitigate write latency, SlateDB provides an async put method.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Go gRPC Middleware

    Go gRPC Middleware

    Golang gRPC Middlewares: interceptor chaining, auth, logging, retries

    gRPC Go has support for "interceptors", i.e. middleware that is executed either on the gRPC Server before the request is passed onto the user's application logic, or on the gRPC client either around the user call. It is a perfect way to implement common patterns: auth, logging, tracing, metrics, validation, retries, rate limiting, and more, which can be great generic building blocks that make it easy to build multiple microservices. Especially for observability signals (logging, tracing...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    DeepFlow

    DeepFlow

    Application Observability using eBPF

    ... in any language and infrastructures including gateways, service meshes, databases, message queues, DNS, and NICs, leaving no blind spots. Full-stack network performance metrics and file I/O events are automatically collected for each Span. Distributed tracing enters a new era, Zero Instrumentation. DeepFlow collects profiling data at a cost of below 1% with Zero Code, plots OnCPU/OffCPU function call stack flame graphs, and locates Full Stack performance bottleneck in the application.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    gRPC-Go

    gRPC-Go

    The Go language implementation of gRPC. HTTP/2 based RPC

    gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend services. Define your service using Protocol Buffers, a powerful binary serialization toolset and language...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Überauth

    Überauth

    An Elixir Authentication System for Plug-based Web Applications

    Ueberauth is a two-phase authentication framework that provides a clear API, allowing for many strategies to be created and shared within the community. It is heavily inspired by Omniauth. You could call it a port but it is significantly different in operation, but almost the same concept. Huge hat tip to Intridea. Ueberauth provides only the initial authentication challenge, (initial OAuth flow, collecting the information from a login form, etc). It does not authenticate each request, that's...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Sentry JS

    Sentry JS

    Sentry SDKs for JavaScript

    ..., stack locals, Sentry enhances application performance monitoring with stack traces. Quickly identify performance issues before they become downtime. View the entire end-to-end distributed trace to see the exact, poor-performing API call and surface any related errors. Breadcrumbs make application development a little easier by showing you the trails of events that lead to the error(s).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Google protobuf support for Lua

    Google protobuf support for Lua

    A Lua module to work with Google protobuf

    This project offers a C module for Lua (5.1, 5.2, 5.3, 5.4, and LuaJIT) manipulating Google's protobuf protocol, both for version 2 and 3 syntax and semantics. It splits into the lower-level and the high-level parts for different goals. For converting between binary protobuf data with Lua tables, using pb.load() loads the compiled protobuf schema content (*.pb file) generated by Google protobuf's compiler named protoc and call pb.encode()/pb.decode(). If you don't want to depend Google's...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Browser Pool

    Browser Pool

    A Node.js library to easily manage and rotate a pool of web browsers

    Browser Pool is a small, but powerful and extensible library, that allows you to seamlessly control multiple headless browsers at the same time with only a little configuration, and a single function call. Currently it supports Puppeteer, Playwright and it can be easily extended with plugins. We created Browser Pool because we regularly needed to execute tasks concurrently in many headless browsers and their pages, but we did not want to worry about launching browsers, closing browsers...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    SyberiaOS
    Syberia Project (aka Syberia OS) is a custom ROM for many devices that implements various features. This project was designed by our "Syberia Team" from scratch based on AOSP source code with some CAF fixes and improvements. Our team: @blinoff82, @DennySPB, @alexxxdev. Also many thanks to our designer @rlshukhov for logos, wallpapers and bootanimation. If you like our work you can you can buy us a cup of coffee or a glass of beer here: https://syberiaos.com/links
    Leader badge
    Downloads: 316 This Week
    Last Update:
    See Project
  • 19
    Hans makes it possible to tunnel IPv4 through ICMP echo packets, so you could call it a ping tunnel. This can be useful when you find yourself in the situation that your Internet access is firewalled, but pings are allowed.
    Leader badge
    Downloads: 75 This Week
    Last Update:
    See Project
  • 20
    iPhone Data Recovery Software

    iPhone Data Recovery Software

    Recover lost or deleted messages, contacts, call history, calendar, no

    The best iPhone/iPad/iPod data recovery tool for Mac by recovering deleted/lost data from iOS devices, iTunes backup and iCloud due to jailbreak, iOS upgrade, etc. Recover data from iPhone 6/5s/5c/5/4S, iPad 4/3/2/Air, iPad mini/mini 2 and iPod touch. As for retrieving data from the iOS devices above, Mac FoneLab can help you get back lost Contacts, text Messages, Call history, Calendar, Notes, Reminder, Safari bookmark and WhatsApp, even if your device is locked or caught with other problems...
    Downloads: 15 This Week
    Last Update:
    See Project
  • 21
    DirSize

    DirSize

    DirSize - The command line directory reporting tool

    DirSize is a directory reporting tool. It recursively scans the provided (or current) directory, and reports the number of files and director sizes of each subdirectory present. It also defaults to sorting by by directory size, but there are other options. One of the interesting things about DirSize is it shows a visual representation of the file sizes of counts. I call this a SizeMap or FilesMap and it's the area to the right of the output. If you sort by size (default or -ss...
    Downloads: 8 This Week
    Last Update:
    See Project
  • 22
    PingMe

    PingMe

    CLI tool which provides ability to send messages to multiple platforms

    PingMe is a personal project to satisfy my needs of having alerts, most major platforms have integration to send alerts but its not always useful, either you are stuck with one particular platform, or you have to do alot of integrations. I needed a small app which i can just call from my backup scripts, cron jobs, CI/CD pipelines or from anywhere to send a message with particular information. And i can ship it everywhere with ease. Hence, the birth of PingMe. Everything is configurable via...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 23
    Duktape

    Duktape

    Embeddable Javascript engine with a focus on portability

    Duktape is easy to integrate into a C/C++ project: add duktape.c, duktape.h, and duk_config.h to your build, and use the Duktape API to call ECMAScript functions from C code and vice versa. Partial support for ECMAScript 2015 (E6) and ECMAScript 2016 (E7), Post-ES5 feature status, kangax/compat-table. Combined reference counting and mark-and-sweep garbage collection with finalization. Property virtualization using a subset of ECMAScript ES2015 Proxy object. Bytecode dump/load for caching...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    LineageOS++ Android custom ROM project based on LineageOS/AOSP, with minimal features, Most importantly security & performance.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25

    GCDebRTrc

    Debug Facility for Real-Time issues

    For C (and CPP obviously): Include a fast and tiny RAM-tracing feature for Real-Time (RT) debugging purposes. >> ONLY FOR DEBUGGING << Very much faster than printf-debugging, which may result in unforseen results in an RT environement.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • 3
  • 4
  • Next