Posts

  • ruby-macho

    πŸ”© A pure-Ruby library for parsing Mach-O files.

    The Mach-O file format is used by macOS and iOS (among others) as a general purpose binary format for object files, executables, dynamic libraries, and so forth.

    Tags: #ruby β€’ apple β€’ ruby-library

  • atdatabases

    TypeScript clients for databases that prevent SQL Injection

    Using tagged template literals for queries, e.g.

    db.query(sql`SELECT * FROM users WHERE id=${userID}`);
    

    makes it virtually impossible for SQL Injection attacks to slip in un-noticed. All the @databases libraries enforce the use of the sql tagged template literals, so you can’t accidentally miss them.

    The query is then passed to your database engine as a separate string and values:

    {text: 'SELECT * FROM users WHERE id=?', values: [userID]}
    

    Tags: #typescript β€’ sql β€’ postgres

  • sublimetext-codeformatter

    Code Formatter plugin for ST2/ST3

    To change the default configurations you have to update the CodeFormatter - User Preferences file. You can find this file in the Sublime Text menu bar under: Sublime Text > Package Settings > CodeFormatter > Settings - User.

    Make sure that you wrap all the configurations into a single root object.

    {
       "codeformatter_php_options": {...},
       "codeformatter_js_options": {...},
       ..
    }
    

    Tags: #python β€’ codeformatter β€’ sublime-text

  • iam-legend

    IAM policy actions autocomplete, documentation & wildcard resolution for VS Code

    AWS IAM actions autocomplete, documentation and wildcard resolution for Visual Studio Code.

    Supports Serverless Framework, AWS SAM, CloudFormation and Terraform.

    Tags: #typescript β€’ aws β€’ aws-sam

  • blender-rhubarb-lipsync

    Blender Rhubarb Lipsync is an addon for Blender integrating Rhubarb Lip Sync to automatically generate mouth-shape keyframes from a pose library.

    Rhubarb Lip Sync is a command-line tool created by Daniel S. Wolf that automatically creates mouth animation from voice recordings. You can use it for characters in computer games, in animated cartoons, or in any other project that requires animating mouths based on existing recordings.

    Blender Rhubarb Lipsync is an addon for Blender that integrates Rhubarb Lip Sync and uses it to generate mouth-shape keyframes from a pose library.

    For support using this addon in Blender, please report an issue at https://github.com/scaredyfish/blender-rhubarb-lipsync/issues

    Tags: #python

  • sprockets-rails

    Sprockets Rails integration

    Provides Sprockets implementation for Rails 4.x (and beyond) Asset Pipeline.

    Tags: #ruby

  • viritin

    The β€œcommons” library for Vaadin developers

    Note, Attention, Alert for existing users, Maddon was recently renamed to Viritin. New Maven coordinates: org.vaadin:viritin:1.22 (or whatever the latest version). After dependency change fixing imports in broken classes should do the thing. In addition to package rename, there is one potentially breaking change. EagerValidation is now default in AbstractForm.

    Tags: #java

  • cable_ready

    Use simple commands on the server to control client browsers in real-time

    Tags: #ruby β€’ ruby-on-rails β€’ action-cable

  • nsfw-filter

    πŸš€ A Google Chrome extension that blocks NSFW images from websites using TensorFlow JS.

    Tags: #typescript β€’ chrome-extension β€’ google-chrome-extension

  • swift-create-xcframework

    A simple Command Line Tool to create XCFrameworks by wrapping xcodebuild.

    swift-create-xcframework is a very simple tool designed to wrap xcodebuild and the process of creating multiple frameworks for a Swift Package and merging them into a single XCFramework.

    On the 23rd of June 2020, Apple announced Xcode 12 and Swift 5.3 with support for Binary Targets. Though they provide a simplified way to [include Binary Frameworks in your packages][apple-docs], they did not provide a simple way to create your XCFrameworks, with only some [documentation for the long manual process][manual-docs]. swift-create-xcframework bridges that gap.

    Note: swift-create-xcframework pre-dates the WWDC20 announcement and is tested with Xcode 11.4 or later, but should work with Xcode 11.2 or later. You can include the generated XCFrameworks in your app manually even without Xcode 12.

    Tags: #javascript

subscribe via RSS