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
# Добавить в .gitignore | |
echo '.idea' >> .gitignore | |
# Удалить из индекса Git | |
git rm -r --cached .idea | |
# Зафиксировать изменения | |
git add .gitignore | |
git commit -m 'Удалил папку .idea из репозитория' | |
git push |
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
package benchmark | |
import ( | |
"testing" | |
) | |
type BadStruct struct { | |
A int64 | |
B bool | |
C bool |
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 | |
$currencies = [ | |
[ | |
'code' => 'AFN', | |
'name' => 'Afghanistan Afghani', | |
'symbol' => '؋' | |
], | |
[ | |
'code' => 'ARS', |
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
Aws\S3\S3Client: | |
arguments: | |
- endpoint: '%env(AWS_ENDPOINT)%' | |
version: 'latest' | |
region: '%env(AWS_REGION)%' | |
use_path_style_endpoint: true | |
credentials: | |
key: '%env(AWS_KEY)%' | |
secret: '%env(AWS_SECRET)%' |
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
$countries = [ | |
'AFG' => 'Afghanistan', | |
'ALA' => 'Åland Islands', | |
'ALB' => 'Albania', | |
'DZA' => 'Algeria', | |
'ASM' => 'American Samoa', | |
'AND' => 'Andorra', | |
'AGO' => 'Angola', | |
'AIA' => 'Anguilla', | |
'ATA' => 'Antarctica', |