This file contains 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 | |
# Define the output file | |
output_file="combined.md" | |
# Remove the output file if it exists to avoid including it in the search | |
if [ -f "$output_file" ]; then | |
rm "$output_file" | |
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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\Providers; | |
use App\GitHub; | |
use App\Models\Post; | |
use App\JobsCollector; | |
use Cloudinary\Cloudinary; | |
use App\Actions\TrackVisit; | |
use Barryvdh\Debugbar\Facades\Debugbar; |
This file contains 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
@if ($paginator->hasPages()) | |
<nav role="navigation" aria-label="{{ __('Pagination Navigation') }}" class="flex items-center justify-between mt-16"> | |
<div class="text-gray-400 dark:text-gray-800"> | |
{{ $paginator->count() }} | |
{!! __('of') !!} | |
<span>{{ $paginator->total() }}</span> | |
{!! __('results') !!} | |
</div> | |
<div class="flex gap-1"> |
This file contains 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
{ | |
"Ansi 6 Color" : { | |
"Red Component" : 0, | |
"Color Space" : "sRGB", | |
"Blue Component" : 0.78166204690933228, | |
"Alpha Component" : 1, | |
"Green Component" : 0.77425903081893921 | |
}, | |
"Tags" : [ |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | |
bootstrap="vendor/autoload.php" | |
colors="true" | |
executionOrder="random" | |
> | |
<testsuites> | |
<testsuite name="Tests"> |
This file contains 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
provider: | |
iamRoleStatements: | |
- Effect: Allow | |
Action: [dynamodb:Query, dynamodb:Scan, dynamodb:GetItem, dynamodb:PutItem, dynamodb:UpdateItem, dynamodb:DeleteItem] | |
Resource: | |
Fn::GetAtt: [ChirpCache, Arn] | |
- Effect: Allow | |
Action: [sqs:SendMessage, sqs:DeleteMessage] | |
Resource: | |
Fn::GetAtt: [ TwitterQueue, Arn ] |
This file contains 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
CACHE_DRIVER=dynamodb | |
DYNAMODB_CACHE_TABLE=foo |
This file contains 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 | |
return [ | |
'connections' => [ | |
'sqs' => [ | |
'driver' => 'sqs', | |
'key' => env('AWS_ACCESS_KEY_ID'), | |
'secret' => env('AWS_SECRET_ACCESS_KEY'), | |
'token' => env('AWS_SESSION_TOKEN'), | |
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), |