No Fastboot? No Recovery? Nothing on screen? Only BROM?
angelican_global_images_V12.0.8.0.QCSMIXM_20210608.0000.00_10.0_global_49908110d5.tgz
it must be file with this name
Xiaomi_Redmi_9C_No_Auth.zip
| "languages": { | |
| "Vue.js": { | |
| "language_servers": ["vue-language-server", "vtsls", "..."], | |
| "format_on_save": "on", | |
| "formatter": { | |
| "code_actions": { | |
| "source.fixAll.eslint": true | |
| } | |
| } | |
| }, |
No Fastboot? No Recovery? Nothing on screen? Only BROM?
angelican_global_images_V12.0.8.0.QCSMIXM_20210608.0000.00_10.0_global_49908110d5.tgz
it must be file with this name
Xiaomi_Redmi_9C_No_Auth.zip
| <!-- Form.vue --> | |
| <script setup lang="ts"> | |
| import { reactive } from 'vue' | |
| import { useSuite } from '~/composables/useSuite' | |
| import { suite } from '~/suites/example' | |
| const { res, classes, validate, reset } = useSuite(suite) | |
| const formData = reactive({ |
| From https://docs.google.com/document/d/1Nsv52MvSjbLb2PCpHlat0gkzw0EvtSgpKHu4mk0MnrA/ | |
| Save Page Now 2 Public API Docs Draft | |
| Vangelis Banos, updated: 2022-04-05 | |
| Capture a web page as it appears now for use as a trusted citation in the future. Changelog: https://docs.google.com/document/d/19RJsRncGUw2qHqGGg9lqYZYf7KKXMDL1Mro5o1Qw6QI/edit# | |
| Contents | |
| Glossary 1 | |
| Basic API Reference 1 | |
| Capture request 1 |
| [ | |
| { | |
| "name": "Andorra", | |
| "countryCode": "AD", | |
| "countryCodeAlpha3": "AND", | |
| "phone": "376", | |
| "currency": "EUR", | |
| "flag": "https://www.geonames.org/flags/x/ad.gif", | |
| "symbol": "\u20AC", | |
| "stateProvinces": [ |
This gist assumes:
| <?php | |
| namespace App\Commands; | |
| use CodeIgniter\CLI\BaseCommand; | |
| use CodeIgniter\CLI\CLI; | |
| use Config\Services; | |
| /** | |
| With the help of this command you can create a resource controller in CodeIgniter 4. | |
| 1) just create a folder named Commands in app folder | |
| 2) then create a php file with name CreateResourceController.php |
| //add this to your package.json | |
| // "audio-buffer-utils": "^5.1.2", | |
| // "audio-decode": "^1.4.0", | |
| // "audiobuffer-to-wav": "^1.0.0", | |
| // "node-lame": "^1.2.0", | |
| // "ogg.js": "^0.1.0", | |
| // "opus.js": "^0.1.1", | |
| const fs = require('fs'); |
| <?php | |
| // This file walks you through the most common features of PHP's SQLite3 API. | |
| // The code is runnable in its entirety and results in an `analytics.sqlite` file. | |
| // Create a new database, if the file doesn't exist and open it for reading/writing. | |
| // The extension of the file is arbitrary. | |
| $db = new SQLite3('analytics.sqlite', SQLITE3_OPEN_CREATE | SQLITE3_OPEN_READWRITE); | |
| // Errors are emitted as warnings by default, enable proper error handling. |
At some point you’ll find yourself in a situation where you need edit a commit message. That commit might already be pushed or not, be the most recent or burried below 10 other commits, but fear not, git has your back 🙂.
git commit --amendThis will open your $EDITOR and let you change the message. Continue with your usual git push origin master.