Skip to content
View rodrigopaulino's full-sized avatar

Organizations

@forms-team
Block or Report

Block or report rodrigopaulino

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. liferay/liferay-portal liferay/liferay-portal Public

    2.1k 3.6k

  2. liferay-data-engine-builder-example liferay-data-engine-builder-example Public

    Java

  3. tomcat-lifecycle-listeners tomcat-lifecycle-listeners Public

    Set of tomcat listeners

    Java

  4. scripts-library scripts-library Public

    A set of my own scripts that often help me

  5. compiler-college-project compiler-college-project Public

    Automatically exported from code.google.com/p/compilador-unicap-rodrigopaulino

    Java

  6. macOS Mojave Font Smoothing Script macOS Mojave Font Smoothing Script
    1
    #-----PIECE OF SCRIPT TO VERIFY IF NATIVE'S OS X FONT SMOOTHING FOR THIRD PARTY DISPLAYS IS ENABLED THEN TOGGLE IT. NECESSARY AS OF OS X MOJAVE-----#
    2
    CG_FONT_RENDERING_FONT_SMOOTHING_DISABLED=`defaults read -g CGFontRenderingFontSmoothingDisabled`;
    3
    
                  
    4
    if [ $CG_FONT_RENDERING_FONT_SMOOTHING_DISABLED -eq 1 ]; then
    5
    	defaults write -g CGFontRenderingFontSmoothingDisabled -bool FALSE;