Skip to content
View jimcamut's full-sized avatar

Highlights

  • Pro

Block or report jimcamut

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. jimcamut-web jimcamut-web Public

    JavaScript

  2. calendarize calendarize Public

    Vanilla Javascript Plugin to Create Calendars

    JavaScript 10 8

  3. gnestor/react-native-statusbar-alert gnestor/react-native-statusbar-alert Public

    A status bar alert (e.g. in-call, recording, navigating) for React Native

    JavaScript 230 30

  4. Simple-jQuery-Slider Simple-jQuery-Slider Public

    A simple jQuery slider.

    JavaScript

  5. All US zip codes with their correspo... All US zip codes with their corresponding latitude and longitude coordinates.Comma delimited for your database goodness.Source: http://www.census.gov/geo/maps-data/data/gazetteer.html
    1
    {
    2
    	"00601": [18.180555, -66.749961],
    3
    	"00602": [18.361945, -67.175597],
    4
    	"00603": [18.455183, -67.119887],
    5
    	"00606": [18.158345, -66.932911],
  6. Compress Images in Javascript - clie... Compress Images in Javascript - client side
    1
    function compressImg(source_img_obj, quality, maxWidth, output_format){
    2
    	var mime_type = "image/jpeg";
    3
    	if(typeof output_format !== "undefined" && output_format=="png"){
    4
    		mime_type = "image/png";
    5
    	}