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
| Office 2013 Home and Student Russian https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=HomeStudentRetail | |
| Office 2013 Home and Business https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=HomeBusinessRetail | |
| Office 2013 Professional https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ProfessionalRetail | |
| Office 2013 Professional Plus https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ProPlusRetail | |
| Word 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=WordRetail | |
| Excel 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=ExcelRetail | |
| PowerPoint 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=PowerPointRetail | |
| Outlook 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=OutlookRetail | |
| Publisher 2013 https://officeredir.microsoft.com/r/rlidO15C2RMediaDownload?p1=db&p2=ru-RU&p3=PublisherRe |
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\Providers; | |
| use Filament\Forms\Components\Field; | |
| use Filament\Schemas\Components\Html; | |
| use Illuminate\Support\ServiceProvider; | |
| class AppServiceProvider extends ServiceProvider | |
| { |
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\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\Http; | |
| class CheckFilamentCompat extends Command | |
| { | |
| /** |
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\Filament\Actions; | |
| use Spatie\MediaLibrary\MediaCollections\Models\Media; | |
| use Closure; | |
| use Filament\Forms; | |
| use Filament\Notifications\Notification; | |
| use Illuminate\Support\HtmlString; |
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
| /* | |
| Source: http://www.portugal-a-programar.pt/topic/58852-algoritmo-de-validacao-de-nif-pt/ | |
| */ | |
| function validaContribuinte(contribuinte){ | |
| // algoritmo de validação do NIF de acordo com | |
| // http://pt.wikipedia.org/wiki/N%C3%BAmero_de_identifica%C3%A7%C3%A3o_fiscal | |
| var temErro=0; |
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
| OCTANE_SERVER="swoole" | |
| OCTANE_HTTPS="true" | |
| WWWGROUP=1004 | |
| WWWUSER=1004 |
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
| @import '/vendor/filament/filament/resources/css/theme.css'; | |
| @config 'tailwind.config.js'; | |
| body { | |
| /* @apply !bg-primary-50 dark:!bg-gray-950;*/ | |
| } | |
| .fi-sidebar { | |
| /* @apply bg-white border-r shadow-sm p-4 !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
| @import '/vendor/filament/filament/resources/css/theme.css'; | |
| @config 'tailwind.config.js'; | |
| html:not(:has(.fi-topbar-with-navigation)) { | |
| .fi-sidebar, | |
| .fi-sidebar-header, | |
| aside { | |
| @apply !ring-0 !shadow-none; | |
| } |
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
| $ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj | |
| Cloning into 'my-awesome-proj'... | |
| ssh: connect to host github.com port 22: Connection timed out | |
| fatal: Could not read from remote repository. | |
| $ # This should also timeout | |
| $ ssh -T git@github.com | |
| ssh: connect to host github.com port 22: Connection timed out | |
| $ # but this might work |
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\Support; | |
| use Exception; | |
| abstract class QRCodePixSupport | |
| { | |
| /** | |
| * @throws Exception |
NewerOlder