Dieses Dokument begleitet die Präsentation "Claude Code Features — Agentic Coding SKILLS". Es enthält pro Slide ausführliche Speaker Notes, Hintergrundwissen und Talking Points, damit du auch bei Nachfragen sicher bist.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configuration | |
| RELEASE_BRANCH ?= main | |
| CALVER_PATTERN ?= %Y.%m.%d | |
| .PHONY: release release-auto release-next-tag release-check | |
| # Interactive release (prompts for pull and confirmation) | |
| release: | |
| @RELEASE_BRANCH=$(RELEASE_BRANCH) CALVER_PATTERN=$(CALVER_PATTERN) ./scripts/release.sh release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace App\Shared\Application\Routing; | |
| use ReflectionClass; | |
| use Symfony\Bundle\FrameworkBundle\Routing\RouteLoaderInterface; | |
| use Symfony\Component\Finder\Finder; | |
| use Symfony\Component\Routing\Attribute\Route as RouteAttribute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Delivery | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| tags: | |
| - 'v*.*.*' | |
| jobs: | |
| build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "c-ephalogram", | |
| "blocks": { | |
| "temp/nerd": { | |
| "type": "text", | |
| "name": "thermometer", | |
| "topic": "core/nerd/temp", | |
| "initialValue": 23.42, | |
| "unit": "celsius", | |
| "description": "Temperature in Nerdarea", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (empty line) | |
| Notes: | |
| * http://link-to-PR-.de - What has been solved | |
| * http://link-to-PR-.de - What has been solved |
Ein Apidictor kann helfen den Schwarmzeitpunkt vorherzusagen, um das Schwärmen zu verhindern. Bevor die Königin schwärmt muss sie leichter werden, hört auf zu fressen und Eier zu legen. Die Ammenbienen die die Königin füttern werden ihren Futtersaft nicht mehr los und schlagen frustriert mit den Flügeln in einer Frequenz zwischen 225-285Hz. Dieses Geräusch kann man herausfiltern und die Lautstärke messen um damit den Schwarmzeitpunkt vorher zu sagen.
- Wo ist Strom?
- Wie weit ist die Stromquelle von der Beute entfernt?
- Stromversorgung mit microUSB
- Wo werden Daten gespeichert?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| find . -name '*.php' -type f | while read files | |
| do | |
| sedtest=$(sed -n '/^/,/$/p' "${files}" | sed -n '/<?php/p') | |
| if [ "${sedtest}" ] | |
| then | |
| echo ${files} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (~/code) % hhvm --version HipHop VM v2.2.0 (rel) | |
| Compiler: heads/HPHP-2.2-0-g633422a8386feb6cce6aa533a12d24d5c32b526c | |
| Repo schema: 63eda7c0b41603cdee7081a57d6f45d691ad206e | |
| (~/code) % hhvm --repo-schema 63eda7c0b41603cdee7081a57d6f45d691ad206e | |
| (~/code/composer) % git clone https://github.com/composer/composer.git Cloning into 'composer'... | |
| remote: Counting objects: 27010, done. | |
| remote: Compressing objects: 100% (15944/15944), done. | |
| remote: Total 27010 (delta 13980), reused 22055 (delta 9153) | |
| Receiving objects: 100% (27010/27010), 5.96 MiB | 674 KiB/s, done. | |
| Resolving deltas: 100% (13980/13980), done. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var_dump(json_encode( | |
| array() | |
| )); | |
| // [ ] | |
| var_dump(json_encode( | |
| array('foo') | |
| )); | |
| // ["foo"] |
NewerOlder