Posts

  • frame

    System-wide Web3 for macOS, Windows and Linux

    • First-class Hardware Signer Support
      • Use your Ledger and Trezor accounts with any dapp!
    • Extensive Software Signer Support
      • Use a mnemonic phrase, keystore.json or standalone private keys to create and backup accounts!
    • Permissions
      • You’ll always have full control of which dapps have permission to access Frame and can monitor with full transparency what requests are being made to the network.
    • Create your own connections to Ethereum/IPFS
      • Run your own Ethereum light client or IPFS gateway without the command line!
      • Seamlessly swap from local to remote nodes on the fly
      • Never be locked into using a centralized gateway again!
    • Menu Bar Support
      • Frame stays out of the way and sits quietly in your menu bar until it’s needed
    • Cross Platform
      • macOS, Windows and Linux!

    Tags: #javascript • ethereum • dapp

  • i18n-active_record

    I18n ActiveRecord backend

    This repository contains the I18n ActiveRecord backend and support code that has been extracted from the I18n gem: http://github.com/svenfuchs/i18n. It is fully compatible with Rails 4, 5 and 6.

    Tags: #ruby

  • senet.pytorch

    PyTorch implementation of SENet

    An implementation of SENet, proposed in Squeeze-and-Excitation Networks by Jie Hu, Li Shen and Gang Sun, who are the winners of ILSVRC 2017 classification competition.

    Now SE-ResNet (18, 34, 50, 101, 152/20, 32) and SE-Inception-v3 are implemented.

    • python cifar.py runs SE-ResNet20 with Cifar10 dataset.

    • python imagenet.py and python -m torch.distributed.launch --nproc_per_node=${NUM_GPUS} imagenet.py run SE-ResNet50 with ImageNet(2012) dataset,

      • You need to prepare dataset by yourself in ~/.torch/data or set an enviroment variable IMAGENET_ROOT=${PATH_TO_YOUR_IMAGENET}
      • First download files and then follow the instruction.
      • The number of workers and some hyper parameters are fixed so check and change them if you need.
      • This script uses all GPUs available. To specify GPUs, use CUDA_VISIBLE_DEVICES variable. (e.g. CUDA_VISIBLE_DEVICES=1,2 to use GPU 1 and 2)

    For SE-Inception-v3, the input size is required to be 299x299 as the original Inception.

    Tags: #python • senet • pytorch

  • givewp

    GiveWP - The #1 Donation Plugin for WordPress. Easily accept donations and fundraise using your WordPress website.

    This repository is not suitable for WordPress admin or donor support. Please don’t use GitHub issues for non-development related support requests. Don’t get us wrong, we’re more than happy to help you! However, to get the support you need please use the following channels:

    Tags: #php • donations • fundraising

  • codeigniter-model

    CodeIgniter 3 Active Record (ORM) Standard Model with Laravel Eloquent & Yii2 AR like

    $this->load->model('Posts_model');
    
    // Create an Active Record
    $post = new Posts_model;
    $post->title = 'CI3'; // Equivalent to `$post['title'] = 'CI3';`
    $post->save();
    
    // Update the Active Record found by primary key
    $post = $this->Posts_model->findOne(1);
    if ($post) {
        $oldTitle = $post->title; // Equivalent to `$oldTitle = $post['title'];`
        $post->title = 'New CI3';
        $post->save();
    }
    

    The pattern is similar to Yii2 Active Record and Laravel Eloquent

    Tags: #php • codeigniter3 • model

  • nzbhydra

    Meta search for NZB indexers

    • I don’t have anything to do with www.nzbhydra.com
    • While this version still runs fine I recommend using its successor NZBHydra2 which runs a lot faster and has more features. Therefore I have removed all instructions regarding usage or development.

    Tags: #python • nzb-indexers • nzbhydra

  • Obfuscapk

    An automatic obfuscation tool for Android apps that works in a black-box fashion, supports advanced obfuscation features and has a modular architecture easily extensible with new techniques

    Obfuscapk is adding support for Android App Bundles (aab files) by using BundleDecompiler (see #121). In order to use this new feature, download the latest version of BundleDecompiler available from here and save it as BundleDecompiler.jar in a directory included in PATH (e.g., in Ubuntu, /usr/local/bin or /usr/bin).

    NOTE: BundleDecompiler doesn’t work on Windows yet, so app bundle obfuscation is not supported by Obfuscapk on Windows platform. Also, app bundle support is still in early development, so if you faced any problems or if you want to help us improve, please see contributing.

    Tags: #python • android • application

  • SIP.js

    A simple, intuitive, and powerful JavaScript signaling library

    • Create real-time peer-to-peer audio and video sessions via WebRTC
    • Utilize SIP in your web application via SIP over WebSocket
    • Send instant messages and view presence
    • Support early media, hold and transfers
    • Send DTMF RFC 2833 or SIP INFO
    • Share your screen or desktop
    • Written in TypeScript
    • Runs in all major web browsers
    • Compatible with standards compliant servers including Asterisk and FreeSWITCH

    Tags: #typescript • sipjs • webrtc

  • kociemba

    A pure Python and pure C ports of Kociemba’s algorithm for solving Rubik’s cube

    This Python package contains two equivalent implementations (in C and Python) of Herbert Kociemba’s two-phase algorithm for solving Rubik’s Cube. Original Java implementation can be found here: http://kociemba.org/download.htm.

    These ports are pretty straightforward (not to say dumb) and most probably can be optimized. But they have been extensively tested in our Rubik’s cube solving machines (FAC System Solver and Meccano Rubik’s Shrine), so be confident the algorithm is working.

    NB please note that two-phase algorithm does not guarantee that the produced solution is the shortest possible. Instead, it gives you a “good enough” solution in a very short time. You can implement additional checks on top of this library, for example, to not produce any moves if the cube is already solved.

    Tags: #python

  • hooks

    Hooks is a extension system for your Laravel application.

    Hooks is a extension system for your Laravel application.

    Tags: #php • laravel • hooks

subscribe via RSS