https://github.com/a2nt/silverstripe-elemental-basics
Some useful elemental blocks
https://github.com/a2nt/silverstripe-elemental-basics
Last synced: 6 months ago
JSON representation
Some useful elemental blocks
- Host: GitHub
- URL: https://github.com/a2nt/silverstripe-elemental-basics
- Owner: a2nt
- License: gpl-3.0
- Created: 2021-06-08T08:11:31.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T12:14:14.000Z (about 2 years ago)
- Last Synced: 2024-04-22T13:05:15.535Z (about 2 years ago)
- Language: PHP
- Size: 107 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# silverstripe-elemental-basics
[](https://packagist.org/packages/goldfinch/google-maps)
Some useful elemental blocks
## Usefull UNIX console utilities
### Code search (find . -name "*.*" | xargs grep "some text" replacement)
ag "some text" ./
https://github.com/ggreer/the_silver_searcher
### File content with code hightlighting (cat replacement)
bat ./app/src/Pages/Page.php
https://github.com/sharkdp/bat
### File listing (ls replacement)
exa -aTL3 ./app
https://github.com/ogham/exa
### git diff tool with bat code hightlighting (git show)
https://github.com/dandavison/delta