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

Block or report corburn

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. Minimal HTML5 Minimal HTML5
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    	<head>
    4
    		<meta charset="utf-8">
    5
    		<meta name="viewport" content="width=device-width,initial-scale=1">
  2. Nginx server notes Nginx server notes
    1
    The following is from [scotthelme.co.uk](http://scotthelme.co.uk)
    2
    
                  
    3
    
                  
    4
    ## Content Security Policy
    5
    
                  
  3. MIT 6.172 Performance Engineering of... MIT 6.172 Performance Engineering of Software Systems Open Courseware Lecture 2
    1
    // Swap two integers x and y without a temporary
    2
    // Performance poor with instruction-level parallelism (ILP)
    3
    // Each step has to wait for the previous step to compute before it can execute
    4
    x = x ^ y
    5
    y = x ^ y