create account

Are we getting lazy with AI? by bala41288

View this thread on: hive.blogpeakd.comecency.com
· @bala41288 ·
$13.50
Are we getting lazy with AI?
I have to admit that at least I've started using AI a lot these days and even for my official work. We have a ban on ChatGPT and other AI-based tools in our office, but we have access to GitHub Copilot with a consent form filled out by us. We are allowed to use GitHub Copilot for coding-related help, but we have to fill out the consent form to be very careful with the answers provided by the Copilot. Some of the teams are even using Amazon Q, and I find Copilot itself to be convenient and answers most of my questions. 

I have started using more and more AI in my projects to generate code. I know the logic, and I know the basic coding. So I don't have to worry about wrong code provided by AI. I review the code provided by AI before using it in production. For non-production activities, I don't worry too much as long as it gives the output I require. But I do take precautions and review it when required. But most of the time, it is very good. 

![](https://images.ecency.com/DQmbH3iMqASq2c4hkj7FapT2o73Ad4GwXhdk1BGMqQ2pKmD/image.png)

[Source](https://pixabay.com/illustrations/ai-generated-developer-9241538/)

I recently did a frontend project that was supposed to be a website design. The client had given me the UI designs through figma, and I had to convert it to code and use it in the project. Usually these projects can take upto 3 months or even more than that to just design the UI alone, but I was able to complete it in 3 weeks time. I copy-paste the screenshot of the design to AI, and AI would provide me with the code in my tech stack. Of course, the code may not be 100 percent perfect. I might have to spend an hour or two tweaking the code provided by the AI. But this is far better than doing everything from scratch. 

Today, I wanted to do another project where I had a mongo database that had multiple collections with different schemas. I wanted to check if I can get all the collection information with fields and their respective field type. I asked Chat GPT, and it gave me the following code. 

```JS

// Function to infer field types from sample documents
function inferSchema(collectionName, sampleSize = 100) {
  const samples = db.getCollection(collectionName).aggregate([
    { $sample: { size: sampleSize } },
    { $project: { _id: 0 } }
  ]).toArray();

  const schema = {};

  samples.forEach(doc => {
    for (const key in doc) {
      const val = doc[key];
      const type =
        Array.isArray(val) ? 'Array'
        : val === null ? 'Null'
        : val instanceof Date ? 'Date'
        : typeof val === 'object' ? 'Object'
        : typeof val;

      schema[key] = schema[key] || new Set();
      schema[key].add(type);
    }
  });

  const finalSchema = {};
  for (const key in schema) {
    finalSchema[key] = Array.from(schema[key]);
  }

  return finalSchema;
}

// Get all collection names
const collections = db.getCollectionNames();

// Loop through collections and print schema
collections.forEach(coll => {
  print(`\nπŸ“¦ Collection: ${coll}`);
  const schema = inferSchema(coll);
  printjson(schema);
});


```

<sub>Above is an AI Generated Code</sub>

The above code was generated and given, and when I reviewed I noticed that I can do a few tweaks here and there, but it solved my needs. I directly ran this code on my mongo database using NoSQLBooster. The output was perfect and as desired. ChatGPT asked me to provide that output so that it can create a fully working Node.js project with API routes and schema. This is an experimental project to see how I'm able to build my project without any need for writing code myself. Of course, I might have to do some tweaking to the output provided by Chat GPT. But this is awesome, and this is yet another example of how the future of development is looking like. No wonder that freshers are finding it hard to get into IT jobs. 

---
If you like what I'm doing on Hive, you can vote me as a witness with the links below. 
<center> Vote @balaz as a [Hive Witness](https://vote.hive.uno/@balaz) </center>
<center> Vote @kanibot as a [Hive Engine Witness](https://votify.vercel.app/kanibot) </center>

---

<table>
<tr>
<td>
<center><a href="https://discord.gg/bGmS2tE"><img src="https://images.hive.blog/DQmdthy4q4vyefBYmjMJtx7qHBmLnCfP2btiRPhRyc2U8hP/Indiaunited.png"/></a></center>
</td>
<td>
<center><a href="https://kanibot.com/"><img src="https://images.hive.blog/DQmdm8hKPz9TZL8Gd8bPyeVHm9hfgMqqiHcKL8283RBv2eH/Kanibot.png"/></a></center>
</td>
<td>
<center><a href="https://muterra.in/"><img src="https://images.ecency.com/p/FUkUE5bzkAZT3HzV5tJDiU2ik81PCd4JCyhWnRcDN8XJsVFY3UNB8DCRUuhCDN66wiMnTycF4W5TM6SbQHGDwYmP1FStMmkUvfPEVxYfXyDTCmU2bEwm3fiku8ti6aos9RroLdtDQHPhjEDFeNyzYWy7k1g6WcZGHHGJ.webp"/></a></center>
</td>
</tr>
</table>

---

Posted Using [INLEO](https://inleo.io/@bala41288/are-we-getting-lazy-with-ai-4ly)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 144 others
properties (23)
authorbala41288
permlinkare-we-getting-lazy-with-ai-4ly
categoryhive-167922
json_metadata{"app":"leothreads/0.3","format":"markdown","tags":["hive-167922","ai","githubcopilot","coding","development","neoxian","archon","pob","vyb","hive-engine"],"canonical_url":"https://inleo.io/@bala41288/are-we-getting-lazy-with-ai-4ly","links":["https://images.ecency.com/DQmbH3iMqASq2c4hkj7FapT2o73Ad4GwXhdk1BGMqQ2pKmD/image.png)","https://pixabay.com/illustrations/ai-generated-developer-9241538/)","https://vote.hive.uno/@balaz)","https://votify.vercel.app/kanibot)","https://discord.gg/bGmS2tE\"><img","https://images.hive.blog/DQmdthy4q4vyefBYmjMJtx7qHBmLnCfP2btiRPhRyc2U8hP/Indiaunited.png\"/></a></center>","https://kanibot.com/\"><img","https://images.hive.blog/DQmdm8hKPz9TZL8Gd8bPyeVHm9hfgMqqiHcKL8283RBv2eH/Kanibot.png\"/></a></center>","https://muterra.in/\"><img","https://images.ecency.com/p/FUkUE5bzkAZT3HzV5tJDiU2ik81PCd4JCyhWnRcDN8XJsVFY3UNB8DCRUuhCDN66wiMnTycF4W5TM6SbQHGDwYmP1FStMmkUvfPEVxYfXyDTCmU2bEwm3fiku8ti6aos9RroLdtDQHPhjEDFeNyzYWy7k1g6WcZGHHGJ.webp\"/></a></center>","https://inleo.io/@bala41288/are-we-getting-lazy-with-ai-4ly)"],"images":[],"isPoll":false,"dimensions":{}}
created2025-07-19 18:58:24
last_update2025-07-19 18:58:24
depth0
children16
last_payout1969-12-31 23:59:59
cashout_time2025-07-26 18:58:24
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value13.500 HBD
promoted0.000 HBD
body_length4,842
author_reputation1,535,019,242,344,079
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,223,216
net_rshares38,018,782,679,453
author_curate_reward""
vote details (208)
@arveno ·
$0.13
I am kinda confused how to utilize AI very well.
I dont know where to start either using AI
Especially here in Hive we are forbidden using AI right
thats why i dont know about AI well
πŸ‘  , ,
properties (23)
authorarveno
permlinkre-bala41288-szoqtw
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-20 06:46:51
last_update2025-07-20 06:46:51
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 06:46:51
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.133 HBD
promoted0.000 HBD
body_length183
author_reputation409,523,668,714,170
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,233,601
net_rshares386,169,091,482
author_curate_reward""
vote details (3)
@bhattg ·
$0.13
Yesterday i did spend my entire day using chatgpt and cursor. Cursor is new for me. I was planning to build something but it didn't work at all. 
πŸ‘  , ,
properties (23)
authorbhattg
permlinkre-bala41288-szohy8
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-20 03:35:00
last_update2025-07-20 03:35:00
depth1
children2
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 03:35:00
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.134 HBD
promoted0.000 HBD
body_length145
author_reputation1,153,260,181,575,778
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,231,725
net_rshares386,859,755,343
author_curate_reward""
vote details (3)
@bala41288 ·
Oh nice. Getting a grasp of it at first is a little tough. 
properties (22)
authorbala41288
permlinkre-bhattg-2025722t121620259z
categoryhive-167922
json_metadata{"links":[],"type":"comment","tags":["hive-167922"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-07-22 06:46:21
last_update2025-07-22 06:46:21
depth2
children1
last_payout1969-12-31 23:59:59
cashout_time2025-07-29 06:46:21
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation1,535,019,242,344,079
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,290,285
net_rshares0
@bhattg ·
$0.13
Indeed, I was just trying something new. But that didn't worked πŸ˜…
πŸ‘  , ,
properties (23)
authorbhattg
permlinkre-bala41288-szsj20
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-22 07:49:15
last_update2025-07-22 07:49:15
depth3
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-29 07:49:15
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.132 HBD
promoted0.000 HBD
body_length65
author_reputation1,153,260,181,575,778
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,291,086
net_rshares381,387,050,695
author_curate_reward""
vote details (3)
@bisolamih ·
$0.13
AI is keeping us lazy
Yesterday, I wrote an examination with the help of AI
I didn’t need to stress too much 
πŸ‘  , , , ,
properties (23)
authorbisolamih
permlinkre-bala41288-2025720t162631925z
categoryhive-167922
json_metadata{"type":"comment","tags":["hive-167922","ai","githubcopilot","coding","development","neoxian","archon","pob","vyb","hive-engine"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-07-20 15:26:33
last_update2025-07-20 15:26:33
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 15:26:33
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.133 HBD
promoted0.000 HBD
body_length109
author_reputation77,838,254,341,510
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,242,427
net_rshares385,805,048,230
author_curate_reward""
vote details (5)
@cwow2 ·
I am lazy using Ai or not!
properties (22)
authorcwow2
permlinkre-bala41288-sznw6d
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-19 19:44:39
last_update2025-07-19 19:44:39
depth1
children1
last_payout1969-12-31 23:59:59
cashout_time2025-07-26 19:44:39
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation209,989,225,582,285
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,224,101
net_rshares0
@bhattg ·
![untitled.gif](https://media.tenor.com/D9GuIkpqmG0AAAAC/tired-lafuddyduddyp2.gif)
properties (22)
authorbhattg
permlinkre-cwow2-szohp7
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3"}
created2025-07-20 03:29:33
last_update2025-07-20 03:29:33
depth2
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 03:29:33
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation1,153,260,181,575,778
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,231,685
net_rshares0
@davideownzall ·
$0.13
not only on it, people are getting lazy in general, students ask ai to solve problems too... it's inevitable when such a tool promotes no mind work
πŸ‘  , ,
properties (23)
authordavideownzall
permlinkre-bala41288-sznw6v
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-19 19:44:57
last_update2025-07-19 19:44:57
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-26 19:44:57
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.134 HBD
promoted0.000 HBD
body_length147
author_reputation106,379,022,750,934
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,224,106
net_rshares389,897,842,275
author_curate_reward""
vote details (3)
@ekavieka ·
$0.13
I don't think it is lazy, just working smart usign the tools that available. As long as you know all yu need to review the code given by Ai, then it would be ok I think. but blindly following what AI gave would be dangerous as it might not fit well with the project you are handling. 
!PIZZA
πŸ‘  , , , ,
properties (23)
authorekavieka
permlinkre-bala41288-2025720t102546227z
categoryhive-167922
json_metadata{"tags":["hive-167922","ai","githubcopilot","coding","development","neoxian","archon","pob","vyb","hive-engine"],"app":"ecency/4.2.1-vision","format":"markdown+html"}
created2025-07-20 02:25:48
last_update2025-07-20 02:25:48
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 02:25:48
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.134 HBD
promoted0.000 HBD
body_length291
author_reputation423,345,225,071,919
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,231,072
net_rshares388,762,800,243
author_curate_reward""
vote details (5)
@goshen ·
$0.14
For me personally, I strongly believe that AI is not making us lazy but making us to be more effective 
πŸ‘  , ,
properties (23)
authorgoshen
permlinkre-bala41288-szpkos
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2025.7.3","image":[],"users":[]}
created2025-07-20 17:31:42
last_update2025-07-20 17:31:42
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 17:31:42
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.139 HBD
promoted0.000 HBD
body_length103
author_reputation17,009,302,739,522
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,246,577
net_rshares391,682,529,757
author_curate_reward""
vote details (3)
@hivebuzz ·
Congratulations @bala41288! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

<table><tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@bala41288/upvotes.png?202507200551"></td><td>You distributed more than 88000 upvotes.<br>Your next target is to reach 89000 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@bala41288) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>

properties (22)
authorhivebuzz
permlinknotify-1752991045
categoryhive-167922
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-07-20 05:57:24
last_update2025-07-20 05:57:24
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 05:57:24
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length636
author_reputation369,414,318,684,316
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,233,113
net_rshares0
@india-leo ·
$0.13
Indiaunited Curation 1752981166212
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). 

Do you know that you can earn a passive income by delegating your Leo power to @india-leo account? We share 100 % of the curation rewards with the delegators. 

<sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>
πŸ‘  , , , ,
properties (23)
authorindia-leo
permlinkindiaunited-1752981166212
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","format":"markdown","tags":["hive-167922","ai","githubcopilot","coding","development","neoxian","archon","pob","vyb","hive-engine"]}
created2025-07-20 03:12:45
last_update2025-07-20 03:12:45
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 03:12:45
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.134 HBD
promoted0.000 HBD
body_length536
author_reputation7,733,819,596,199
root_title"Are we getting lazy with AI?"
beneficiaries
0.
accountbhattg
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,231,523
net_rshares388,008,346,434
author_curate_reward""
vote details (5)
@indiaunited ·
$0.13
Indiaunited Curation 1752969404789
This post has been manually curated by @steemflow from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). 

Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight. 

Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=166530.41091169903%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=416326.02727924753%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=832652.0545584951%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1665304.1091169901%20VESTS). 

[![image.png](https://files.peakd.com/file/peakd-hive/bala41288/46eaz12N-image.png)](https://discord.gg/bGmS2tE) 

<sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @steemflow by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>. 

This post received an extra 20.00% vote for delegating HP / holding IUC tokens.
πŸ‘  , , , ,
properties (23)
authorindiaunited
permlinkindiaunited-1752969404789
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","format":"markdown","tags":["hive-167922","ai","githubcopilot","coding","development","neoxian","archon","pob","vyb","hive-engine"]}
created2025-07-19 23:56:45
last_update2025-07-19 23:56:45
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-26 23:56:45
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.134 HBD
promoted0.000 HBD
body_length1,418
author_reputation98,488,905,160,445
root_title"Are we getting lazy with AI?"
beneficiaries
0.
accountsteemflow
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,229,699
net_rshares389,528,255,001
author_curate_reward""
vote details (5)
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@ekavieka<sub>(4/5)</sub> tipped @bala41288 


<sub>Come get [MOON](https://moon.hive.pizza)ed!</sub></center>
properties (22)
authorpizzabot
permlinkre-are-we-getting-lazy-with-ai-4ly-20250722t205304z
categoryhive-167922
json_metadata"{"app": "leothreads/pizzabot"}"
created2025-07-22 20:53:03
last_update2025-07-22 20:53:03
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-29 20:53:03
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation7,607,417,747,627
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,312,837
net_rshares0
@susvet ·
$0.19
Absolutely loved this post β€” it's a question I've been asking myself a lot lately.

From my own experience, I’d say AI can definitely make us lazy **in some areas**, especially when we stop thinking critically or rely on it for every little thing. For example, I used to write blog posts from scratch, brainstorm everything, edit line by line. Now with AI tools, it's easy to just prompt something and click β€œgo.” It saves time, but sometimes I catch myself becoming too passive in the creative process.

**But on the flip side β€” it has also made me more disciplined.** I started using AI to generate visual content and ended up opening a POD (Print-on-Demand) store where I sell designs created partly with free AI tools. That required commitment, learning how to market, testing designs, and being consistent. In a weird way, AI helped me build structure where before I just procrastinated.

So maybe it’s not about AI making us lazy or smart β€” it’s about how we *choose* to use it. Like any tool, it can either dull us or empower us.
πŸ‘  ,
properties (23)
authorsusvet
permlinkszpjck
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2025-07-20 17:02:45
last_update2025-07-20 17:02:45
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 17:02:45
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.192 HBD
promoted0.000 HBD
body_length1,036
author_reputation21,802,987,450
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,245,635
net_rshares556,008,325,021
author_curate_reward""
vote details (2)
@tahirmuneer ·
https://x.com/jewellery_all/status/1946935497382604914
properties (22)
authortahirmuneer
permlinkszpbby
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2025-07-20 14:09:39
last_update2025-07-20 14:09:39
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-07-27 14:09:39
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation16,350,879,545,167
root_title"Are we getting lazy with AI?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,239,762
net_rshares0