Skip to content
View cazepeda's full-sized avatar
:octocat:
Practicing.
:octocat:
Practicing.
Block or Report

Block or report cazepeda

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

Hi there 👋

  • 🔭 I’m currently working on my main website czepeda.com
  • ⚡ Fun fact: I speak fluently in Español, English and novice Portugues (Brazilian).

Pinned

  1. json-to-yaml-to-md-file json-to-yaml-to-md-file Public

    JSON to YAML to Markdown file Shell script

    Shell

  2. tips tips Public

    CSS

  3. Applescript to convert spaces, @, ?,... Applescript to convert spaces, @, ?, ', to hyphens and uppercase to lowercase.
    1
    on run {input}
    2
    	set input to replaceText(" ", "-", input as string)
    3
    	set input to replaceText(".", "", input as string)
    4
    	set input to replaceText(":", "", input as string)
    5
    	set input to replaceText(",", "", input as string)
  4. Applescript Capitalize First Letter ... Applescript Capitalize First Letter of Selected Text
    1
    on run {input, parameters}
    2
        set capitalize to ¬
    3
            (do shell script "/bin/echo " & input & " | /usr/bin/awk '{for(i=1;i<=NF;i++)sub(/./,toupper(substr($i,1,1)),$i)}1'")
    4
    end run