Skip to content
View motyar's full-sized avatar
🟢
I may be slow to respond.
🟢
I may be slow to respond.

Organizations

@Prixest

Block or report motyar

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 Loading

  1. firefly firefly Public

    jQuery plug-in to create a firefly effect

    JavaScript 158 56

  2. restgomysql restgomysql Public

    REST APIs with Go and MySql

    Go 55 19

  3. fullscreen fullscreen Public

    HTML5 fullscreen button

    JavaScript 11 2

  4. Simplest AJAX call with Raw JavaScript Simplest AJAX call with Raw JavaScript
    1
    window.onload =  function(){
    2
      
    3
    		var xhr;
    4
    
                  
    5
    		if(typeof XMLHttpRequest !== 'undefined') xhr = new XMLHttpRequest();
  5. Displaying JSON values with JavaScri... Displaying JSON values with JavaScript : Basics of JSON Template with JavaScript
    1
    <!DOCTYPE html>
    2
    <html>
    3
    <head>
    4
    <meta charset=utf-8 />
    5
    <title>Displaying JSON values with JavaScript : Basics of JSON Templating with JavaScript</title>
  6. Auto start and stop ssh tunnel, for ... Auto start and stop ssh tunnel, for super fast remote editing with Vim
    1
    "{{{ Start and stop ssh tunnel, Fast remote editing idea via http://www.erikzaadi.com/2013/03/07/fast-remote-editing-with-vim/
    2
    
                  
    3
    function! StartSshTunnel(machine)
    4
        let shellcmd = "ssh ".a:machine." -f -N -o ControlMaster=auto -o ControlPath=/tmp/%r@%h:%p"
    5
        let tunnel=system(shellcmd)