The Diary Game 09/18/2022

in Steem SEA2 years ago

The Diary Game 0918.png

Hi everyone!

Thanks for reading my post. It's exciting and important to me. It's raining in our city this morning. Rainy weather, cloudy sky.

I woke up later than usual. And now I'm sitting and developing post analytics. I finished the balance for uniqueness checks, and I'm waiting for it to be replenished.

In the meantime, I am further analyzing the data from previous posts, because they have accumulated quite a few over these months. And I also want to try adding analytics for some posts and, possibly, tags by adding additional columns.

Most likely, I will experimentally start releasing new reports, where I will analyze the posts. Ideally, to reach the analysis of all (!) published posts in STEEMIT, this is my goal and dream.

I also want to resume my post analytics, including per-post word density studies. This allows you to highlight the most frequently occurring words, and, as a result, the basis of the topic of the post.

npm install natural

script for basic analyse body of post:

 // index.js
const dsteem = require('dsteem');
const client = new dsteem.Client('https://api.steemit.com');
var natural = require('natural');
var tokenizer = new natural.WordTokenizer();
 
    const filter = "created";
    const query = {tag: "life",limit: 1}
 
    console.log('Post assembled.\nFilter:', filter, '\nQuery:', query);

    client.database
        .getDiscussions(filter, query)
        .then(result => {
            console.log('Response received:', result);
            if (result) {
                var posts = [];
                result.forEach(post => {
                    const json = JSON.parse(post.json_metadata);
                    const image = json.image ? json.image[0] : '';
                    const title = post.title;
                    const author = post.author;
                    const created = new Date(post.created).toDateString();
                    let upvote = post.active_votes.length;

            
console.log(post.body);

console.log(tokenizer.tokenize(post.body));4
                                
        

                });

            } else {
                console.log('No result');

            }
        })
        .catch(err => {
            console.log(err);
        });

photo_2022-09-18_22-18-14.jpg

Life

Saturday - and I rested. Developed and wrote post. I did not go to the house and left the apartment only for a short walk and to the store.

In the evening there was a meeting about the joint rent of an apartment, we discussed the idea and technical issues. We also looked at photos and videos of various rental options.

We have not yet resolved all the issues, and yet I am more inclined towards the option of renting separate housing, and conducting classes (which I conducted earlier) in a joint lease. Those. participate in the project in a small share.

Then they left and I talked on the phone for a long time. And then he went to sleep.

photo_2022-09-18_22-20-15.jpg

Love

Photo from 09/16/2022.

Sometimes it makes me heartache when I see how people need love and don't get it. Although, of course, all this is the way. And every path of a person is respected.

There are many topics related to love in a relationship. What if one loves and the other doesn't? What if one wants to be around, and the other no longer wants it? There is joy in love, but there is also pain.

Although, here it is worth considering whether a person really wants to be around, or is it a painful habit, an addiction. After all, if a person suddenly saw something similar in another, he can fall in love not with a person, but with his image, or fantasy.

A person can only satisfy his inner needs, even psychological ones, and that is why to hold on to a person. After all, it's not love at all.

Thank you for your attention
Have a nice day!

Sort:  

Upvoted! Thank you for supporting witness @jswit.

Coin Marketplace

STEEM 0.19
TRX 0.15
JST 0.029
BTC 63792.82
ETH 2563.50
USDT 1.00
SBD 2.66