Posts

  • 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

  • rails-observers

    Rails observer (removed from core in Rails 4.0)

    Rails Observers (removed from core in Rails 4.0)

    Tags: #ruby

  • noder-react-native

    The mobile app of cnodejs.org written in React Native

    A new cnodejs.org mobile & web app powered by react-native and react-web and CodeceptJS .

    Tags: #javascript • noder • cnodejs

  • potassium

    A Rails application generator by Platanus, inspired by Suspenders

    A Rails application generator from Platanus, inspired by Suspenders.

    Tags: #ruby

  • Skater

    Python Library for Model Interpretation/Explanations

    Skater is a unified framework to enable Model Interpretation for all forms of model to help one build an Interpretable machine learning system often needed for real world use-cases(** we are actively working towards to enabling faithful interpretability for all forms models). It is an open source python library designed to demystify the learned structures of a black box model both globally(inference on the basis of a complete data set) and locally(inference about an individual prediction).

    The project was started as a research idea to find ways to enable better interpretability(preferably human interpretability) to predictive “black boxes” both for researchers and practioners. The project is still in beta phase.

    Tags: #python • ml • predictive-modeling

  • deprecations

    Thin library around different deprecation strategies

    A small (side-effect free by default) layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging.

    • no side-effects by default, making it a perfect fit for libraries that don’t know how the error handler works they operate under
    • options to avoid having to rely on error handlers global state by using PSR-3 logging
    • deduplicate deprecation messages to avoid excessive triggering and reduce overhead

    We recommend to collect Deprecations using a PSR logger instead of relying on the global error handler.

    Tags: #php

  • pan_pp.pytorch

    Official implementations of PSENet, PAN and PAN++.

    • (2021/11/03) Paddle implementation of PAN, see Paddle-PANet. Thanks @simplify23.
    • (2021/04/08) PSENet and PAN are included in MMOCR.

    Tags: #python • text-recognition • psenet

  • Slogger

    Social logging script for Day One

    If you are upgrading from a version prior to 2.0.12, please remove the RSSLogger section from slogger_config and regenerate it by running slogger again. A new section will be added in addition to RSSLogger called Bloglogger. RSSLogger now logs all entries for the timespan as a single digest entry, whereas Bloglogger loads each item found as an individual “post.”

    Tags: #ruby

  • pinkfish

    A backtester and spreadsheet library for security analysis.

    For basic installation (not including ta-lib):
    pip install wheel
    pip install pinkfish

    –OR–

    For developer installation with ta-lib, follow the instructions located at:
    https://fja05680.github.io/pinkfish/

    Tags: #python

  • postgres-meta

    A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries

    A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries (and more).

    Tags: #typescript • postgres • postgresql

subscribe via RSS