Posts

  • pipupgrade

    🗽 Like yarn outdated/upgrade, but for pip. Upgrade all your pip packages and automate your Python Dependency Management.

    Tags: #python • pip • upgrade

  • pixiv.moe

    😘 A pinterest-style layout site, shows illusts on pixiv.net order by popularity.

    Tags: #typescript • lovelive • pixiv

  • barlow

    Barlow: a straight-sided sans superfamily

    Barlow is a slightly rounded, low-contrast, grotesk type family designed by Jeremy Tribby. Drawing from the visual style of the California public, Barlow shares qualities with the state’s car plates, highway signs, busses, and trains.

    The family includes 54 styles in three widths and nine weights, as well as italics, suitable for large and small digital and print use. Customizable weights and widths are available via the included variable font (GX) file.

    Barlow is named after internet pioneer, EFF co-founder, songwriter, and activist John Perry Barlow, in tribute to his lasting impact on the information superhighway. Please consider making a donation to the Electronic Frontier Foundation in his memory.

    Tags: #python

  • 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

subscribe via RSS