Run this command in powershell as administrator
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Run this command in powershell as administrator
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
For Subsciption until January 10, 2020
CATF44LT7C-eyJsaWNlbnNlSWQiOiJDQVRGNDRMVDdDIiwibGljZW5zZWVOYW1lIjoiVmxhZGlzbGF2IEtvdmFsZW5rbyIsImFzc2lnbmVlTmFtZSI6IiIsImFzc2lnbmVlRW1haWwiOiIiLCJsaWNlbnNlUmVzdHJpY3Rpb24iOiJGb3IgZWR1Y2F0aW9uYWwgdXNlIG9ubHkiLCJjaGVja0NvbmN1cnJlbnRVc2UiOmZhbHNlLCJwcm9kdWN0cyI6W3siY29kZSI6IklJIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiQUMiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEUE4iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQUyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IkdPIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiRE0iLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJDTCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJTMCIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJDIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiUkQiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJQQyIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6IlJNIiwicGFpZFVwVG8iOiIyMDIwLTAxLTA4In0seyJjb2RlIjoiV1MiLCJwYWlkVXBUbyI6IjIwMjAtMDEtMDgifSx7ImNvZGUiOiJEQiIsInBhaWRVcFRvIjoiMjAyMC0wMS0wOCJ9LHsiY29kZSI6I
<?php | |
use Doctrine\Common\Annotations\AnnotationRegistry; | |
use PHPSC\PagSeguro\Credentials; | |
//use PHPSC\PagSeguro\Environments\Production; | |
use PHPSC\PagSeguro\Environments\Sandbox; | |
use PHPSC\PagSeguro\Customer\Customer; | |
use PHPSC\PagSeguro\Items\Item; | |
use PHPSC\PagSeguro\Requests\Checkout\CheckoutService; |
The temporary solution to that is changing your core.autocrlf git config setting to use input, given that you are on OSX. See #4402 (comment). | |
To sum up, you need to run the following: | |
cd $ZSH | |
git config core.autocrlf input | |
git rm --cached -r . | |
git reset --hard |
-attributes: array:4 [ | |
"oauth_access_token_id" => "0d66b551f7953d6058e9a5824a6c46b55d97d72f38a6623465f32ab8exxxxxxxxxxxxxxxxxxxxxx" | |
"oauth_client_id" => "5" | |
"oauth_user_id" => "" | |
"oauth_scopes" => [] | |
<?php |
ITAU: Mozilla/5.0 (X11; FreeBSD OS x86_64) AppleWebKit/535.11 (KHTML, like Gecko) Ubuntu/11.10 Chromium/27.0.1453.93 Chrome/27.0.1453.93 Safari/537.36 | |
https://addons.mozilla.org/pt-BR/firefox/addon/user-agent-overrider/ |
material de linux: | |
https://linuxjourney.com/lesson/linux-history | |
acentos: | |
https://bbs.archlinux.org/viewtopic.php?id=156515 | |
https://zuttobenkyou.wordpress.com/2011/08/24/xorg-using-the-us-international-altgr-intl-variant-keyboard-layout/ | |
display manager: | |
https://wiki.archlinux.org/index.php/LightDM#Changing_your_avatar |
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="font"> | |
<edit name="antialias" mode="assign"> | |
<bool>true</bool> | |
</edit> | |
</match> |
if (! function_exists('link_to_back')) { | |
/** | |
* Generate a HTML link to the previous location. | |
* | |
* @param string $title | |
* @param array $attributes | |
* @param bool $secure | |
* | |
* @return string | |
*/ |
<?php | |
namespace App\Http; | |
use Illuminate\Foundation\Http\Kernel as HttpKernel; | |
class Kernel extends HttpKernel | |
{ | |
/** | |
* The application's global HTTP middleware stack. |