Posts

  • react-starterify

    A minimal React JS application starter kit

    A minimal React JS application starter kit.

    Tags: #javascript β€’ react β€’ boilerplate

  • 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

  • auth0-PHP

    Straight-forward and tested methods for accessing Auth0 Authentication and Management API endpoints.

    Tags: #php β€’ dx-sdk

  • spring-boot-angular2

    spring boot backend, angular2 frontend with webpack, typescript, sass, bootstrap4, karma, jasmine

    spring boot backend, angular2 frontend with webpack, typescript, sass, bootstrap4, karma, jasmine

    Tags: #javascript β€’ spring-boot β€’ angular

  • android-test

    An extensive framework for testing Android apps

    The AndroidX Test Library provides an extensive framework for testing Android apps. This library provides a set of APIs that allow you to quickly build and run test code for your apps, including JUnit 4 and functional user interface (UI) tests. You can run tests created using these APIs from the Android Studio IDE or from the command line.

    For more details see developers.android.com/testing

    Tags: #java

  • react-native-redux-router

    React Native Router using Redux architecture

    React Native Router using Redux architecture

    Tags: #javascript

  • wp-erp

    An open-source ERP (Enterprise Resource Planning) solution for WordPress

    An open-source ERP (Enterprise Resource Planning) solution for WordPress. View documentation

    Tags: #php β€’ wordpress β€’ erp

  • twitter-api-php

    The simplest PHP Wrapper for Twitter API v1.1 calls

    $settings = array(
        'oauth_access_token' => "YOUR_OAUTH_ACCESS_TOKEN",
        'oauth_access_token_secret' => "YOUR_OAUTH_ACCESS_TOKEN_SECRET",
        'consumer_key' => "YOUR_CONSUMER_KEY",
        'consumer_secret' => "YOUR_CONSUMER_SECRET"
    );
    

    Tags: #php β€’ twitter-api β€’ twitterapiexchange

  • countries

    Laravel countries and currencies

    This package has all sorts of information about countries:

    info items
    taxes 32
    geometry maps 248
    topology maps 248
    currencies 256
    countries 266
    timezones 423
    borders 649
    flags 1,570
    states 4,526
    cities 7,376
    timezones times 81,153

    Tags: #php β€’ laravel β€’ laravel-countries

  • spotlight

    Spotlight enables librarians, curators, and others who are responsible for digital collections to create attractive, feature-rich websites that highlight these collections.

    1. Ruby (2.5.0 or greater)
    2. Rails (5.1 or greater)
    3. Java (7 or greater) for Solr
    4. ImageMagick (http://www.imagemagick.org/script/index.php) due to carrierwave

    Tags: #ruby β€’ solr β€’ rails

subscribe via RSS