All Projects → cirello-io → Humorchecker

cirello-io / Humorchecker

Licence: apache-2.0
[Mirror] Port of Sentimental library into Go

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to Humorchecker

Unused Scanner
Detect unused composer dependencies
Stars: ✭ 363 (+1070.97%)
Mutual labels:  analyzer
Yauaa
Yet Another UserAgent Analyzer
Stars: ✭ 472 (+1422.58%)
Mutual labels:  analyzer
Emba
emba - An analyzer for Linux-based firmware of embedded devices.
Stars: ✭ 607 (+1858.06%)
Mutual labels:  analyzer
Logswan
Fast Web log analyzer using probabilistic data structures
Stars: ✭ 375 (+1109.68%)
Mutual labels:  analyzer
Php Semver Checker
Compares two source sets and determines the appropriate semantic versioning to apply.
Stars: ✭ 413 (+1232.26%)
Mutual labels:  analyzer
Python Seo Analyzer
An SEO tool that analyzes the structure of a site, crawls the site, count words in the body of the site and warns of any technical SEO issues.
Stars: ✭ 529 (+1606.45%)
Mutual labels:  analyzer
Thehivedocs
Documentation of TheHive
Stars: ✭ 353 (+1038.71%)
Mutual labels:  analyzer
Sonar Java
☕️ SonarSource Static Analyzer for Java Code Quality and Security
Stars: ✭ 745 (+2303.23%)
Mutual labels:  analyzer
Performance
⏱ PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.
Stars: ✭ 429 (+1283.87%)
Mutual labels:  analyzer
Vs Threading
The Microsoft.VisualStudio.Threading is a xplat library that provides many threading and synchronization primitives used in Visual Studio and other applications.
Stars: ✭ 585 (+1787.1%)
Mutual labels:  analyzer
Buildtimeanalyzer For Xcode
Build Time Analyzer for Swift
Stars: ✭ 3,958 (+12667.74%)
Mutual labels:  analyzer
Gpxsee
GPS log file viewer and analyzer with support for GPX, TCX, KML, FIT, IGC, NMEA, SLF, SML, LOC, GPI, GeoJSON and OziExplorer files.
Stars: ✭ 406 (+1209.68%)
Mutual labels:  analyzer
Security Code Scan
Vulnerability Patterns Detector for C# and VB.NET
Stars: ✭ 550 (+1674.19%)
Mutual labels:  analyzer
Wowanalyzer
WoWAnalyzer is a tool to help you analyze and improve your World of Warcraft raiding performance through various relevant metrics and gameplay suggestions.
Stars: ✭ 371 (+1096.77%)
Mutual labels:  analyzer
Phpsa
Smart/Static Analyzer(sis) for PHP
Stars: ✭ 651 (+2000%)
Mutual labels:  analyzer
Gitlhevcanalyzer
Gitl HEVC/H.265 Analyzer based on Qt. Custom filters supported.
Stars: ✭ 361 (+1064.52%)
Mutual labels:  analyzer
Ostinato
Ostinato - Packet/Traffic Generator and Analyzer
Stars: ✭ 513 (+1554.84%)
Mutual labels:  analyzer
Pronto Fasterer
Pronto runner for Fasterer, speed improvements suggester
Stars: ✭ 18 (-41.94%)
Mutual labels:  analyzer
Cortex
Cortex: a Powerful Observable Analysis and Active Response Engine
Stars: ✭ 676 (+2080.65%)
Mutual labels:  analyzer
Phan
Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness.
Stars: ✭ 5,194 (+16654.84%)
Mutual labels:  analyzer

HumorChecker - port of SentiMental into Go.

Build Status

Credits where credits are due: consider starring SentiMental repo on which this one was based.

Sentiment analysis tool based on the AFINN-111 wordlist.

Install

$ go get cirello.io/HumorChecker

Features

  • Positivity ranking
  • Negativity ranking
  • Analyze - combines Positivity and Negativity ranking into an aggregate sentiment score

Example

package main

import (
	"fmt"

	hc "cirello.io/HumorChecker"
)

func main() {
	fmt.Printf("%#v\n", hc.Analyze("Hey you worthless scumbag"))
	fmt.Printf("%#v\n", hc.Positivity("This is so cool"))
	fmt.Printf("%#v\n", hc.Negativity("Hey you worthless scumbag"))
	fmt.Printf("%#v\n", hc.Analyze("I am happy"))
	fmt.Printf("%#v\n", hc.Analyze("I am so happy"))
	fmt.Printf("%#v\n", hc.Analyze("I am extremely happy"))
	fmt.Printf("%#v\n", hc.Analyze("I am really sad"))
}

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].