Posts

  • Discord-Audio-Stream-Bot

    A simple discord audio streaming bot.

    A simple discord audio streaming bot.

    Tags: #java

  • chewy

    High-level Elasticsearch Ruby framework based on the official elasticsearch-ruby client

    Chewy is an ODM (Object Document Mapper), built on top of the official Elasticsearch client.

    Tags: #ruby • elasticsearch • elasticsearch-client

  • statistics-for-strava

    Self-hosted, open-source dashboard for your Strava data.

    [!NOTE] This app is in no way affiliated with or part of the official Strava software suite.

    https://github.com/user-attachments/assets/81554f32-31be-4899-afd6-681ce3e7bcb6

    Tags: #php • self-hosted • statistics

  • gitium

    Keep all your WordPress code on git with a simple plugin and a repo

    Gitium was built in 2013 to provide our clients a more simple and error-free method to integrate a new git version control into their code management flow.

    Gitium was developed by the awesome engineering team at Presslabs, a Managed WordPress Hosting provider.

    For more open-source projects, check Presslabs Code.

    Tags: #php • wordpress • wordpress-plugin

  • video_transcoding

    Tools to transcode, inspect and convert videos.

    Tools to transcode, inspect and convert videos.

    Tags: #ruby

  • enum4linux-ng

    A next generation version of enum4linux (a Windows/Samba enumeration tool) with additional features like JSON/YAML export. Aimed for security professionals and CTF players.

    • support for YAML and JSON export
    • colored console output (can be disabled via NO_COLOR)
    • ldapsearch and polenum are natively implemented
    • support for multiple authentication methods
    • support for legacy SMBv1 connections
    • auto detection of IPC signing support
    • ‘smart’ enumeration will automatically disable tests which would otherwise fail
    • timeout support
    • SMB dialect checks
    • IPv6 support (experimental)

    Tags: #python • enum4linux • security

  • Honeypot

    Simple spam prevention package for Laravel applications

    “Honeypot” method of spam prevention is a simple and effective way to defer some of the spam bots that come to your site. This technique is based on creating an input field that should be left empty by the real users of the application but will most likely be filled out by spam bots.

    This package creates a hidden DIV with two fields in it, honeypot field (like “my_name”) and a honeytime field - an encrypted timestamp that marks the moment when the page was served to the user. When the form containing these inputs invisible to the user is submitted to your application, a custom validator that comes with the package checks that the honeypot field is empty and also checks the time it took for the user to fill out the form. If the form was filled out too quickly (i.e. less than 5 seconds) or if there was a value put in the honeypot field, this submission is most likely from a spam bot.

    Tags: #php

  • Buzz

    PHP’s lightweight HTTP client

    Install by running:

    composer require kriswallsmith/buzz
    

    You do also need to install a PSR-17 request/response factory. Buzz uses that factory to create PSR-7 requests and responses. Install one from this list.

    Example:

    composer require nyholm/psr7
    

    Tags: #php

  • tree

    tree is a library for working with nested data structures

    tree is a library for working with nested data structures. In a way, tree generalizes the builtin map function which only supports flat sequences, and allows to apply a function to each “leaf” preserving the overall structure.

    >>> import tree
    >>> structure = [[1], [[[2, 3]]], [4]]
    >>> tree.flatten(structure)
    [1, 2, 3, 4]
    >>> tree.map_structure(lambda v: v**2, structure)
    [[1], [[[4, 9]]], [16]]
    

    tree is backed by an optimized C++ implementation suitable for use in demanding applications, such as machine learning models.

    Tags: #python

  • flyctl-actions

    :octocat: GitHub Action that wraps the flyctl

    This action wraps the Fly.io CLI. Use it to deploy or manage your Fly.io application via Github Actions events.

    Tags: #typescript

subscribe via RSS