Posts

  • sequenceserver

    Intuitive local web frontend for the BLAST bioinformatics tool

    SequenceServer lets you rapidly set up a BLAST+ server with an intuitive user interface for personal or group use.

    If you use SequenceServer, please cite:

    Sequenceserver: A modern graphical user interface for custom BLAST databases. Molecular Biology and Evolution (2019).

    Tags: #ruby • blast • bioinformatics

  • ol-cesium

    OpenLayers - Cesium integration

    npm i --save olcs
    

    Then import the parts you need. Example:

    import OLCesium from 'olcs/OLCesium.js';
    const ol3d = new OLCesium({map: ol2dMap}); // ol2dMap is the ol.Map instance
    ol3d.setEnabled(true);
    

    For Cesium integration see ol-cesium-webpack-example based on the official Cesium With Webpack example.

    Tags: #javascript • cesium • openlayers

  • Kaggler

    Code for Kaggle Data Science Competitions

    Kaggler is a Python package for lightweight online machine learning algorithms and utility functions for ETL and data analysis. It is distributed under the MIT License.

    Its online learning algorithms are inspired by Kaggle user tinrtgu’s code. It uses the sparse input format that handles large sparse data efficiently. Core code is optimized for speed by using Cython.

    Tags: #python • kaggle • machine-learning

  • racecar

    Racecar: a simple framework for Kafka consumers in Ruby

    Racecar is a friendly and easy-to-approach Kafka consumer framework. It allows you to write small applications that process messages stored in Kafka topics while optionally integrating with your Rails models.

    The framework is based on rdkafka-ruby, which, when used directly, can be a challenge: it’s a flexible library with lots of knobs and options. Most users don’t need that level of flexibility, though. Racecar provides a simple and intuitive way to build and configure Kafka consumers.

    NOTE: Racecar requires Kafka 0.10 or higher.

    Tags: #ruby • rails • kafka

  • Deep-Image-Matting-PyTorch

    Deep Image Matting implementation in PyTorch

    Deep Image Matting paper implementation in PyTorch.

    Tags: #python

  • droid

    DROID (Digital Record and Object Identification)

    DROID is a software tool developed by The National Archives to perform automated batch identification of file formats. Developed by its Digital Preservation Department as part of its broader digital preservation activities, DROID is designed to meet the fundamental requirement of any digital repository to be able to identify the precise format of all stored digital objects, and to link that identification to a central registry of technical information about that format and its dependencies.

    DROID uses internal signatures to identify and report the specific file format versions of digital files. These signatures are stored in an XML signature file, generated from information recorded in the PRONOM technical registry. New and updated signatures are regularly added to PRONOM, and DROID can be configured to automatically download updated signature files.

    DROID is a platform-independent Java application. It can be invoked from two interfaces:

    • Java Swing GUI
    • Command line interface

    DROID allows files and folders to be selected from a file system for identification. This file list can be saved at any point. After the identification process had been run, the results can be output in various report formats, including CSV.

    DROID is made available under the New BSD License: https://raw.github.com/digital-preservation/droid/master/license.md

    Tags: #java • droid • identification

  • exilence-next

    Desktop application that helps you summarize your wealth in Path of Exile

    Tags: #typescript

  • 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

  • critters

    🦔 A Webpack plugin to inline your critical CSS and lazy-load the rest.

    It’s a little different from other options, because it doesn’t use a headless browser to render content. This tradeoff allows Critters to be very fast and lightweight. It also means Critters inlines all CSS rules used by your document, rather than only those needed for above-the-fold content. For alternatives, see Similar Libraries.

    Critters’ design makes it a good fit when inlining critical CSS for prerendered/SSR’d Single Page Applications. It was developed to be an excellent compliment to prerender-loader, combining to dramatically improve first paint time for most Single Page Applications.

    Tags: #javascript • webpack • webpack-plugin

  • algorithms-js

    Consumable Data Structures and Algorithms library in JavaScript

    Consumable Data Structures and Algorithms library in JavaScript

    Tags: #javascript • algorithm • libary

subscribe via RSS