Skip to content
View isakb's full-sized avatar

Block or report isakb

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. Enterprise version of is_even Enterprise version of is_even
    1
    # Enterprise version of is_even.
    2
    # (Don't use this in a startup.)
    3
    #
    4
    # python is_even.py 1
    5
    # False
  2. arxiv_summarizer.py arxiv_summarizer.py
    1
    import json
    2
    import os
    3
    import xml.etree.ElementTree as ET
    4
    
                  
    5
    import requests
  3. 666b-forum 666b-forum Public

    This is a very basic forum that I made for "fun"

    12

  4. Download JavaScript array as Excel C... Download JavaScript array as Excel CSV for any version of Excel
    1
    # See http://jsfiddle.net/isak_b/hp6fj/ for live demo.
    2
    
                  
    3
    asUtf16 = (str) ->
    4
      buffer = new ArrayBuffer(str.length * 2)
    5
      bufferView = new Uint16Array(buffer)