All Projects → Code-Hex → Neo Cowsay

Code-Hex / Neo Cowsay

Licence: other
🐮 cowsay is reborn. Neo Cowsay written in Go. This cowsay extended the original and added fun more options. And it can be used as a library.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Neo Cowsay

Poke95
🚀 A Windows 95 style Pokédex built with React.
Stars: ✭ 124 (-1.59%)
Mutual labels:  hacktoberfest
Mythril
Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
Stars: ✭ 1,968 (+1461.9%)
Mutual labels:  hacktoberfest
Cphalcon
High performance, full-stack PHP framework delivered as a C extension.
Stars: ✭ 10,534 (+8260.32%)
Mutual labels:  hacktoberfest
Pandaset Devkit
Stars: ✭ 121 (-3.97%)
Mutual labels:  hacktoberfest
Node Oidc Provider
OpenID Certified™ OAuth 2.0 Authorization Server implementation for Node.js
Stars: ✭ 2,018 (+1501.59%)
Mutual labels:  hacktoberfest
Litmus
Litmus helps SREs and developers practice chaos engineering in a Cloud-native way. Chaos experiments are published at the ChaosHub (https://hub.litmuschaos.io). Community notes is at https://hackmd.io/a4Zu_sH4TZGeih-xCimi3Q
Stars: ✭ 2,377 (+1786.51%)
Mutual labels:  hacktoberfest
Foundryvtt Docker
An easy-to-deploy Dockerized Foundry Virtual Tabletop server.
Stars: ✭ 123 (-2.38%)
Mutual labels:  hacktoberfest
Materialdesigninxamltoolkit
Google's Material Design in XAML & WPF, for C# & VB.Net.
Stars: ✭ 11,603 (+9108.73%)
Mutual labels:  hacktoberfest
Scrutor
Assembly scanning and decoration extensions for Microsoft.Extensions.DependencyInjection
Stars: ✭ 1,915 (+1419.84%)
Mutual labels:  hacktoberfest
Wagtail
A Django content management system focused on flexibility and user experience
Stars: ✭ 11,387 (+8937.3%)
Mutual labels:  hacktoberfest
Vue I18n Extract
Manage vue-i18n localization with static analysis
Stars: ✭ 123 (-2.38%)
Mutual labels:  hacktoberfest
Docker Lvm Plugin
Docker volume plugin for LVM volumes
Stars: ✭ 125 (-0.79%)
Mutual labels:  hacktoberfest
Voyager
Voyager - The Missing Laravel Admin
Stars: ✭ 10,801 (+8472.22%)
Mutual labels:  hacktoberfest
Python Resources 2019
A curated list of Python 3 resources, books, websites, tutorials, code challenges
Stars: ✭ 125 (-0.79%)
Mutual labels:  hacktoberfest
Http Server
a simple zero-configuration command-line http server
Stars: ✭ 11,280 (+8852.38%)
Mutual labels:  hacktoberfest
Phpid Learning
🙋 Belajar daring bersama PHPID
Stars: ✭ 125 (-0.79%)
Mutual labels:  hacktoberfest
Storefront Ui
Customization-first, performance-oriented and elegant UI framework for eCommerce (and not only) based on Vue.js and Google Retail UX Playbook. Made with 💚 by Vue Storefront team and contributors.
Stars: ✭ 1,827 (+1350%)
Mutual labels:  hacktoberfest
Django Phone Verify
A Django app to support phone number verification using security code / One-Time-Password (OTP) sent via SMS.
Stars: ✭ 121 (-3.97%)
Mutual labels:  hacktoberfest
Hydra
OpenID Certified™ OpenID Connect and OAuth Provider written in Go - cloud native, security-first, open source API security for your infrastructure. SDKs for any language. Compatible with MITREid.
Stars: ✭ 11,884 (+9331.75%)
Mutual labels:  hacktoberfest
Discord.js
discord.js is a powerful Node.js module that allows you to easily interact with the Discord API.
Stars: ✭ 16,432 (+12941.27%)
Mutual labels:  hacktoberfest

Neo Cowsay

Fast, funny, everyone wanted? new cowsay!!

 ______________
< I'm Neo cows >
 --------------
       \   ^__^
        \  (oo)\_______
           (__)\       )\/\
               ||----w |
               ||     ||

GoDoc CircleCI Go Report Card

What's?

cowsay is a configurable talking cow, written in Perl.  It operates
much as the figlet program does, and it written in the same spirit
of silliness.

by Original.
Neo Cowsay written in Go. This cowsay extended the original and added fun more options. And it can be used as a library.

Usage

As command

cow{say,think} version 0.0.5, (c) 2018 CodeHex
Usage: cowsay [-bdgpstwy] [-h] [-e eyes] [-f cowfile] [--random]
          [-l] [-n] [-T tongue] [-W wrapcolumn]
          [--rainbow] [--aurora] [--super] [message]

Original Author: (c) 1999 Tony Monroe

Normal

$ cowsay Hello
 _______
< Hello >
 -------
       \   ^__^
        \  (oo)\_______
           (__)\       )\/\
               ||----w |
               ||     ||

Borg mode

$ cowsay -b Hello
 _______
< Hello >
 -------
       \   ^__^
        \  (==)\_______
           (__)\       )\/\
               ||----w |
               ||     ||

As library

package main

import (
	"fmt"

	cowsay "github.com/Code-Hex/Neo-cowsay"
)

func main() {
	say, err := cowsay.Say(
		cowsay.Phrase("Hello"),
		cowsay.Type("default"),
		cowsay.BallonWidth(40),
	)
	if err != nil {
		panic(err)
	}
	fmt.Println(say)
}

Example or GoDoc

New options

Random

asciicast

Rainbow and Aurora, Bold

asciicast

And, Super Cows mode

asciinema is heavy... asciicast

Install

library

go get -u github.com/Code-Hex/Neo-cowsay

cowsay

go get -u github.com/Code-Hex/Neo-cowsay/cmd/cowsay

cowthink

go get -u github.com/Code-Hex/Neo-cowsay/cmd/cowthink

Binary

You can download here

License

cowsay license
(The Artistic License or The GNU General Public License)

Author

Neo Cowsay: codehex
Original: (c) 1999 Tony Monroe

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].