Skip to content

Commit d3a98ba

Browse files
authored
chore: rebranding, Switched to Polyglot-Calculators hybrid architecture
chore: rebranding, Switched to Polyglot-Calculators hybrid architecture
2 parents aa2a0ac + 098ffd6 commit d3a98ba

File tree

143 files changed

+307
-150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+307
-150
lines changed

.gitignore

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
# ==========================================
2+
# 🛑 OPERATING SYSTEM & EDITOR JUNK
3+
# ==========================================
4+
.DS_Store
5+
Thumbs.db
6+
desktop.ini
7+
*.log
8+
.vscode/
9+
.idea/
10+
*.swp
11+
*.swo
12+
13+
# ==========================================
14+
# 🐍 PYTHON
15+
# ==========================================
16+
__pycache__/
17+
*.py[cod]
18+
*$py.class
19+
# Virtual Environments
20+
venv/
21+
env/
22+
.env
23+
.venv
24+
# Distribution / Builds
25+
build/
26+
dist/
27+
*.egg-info/
28+
.pytest_cache/
29+
30+
# ==========================================
31+
# ⚙️ C / C++
32+
# ==========================================
33+
# Compiled Object files
34+
*.o
35+
*.obj
36+
*.lo
37+
# Compiled Dynamic libraries
38+
*.so
39+
*.dylib
40+
*.dll
41+
# Compiled Executables
42+
*.exe
43+
*.out
44+
*.app
45+
*.a
46+
bin/
47+
48+
# ==========================================
49+
# ☕ JAVA
50+
# ==========================================
51+
*.class
52+
*.jar
53+
*.war
54+
*.ear
55+
# Build tools
56+
target/
57+
.gradle/
58+
build/
59+
*.log
60+
61+
# ==========================================
62+
# 🦀 RUST
63+
# ==========================================
64+
# Generated by Cargo
65+
target/
66+
**/*.rs.bk
67+
68+
# ==========================================
69+
# 🐹 GO (GOLANG)
70+
# ==========================================
71+
# Binaries
72+
*.exe
73+
*.test
74+
*.prof
75+
vendor/
76+
77+
# ==========================================
78+
# 🌐 JAVASCRIPT / NODE.JS
79+
# ==========================================
80+
node_modules/
81+
npm-debug.log
82+
yarn-error.log
83+
dist/
84+
.env
85+
86+
# ==========================================
87+
# 📱 SWIFT / OBJECTIVE-C
88+
# ==========================================
89+
.build/
90+
Packages/
91+
*.xcodeproj/
92+
*.xcworkspace/
93+
# ==========================================
94+
# 🐘 PHP
95+
# ==========================================
96+
/vendor/
97+
98+
# Composer
99+
composer.phar
100+
.php_cs.cache
101+
102+
# Environment
103+
.env
104+
.env.local
105+
.env.backup
106+
*.env
107+
108+
# Error
109+
error_log
110+
php_errors.log
111+
debug.log
112+
113+
# PHPUnit
114+
.phpunit.result.cache
115+
/coverage/
116+
117+
# ==========================================
118+
# 🎨 WEB (HTML / CSS / SASS)
119+
# ==========================================
120+
# Sass / SCSS
121+
.sass-cache/
122+
*.css.map
123+
*.js.map

CONTRIBUTING.md

Lines changed: 62 additions & 39 deletions

Simple Calculators/Language Python/GUI/SimpleCalculatorGUI-Python-ASKotze/main.py renamed to Playground/ASKotze/SimpleCalculatorGUI-Python-ASKotze/main.py

File renamed without changes.

Daily Life/Kitchen/CookingConverter-Python-Akshad04/main.py renamed to Playground/Akshad04/CookingConverter-Python-Akshad04/main.py

File renamed without changes.

Health/BMICalculator-Java-AleksandraSieg/BMICalculator.java renamed to Playground/AleksandraSieg/BMICalculator-Java-AleksandraSieg/BMICalculator.java

File renamed without changes.

Health/BMICalculator-Java-AleksandraSieg/Main.java renamed to Playground/AleksandraSieg/BMICalculator-Java-AleksandraSieg/Main.java

File renamed without changes.

Science & Math/Base Converters/BaseConverterCLI-Java-AlexandrAnatoliev/README.md renamed to Playground/AlexandrAnatoliev/BaseConverterCLI-Java-AlexandrAnatoliev/README.md

Science & Math/Base Converters/BaseConverterCLI-Java-AlexandrAnatoliev/src/Bases.java renamed to Playground/AlexandrAnatoliev/BaseConverterCLI-Java-AlexandrAnatoliev/src/Bases.java

File renamed without changes.

Science & Math/Base Converters/BaseConverterCLI-Java-AlexandrAnatoliev/src/Convert.java renamed to Playground/AlexandrAnatoliev/BaseConverterCLI-Java-AlexandrAnatoliev/src/Convert.java

File renamed without changes.

Simple Calculators/Language Java/SimpleCalculatorCLI-Java-AlexandrAnatoliev/README.md renamed to Playground/AlexandrAnatoliev/SimpleCalculatorCLI-Java-AlexandrAnatoliev/README.md

0 commit comments

Comments
 (0)