Showing posts with label made. Show all posts
Showing posts with label made. Show all posts

Yumetabiji

 I sang Yumetabiji (Japan).

夢旅路 (日本) 歌った。


It's my first time that I made this audio noise reduction program!

Happy.


before

after


my software




#APH #Hetalia #ヘタリア #夢旅路

Read More

Making Fruiche

 I made a fruiche.



It is made by mixing 150 ml of milk with a liquid containing blueberries, sugar, grape juice, fructose, water candy, pectin, etc (House Fruiche).



recipe: https://housefoods.jp/recipe/rcp_00021943.html




You can enjoy many different patterns.



https://cdn-ak.f.st-hatena.com/images/fotolife/a/arisu8e/20210911/20210911162627.jpg

strata1

https://cdn-ak.f.st-hatena.com/images/fotolife/a/arisu8e/20210911/20210911162558.jpg

strata2

https://cdn-ak.f.st-hatena.com/images/fotolife/a/arisu8e/20210911/20210911162600.jpg

strata3

 

 










Read More

Observer's eye of Yuri - Plant lover's Shoujo-ai



--Found GL relationship--

I like it. That's Yuri.

Do you want us to hold hands, too?

Rejected.
Huh?

Yuri is best viewed from the outside!
You idiot!

–––

Are there a few people like me who enjoy yuri with co-experiences included?

#Each of us has our own way of enjoying yuri

–––––



It is rare you hold my hand . aren't you?

I'm in the mood today     ,  It's OK because you are always welcome.
Just hold hands,           it's a rare opportunity that only comes around once a year

Only three times a year  ?
 IDK, actually, maybe once every three weeks ?
…………… ーーー



ーーー
Ho- ho-
I see

A puts a piece of paper on the wall


----

Table 「  today's allowed  sensual act 」
Should not be done for life  |  △  | ◯ OK
Kiss                             Hug hold hands
Necking          sleeping together, sharing the same bed
Tribadism (Kaiawase)          Just push down
----

 ! What ‥



explain

Ah- There's an interesting list in this book (The Invisible Orientation)。


I looked it up, but I couldn't figure it out.


This is a karuta, isn't it

(Pointing to the "Kaiawase")



※貝合わせ Kaiawase is shell-matching game popular with court aristocrats during the Heian period in Japan.





--

Hey!


