All Projects → vexx32 → Pswordcloud

vexx32 / Pswordcloud

Licence: gpl-3.0
Create pretty word clouds with PowerShell!

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Pswordcloud

Cultofthepartyparrot.com
PARTY OR DIE
Stars: ✭ 1,254 (+1358.14%)
Mutual labels:  hacktoberfest
Aiovk
vk.com API python wrapper for asyncio
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Sa Mp Fixes
Includes and plugins to fix various issues in the SA:MP server that can be fixed externally, leaving the devs time for other things.
Stars: ✭ 84 (-2.33%)
Mutual labels:  hacktoberfest
Hacktoberfest2k20
Anyone can send any type of code , I will merge it Asap
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Typerep Map
⚡️Efficient implementation of Map with types as keys
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Node Fortran
💀 Fortran bridge for Node.js which allows you to run Fortran code from Node.js.
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Entando Core
The entando-core is the repository of the Entando App Engine for Entando 5.X and is the heart of the Entando Platform by providing the primary out-of-the-box services for developing applications.
Stars: ✭ 84 (-2.33%)
Mutual labels:  hacktoberfest
Laminas Mvc Skeleton
Skeleton application for creating laminas-mvc based projects.
Stars: ✭ 86 (+0%)
Mutual labels:  hacktoberfest
Collaboration For Beginners
A Beginner's Guide to Contributing in an Open Source Project.
Stars: ✭ 86 (+0%)
Mutual labels:  hacktoberfest
Jsql
jSQL is the "official" Javascript Query Language - A database written in Javascript for use in a browser or Node.
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Awesome Visjs
🕶️ A curated list of resources around vis.js
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Eleicoes Brasil
Scripts para capturar dados do Repositório de Dados Eleitorais do TSE, limpá-los, normalizá-los e agrupá-los
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Mattermost Mobile
Next generation iOS and Android apps for Mattermost in React Native
Stars: ✭ 1,262 (+1367.44%)
Mutual labels:  hacktoberfest
Pytheory
Music Theory for Humans.
Stars: ✭ 1,260 (+1365.12%)
Mutual labels:  hacktoberfest
Getgist
🖥️ Easily download any file from a GitHub Gist, with one single command.
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Azuracast
A self-hosted web radio management suite, including turnkey installer tools for the full radio software stack and a modern, easy-to-use web app to manage your stations.
Stars: ✭ 1,253 (+1356.98%)
Mutual labels:  hacktoberfest
Garth
🥁 A really basic theme for Jekyll
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Docker Openwisp
(unreleased) OpenWISP docker images
Stars: ✭ 86 (+0%)
Mutual labels:  hacktoberfest
Sublimechef
A Sublime Text 2 Package for authoring Chef related files
Stars: ✭ 85 (-1.16%)
Mutual labels:  hacktoberfest
Core
Open source Dota 2 data platform
Stars: ✭ 1,266 (+1372.09%)
Mutual labels:  hacktoberfest

PSWordCloud

Create pretty word clouds with PowerShell!

Installation

Install-Module PSWordCloud

Usage

# Simply provide a list of words (in this case, supplied with a simple hashtable depicting words and
# their relative sizes.

New-WordCloud -Path .\wordcloud.svg -Typeface Consolas -WordSizes @{
    dragon = Get-Random -Maximum 10 -Minimum 1 
    rabbit = Get-Random -Maximum 15 -Minimum 1 
    horse = Get-Random -Maximum 18 -Minimum 1 
    cow = Get-Random -Maximum 20 -Minimum 1 
    cat = Get-Random -Maximum 8 -Minimum 1 
    fox = Get-Random -Maximum 12 -Minimum 1 
}

# Alternately, get a chunk of text (doesn't matter where), and pipe it directly to the cmdlet to create
# a word-frequency word cloud.
Get-ClipBoard | New-WordCloud -Path .\wordcloud.svg -Typeface Georgia

Get-Content .\words.txt | New-WordCloud -Path .\wordcloud2.svg -ImageSize 1080p

Get-ClipBoard | New-WordCloud -Path .\wordcloud3.svg -Typeface Consolas -ImageSize 1000x1000

Examples

See the Gallery for some example usage and output!

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