Skip to content
View sir-pinecone's full-sized avatar
👁️
👁️

Organizations

@JellyPixel @JellyPixelGames @EpicGames @HandmadeHero @introspective-code

Block or report sir-pinecone

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

sesal

Pinned Loading

  1. Stop a Git commit if a staged file c... Stop a Git commit if a staged file contains the word "nocheckin".
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # Stops the commit if the changes include the word `nocheckin`.
    4
    
                  
    5
    if which tput >/dev/null 2>&1; then
  2. dev_links.md dev_links.md
    1
    * [godbolt Compiler Explorer](https://godbolt.org/)
    2
      * Use this to see the assembly generated for various languages using various compilers. Very useful tool. 
    3
    * [uops table](https://uops.info/table.html)
    4
      * See instruction latency, throughput, # uops, and port usage across different architectures.
    5
    * [Intel Intrinsics Guide](https://software.intel.com/sites/landingpage/IntrinsicsGuide/#)