Posts

  • OverlayScrollbars

    A javascript scrollbar plugin which hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling.

    I’ve created this plugin because I hate ugly and space consuming scrollbars. Similar plugins haven’t met my requirements in terms of features, quality, simplicity, license or browser support.

    Tags: #javascript • scrollbar-plugin • javascript-scrollbar-plugin

  • pytorch-forecasting

    Time series forecasting with PyTorch

    If you are working on windows, you need to first install PyTorch with

    pip install torch -f https://download.pytorch.org/whl/torch_stable.html.

    Otherwise, you can proceed with

    pip install pytorch-forecasting

    Alternatively, you can install the package via conda

    conda install pytorch-forecasting pytorch -c pytorch>=1.7 -c conda-forge

    PyTorch Forecasting is now installed from the conda-forge channel while PyTorch is install from the pytorch channel.

    Tags: #python • pytorch • forecasting

  • UPNG.js

    Fast and advanced PNG (APNG) decoder and encoder (lossy / lossless)

    A small, fast and advanced PNG / APNG encoder and decoder. It is the main PNG engine for Photopea image editor.

    Download and include the UPNG.js file in your code.

    Tags: #javascript

  • DiscordPHP

    Before you start using this Library, you need to know how PHP works, you need to know the language and you need to know how Event Loops and Promises work. This is a fundamental requirement before you start. Without this knowledge, you will only suffer.

    Tags: #php • discord • team-reflex

  • cocoapods-deintegrate

    A CocoaPods plugin to remove and de-integrate CocoaPods from your project.

    A CocoaPods plugin to remove and deintegrate CocoaPods from your project. Removing all traces of CocoaPods from an Xcode project.

    Tags: #ruby

  • thread-loader

    Runs the following loaders in a worker pool

    Runs the following loaders in a worker pool.

    Tags: #javascript • webpack-loader • worker-pool

  • alfred-github-repos

    Alfred workflow to easily open Github repositories

    This is a custom workflow for the [Alfred app][alfred-app] that lets you search and open a GitHub repository via the GitHub Search API.

    Tags: #ruby • workflow • alfred

  • VIP-Coding-Standards

    PHP_CodeSniffer ruleset to enforce WordPress.com VIP and VIP Go coding standards

    This project contains PHP_CodeSniffer (PHPCS) sniffs and rulesets to validate code developed for WordPress VIP.

    This project contains two rulesets:

    • WordPressVIPMinimum - for use with projects on the (older) WordPress.com VIP platform.
    • WordPress-VIP-Go - for use with projects on the (newer) VIP Go platform.

    These rulesets contain only the rules which are considered to be “errors” and “warnings” according to the WordPress VIP Go documentation.

    The rulesets use rules from the WordPress Coding Standards (WPCS) project, as well as the VariableAnalysis standard.

    Go to https://docs.wpvip.com/technical-references/code-review/phpcs-report/ to learn about why violations are flagged as errors vs warnings and what the levels mean.

    Tags: #php • vip • php-codesniffer

  • pyensembl

    Python interface to access reference genome features (such as genes, transcripts, and exons) from Ensembl

    from pyensembl import EnsemblRelease
    
    # release 77 uses human reference genome GRCh38
    data = EnsemblRelease(77)
    
    # will return ['HLA-A']
    gene_names = data.gene_names_at_locus(contig=6, position=29945884)
    
    # get all exons associated with HLA-A
    exon_ids  = data.exon_ids_of_gene_name('HLA-A')
    

    Tags: #python

  • themoviedbapi

    A java wrapper around the json api provided by TheMovieDB.org

    TmdbMovies movies = tmdbApi.getMovies();
    movies.getMovie(293660, "en", MovieMethod.credits)
    

    Tags: #java

subscribe via RSS