create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <?php | |
| ini_set('max_execution_time', 0); | |
| ini_set('memory_limit', -1); | |
| $host = 'google.com'; | |
| $ports = array(21, 25, 80, 81, 110, 143, 443, 587, 2525, 3306); | |
| foreach ($ports as $port) | |
| { | |
| $connection = @fsockopen($host, $port, $errno, $errstr, 2); |
| //src: http://kurrytran.blogspot.ru/2014/05/android-studio-list-of-suppress-warning.html | |
| //https://android.googlesource.com/platform/tools/adt/idea/+/jb-mr2-dev/adt-branding/src/META-INF/AndroidIdePlugin.xml | |
| //https://android.googlesource.com/platform/tools/adt/idea/+/jb-mr2-dev/android/src/META-INF/plugin.xml | |
| //Most Common Annotations | |
| @SuppressWarnings("all") | |
| @SuppressWarnings("unchecked") | |
| @SuppressWarnings({"JavaDoc"}) | |
| @SuppressWarnings({"UnusedDeclaration"}) |
| /** | |
| * User Defined Values | |
| */ | |
| const agreedDisclaimer = false; | |
| const apiToken = ''; | |
| /** | |
| * Dont need to touch anything below | |
| */ | |
| const readline = require('readline'); |
Update: As of 11 January 2022, git.io no longer accepts new URLs.
Command:
curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"URLs that can be created is from:
https://github.com/*https://*.github.comInstall Screen
$ sudo apt install screen
Enter a new Screen Session
$ screen
Detach from current screen session
| package server | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "log" | |
| "net" | |
| ) | |
| // Server ... |
| // Setting variables like this wouldn't be possible because SASS would | |
| // get through this file before Tailwind does (because it's PostCSS) | |
| $--color-primary: theme('colors.blue'); | |
| $--font-serif: theme('fontFamily.serif'); | |
| body { | |
| color: rgba($--color-primary, .5); | |
| font-family: $font-serif; | |
| } |
| <?php | |
| use PhpCsFixer\Config; | |
| use PhpCsFixer\Finder; | |
| $rules = [ | |
| 'array_indentation' => true, | |
| 'array_syntax' => ['syntax' => 'short'], | |
| 'binary_operator_spaces' => [ | |
| 'default' => 'single_space', |
Motivation:
Mix.extract() function enabled on webpack.mix.js in order to separate bundle based on vendorapp.css will be build with 0 bytes.After tinkering for 2 hours, I find a way how to integrate "mini-css-extract-plugin" to laravel mix. Since this is the root cause of the "0 bytes of css" problem.
Info: My folder structure for resources