- Buka Chrome
- Buat sebuah Bookmark baru, misal di Chrome klik "Add Page" pada Bookmark.
- Masukkan script di bawah ke bagian URL.
- Buka halaman artikel muslim.or.id yg ingin Anda baca.
- Setelah situs muslim.or.id ter-load (terbuka), artinya loading sudah berhenti, lalu klik Bookmark yang sudah anda bikin tadi.
- Selamat membaca.
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
| #!/bin/sh | |
| # check for where the latest version of IDEA is installed | |
| IDEA=`ls -1d /Applications/IntelliJ\ * | tail -n1` | |
| wd=`pwd` | |
| # were we given a directory? | |
| if [ -d "$1" ]; then | |
| # echo "checking for things in the working dir given" | |
| wd=`ls -1d "$1" | head -n1` |
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
| /** | |
| * Unset given key from array. | |
| * | |
| * @param array $array | |
| * @param mixed $parents | |
| * @param string $glue | |
| * @return void | |
| */ | |
| function array_unset_value(&$array, $parents, $glue = '.') | |
| { |
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
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name domain.com; | |
| # Redirect all HTTP requests to HTTPS with a 301 Moved Permanently response. | |
| return 301 https://$host$request_uri; | |
| } |
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
| 100 | |
| 132 | |
| 1000 | |
| 7 | |
| 111111111111111110 | |
| 285 | |
| 999999999999999999 | |
| 141603106135084912 | |
| 841668361341783491 | |
| 112367788813 |
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
| #include <iostream> | |
| #include <cmath> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <iterator> | |
| #include <map> | |
| #include <string> | |
| #include <cstdio> | |
| #include <sstream> | |
| #include <utility> |
React Fiber is an ongoing reimplementation of React's core algorithm. It is the culmination of over two years of research by the React team.
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 | |
| use Illuminate\Foundation\Testing\WithoutMiddleware; | |
| use Illuminate\Foundation\Testing\DatabaseMigrations; | |
| use Illuminate\Foundation\Testing\DatabaseTransactions; | |
| class ExamplePassportTest extends \PassportTestCase | |
| { | |
| use DatabaseTransactions; |
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
| Validator::extend('different_if_present', function($attribute, $value, $parameters, $validator) { | |
| $otherValue = Arr::get($validator->getData(), $parameters[0]); | |
| return $value !== $otherValue; | |
| }); | |
| Validator::replacer('different_if_present', function($message, $attribute, $rule, $parameters) { | |
| return str_replace(':other', $parameters[0], $message); | |
| }); | |
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
| <div class="panel with-nav-tabs panel-primary"> | |
| <div class="panel-heading"> | |
| <ul class="nav nav-tabs"> | |
| <li class="active"><a href="#tab1" data-toggle="tab">A</a></li> | |
| <li><a href="#tab2" data-toggle="tab">B</a></li> | |
| <li><a href="#tab3" data-toggle="tab">C</a></li> | |
| </ul> | |
| </div> | |
| <div class="panel-body"> | |
| <div class="tab-content"> |