Skip to content
View jerryharrison's full-sized avatar
🐢
Marathon not a sprint.
🐢
Marathon not a sprint.

Organizations

@TranscendSpatialSolutions
Block or Report

Block or report jerryharrison

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
jerryharrison/README.md

Skills

Go Javascript Swift Typescript PHP Python Ruby HTML5 React Svelte CSS3 Sass Gatsby TailwindCSS Bootstrap JQuery Redux Babel NodeJS Express PostgreSQL Firebase Supabase MySQL MongoDB .NET Photoshop After Effects Premiere Pro Sketch

Socials

            <p align="left">
                      
                  <a href="https://www.codesandbox.com/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/codesandbox.svg" width="32" height="32" /></a>
                      
                  <a href="https://www.dribbble.com/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/dribbble.svg" width="32" height="32" /></a>
                      
                  <a href="https://www.facebook.com/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/facebook.svg" width="32" height="32" /></a>
                      
                  <a href="https://www.github.com/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/github.svg" width="32" height="32" /></a>
                      
                  <a href="https://www.linkedin.com/in/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/linkedin.svg" width="32" height="32" /></a>
                      
                  <a href="https://www.twitter.com/jerryharrison" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/socials/twitter.svg" width="32" height="32" /></a></p>### Badges<b>My GitHub Stats</b><a
                  href="http://www.github.com/jerryharrison"><img src="https://github-readme-stats.vercel.app/api?username=jerryharrison&show_icons=true&hide=prs,issues,contribs&count_private=true&title_color=0891b2&text_color=ffffff&icon_color=0891b2&bg_color=1c1917&hide_border=true&show_icons=true" alt="jerryharrison's GitHub stats" /></a>

Pinned

  1. Wrapping Long URLs and Text Content ... Wrapping Long URLs and Text Content with CSS
    1
    span {
    2
    	white-space: pre;           /* CSS 2.0 */
    3
    	white-space: pre-wrap;      /* CSS 2.1 */
    4
    	white-space: pre-line;      /* CSS 3.0 */
    5
    	white-space: -pre-wrap;     /* Opera 4-6 */
  2. Fullscreen code Fullscreen code
    1
    
                  
    2
    function goFullscreen(id) {
    3
    	// Get the element that we want to take into fullscreen mode
    4
    	var element = document.getElementById(id);
    5
    
                  
  3. Quick-N-Dirty: Simple javascript con... Quick-N-Dirty: Simple javascript confirmation alert.
    1
    <a href="/users/delete/12" onclick="return confirm('Are you sure you want to delete this user?');">Delete</a>
  4. Javascript: Grabbing the hash from t... Javascript: Grabbing the hash from the location.href and targeting a specific state on a page.
    1
    
                  
    2
    
                  
    3
      // auto open the album
    4
      var hash = window.location.hash.toString().replace('#','').split('-');
    5
    
                  
  5. Promises in sequence. Promises in sequence.
    1
    // Syncronus running of promises to process an array of objs (or anything really) in a series.
    2
    // given an array:
    3
    
                  
    4
    var items = [{type: 'peanuts', type: 'carrots'}];
    5
    
                  
  6. Nice little mouse "icon" class to ap... Nice little mouse "icon" class to apply to a div
    1
    .mouse {
    2
      height: 45px;
    3
      width: 27px;
    4
      border-radius: 24px;
    5
      border: 2px solid rgba(0,0,0,.47);