“zenzen mondai nai” (全然問題ない)

“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.


As an Amazon Associate I earn from qualifying purchases.

“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.


As an Amazon Associate I earn from qualifying purchases.

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!



As an Amazon Associate I earn from qualifying purchases.

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!



As an Amazon Associate I earn from qualifying purchases.

Linux: RPM

Here is couple of functions I use when working with RPM packages:


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







As an Amazon Associate I earn from qualifying purchases.

apt quotation..