Skip to content
View jarrettbarnett's full-sized avatar
Block or Report

Block or report jarrettbarnett

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

    Forked from tensorflow/tensorflow

    Computation using data flow graphs for scalable machine learning

    C++

  2. https://stackoverflow.com/questions/... https://stackoverflow.com/questions/11740663/google-map-api-uncaught-typeerror-cannot-read-property-offsetwidth-of-null
    1
    This problem is usually due to the map div not being rendered before the javascript runs that needs to access it.
    
    You should put your initialization code inside an onload function or at the bottom of your HTML file, just before the tag, so the DOM is completely rendered before it executes (note that the second option is more sensitive to invalid HTML).
    
    Note, as pointed out by matthewsheets this also could be cause by the div with that id not existing at all in your HTML (the pathological case of the div not being rendered)
    
    Adding code sample from wf9a5m75's post to put everything in one place:
    
        <script type="text/javascript">
        
        function initialize() {
            var latlng = new google.maps.LatLng(-34.397, 150.644);
            var myOptions = {
                zoom: 8,
                center: latlng,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            var map = new google.maps.Map(document.getElementById("map_canvas"),
                    myOptions);
        }
        google.maps.event.addDomListener(window, "load", initialize);
        
        </script>
  3. obsidian-api obsidian-api Public

    Forked from obsidianmd/obsidian-api

    Type definitions for the latest Obsidian API.

  4. rapyd-laravel rapyd-laravel Public

    Forked from zofe/rapyd-laravel

    rapyd: crud widgets for laravel. datatable, grids, forms, in a simple package

    PHP

  5. PsuedoRandomizer PsuedoRandomizer Public

    The start of a PRNG library

    PHP 1

  6. obsidian-git obsidian-git Public

    Forked from denolehov/obsidian-git

    Backup your Obsidian.md vault with git

    TypeScript