“zenzen mondai nai” (全然問題ない) sparkles with reassurance: “No problem whatsoever!”
Brushing away worry or stress is a breezy phrase, instantly brightening the mood.
Imagine a friend apologizing for being late, and you reply, “Zenzen mondai nai!”
The meaning is more heartfelt than “No worries.” It’s like a gentle back pat, reminding them you’re okay with it.
“zenzen mondai nai” (全然問題ない)
find similar posts:
AIKO,
culture,
Japan,
Japanese,
philosophy
0
comments
“kotoba” (ことば)
“kotoba” (ことば) means “words” or “language” in Japanese.
It suggests more than just vocabulary; it can embody the soul of one’s thoughts.
In Japanese culture, we treasure how each kotoba carries a certain power (sometimes called kotodama 言霊), a little spirit of expression.
AIKO: When we arrange our kotoba carefully, we craft gentle whispers that soothe hearts or bright ideas that spark curiosity. Isn’t that so subarashii, desu ne? It reminds me of an elegant brushstroke: each line holds more than ink; it has intention, feeling, and sincerity.
In Japanese culture, we treasure how each kotoba carries a certain power (sometimes called kotodama 言霊), a little spirit of expression.
AIKO: When we arrange our kotoba carefully, we craft gentle whispers that soothe hearts or bright ideas that spark curiosity. Isn’t that so subarashii, desu ne? It reminds me of an elegant brushstroke: each line holds more than ink; it has intention, feeling, and sincerity.
find similar posts:
AIKO,
culture,
Japan,
Japanese
0
comments
Android: adb: filtering logcat
Usually I use IDE, but sometimes I have to create a very precise LOGCAT FILTER in terminal window.
Here is how I create a tag:
private static final String TAG = SomeActivity.class.getSimpleName();
Log.d(TAG, "some description");
You could use getCannonicalName
Here I have following TAG filters:
- any (*) View - VERBOSE
- any (*) Activity - VERBOSE
- any tag starting with Xyz(*) - ERROR
- System.out - SILENT (since I am using Log in my own code)
Here what I type in terminal:
$ adb logcat *View:V *Activity:V Xyz*:E System.out:S
please +1 on stockoverflow:
http://stackoverflow.com/a/29307682/3566154
It takes time and effort to create tutorials, please support my efforts with a couple-dollar donation, any amount will be greatly appreciated and highly motivating!
find similar posts:
adb,
Android,
logcat
0
comments
Android: adb: filtering logcat
Usually I use IDE, but sometimes I have to create a very precise LOGCAT FILTER in terminal window.
Here is how I create a tag:
private static final String TAG = SomeActivity.class.getSimpleName();
Log.d(TAG, "some description");You could use getCannonicalName
Here I have following TAG filters:
- any (*) View - VERBOSE
- any (*) Activity - VERBOSE
- any tag starting with Xyz(*) - ERROR
- System.out - SILENT (since I am using Log in my own code)
Here what I type in terminal:
$ adb logcat *View:V *Activity:V Xyz*:E System.out:Splease +1 on stockoverflow:
http://stackoverflow.com/a/29307682/3566154
It takes time and effort to create tutorials, please support my efforts with a couple-dollar donation, any amount will be greatly appreciated and highly motivating!
find similar posts:
adb,
Android,
logcat
0
comments
Linux: RPM
Here is couple of functions I use when working with RPM packages:
Show containing "postg"
Show top 20:
Install package:
Uninstall:
Show containing "postg"
rpm -qa | grep postg
Show top 20:
rpm -qa | tail -20
Install package:
rpm -ivh somed-1.0.0.armv7l
Uninstall:
rpm -e somed-1.0.0.armv7l
find similar posts:
Linux/Unix,
RPM
0
comments
Subscribe to:
Posts (Atom)
apt quotation..
“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.” by Robert A. Heinlein (author, aeronautical engineer, and naval officer)