Skip to content
View jamesnotjim's full-sized avatar

Block or report jamesnotjim

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. rssLatestPost rssLatestPost Public

    Pulls the latest post from a blog and displays its title as a link. JavaScript w/jQuery.

    HTML

  2. locator locator Public

    A JavaScript zipcode lookup script using Google Javascript Maps API v3, Google Geocoding API, and jQuery.

    CSS

  3. Dynamic Copyright Date Example Dynamic Copyright Date Example
    1
    <!-- include these in the head -->
    2
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    3
    
                  
    4
    <script type="text/javascript">
    5
    $( document ).ready(function() {
  4. Clear the Terminal in Python Clear the Terminal in Python
    1
    import os
    2
    
                  
    3
    if(os.name == "posix"): 
    4
        	os.system('clear')
    5
        else: