Skip to content

Commit d0f298a

Browse files
committed
Initial commit
0 parents  commit d0f298a

File tree

7 files changed

+217
-0
lines changed

7 files changed

+217
-0
lines changed

.editorconfig

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
max_line_length = 100
10+
tab_width = 4
11+
ij_visual_guides = 50, 72, 80, 100
12+
ij_wrap_on_typing = false
13+
14+
[Makefile]
15+
indent_style = tab
16+
17+
[*.go]
18+
indent_style = tab
19+
20+
[{*.yaml,*.yml}]
21+
indent_size = 2
22+
ij_yaml_align_values_properties = do_not_align
23+
ij_yaml_autoinsert_sequence_marker = true
24+
ij_yaml_block_mapping_on_new_line = false
25+
ij_yaml_indent_sequence_value = true
26+
ij_yaml_keep_indents_on_empty_lines = false
27+
ij_yaml_keep_line_breaks = true
28+
ij_yaml_sequence_on_new_line = false
29+
ij_yaml_space_before_colon = false
30+
ij_yaml_spaces_within_braces = false
31+
ij_yaml_spaces_within_brackets = false

.github/dependabot.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
# See https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: gomod
7+
directory: /
8+
schedule:
9+
interval: monthly
10+
11+
- package-ecosystem: github-actions
12+
directory: /
13+
schedule:
14+
interval: monthly

.golangci.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
linters:
3+
disable-all: true
4+
enable:
5+
- errcheck
6+
- godot
7+
- gofumpt
8+
- goimports
9+
- gosimple
10+
- govet
11+
- ineffassign
12+
- misspell
13+
- staticcheck
14+
- testifylint
15+
- testpackage
16+
- typecheck
17+
- unused
18+
- whitespace
19+
- wsl
20+
21+
linters-settings:
22+
goimports:
23+
local-prefixes: github.com/xorcare/nunino
24+
gofumpt:
25+
module-path: github.com/xorcare/nunino
26+
unused:
27+
field-writes-are-uses: false
28+
post-statements-are-reads: true
29+
exported-fields-are-used: false
30+
local-variables-are-used: false

LICENSE

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2024, Vasiliy Vasilyuk
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the copyright holder nor the names of its
16+
contributors may be used to endorse or promote products derived from
17+
this software without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Nunino
2+
3+
Nunino is a simple command-line tool written in Go that generates random strings of Japanese
4+
Hiragana syllables represented in Romaji (Latin script). Users can specify the number of lines, the
5+
number of syllables per line, and select from different groups of syllables.
6+
7+
## Features
8+
9+
- Generate random strings of Hiragana syllables.
10+
- Specify the number of lines to output.
11+
- Choose the number of syllables per line.
12+
13+
## Installation
14+
15+
You can easily install Nunino using the following command:
16+
17+
```bash
18+
go install github.com/xorcare/nunino@latest
19+
```

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/xorcare/nunino
2+
3+
go 1.22.0

main.go

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
// Copyright (c) 2024 Vasiliy Vasilyuk. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package main
6+
7+
import (
8+
"flag"
9+
"fmt"
10+
"math/rand/v2"
11+
"os"
12+
)
13+
14+
// Define the set of Hiragana syllables in Romaji.
15+
var hiraganaSyllables = []string{
16+
// "a", "i", "u", "e", "o",
17+
"ka", "ki", "ku", "ke", "ko",
18+
"sa" /*"shi",*/, "su", "se", "so",
19+
"ta" /*"chi", "tsu",*/, "te", "to",
20+
"na", "ni", "nu", "ne", "no",
21+
"ha", "hi", "fu", "he", "ho",
22+
"ma", "mi", "mu", "me", "mo",
23+
"ya", "yu", "yo",
24+
"ra", "ri", "ru", "re", "ro",
25+
"wa", "wo",
26+
// "n",
27+
}
28+
29+
// Function to generate a random string of Hiragana syllables.
30+
func generateHiraganaString(syllableCount int) string {
31+
result := ""
32+
33+
for i := 0; i < syllableCount; i++ {
34+
randomIndex := rand.IntN(len(hiraganaSyllables))
35+
result += hiraganaSyllables[randomIndex]
36+
}
37+
38+
return result
39+
}
40+
41+
// Function to display help information.
42+
func displayHelp() {
43+
fmt.Println("Usage: nunino [options]")
44+
fmt.Println("Options:")
45+
fmt.Println(" -lines, -l int")
46+
fmt.Println(" Number of lines to output (default 1)")
47+
fmt.Println(" -syllables, -s int")
48+
fmt.Println(" Number of syllables per line (default 3)")
49+
}
50+
51+
// Function to display error messages.
52+
func displayError(message string) {
53+
fmt.Fprintln(os.Stderr, message)
54+
}
55+
56+
func main() {
57+
fs := flag.NewFlagSet("nunino", flag.ContinueOnError)
58+
59+
lines := fs.Int("lines", 1, "Number of lines to output")
60+
syllables := fs.Int("syllables", 3, "Number of syllables per line")
61+
62+
// Add shorthand flags.
63+
fs.IntVar(lines, "l", 1, "Number of lines to output")
64+
fs.IntVar(syllables, "s", 3, "Number of syllables per line")
65+
66+
fs.Usage = displayHelp
67+
68+
if err := fs.Parse(os.Args[1:]); err != nil {
69+
displayHelp()
70+
71+
return
72+
}
73+
74+
if *lines < 1 {
75+
displayError("Error: The number of lines must be at least 1.")
76+
displayHelp()
77+
78+
return
79+
}
80+
81+
if *syllables < 1 {
82+
displayError("Error: The number of syllables must be at least 1.")
83+
displayHelp()
84+
85+
return
86+
}
87+
88+
for i := 0; i < *lines; i++ {
89+
hiraganaString := generateHiraganaString(*syllables)
90+
fmt.Println(hiraganaString)
91+
}
92+
}

0 commit comments

Comments
 (0)