Posts

  • signpost

    A light-weight client-side OAuth library for Java

    Using Signpost is as simple as it could possibly get – all actions are executed with only a few lines of code. For example, this is how you would sign a classic Java HTTP message using Signpost:

            // create an HTTP request to a protected resource
            URL url = new URL("http://api.example.com/protected")
            HttpURLConnection request = (HttpURLConnection) url.openConnection();
    
            // sign the request (consumer is a Signpost DefaultOAuthConsumer)
            consumer.sign(request);
    
            // send the request
            request.connect();
    

    Signpost exposes a minimalistic API designed for two purposes: Signing HTTP messages and requesting tokens from an OAuth service provider. Everything else is beyond the scope of the OAuth specification, and is thus left to the HTTP messaging layer, where it belongs.

    For more exhaustive examples, please refer to GettingStarted.

    Tags: #java

  • VisualBukkit

    A visual programming language for Bukkit plugins

    Visual Bukkit is a drag and drop interface for creating Bukkit plugins.

    Tags: #java

  • one-nio

    Unconventional I/O library for Java

    one-nio is a library for building high-performance Java servers. It exposes OS capabilities and selected JDK internal APIs to help high-load applications get the most out of the underlying system.

    Tags: #java • nio • io

  • laravel-scout-elasticsearch

    Search among multiple models with ElasticSearch and Laravel Scout

    The package provides the perfect starting point to integrate ElasticSearch into your Laravel application. It is carefully crafted to simplify the usage of ElasticSearch within the Laravel Framework.

    It’s built on top of the latest release of Laravel Scout, the official Laravel search package. Using this package, you are free to take advantage of all of Laravel Scout’s great features, and at the same time leverage the complete set of ElasticSearch’s search experience.

    Tags: #php • laravel • scout

  • npc-lib

    Asynchronous, high-performance Minecraft NPC library for 1.8-1.21 servers.

    Asynchronous, high-performance Minecraft NPC library for 1.8-1.16 servers.

    This Library does only support the latest patch release of a supported version (for example 1.13.2). Issues with older patch versions (for example 1.13.1) won’t be fixed.

    Tags: #java • minecraft • npc

  • php-meminfo

    PHP extension to get insight about memory usage

    From the root of the extension directory:

    $ phpize
    $ ./configure --enable-meminfo
    $ make
    $ make install
    

    Tags: #php

  • tinyhttp

    🦄 0-legacy, tiny & fast web framework as a replacement of Express

    • ⚙ Express middleware compat
    • ↪ Async error handling support
    • ☑ ESM-only
    • 🚀 No legacy compat or useless polyfills
    • 🤏 Minimal dependencies (3x less than express v5)
    • 🔨 Types out of the box
    • 🔥 Middlewares for common tasks

    Visit tinyhttp website for docs, guides and middleware search.

    Tags: #typescript • web • webframework

  • lion

    Fundamental white label web component features for your design system.

    • Keep using /docs on the root level as we used it in the master branch. The documentation is copied into Astro related directories on npm run start and when when anything in /docs is updated.
    • Replace manually all references to assets in all md files so that we imply that the path is produced from the directory where the md file is located. F.e. new URL('../src/wa-combobox/assets/obama.jpeg', import.meta.url).href; should new URL('./src/wa-combobox/assets/obama.jpeg', import.meta.url).href;. Note double dot is replaced with one dot. See this PR for the reference.
    • Rename all *.mjs files to *.js ones if they are used by mdjs examples

    Tags: #javascript • hacktoberfest • lion

  • HTTP-Proxy-Servlet

    Smiley’s HTTP Proxy implemented as a Java servlet

    The following is a list of parameters that can be configured

    • log: A boolean parameter name to enable logging of input and target URLs to the servlet log.
    • forwardip: A boolean parameter name to enable forwarding of the client IP
    • preserveHost: A boolean parameter name to keep HOST parameter as-is
    • preserveCookies: A boolean parameter name to keep COOKIES as-is
    • preserveCookiePath: A boolean parameter name to keep cookie path unchanged in Set-Cookie server response header
    • http.protocol.handle-redirects: A boolean parameter name to have auto-handle redirects
    • http.socket.timeout: A integer parameter name to set the socket connection timeout (millis)
    • http.read.timeout: A integer parameter name to set the socket read timeout (millis)
    • http.connectionrequest.timeout: A integer parameter name to set the connection request timeout (millis)
    • http.maxConnections: A integer parameter name to set max connection number
    • useSystemProperties: A boolean parameter whether to use JVM-defined system properties to configure various networking aspects.
    • targetUri: The parameter name for the target (destination) URI to proxy to.

    Tags: #java

  • autonomous-learning-library

    A PyTorch library for building deep reinforcement learning agents.

    The autonomous-learning-library is an object-oriented deep reinforcement learning (DRL) library for PyTorch. The goal of the library is to provide the necessary components for quickly building and evaluating novel reinforcement learning agents, as well as providing high-quality reference implementations of modern DRL algorithms. The full documentation can be found at the following URL: https://autonomous-learning-library.readthedocs.io.

    Tags: #python • reinforcement-learning • reinforcement-learning-algorithms

subscribe via RSS