Skip to content

Instantly share code, notes, and snippets.

View eddieb2's full-sized avatar
🏃‍♂️

Eddie Blanciak eddieb2

🏃‍♂️
View GitHub Profile

Intern Learning Resources

This short resource list/autodidactic curriculum has been created in the hopes that it will better prepare interns for full integration into the Software Development Industry. As an intern it is important to think about the extent of your current knowledge and where you can improve, as well as the expectations you must set for yourself in terms of learning and growth. A professional setting can help better shape ones perspective as to what is required. This internship is an opportunity to grow not only in a careerwise manner but as professional in the industry. To this extent it is expected that time will be spent thoroughly exploring and attempting to understand the many aspects of your craft as it pertains not only to your day-to-day activities but your overall understanding as well.

Asking for Help

Basic etiquette

  1. Respect other peoples time
  2. Ask your question in your opening statement state it clearly
@SIRHAMY
SIRHAMY / gtltexample.html
Created September 18, 2016 04:49
React/JSX: Put greater than and less than symbol in HTML
<div>{"<"} Less than, {">"} greater than </div>
@jwmalara
jwmalara / state_dropdown.html
Created April 22, 2014 18:44
HTML: State Dropdown
<select name="state">
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
<option value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>
<option value="FL">Florida</option>
@pusherman
pusherman / gist:3145761
Created July 19, 2012 18:13
HTML - Select list of US states
<select name="state" id="state">
<option value="" selected="selected">Select a State</option>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
<option value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>