Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove project tree

authored by

trueberryless and committed by
GitHub
e3dea689 0ffcc9fd

-213
-213
README.md
··· 62 62 63 63 More information about contribution can be found unter [CONTRIBUTING.md](https://github.com/trueberryless-org/mutanuq/blob/main/CONTRIBUTING.md). 64 64 65 - ## Project structure 66 - 67 - ``` 68 - . 69 - ├── .changeset 70 - │ ├── README.md 71 - │ └── config.json 72 - ├── .dockerignore 73 - ├── .github 74 - │ ├── FUNDING.yaml 75 - │ ├── ISSUE_TEMPLATE 76 - │ │ ├── bug_report.md 77 - │ │ └── feature_request.md 78 - │ ├── labeler.yaml 79 - │ ├── readmetreerc.yaml 80 - │ └── workflows 81 - │ ├── deployment.yaml 82 - │ ├── format.yaml 83 - │ ├── generate-readme-tree.yaml 84 - │ ├── labeler.yaml 85 - │ ├── release.yaml 86 - │ └── welcome-bot.yaml 87 - ├── .gitignore 88 - ├── .prettierignore 89 - ├── .prettierrc 90 - ├── CONTRIBUTING.md 91 - ├── Dockerfile 92 - ├── LICENSE 93 - ├── README.md 94 - ├── manifest 95 - │ ├── certificate.yaml 96 - │ ├── deployment.yaml 97 - │ ├── ingress.yaml 98 - │ ├── namespace.yaml 99 - │ └── service.yaml 100 - ├── manifest-lunaria 101 - │ ├── certificate.yaml 102 - │ ├── deployment.yaml 103 - │ ├── ingress.yaml 104 - │ ├── namespace.yaml 105 - │ └── service.yaml 106 - ├── package.json 107 - ├── pnpm-lock.yaml 108 - ├── pnpm-workspace.yaml 109 - └── starlight 110 - ├── .dockerignore 111 - ├── .gitignore 112 - ├── CHANGELOG.md 113 - ├── README.md 114 - ├── astro.config.mjs 115 - ├── lunaria 116 - │ ├── Dockerfile 117 - │ ├── components.ts 118 - │ ├── nginx.conf 119 - │ ├── renderer.config.ts 120 - │ └── styles.css 121 - ├── lunaria.config.json 122 - ├── package.json 123 - ├── pnpm-lock.yaml 124 - ├── public 125 - │ ├── embedded_programming 126 - │ │ └── lcd 127 - │ │ ├── lcd.c 128 - │ │ └── lcd.h 129 - │ ├── favicon.svg 130 - │ └── images 131 - │ ├── artificial_intelligence 132 - │ │ ├── cnn 133 - │ │ │ └── handwritten2.png 134 - │ │ ├── count_vectorizer_pandas_output.png 135 - │ │ ├── diagrams 136 - │ │ │ ├── bar.png 137 - │ │ │ ├── box.png 138 - │ │ │ ├── heatmap.png 139 - │ │ │ ├── hist.png 140 - │ │ │ ├── histplot.png 141 - │ │ │ ├── pairplot.png 142 - │ │ │ ├── plot.png 143 - │ │ │ ├── relplot.png 144 - │ │ │ ├── scatter.png 145 - │ │ │ ├── scatter_2.png 146 - │ │ │ └── violinplot.png 147 - │ │ ├── machine_learning_concept_dm.png 148 - │ │ ├── machine_learning_concept_lm.png 149 - │ │ ├── machine_learning_process_dm.png 150 - │ │ ├── machine_learning_process_lm.png 151 - │ │ ├── rfc_ensemble_dm.png 152 - │ │ ├── rfc_ensemble_lm.png 153 - │ │ ├── rfc_tree_dm.png 154 - │ │ ├── rfc_tree_lm.png 155 - │ │ └── series-and-dataframe.png 156 - │ ├── decentralised_systems 157 - │ │ ├── azure-function 158 - │ │ │ ├── durable-function-aggregator.png 159 - │ │ │ ├── durable-function-approval.png 160 - │ │ │ ├── durable-function-async-http-api.png 161 - │ │ │ ├── durable-function-chaining.png 162 - │ │ │ ├── durable-function-fan-out-fan-in.png 163 - │ │ │ └── durable-function-monitor.png 164 - │ │ └── iaas-paas-saas.png 165 - │ ├── economy_and_law 166 - │ │ ├── portfolioanalyse.png 167 - │ │ └── product_lifecycle.png 168 - │ ├── embedded_programming 169 - │ │ ├── adc 170 - │ │ │ ├── adc_left_adjust_result.png 171 - │ │ │ ├── adc_right_adjust_result.png 172 - │ │ │ └── analog_to_digital.webp 173 - │ │ ├── button 174 - │ │ │ ├── floating_point.png 175 - │ │ │ ├── internal_pull_up_widerstand.png 176 - │ │ │ ├── kurzschluss.png 177 - │ │ │ ├── pull_down_widerstand.png 178 - │ │ │ ├── pull_down_widerstand_closed.png 179 - │ │ │ ├── pull_up_widerstand.png 180 - │ │ │ └── pull_up_widerstand_closed.png 181 - │ │ ├── lcd 182 - │ │ │ ├── lcd_composition.png 183 - │ │ │ └── lcd_grid.png 184 - │ │ ├── spi 185 - │ │ │ ├── architecture.png 186 - │ │ │ ├── transfer_data.png 187 - │ │ │ ├── transfer_data_2.png 188 - │ │ │ ├── transfer_data_2_dark.png 189 - │ │ │ └── transfer_data_dark.png 190 - │ │ └── timer 191 - │ │ ├── timer_pwm_compare_register.png 192 - │ │ ├── timer_pwm_duty_cycle_average.png 193 - │ │ ├── timer_pwm_inverting_mode.png 194 - │ │ ├── timer_pwm_non_inverting_mode.png 195 - │ │ ├── timer_ueberlauf.png 196 - │ │ └── timer_vorladen.png 197 - │ ├── languages 198 - │ │ ├── Signature_black.png 199 - │ │ ├── Signature_white.png 200 - │ │ ├── dreischichtige_menschliche_persoenlichkeit.png 201 - │ │ └── fisches_nachtgesang.jpg 202 - │ ├── project_management 203 - │ │ ├── earned_value_analysis-2.png 204 - │ │ ├── earned_value_analysis.png 205 - │ │ ├── earned_value_analysis_key_figures.png 206 - │ │ ├── magic_triangle.jpg 207 - │ │ ├── magic_triangle_context.png 208 - │ │ ├── project_budget_controlling.png 209 - │ │ ├── project_controlling_necessity-2.png 210 - │ │ ├── project_controlling_necessity.png 211 - │ │ ├── project_controlling_process.png 212 - │ │ └── project_time_controlling.png 213 - │ └── system_integration_and_infrastructure 214 - │ ├── Container_Structure.svg 215 - │ ├── LTO_Roadmap.jpg 216 - │ ├── SAN-Aufbau.png 217 - │ ├── Typ-1-Virtualisierung.png 218 - │ ├── Typ-2-Virtualisierung.png 219 - │ ├── backup-differential.png 220 - │ ├── backup-full.png 221 - │ ├── backup-incremental.png 222 - │ └── generationenprinzip.png 223 - ├── src 224 - │ ├── assets 225 - │ │ ├── components 226 - │ │ │ ├── ContributorList.astro 227 - │ │ │ ├── FacePile.astro 228 - │ │ │ ├── ResponsiveTable.astro 229 - │ │ │ ├── getContributors.ts 230 - │ │ │ └── util-server.ts 231 - │ │ ├── dark-logo.png 232 - │ │ ├── light-logo.png 233 - │ │ ├── logo.png 234 - │ │ └── start_logo.svg 235 - │ ├── components 236 - │ │ ├── CustomPagination.astro 237 - │ │ └── FeedbackComponent.astro 238 - │ ├── content 239 - │ │ ├── config.ts 240 - │ │ └── docs 241 - │ │ ├── 404.md 242 - │ │ ├── de 243 - │ │ │ ├── 404.md 244 - │ │ │ ├── economy_and_law 245 - │ │ │ │ ├── company_foundation.md 246 - │ │ │ │ └── marketing.md 247 - │ │ │ ├── imprint.md 248 - │ │ │ ├── index.mdx 249 - │ │ │ ├── information_technology 250 - │ │ │ │ ├── artificial_intelligence.md 251 - │ │ │ │ ├── decentralised_systems.md 252 - │ │ │ │ ├── embedded_programming.md 253 - │ │ │ │ ├── information_systems.md 254 - │ │ │ │ ├── software_development.md 255 - │ │ │ │ └── system_integration_and_infrastructure.md 256 - │ │ │ ├── languages 257 - │ │ │ │ ├── german_text_types.md 258 - │ │ │ │ ├── literature.md 259 - │ │ │ │ └── text_types.md 260 - │ │ │ └── project_management 261 - │ │ │ ├── magic_triangle.md 262 - │ │ │ └── project_controlling.md 263 - │ │ └── en 264 - │ │ ├── 404.md 265 - │ │ ├── imprint.md 266 - │ │ ├── index.mdx 267 - │ │ └── languages 268 - │ │ └── text_types.md 269 - │ ├── env.d.ts 270 - │ └── styles 271 - │ ├── custom.css 272 - │ ├── landing.css 273 - │ └── print.css 274 - └── tsconfig.json 275 - 276 - ``` 277 - 278 65 ## License 279 66 280 67 Licensed under the MIT license, Copyright © trueberryless.