Turn around
← (it's B)


Saying something like, “Let's be friends”  (in a second foreign language)




🌸


You finally looked at my face


because I've made up my mind



-----
-----
「Moyashi Moyasu」


From now on, you are a bean sprout


! Why ?

What's a bean sprout

Because you look like a bean sprout

are spindly
are aloof

--





- -🌱 With Plant  - - 

Sandー Shirataki  --
Kingdom of Vegetables



(Continued conversation) 

You said before that you were a plantsexual

(vacantly)   Ah、 that's.

Zaッ

Take out the buds of some plant


(blush)

Ahっ

May I go to the restroom for a minute …

Already?  Too soon.   (small voice)
Go ahead〰︎


(muttering )
still  I thought you were a phytosexual

A is coming out of the washroom

Ha~-  It's so refreshing===

Don't do that in the middle of the day

Whose fault is it you think it is?

The only thing I'm sexually attracted to are buds!
If I must say so, bud sexuality。



Cooking section    Weird !

the homemade dish B made

Boom!

delicious

Cut out only the roasted buds。

Get used to it as I do this

May you get bored with your buds and start to feel only for me……



(A's Feelings)

 This is …  therapy …  ?

If you try to treat me this way、 I will insulate myself from you.

(↑ loud voice for A)

! Wai…

just kidding

(impatient B)..

Please don't insulate me...

Teary eyes

desperately

sorry.


Huh

That's a terrible joke

Don't serve it with just the buds (keep the stems)
And don't play with the food.

--




you attracted in just the buds?
The rest of the body…


See her reaction

Stem          Looks good tasty

Flowers petals    nothing in particular



Leaves       exciting       sparkling eyes

-
The keratin is smooth and beautiful
the veins are irresistible」

(pointing to )
Here's the vascular bundle, and here's ......

This is a dicotyledon……
––––≠≠– ---===

Like this
Illustration on whiteboard    (suddenly appears)
It's rather technical     (A is dressed in a white coat)

You are a physics student, right?
・・・

There's also a botany lab, but        (in the first place)


Regarding these personal things

I didn't think I want to make a career of 

or be that involved in it

or so…



{delusion} (if she go to the plant lab)

The plant you're observing → || (when you're on a boil)

The leaves…

Dizziness

   

Teacher at the plant lab: "You're terrible at coding!"

pekoriっ (bowing)

--

{inside the frame}

Read More

SimpleNote DL & Sort by Tag in local


After exporting SimpleNotes


I'll create directories for each tags and organize them.


1. In the Simple Notes browser version (https://app.simplenote.com/)
In the upper left corner, click on the 三 menus → Settings → Tools → Export Notes

then the notes.zip file will be downloaded. 

2. unzip the zip, you will find that the notes are not sorted by tags
You will find a lot of information in notes/source/notes.json

You can also import this into SimpleNotes again

---

run this shell script in the directory full of text files under the notes directory

mkdir "Untagged Notes"
for f in *.txt
do
	if grep -q "Tags:" $f ; then
	tag=`tail -n 1 $f | xargs`
		mkdir "${tag}"
		mv $f "${tag}"
	else
   		mv $f "Untagged Notes"
	fi
done


--

tag=$(sed -ne '$p' ${f})


You can also use this to get the last line

--

Searching for other methods     Algorithm


Retrieve only the second-to-last line, and if it is not Tags:

(check line number) -1



wc

cat

cut

awk


sed

etc.. I was going to use


Check for the presence of certain characters


grep -q STRING FILE



--------


Improvements


I wanted to put symbolic links when there are more than two tags, but 



---



The content of the something.txt file is


Tags:

  study, planning


something like this


-

what is written in the json is


      "tags": [

        "write"

      ]


- - 

snt.py

import re
import subprocess

with open('./source/notes.json','r') as f:
        j = f.read()
        t = re.findall('"tags": \[
        "(.*)"
      \]', 'j')
        os.makedirs(t)

I'm not sure how to handle []    escape



ーー




ーー


My Current Notes Environment  Usage


Notes

Exporter


does not keep the creation time.

(Research required)

---


I've write too many

so I use SimpleNotes when outside

ーー


so long Japanese (original language) ver.

https://suityuri.blogspot.com/2021/07/snt.html


Read More

original recipes



Tempura of natto

Pour natto sauce (←soy sauce, )  and eat.




Miso shiso roll

1. roll miso in shiso leaves

2. sear

It is even better if served on top of rice.



Santos's meat

mirin Meat recipe

Read More

Line Transparent Gif

 display Transparent GIF on LINE Sticker-like

ShellScript

#/usr/bin/zsh -eu
GIFD=$(basename "$(pwd)")
mkdir "${GIFD} GIF"
yes | 
for i in *.png
do
	FILENAME=${i%.*}
	mkdir ${FILENAME}
	cp $i ${FILENAME}/1.png
	cp $i ${FILENAME}/2.png
	cd ${FILENAME}

	ffmpeg -i 1.png -vf palettegen palette.png && ffmpeg -f image2 -r 1 -i %d.png -i palette.png  -filter_complex paletteuse "../${GIFD} GIF/${FILENAME}.gif"
	cd -
	rm -r ${FILENAME}
done


Python

#/usr/bin/env python
import os
import glob
import shutil
import subprocess

os.makedirs('./GIF')
pngtati = glob.glob("*.png")
for f in pngtati:
	filename  = os.path.splitext(os.path.basename(f))[0]
	os.makedirs('kari')
	shutil.copyfile(f, "kari/1.png")
	shutil.copyfile(f, "kari/2.png")
	os.chdir('./kari')
	subprocess.call('ffmpeg -f image2 -r 1 -i %d.png -filter_complex "split [a][b];[a] palettegen [p];[b][p] paletteuse" "../GIF/' + filename + '.gif"', shell=True)
	os.chdir('..')
	shutil.rmtree('kari')


How to use


First, prepare background transparent images.


cd to the directory where the transparent images you want to display like stickers are located

and run this script.


Example of usage




Read More

santos's Meat recipe

 Today's Dinner

santos's Meat



pork


B{

sugar   1 tablespoon 

sake   1 tablespoon 

mirin (sweet cooking rice wine)    2 tbsp 

soy sauce     a little 


garlic

ginger



ーー





Simmer B


Dredge the pork in flour and bake


                 






Somen pumpkin with fried vegetables




#Recipes #Cooking recipes


Read More