私の場合は下記
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
| /*! | |
| * ress.css • v3.0.1 | |
| * MIT License | |
| * github.com/filipelinhares/ress | |
| */ | |
| /* # ================================================================= | |
| # Global selectors | |
| # ================================================================= */ |
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 | |
| namespace App\Libs; | |
| class Slack | |
| { | |
| /** | |
| * Slack通知 | |
| * |
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
| javascript: var d = document; var b = document.body; var m = d.createElement('div'); m.setAttribute('style', 'background: rgba(0,0,0,0.5); position: fixed; width: 100%; height: 100%; top: 0; z-index: 555;'); b.appendChild(m); var p = d.createElement('div'); p.setAttribute('style', 'background: #fff; position: fixed; z-index: 666; margin: 0; padding: 20px; width: 50%; min-height: 50%; max-height: 60%; top: 5%; left: 25%; overflow-y: scroll;'); b.appendChild(p); var l = d.createElement('div'); l.setAttribute('style', 'height: -webkit-fill-available; height: -moz-available;'); l.innerHTML = [...d.querySelectorAll('div.d-table.table-fixed.col-12.width-full.py-4.border-bottom.border-gray-light > div.d-table-cell > a')].map(n => n.innerText).join('<br>'); p.appendChild(l); var c = d.createElement('button'); c.setAttribute('type', 'button'); c.setAttribute('style', 'position: absolute; top: 5%; right: 5%; background: #f0f8ff;'); c.textContent = 'リストをコピーして閉じる'; c.onclick = () => { d.getSelection().selectAllChildren(l |
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\Database\Seeder; | |
| class VtuberTableSeeder extends Seeder | |
| { | |
| /** | |
| * Run the database seeds. | |
| * | |
| * @return void |
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
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.1/css/swiper.min.css" /> | |
| <link rel="stylesheet" href="https://www.willstyle.co.jp/DEMO/common/css/bootstrap.min.css" /> | |
| <style> | |
| .mb60 { | |
| margin-bottom: 60px; | |
| } |
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
| composer create-project laravel/laravel app 7 --prefer-dist |
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 | |
| $f = fopen("./query_result.csv", "r"); | |
| $csv_result = array(); | |
| while($line = fgetcsv($f)){ | |
| // 読み込んだ結果を表示。 | |
| $csv_result = array_merge($csv_result, $line); | |
| } | |
| $genre = array(); | |
| $all_value = array(); | |
| foreach($csv_result as $value){ |
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
| Other 7 hrs 24 mins █████████████████████ 100.0% |
NewerOlder
