Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View HichamBenjelloun's full-sized avatar

Block or report HichamBenjelloun

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Memoizing recursive functions Memoizing recursive functions
    1
    const memoizeFactory = hashFn => fn => {
    2
      const memoize = fn => {
    3
        const cache = {};
    4
    
                  
    5
        return (...args) => {
  2. How to install VMware Workstation Pr... How to install VMware Workstation Pro 16.2.3 on Fedora 36
    1
    # Install VMware Workstation Pro 16.2.3 on Fedora 36
    2
    
                  
    3
    # Install packages to build kernel modules
    4
    sudo dnf install @development-tools
    5
    sudo dnf install kernel-headers-$(uname -r) kernel-devel-$(uname -r) dkms elfutils-libelf-devel qt5-qtx11extras
  3. Currying functions Currying functions
    1
    /**
    2
     * Transforms a function of the form:
    3
     *         fn = (p1, ..., pN) => f(p1, ...pN)
    4
     * to its curried form:
    5
     *         curried = p1 => p2 => ... => pN => fn(p1, p2, ..., pN);
  4. Rearrange object structure Rearrange object structure
    1
    import _ from 'lodash';
    2
    
                  
    3
    
                  
    4
    const isPlainObject = value =>
    5
      value === Object(value) &&