Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| import { useRef } from 'react'; | |
| const safeDocument = typeof document !== 'undefined' ? document : {}; | |
| /** | |
| * Usage: | |
| * const [blockScroll, allowScroll] = useScrollBlock(); | |
| */ | |
| export default () => { | |
| const scrollBlocked = useRef(); |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979
| <?php | |
| namespace App\Http\Controllers; | |
| use Illuminate\Http\Request; | |
| use App\Todo; | |
| class TodosController extends Controller | |
| { |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| /** | |
| * Home mande method to do array_diff ~10x faster that PHP built-in. | |
| * | |
| * @param The array to compare from | |
| * @param An array to compare against | |
| * | |
| * @return an array containing all the entries from array1 that are not present in array2. | |
| */ | |
| function nuno_array_diff($array1, $array2) { | |
| $diff = array(); |