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

Block or report cazepeda

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 Loading

  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