create account

Automating Handwriting With Calligrapher.ai by geekgirl

View this thread on: hive.blogpeakd.comecency.com
· @geekgirl ·
$77.74
Automating Handwriting With Calligrapher.ai
![handwriting.png](https://images.hive.blog/DQmbngLjXTaQL2RVmF3BehuLBT9NEmTEG1jdmNHPe2KU3gS/handwriting.png)

These days there are many AI tools that try to imitate various human actions. Calligrapher.ai is one of these tools. It is an app that converts text input into a handwritten form. Go to the website and give it a try yourself. It is a very simple app but does something very powerful. There is not much need for handwritten notes these days. Most people prefer typing on their devices. If we want our text look like handwritten text we can utilize fonts to do that. However, that still doesn't make it handwritten. There is something unique about handwritten words. Everybody has different handwriting, and such notes like letters demonstrate more effort than something that is typed in. 

What makes calligrapher.ai different from choices available is that it generates random handwriting every time, and truly makes the the text look like a human wrote the text. It gives few configuration options. We can changes the speed, legibility, and stroke width of the text. It also gives nine different styles option. If we have a long text to convert to handwritten form and want to keep the style of writing consistent, choosing one style might be better rather than letting the app chose them randomly. For many this may not be a useful tool at all, but it is still fun to play with.

In this post I would like to share how to automate converting text into handwritten svg format and save them in our machines for future use. To accomplish this we will use Selenium to launch the app and do the repetitive actions. The code shared below can be used a template for such projects or any other project that involves Selenium. There is something fun, and there is something to learn in this post.

I didn't come across this tool and the project by accident. I did have project with a real use case last week and small part of it involved using calligrapher.ai with Selenium. Initially, I didn't want to use Selenium, because I thought there had to be a python library that did what calligrapher does. There was one. However, I couldn't get it to work properly due to code being old, and updates in the various libraries made certain classes and functions become obsolete and not work. I do believe given enough time that could have been resolved, and code could be refactored to achieve the goal. But that would require more time, which I didn't have at the time. Hence, automating with Selenium was a faster option. 

The purpose of the code below is to take a list of text, convert them to handwritten format in a style of our choosing and saving them as svg files. The list of text can be short to do list, song lyrics, poems, letters, or something even much longer. We can utilize document manipulating and/or creating libraries and add our svg files into them. That is not included in this post. I may cover that step in future posts. Let me know if that is something you are would be interested in.

```
import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver import ActionChains
from selenium.webdriver.support.ui import Select

def get_text():
    text_list = ['Hive is a decentralized blockchain network.',
                 'Hive power the next generation of web.',
                 'True ownership of property is possible with tech and networks like Hive.',
                 'Building communities and tools to benefit the humanity is what Hive does.']
    return text_list

def get_calligrapher():
    calli_url = "https://www.calligrapher.ai"
    driver = webdriver.Chrome()
    driver.maximize_window()
    driver.get(calli_url)
    speed_slider = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'speed-slider')))
    ActionChains(driver).drag_and_drop_by_offset(speed_slider, 40, 0).perform()
    bias_slider = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'bias-slider')))
    ActionChains(driver).drag_and_drop_by_offset(bias_slider, 20, 0).perform()
    width_slider = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'width-slider')))
    ActionChains(driver).drag_and_drop_by_offset(width_slider, 20, 0).perform()
    select = Select(driver.find_element('id', 'select-style'))
    select.select_by_visible_text('9')
    return driver

def get_calligrapher_text(driver, text):
    text_input = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'text-input')))
    text_input.clear()
    text_input.send_keys(text)
    draw_button = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'draw-button')))
    draw_button.click()
    time.sleep(3)
    save_button = WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.ID, 'save-button')))
    save_button.click()
    time.sleep(1)

def main():
    text_list = get_text()
    driver = get_calligrapher()
    for text in text_list:
        get_calligrapher_text(driver, text)

if __name__ == "__main__":
    main()
```

We start our code in our main() function which only have four lines and utilizing three other functions: get_text(), get_calligrapher(), get_calligrapher_text(). Simple enough. 

First we need our list of text that we are planning to convert to handwritten format. **Important thing to mention here is that the app only accepts 50 character long text**.  Anything longer than 50 characters is truncated. If we are not mindful of this, we may lost some parts of our text. We do want to prep our text keeping this fact in mind. My sample text doesn't follow this. If you were to test, you would see that not all letters have been displayed.

Get_calligrapher() function launches the app and makes the initial configuration changes. The app is very simple, identifying all the elements to use with Selenium was super easy. There aren't many elements either. Three elements we make changes to are sliders and configure the speed, legibility, and stroke width of the text. The fourth element we make changes to is the styles option. I selected number 9 style for testing purposes. But all nine styles are good. So, this function launches the app and makes the initial configuration changes per our liking.

The main action happens in the last function, get_calligrapher_text(). Here we input our text. Since we will be repeating the same process and inputting many texts, we want to make sure we clear the input field first. Otherwise it will keep adding the text to the previous ones. Draw button will draw the text in handwritten format on the screen. Lastly, we click the save button and the svg file will end up in our downloads folder. I used three second sleep before saving the file. Not doing so resulted on saved file only having parts of the text.

Now you too can automate handwriting with calligrapher.ai. Nothing complicated here. This is just a template to get started. Let me know what you think about the app in the comments.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 466 others
properties (23)
authorgeekgirl
permlinkautomating-handwriting-with-calligrapher-ai
categoryhive-163521
json_metadata{"tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"image":["https://images.hive.blog/DQmbngLjXTaQL2RVmF3BehuLBT9NEmTEG1jdmNHPe2KU3gS/handwriting.png"],"app":"hiveblog/0.1","format":"markdown"}
created2024-04-02 01:32:06
last_update2024-04-02 01:32:06
depth0
children24
last_payout2024-04-09 01:32:06
cashout_time1969-12-31 23:59:59
total_payout_value38.922 HBD
curator_payout_value38.821 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,096
author_reputation1,588,017,852,468,897
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,527,320
net_rshares147,229,010,480,759
author_curate_reward""
vote details (530)
@alokkumar121 ·
$0.15
There are many ai tools making things easy. I have not used Calligrapher.ai but will be trying it to see how it works. Technology is making life easy and these days ai tools are on fire. 
πŸ‘  , , , ,
properties (23)
authoralokkumar121
permlinkre-geekgirl-sbb1d4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.3.6"}
created2024-04-02 07:41:30
last_update2024-04-02 07:41:30
depth1
children0
last_payout2024-04-09 07:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation2,489,694,451,052,617
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,534,447
net_rshares291,463,958,808
author_curate_reward""
vote details (5)
@alorstar ·
I will come back and speak my mind. Allow me to try it out. I am fascinated by this. Looks like my time of having a bad hand writting is coming to an end.
πŸ‘  , , ,
properties (23)
authoralorstar
permlinksbbp27
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-02 16:13:21
last_update2024-04-02 16:13:21
depth1
children0
last_payout2024-04-09 16:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation-164,829,153,153
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,543,178
net_rshares213,333,774
author_curate_reward""
vote details (4)
@biyimi ·
Wow this is a massive development and I am really proud of this update. It will take the world of writing to another great height 
πŸ‘  , , ,
πŸ‘Ž  
properties (23)
authorbiyimi
permlinkre-geekgirl-sbd4w4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.4.1"}
created2024-04-03 10:52:54
last_update2024-04-03 10:52:54
depth1
children0
last_payout2024-04-10 10:52:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation110,247,969,247,606
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,563,360
net_rshares-800,475,141,391
author_curate_reward""
vote details (5)
@ebmd ·
$0.18
I ran this code with success - I am very interested in processing longer portions of text.

"The purpose of the code below is to take a list of text, convert them to handwritten format in a style of our choosing and saving them as svg files. The list of text can be short to do list, song lyrics, poems, letters, or something even much longer. We can utilize document manipulating and/or creating libraries and add our svg files into them. That is not included in this post. I may cover that step in future posts. Let me know if that is something you are would be interested in."
πŸ‘  
properties (23)
authorebmd
permlinkre-geekgirl-2ve6bfgp8
categoryhive-163521
json_metadata{"app":"leothreads/0.3","format":"markdown","tags":["leofinance"],"canonical_url":"https://inleo.io/@ebmd/re-geekgirl-2ve6bfgp8","isPoll":false,"pollOptions":{},"dimensions":[]}
created2024-05-11 17:28:30
last_update2024-05-11 17:28:30
depth1
children1
last_payout2024-05-18 17:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.090 HBD
curator_payout_value0.090 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length579
author_reputation6,701,421,124
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,572,869
net_rshares428,890,951,971
author_curate_reward""
vote details (1)
@geekgirl · (edited)
$0.52
With this longer text is not immediately possible. You need to break long text into small ones and save each part separately. Keeping track of all files you should be able to put them together in a pdf file.
πŸ‘  
properties (23)
authorgeekgirl
permlinksdcsqo
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-05-12 03:37:36
last_update2024-05-12 03:37:57
depth2
children0
last_payout2024-05-19 03:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.258 HBD
curator_payout_value0.259 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation1,588,017,852,468,897
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,583,350
net_rshares1,215,493,805,943
author_curate_reward""
vote details (1)
@eniolw ·
Interesting script. 

Congrats!
πŸ‘  ,
properties (23)
authoreniolw
permlinkre-geekgirl-202442t0592975z
categoryhive-163521
json_metadata{"tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"app":"ecency/3.1.1-vision","format":"markdown+html"}
created2024-04-02 04:59:03
last_update2024-04-02 04:59:03
depth1
children0
last_payout2024-04-09 04:59:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation255,223,074,416,427
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,529,955
net_rshares132,463,120
author_curate_reward""
vote details (2)
@hive-lu ·
#### Hello geekgirl!
**It's nice to let you know that your article won πŸ₯‡ place.**
Your post is among the best articles voted 7 days ago by the @hive-lu | King Lucoin Curator by **blind-spot**
 
You and your curator receive **0.0217 Lu** (Lucoin) investment token and a **12.46%** share of the reward from [Daily Report 257](/lucoin/@hive-lu/daily-report-day-257). Additionally, you can also receive a unique **LUGOLD** token for taking 1st place. All you need to do is reblog [this](/lucoin/@hive-lu/daily-report-day-257) report of the day with your winnings.
 
<center>[![2.png](https://files.peakd.com/file/peakd-hive/now.calendars/23uEwt7Djmb4N3dE96ecCUemJez6vLU3fmoTrdjEJn1ws4d8iPw2QrrsB22nyhbb178sx.png)](/@hive-lu)</center>
 
---
<center><sub>Invest in the **Lu token** (Lucoin) and get paid. With 50 Lu in your wallet, you also become the curator of the @hive-lu which follows your upvote.
Buy Lu on the [Hive-Engine](https://hive-engine.com/trade/LU) exchange | World of Lu created by @szejq </sub></center>
<center><sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP` _or to resume write a word_ `START`</sub> </center>
properties (22)
authorhive-lu
permlinklucoin-prize-2vlspj
categoryhive-163521
json_metadata""
created2024-04-10 18:09:24
last_update2024-04-10 18:09:24
depth1
children0
last_payout2024-04-17 18:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,186
author_reputation31,550,399,872,624
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,760,608
net_rshares0
@hivebuzz ·
Congratulations @geekgirl! 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/@geekgirl/posts.png?202404061209"></td><td>You published more than 800 posts.<br>Your next target is to reach 850 posts.</td></tr>
<tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@geekgirl/comments.png?202404061209"></td><td>You made more than 10000 comments.<br>Your next target is to reach 11000 comments.</td></tr>
<tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@geekgirl/replies.png?202404061209"></td><td>You got more than 14000 replies.<br>Your next target is to reach 14500 replies.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@geekgirl) 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>



**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pud-202404-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202404-feedback">Feedback from the April Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202403-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202403-result">Hive Power Up Month Challenge - March 2024 Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202405"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202405">Be ready for the May edition of the Hive Power Up Month!</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-geekgirl-20240406t121952
categoryhive-163521
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2024-04-06 12:19:51
last_update2024-04-06 12:19:51
depth1
children0
last_payout2024-04-13 12:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,858
author_reputation369,388,583,816,020
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,644,518
net_rshares0
@jfang003 ·
$0.15
That is quite interesting and I never thought about an AI doing handwritten stuff. Then again, AI can be used for quite a few different things.
πŸ‘  , , , ,
properties (23)
authorjfang003
permlinkre-geekgirl-2ntjszem5
categoryhive-163521
json_metadata{"app":"leothreads/0.3","format":"markdown","tags":["leofinance"],"canonical_url":"https://inleo.io/@jfang003/re-geekgirl-2ntjszem5","isPoll":false,"pollOptions":{},"dimensions":[]}
created2024-04-02 05:53:42
last_update2024-04-02 05:53:42
depth1
children0
last_payout2024-04-09 05:53:42
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation638,459,842,042,155
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,530,651
net_rshares292,040,345,416
author_curate_reward""
vote details (5)
@manniman ·
$0.02
properties (23)
authormanniman
permlinkre-geekgirl-sbal2d
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.3.6"}
created2024-04-02 01:49:24
last_update2024-04-02 01:49:24
depth1
children0
last_payout2024-04-09 01:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation77,790,724,868,389
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,527,498
net_rshares40,252,246,555
author_curate_reward""
vote details (5)
@mintfinch ·
$0.15
Intriguing, every time I see new A.I developments. It feels like one a person in being formed and one day every aspect of this technology will merge and send out this being separate from humans with his own world to thrive in.
πŸ‘  , , , ,
properties (23)
authormintfinch
permlinksbbohd
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-02 16:00:51
last_update2024-04-02 16:00:51
depth1
children0
last_payout2024-04-09 16:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation10,209,487,593,656
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,542,962
net_rshares289,754,180,117
author_curate_reward""
vote details (5)
@mule-farms ·
Another banger A.I, interesting application and cool script. This has the potential of helping people whose handwriting is not impressive. I love the scrip
πŸ‘  , , ,
properties (23)
authormule-farms
permlinksbbool
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-02 16:05:12
last_update2024-04-02 16:05:12
depth1
children0
last_payout2024-04-09 16:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation554,054,665,297
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,543,032
net_rshares212,677,848
author_curate_reward""
vote details (4)
@precab ·
This is really quite interesting and fascinating to find out of. Artificial intelligence is really changing the world around 
πŸ‘  , , ,
properties (23)
authorprecab
permlinkre-geekgirl-sbbcqs
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.4.1"}
created2024-04-02 11:47:18
last_update2024-04-02 11:47:18
depth1
children0
last_payout2024-04-09 11:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation18,826,690,046,740
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,537,985
net_rshares212,347,588
author_curate_reward""
vote details (4)
@rafzat ·
This AI tool is really nice and will make writing easy
Thanks for sharing with us 
πŸ‘  , , ,
properties (23)
authorrafzat
permlinkre-geekgirl-202442t15436360z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"app":"ecency/3.0.46-mobile","format":"markdown+html"}
created2024-04-02 14:43:09
last_update2024-04-02 14:43:09
depth1
children0
last_payout2024-04-09 14:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation183,560,271,702,716
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,541,319
net_rshares212,017,241
author_curate_reward""
vote details (4)
@rcm ·
Calligraphy A.I is a practical solution, one that can easily be adopted by many institutions to help H.R and anyone pushing out Memos consistently.
πŸ‘  , , ,
properties (23)
authorrcm
permlinksbbosh
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-02 16:07:30
last_update2024-04-02 16:07:30
depth1
children0
last_payout2024-04-09 16:07:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation1,333,935,820,092
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,543,086
net_rshares211,689,253
author_curate_reward""
vote details (4)
@reuben90 ·
$0.15
One thing I know is that nothing can replace hand written anything. But such simple A.I tools are making it easy for me to think humans are going to have it easy. Guess no more laziness everyone has to truly grind to earn their keep. Super innovative. Congratulations!!!
πŸ‘  , , , ,
properties (23)
authorreuben90
permlinksbboyl
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-02 16:11:12
last_update2024-04-02 16:11:12
depth1
children0
last_payout2024-04-09 16:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation-202,551,904,659
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,543,145
net_rshares289,188,769,465
author_curate_reward""
vote details (5)
@stemsocial ·
re-geekgirl-automating-handwriting-with-calligrapher-ai-20240402t045958592z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-geekgirl-automating-handwriting-with-calligrapher-ai-20240402t045958592z
categoryhive-163521
json_metadata{"app":"STEMsocial"}
created2024-04-02 04:59:57
last_update2024-04-02 04:59:57
depth1
children0
last_payout2024-04-09 04:59:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length565
author_reputation22,918,229,493,305
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,529,960
net_rshares0
@technicalside ·
$0.15
And there the computers steal our identitys aswellπŸ˜†πŸ˜† laughs nah I'm joking but does everything have to be automated nowadays 🀣
πŸ‘  , , , ,
properties (23)
authortechnicalside
permlinkre-geekgirl-202442t94651333z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"app":"ecency/3.0.46-mobile","format":"markdown+html"}
created2024-04-02 07:46:51
last_update2024-04-02 07:46:51
depth1
children0
last_payout2024-04-09 07:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.074 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation811,103,209,969,125
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,534,510
net_rshares290,882,397,390
author_curate_reward""
vote details (5)
@typebox ·
$0.15
This is an insightful exploration into the union of technology and creativity. The discussion about Calligrapher.ai highlights the unique appeal of handwritten text in a digital age dominated by typed communication. 

It's fascinating to see how projects like this not only solve practical problems but also spark curiosity and innovation. Looking forward to more insights from your future posts!
πŸ‘  , ,
properties (23)
authortypebox
permlinksbjhrh
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-04-06 21:16:30
last_update2024-04-06 21:16:30
depth1
children0
last_payout2024-04-13 21:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length396
author_reputation38,396,089,493,494
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,654,435
net_rshares295,880,274,215
author_curate_reward""
vote details (3)
@uyoho ·
🀣🀣 Hahaha! What is remaining again. My Aunty should get AI tool that can cook our food. I've try this one out if my device can handle it.
πŸ‘  , , ,
properties (23)
authoruyoho
permlinkre-geekgirl-202442t103953617z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"app":"ecency/3.0.46-mobile","format":"markdown+html"}
created2024-04-02 09:39:57
last_update2024-04-02 09:39:57
depth1
children0
last_payout2024-04-09 09:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation23,408,569,434,635
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,536,153
net_rshares211,362,147
author_curate_reward""
vote details (4)
@wolfplayzor ·
Is this script php? Or phyton?

Nowadays AI can do a lot, matter of time to do everything 
πŸ‘  , , ,
properties (23)
authorwolfplayzor
permlinkre-geekgirl-sbbgye
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.4.1"}
created2024-04-02 13:18:15
last_update2024-04-02 13:18:15
depth1
children0
last_payout2024-04-09 13:18:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation45,664,127,435,858
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,539,662
net_rshares211,024,141
author_curate_reward""
vote details (4)
@x9ed1732b ·
$0.15
This reminds me of one Twitter bot which drew lines on a canvas until its handwriting recognition recognized the drawing as the intended word. Of course this AI tool is much more efficient and produces more readable results.
πŸ‘  , , , ,
properties (23)
authorx9ed1732b
permlinkre-geekgirl-sbbcwd
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2024.4.1"}
created2024-04-02 11:50:39
last_update2024-04-02 11:50:39
depth1
children0
last_payout2024-04-09 11:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation2,261,867,728,849
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,538,038
net_rshares290,319,428,798
author_curate_reward""
vote details (5)
@zulfrontado ·
$0.18
I find it interesting. I love AI, as long as they are used responsibly, because they are tools that can optimize the work in a barbaric way.

Do you know any that do the function of GenoPro?

GenoPro helps you to make a family tree of your family. But I would like to find a free version.
πŸ‘  
properties (23)
authorzulfrontado
permlinkre-geekgirl-2024511t112344945z
categoryhive-163521
json_metadata{"tags":["hive-163521","ai","tools","dev","app","technology","python","coding"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2024-05-11 14:54:51
last_update2024-05-11 14:54:51
depth1
children1
last_payout2024-05-18 14:54:51
cashout_time1969-12-31 23:59:59
total_payout_value0.089 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation99,321,356,986,523
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,569,082
net_rshares428,084,463,076
author_curate_reward""
vote details (1)
@geekgirl ·
$0.52
No, I haven’t explored that yet.
πŸ‘  
properties (23)
authorgeekgirl
permlinksdcstb
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2024-05-12 03:39:12
last_update2024-05-12 03:39:12
depth2
children0
last_payout2024-05-19 03:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.260 HBD
curator_payout_value0.260 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation1,588,017,852,468,897
root_title"Automating Handwriting With Calligrapher.ai"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id133,583,376
net_rshares1,219,865,589,115
author_curate_reward""
vote details (1)