Skip to content
View carolinecodes's full-sized avatar
🥝
🥝

Organizations

@columbusrb
Block or Report

Block or report carolinecodes

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. columbusrb/prospect columbusrb/prospect Public

    Board voting and nominations application

    Ruby 1

  2. Ruby script pulls list of hosted Dom... Ruby script pulls list of hosted Domains from Route35 in AWS and creates a CSV file
    1
    # for domains
    2
    require 'csv'
    3
    require 'aws-sdk-route53domains'
    4
    client = Aws::Route53Domains::Client.new
    5
    resp = client.list_domains
  3. Sample of how to POST form data from... Sample of how to POST form data from a static HTML page using AJAX. Also includes HTML-friendly notifications that can be populated on the page.
    1
    $("#submit-button-id").submit(function( event ){
    2
      event.preventDefault();
    3
    
                  
    4
      var form = $(this);
    5