Posts

  • minidump

    Python library to parse and read Microsoft minidump file format

    Python library to parse and read Microsoft minidump file format. Can create minidumps on Windows machines using the windows API (implemented with ctypes).

    Tags: #python

  • resque-scheduler

    A light-weight job scheduling system built on top of Resque

    Resque-scheduler is an extension to Resque that adds support for queueing items in the future.

    Job scheduling is supported in two different ways: Recurring (scheduled) and Delayed.

    Scheduled jobs are like cron jobs, recurring on a regular basis. Delayed jobs are resque jobs that you want to run at some point in the future. The syntax is pretty explanatory:

    Resque.enqueue_in(5.days, SendFollowupEmail, argument) # runs a job in 5 days, calling SendFollowupEmail.perform(argument)
    # or
    Resque.enqueue_at(5.days.from_now, SomeJob, argument) # runs a job at a specific time, calling SomeJob.perform(argument)
    

    Tags: #ruby β€’ scheduler β€’ queue

  • bean-searcher

    πŸ”₯πŸ”₯πŸ”₯ A read-only ORM focusing on advanced query, naturally supports joined tables, making it possible to realize complex retrieval in one line of code !

    • Support one entity mapping to multi tables
    • Support dynamic field operator
    • Support group and aggregation query
    • Support **Select Where From subquery**
    • Support embedded params in entity
    • Support field converters
    • Support sql interceptors
    • Support sql dialect extension
    • Support multi datasource and dynamic datasource
    • Support annotation omitting and customizing
    • Support field operator extension
    • and so on

    Tags: #java β€’ devtool β€’ orm

  • BigInteger.js

    An arbitrary length integer library for Javascript

    BigInteger.js is an arbitrary-length integer library for Javascript, allowing arithmetic operations on integers of unlimited size, notwithstanding memory and time limitations.

    Update (December 2, 2018): BigInt is being added as a native feature of JavaScript. This library now works as a polyfill: if the environment supports the native BigInt, this library acts as a thin wrapper over the native implementation.

    Tags: #javascript

  • cornerstoneWADOImageLoader

    DICOM WADO Image Loader for the cornerstone library

    A cornerstone Image Loader for DICOM P10 instances over HTTP (WADO-URI) or DICOMWeb (WADO-RS). This can be used to integrate cornerstone with WADO-URI servers, DICOMWeb servers or any other HTTP based server that returns DICOM P10 instances (e.g. Orthanc or custom servers)

    Tags: #javascript β€’ cornerstone β€’ dicom

  • Mappedbus

    Mappedbus is a low latency message bus for Java microservices utilizing shared memory. http://mappedbus.io

    Mappedbus was inspired by Java Chronicle with the main difference that it’s designed to efficiently support multiple writers – enabling use cases where the order of messages produced by multiple processes are important.

    The throughput (on a laptop, i7-4558U @ 2.8 GHz) between a single producer writing at full speed and a single consumer is around 14 million messages per second (a small message consisting of three integer fields), and the average read/write latency is around 70 ns per message.

    Mappedbus does not create any objects after startup and therefore has Zero GC impact.

    Tags: #java β€’ ipc β€’ memory-mapped-file

  • TencentKona-11

    Tencent Kona JDK11 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) with quarterly updates. Tencent Kona JDK11 is certified as compatible with the Java SE standard.

    Tencent Kona JDK11 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) with quarterly updates.

    Kona serves as the default JDK at Tencent internally, optimized for extreme-scale of Big Data, Machine Learning and Cloud Computing workload. It is also used to build and maintain a Tencent supported version of OpenJDK for Tencent customers and partners who wish to use OpenJDK to run their applications.

    Tags: #java

  • rubocop-github

    Code style checking for GitHub’s Ruby projects

    This repository provides recommended RuboCop configuration and additional Cops for use on GitHub open source and internal Ruby projects.

    Tags: #ruby β€’ rubocop

  • convertio-php

    Convertio APIs Client Library for PHP

    The preferred method is via composer. Follow the installation instructions if you do not already have composer installed.

    Once composer is installed, execute the following command in your project root to install this library:

      composer require convertio/convertio-php
    

    Finally, be sure to include the autoloader:

    <?php
      require_once '/path/to/your-project/vendor/autoload.php';
    

    Tags: #php β€’ conversion β€’ convertio

  • pixelit

    Create pixel art from an image

    Javascript library to create pixel art from an image. See Pixel It in action.

    Tags: #javascript β€’ pixel-art β€’ pixelart

subscribe via RSS