Skip to content

Instantly share code, notes, and snippets.

View imandings's full-sized avatar
🖥️
Coding Away!

Andy imandings

🖥️
Coding Away!
  • Perth, Western Australia, Australia
  • 18:41 (UTC +08:00)
  • X @imandings
View GitHub Profile
@imandings
imandings / Command for changelog
Last active February 20, 2025 04:36
Command for changelog
!changes More still to come! This is just a few that have happened in Production. Tons more are coming from Development soon! :slight_smile:
:added: **ADDITIONS:**
```diff
+ Added some placeholder MLOs for future work
+ Added a new scoreboard
+ Added New Burgershot
+ Added Pillbox Hospital
+ Added the ability to look at peds when talking
```
@imandings
imandings / remove_laravel_comments.php
Created August 24, 2018 02:25 — forked from jakebathman/remove_laravel_comments.php
Remove comments from fresh Laravel files
<?php
/*
|--------------------------------------------------------------------------
| Remove Laravel Comments
|--------------------------------------------------------------------------
|
| Just made a new Laravel project, but don't want all those big
| comment blocks? Put this in the root of your project and run
| "php remove_laravel_comments.php"
|
@imandings
imandings / logslaravel.sh
Created August 24, 2018 02:24 — forked from jakebathman/logslaravel.sh
Tail Laravel logs and filter out the stack traces
tail -f -n 450 storage/logs/laravel*.log \
| grep -i -E \
"^\[\d{4}\-\d{2}\-\d{2} \d{2}:\d{2}:\d{2}\]|Next [\w\W]+?\:" \
--color