项目作者: NathanBarta

项目描述 :
MemeTextConverter. A simple command-line string styler written in Swift.
高级语言: Swift
项目地址: git://github.com/NathanBarta/MemeTC.git
创建时间: 2020-10-14T13:34:20Z
项目社区:https://github.com/NathanBarta/MemeTC

开源协议:MIT License

下载


MemeTC

A simple string styler written in Swift.

Available styles:

  • Spongebob: “Hello World” —> “hEllo WOrLd”
  • Leet: “Hello World” —> “H3110 W0r1d”
  • sPaced-out/Padded: “Hello World” —> “H e l l o W o r l d”

How to Use:

In terminal:

  1. `MemeTC "Text you want to style" --{style}

Styles:

  • Spongebob: —s
  • Leet: —l
  • Padded: —p

Run this code inside the project directory so you can access the tool from anywhere:

  1. swift build --configuration release
  2. cp -f .build/release/banner /usr/local/bin/banner

Why?

Learning how to make command-line tools with Swift, distribute packages to the public, and use GitHub.

Future Work

  • Make more one-liner stylers for practice & fun
  • Learn how to do more complicated things with packages

Tech Used: