Kanji | On Reading | Kun Reading | Meaning |
---|---|---|---|
官 | カン | - | government service; the bureaucracy |
宮 | デン、 テン | との、 -どの | Shinto shrine, constellations, palace, princess |
場 | ジョウ、 チョウ | ば | location, place |
傷 | ショウ | きず、 いた.む、 いた.める | wound, hurt, injure, impair, pain, injury, cut, gash, scar, weak point |
料 | リ |
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
Explosion of the Space Shuttle Challenger | |
Address to the Nation, January 28, 1986 | |
by President Ronald W. Reagan | |
Ladies and gentlemen, I'd planned to speak to you tonight to report on the state of the Union, but the events of earlier today have led me to change those plans. Today is a day for mourning and remembering. | |
Nancy and I are pained to the core by the tragedy of the shuttle Challenger. We know we share this pain with all of the people of our country. This is truly a national loss. |
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
<ul> | |
<?php | |
// Define our WP Query Parameters | |
$the_query = new WP_Query( 'posts_per_page=5' ); ?> | |
<?php | |
// Start our WP Query | |
while ($the_query -> have_posts()) : $the_query -> the_post(); |
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 artisan tinker | |
Psy Shell v0.10.3 (PHP 7.3.17-1+ubuntu16.04.1+deb.sury.org+1 — cli) by Justin Hileman | |
Add Data | |
>>> $test = new \App\Models\Project(); | |
=> App\Project {#3083} | |
>>> $test->name = "Test Project"; | |
=> "Test Project" | |
>>> $test->save(); | |
=> true |
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
import { useEffect, useState } from 'react'; | |
import { loadAsync } from 'expo-font'; | |
/** | |
* Load a map of custom fonts to use in textual elements. | |
* The map keys are used as font names, and can be used with `fontFamily: <name>;`. | |
* It returns a boolean describing if all fonts are loaded. | |
* | |
* Note, the fonts are not "reloaded" when you dynamically change the font map. |
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
function eventFire(el, etype){ | |
if (el.fireEvent) { | |
el.fireEvent('on' + etype); | |
} else { | |
var evObj = document.createEvent('Events'); | |
evObj.initEvent(etype, true, false); | |
el.dispatchEvent(evObj); | |
} | |
} |
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
echo '.env' >> .gitignore | |
git rm -r --cached .env | |
git add .gitignore | |
git commit -m 'untracking .env' | |
git push origin master |
Posted on May 6, 2020 by admin Changing vim indentation and tab width to 2 spaces
You can add the configuration in the ~/.vimrc file
vim ~/.vimrc
Or add it through a separate plugin file
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
// document.body.innerHTML = " " | |
// document.body.style.background = 'white' | |
function createInput(container, label, type) { | |
var container = document.createElement('div') | |
var l = document.createElement('label') | |
var i = document.createElement('input') | |
l.innerHTML = `${label} : `; | |
i.setAttribute('type', type) | |
OlderNewer