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\View\Components\Ui\Select; | |
use Illuminate\View\Component; | |
class Search extends Component | |
{ |
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
ZSH_THEME="spaceship" | |
GIT_AUTO_FETCH_INTERVAL=60 | |
alias pstorm="/mnt/c/Program\ Files/JetBrains/PhpStorm\ 2023.3.4/bin/phpstorm64.exe $(wslpath -w .)" | |
export PATH="$HOME/.config/composer/vendor/bin:$PATH" | |
#plugins=(git zsh-autosuggestions zsh-syntax-highlighting git-flow git-auto-fetch laravel zsh-autocomplete) | |
plugins=(git git-flow git-auto-fetch laravel) |
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
includes: | |
- vendor/larastan/larastan/extension.neon | |
parameters: | |
paths: | |
- app/ | |
level: 5 |
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 -eu | |
# Regex patterns | |
commit_regex="^\[[A-Z]+-[0-9]+\] (build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\([a-zA-Z0-9\-_.]+\))?!?: .{1,200}$" | |
branch_regex="^(feature|bugfix|hotfix)\/[A-Z]+-[0-9]+.*$|^(develop|release\/[0-9]+\.[0-9]+|main)$" | |
# Get the commit message and branch name | |
regex_issue_id="[a-zA-Z0-9,\.\_\-]+-[0-9]+" | |
branch_name=$(git symbolic-ref --short HEAD) |
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
includes: | |
- vendor/larastan/larastan/extension.neon | |
parameters: | |
paths: | |
- app/ | |
- src/ | |
level: 5 |
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
https://morrislaptop.medium.com/laravel-on-heroku-the-ultimate-guide-904cbae11a41 |
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
[alias] | |
ci = commit | |
co = checkout | |
cm = checkout master | |
cb = checkout -b | |
st = status -sb | |
sf = show --name-only | |
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30 | |
incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u}) | |
outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..) |
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
Config | |
"editor.rulers": [80,120], | |
====================================================== | |
Plugins | |
====================================================== | |
while read line; do code --install-extension $line; done < ~/package |
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
rate "128000" | |
hud_scaling "1" | |
cl_interp "0.1" | |
cl_interp_ratio "1" | |
cl_cmdrate "128" | |
cl_updaterate "128" | |
fps_max "300" | |
bind "mouse1" "+attack" | |
bind "mouse2" "+attack2" |