Flutter | Ionic | Uno Platform | Xamarin | KMM(Kotlin Multiplatform Mobile) | React Native | NativeScript | |
---|---|---|---|---|---|---|---|
Website | https://flutter.dev/ | https://ionicframework.com/ | https://platform.uno/ | https://dotnet.microsoft.com/apps/xamarin | https://kotlinlang.org/lp/mobile/ | https://re |
Zone | Intel Cascade Lake | Intel Skylake | Intel Broadwell | Intel Haswell | Intel Ivy Bridge | Intel Sandy Bridge |
---|---|---|---|---|---|---|
us-east1-b | Yes | Yes | Yes | |||
us-east1-c | Yes | Yes | Yes | |||
us-east1-d | Yes | Yes | Yes | |||
us-east4-c | Yes | Yes | ||||
us-east4-b | Yes | Yes | ||||
us-east4-a |
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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim/ | |
call vundle#begin() | |
" let Vundle manage Vundle, required! | |
Plugin 'gmarik/vundle' | |
"" My Bundles here: |
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 | |
$array1 = array(1,2,3,4,5,6,7); | |
$array2 = array(5,6,7,8,9,10); | |
var_dump(array_diff($array1, $array2)); | |
var_dump(array_diff($array2, $array1)); |
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\Commands; | |
use Illuminate\Console\Scheduling\Schedule; | |
use LaravelZero\Framework\Commands\Command; | |
class Reverse extends Command | |
{ | |
/** |
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 | |
while ($string = trim(fgets(STDIN))) { | |
echo strrev($string) . PHP_EOL; | |
} |
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
SELECT DATE(FROM_UNIXTIME(`created_at`)) AS create_date, COUNT(id) AS count FROM xx_table GROUP BY create_date; |
NewerOlder