Posts

  • beaker

    Puppet Acceptance Testing Harness

    Beaker is a test harness focused on acceptance testing via interactions between multiple (virtual) machines. It provides platform abstraction between different Systems Under Test (SUTs), and it can also be used as a virtual machine provisioner - setting up machines, running any commands on those machines, and then exiting.

    Beaker runs tests written in Ruby, and provides additional Domain-Specific Language (DSL) methods. This gives you access to all standard Ruby along with acceptance testing specific commands.

    Tags: #ruby β€’ hacktoberfest

  • stitches

    Create a Microservice in Rails with minimal ceremony

    Add to your Gemfile:

    gem 'stitches'
    

    Then:

    bundle install
    

    Then, set it up:

    > bin/rails generate stitches:api
    > bundle exec rake db:migrate
    

    Tags: #ruby β€’ ruby-gem β€’ rails-engine

  • code-snippets-wp-speed-up

    Code Snippets for WordPress and WooCommerce speed up, which can be imported into the plugin.

    Code Snippets for WordPress and WooCommercce speed up are snippets which can be easily imported into the code snippets plugin.

    For other useful code snippets for WordPress. https://github.com/senlin/Code-Snippets

    Tags: #php β€’ snippets β€’ snippets-wp-speed

  • 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

subscribe via RSS