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
| The MIT License (MIT) | |
| Copyright (c) 2022 Suhail Patel | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
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
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| generateName: node-shell- | |
| namespace: kube-system | |
| spec: | |
| containers: | |
| - image: alpine:3.9 | |
| name: shell | |
| command: ["nsenter"] |
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 | |
| namespace App\Http\Middleware; | |
| class CaptureRequestExtension | |
| { | |
| public function handle($request, $next) | |
| { | |
| if ($request->route()->parameter('_extension') !== null) { | |
| $request->attributes->set('_extension', substr($request->route()->parameter('_extension'), 1)); |
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
| * { | |
| outline: 1px solid red !important; | |
| } |
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
| .is-loading { | |
| color: transparent !important; | |
| pointer-events: none; | |
| } | |
| .is-loading:after { | |
| -webkit-animation: spinAround 500ms infinite linear; | |
| animation: spinAround 500ms infinite linear; | |
| border: 2px solid #dbdbdb; | |
| border-radius: 290486px; |
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 | |
| namespace Larabook\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| class LocalServiceProviderProvider extends ServiceProvider | |
| { |
NewerOlder