Skip to content
View kamirbarron's full-sized avatar
👠
yes
👠
yes
Block or Report

Block or report kamirbarron

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. Code-Snippets Code-Snippets Public

    Forked from senlin/Code-Snippets

    Collection of mostly WordPress Code Snippets.

    PHP

  2. layerJS layerJS Public

    Forked from layerJS/layerJS

    layerJS: Javascript UI composition framework

    JavaScript

  3. jQuery: find all cells (td/th) in a ... jQuery: find all cells (td/th) in a column of a table
    1
    /**
    2
     * Find all cells (td/th) in the column of the current cell.
    3
     * (excluding rows with cells that span multiple columns.)
    4
     */
    5
    
                  
  4. Adb useful commands list Adb useful commands list
    1
    == Adb Server
    2
    adb kill-server
    3
    adb start-server 
    4
    
                  
    5
    == Adb Reboot
  5. PowerShell snippet for submitting to... PowerShell snippet for submitting to urlscan.io - By Nicholas Gipson
    1
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    2
    
                  
    3
    $Invoke = Invoke-WebRequest -Headers @{"API-Key" = "$apikey"} -Method Post ` -Body "{`"url`":`"$url`"}" -Uri https://urlscan.io/api/v1/scan/ ` -ContentType application/json