<p>Hey everyone,</p> <p> </p> <p>I told you in a previous article about a project that has been on my mind for several years, today we're going to look at how we're going to talk with this garden. And if I'm already using a microcontroller to water the plants, I'm also going to take advantage of it to monitor a whole bunch of other variables like temperature, humidity and luminosity.</p> <p><center><a href="https://peakd.com/hive-196396/@robotics101/node-red-la-solution-a-tous-les-problemes-de-linternet-des-objets-iot">You can find this post in French here</a></center></p> <p> </p> <h2>Why should we communicate with the garden?</h2> <p> </p> <p>First of all, it's an exercise for me, designing a system that fits into the category of connected objects (IOT) which is a recurring theme in electronic projects at the moment. But it's also a way to have a better idea and to quantify why a crop is doing well or poorly depending on different parameters, and to learn more about the needs of plants.</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/image_2022-04-30_134444.png" alt="" /></figure> <p> </p> <p>So on one side I have a microcontroller with many sensors and actuators (mainly pumps and lamps) and on the other side a phone (or a computer). Between the two, I need a graphical interface (easily modifiable) on which I can see the measurements made and activate the actuators.</p> <p> </p> <p>I searched for a while for dashboard services for connected objects, but nothing suited me in terms of functionality/price ratio. Then I came across Node-RED, a graphical development tool based on JavaScript and having many modules (called nodes) allowing to realize all the functionalities I wanted, moreover it gives me a reason to learn a new programming language, in short the perfect solution! (You can also use Node-RED without typing a line of code)</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/image_2022-04-30_134419.png" alt="" /> <figcaption>Architecture of my complete system</figcaption> </figure> <p> </p> <h1>How to install Node-RED:</h1> <p> </p> <p>We are going to enter the very technical part now, if you have any question, do not hesitate to ask it in comments :)</p> <p> </p> <p>I chose to run Node-RED on a Raspberry Pi Zero W (which has a Wi-Fi module) which allows it to run continuously without consuming much electricity. To install Node-RED on a Raspberry Pi, we use this command :</p> <p> </p> <pre><code> bash <(curl -sL https://raw.githubusercontent.com/node-red/linux-installers/master/deb/update-nodejs-and-nodered)</code></pre> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/03/image_2022-03-30_182310-1024x547.png" alt="" /> <figcaption>Screenshot of the end of the installation of Node-RED</figcaption> </figure> <p> </p> <p>For the communication between the Raspberry and the microcontroller, I chose the MQTT protocol which is very used on the Internet of Things and that I never had the opportunity to test until now. MQTT works by separating the information in 2, on one side the topic and on the other the message (content). This allows to easily segment the information (it can be compared to folders as it is possible to create a tree with topics : /sensors/humidity for example).</p> <p> </p> <p>Node-RED has by default a node for MQTT communication, but that requires an external broker (server), to overcome this problem, I installed <a href="https://flows.nodered.org/node/node-red-contrib-aedes">another node</a> to integrate a broker directly into Node-RED.</p> <p> </p> <p>To install it, go to the .node_red/ folder that was created when Node-Red was installed, then type this command :</p> <p> </p> <pre><code>npm install node-red-contrib-aedes</code></pre> <p> </p> <p>We can take this opportunity to install <a href="https://flows.nodered.org/node/node-red-dashboard">the node that will allow us to create the graphical interface</a>:</p> <p> </p> <pre><code>npm install node-red-dashboard</code></pre> <p> </p> <p>I also installed <a href="https://flows.nodered.org/node/node-red-contrib-telegrambot">a node to communicate with Telegram</a>, which seems to me to be the simplest and most secure solution to communicate with Node-Red outside the local network (not necessarily wanting to expose ports to the internet):</p> <p> </p> <pre><code>npm install node-red-contrib-telegrambot</code></pre> <p> </p> <p>To create an account for your bot, you will have to use another bot that will guide you along, and give you important information to communicate with your bot, it is called <a href="https://t.me/botfather">Bot Father</a>.</p> <p> </p> <p>For more security, you can also follow<a href="https://nodered.org/docs/user-guide/runtime/securing-node-red"> the guide provided by Node-RED.</a></p> <p> </p> <p>If you want more information on each of these nodes, you can consult their dedicated pages by clicking on the following links:</p> <p> </p> <ul> <li><a href="https://flows.nodered.org/node/node-red-contrib-aedes">MQTT Aedes</a></li> <li><a href="https://flows.nodered.org/node/node-red-dashboard">Dashboard</a></li> <li><a href="https://flows.nodered.org/node/node-red-contrib-telegrambot">Telegram</a></li> </ul> <p> </p> <h1>First steps with Node-RED:</h1> <p> </p> <p>Now that everything is installed, we will restart Node-RED to take advantage of all our new nodes:</p> <p> </p> <pre><code>node-red-restart</code></pre> <p> </p> <p>Then we will connect to Node-RED from our PC using the local IP address of the Raspberry Pi which should be 192.168.1.XX where XX is a number assigned by your box. You can find it on the portal of your box (accessible at 192.168.1.1 or 192.168.1.255) or from the Raspberry Pi by typing ifconfig using a screen and keyboard connected to the RPi. Once you have it, go to your web browser and type the address of your Raspberry Pi followed by ":1880" :</p> <p> </p> <pre><code>192.168.1.XX:1880</code></pre> <p> </p> <p>This address will allow you to access the Node-RED editor from any device connected to the same network as your Raspberry (so avoid public networks). Once the page is loaded, it should look like this (it will first ask you to identify yourself if you had previously configured a password):</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/03/image_2022-03-30_182456-1024x516.png" alt="" /> <figcaption>Screenshot of the Node-RED editor</figcaption> </figure> <p> </p> <p>Node-RED is a graphical editor, using nodes that we will have to link and configure. For our first program (called flow), we will simply send the message "Hello World" in the debugger (a window used to get messages to find errors more easily).</p> <p> </p> <p>We will place an Inject node whose "content" field is a sentence (String) that contains Hello World. Then we simply link it to a debug node, which should look like this:</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/opera_d9cFgRvuz2.png" alt="" /> <figcaption>Example of flow for Hello World</figcaption> </figure> <p> </p> <p>If you didn't get this, you can import directly this example in your flow by copying this text in the window accessible by clicking on the three lines at the top right of the window, then on Import.</p> <p> </p> <pre><code>[ { "id": "693ad42b36a34b03", "type": "tab", "label": "Hello", "disabled": false, "info": "", "env": [] }, { "id": "47902d4a884764bf", "type": "inject", "z": "693ad42b36a34b03", "name": "", "props": [ { "p": "payload" }, { "p": "topic", "vt": "str" } ], "repeat": "", "crontab": "", "once": false, "onceDelay": 0.1, "topic": "", "payload": "Hello World", "payloadType": "str", "x": 150, "y": 140, "wires": [ [ "7246312988b8f033" ] ] }, { "id": "7246312988b8f033", "type": "debug", "z": "693ad42b36a34b03", "name": "", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "false", "statusVal": "", "statusType": "auto", "x": 330, "y": 140, "wires": [] } ]</code></pre> <p> </p> <p>Once your program is ready, click on deploy, then on the small blue square in front of the module containing your sentence. This should trigger its display in the Debug tab on the right of the window.</p> <p> </p> <div> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/opera_a9FG00qm9T.png" alt="" /></figure> </div> <p> </p> <p>Now that we have the basics, we will try to control a led on the microcontroller from our phone through MQTT and Telegram or the graphic interface accessible from the network.</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/opera_awNEuq7Wad-1024x629.png" alt="" /></figure> <p> </p> <p>This program is going to be a bit complicated at first, but I'll separate the different functions so that we can learn about how each function communicates. <a href="https://gist.github.com/101Robotics/4b5a01de7bf36676710e7e70b0220f7f">You can find the complete program here</a>. Just be careful to create your Telegram robot before and to choose it well in each block concerning Telegram.</p> <p> </p> <p>We start at the top, the Aedes MQTT broker block is just used to integrate the MQTT server, it contains the MQTT port and the server connection information.</p> <p> </p> <div> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/opera_RwWrKRNmzd.png" alt="" /></figure> </div> <p> </p> <p>Then these two blocks are used to display in the Debugger what is happening on the MQTT topic led.</p> <p> </p> <figure><img src="https://i.imgur.com/WYGDHXJ.png" alt="" /></figure> <p> </p> <p>Here you can send MQTT commands to the topic led from 2 buttons on the GUI that look like this:</p> <p> </p> <div> <figure><img src="https://i.imgur.com/Oi5lPjH.png" alt="" /></figure> </div> <p> </p> <figure><img src="https://i.imgur.com/TNIUbuv.png" alt="" /></figure> <p> </p> <p>And connected to the same MQTT node we have the Telegram command detection events (/on and /off) that will trigger the sending of a message on the led topic, which will then be interpreted by the microcontroller.</p> <p> </p> <figure><img src="https://i.imgur.com/2lh6UPQ.png" alt="" /></figure> <p> </p> <p>Finally, we have these nodes that are only used to display the Telegram messages received and to send back everything that the user has sent us. In these blocks, you will have to fill in the information provided by Bot Father when creating your Telegram bot.</p> <p> </p> <figure><img src="https://i.imgur.com/yFN2qaZ.png" alt="" width="580" height="228" /></figure> <p> </p> <p>Once deployed, we can send commands to the robot to see what it answers.</p> <p> </p> <h1>We now move on to the microcontroller:</h1> <p> </p> <p>On this side, I wanted to be able to connect easily to the Wi-Fi and to have enough inputs and outputs to communicate with everything that will be connected to it. My choice was the ESP32, which is very common for its integration of Wi-Fi and Bluetooth directly into the microcontroller.</p> <p> </p> <p>I chose to program in Python, for that I use <a href="https://thonny.org/">Thonny IDE</a> under Windows, this software allows to send easily a program to the microcontroller and displays all the print() functions that you will put in your program. Just make sure that the right COM port is selected in Run->Select Interpreter -> Port of WebREPL</p> <p> </p> <p>We are always going to use internet in this project, so it's a good idea not to have to keep adding lines to connect to the Wi-Fi. Luckily for us, the ESP32 stores 2 programs in its memory, the main.py which is the main program and the boot.py which is the first program to be launched at the start of the ESP32, so we will place in the latter these few lines so that we don't need to put them in the main.py anymore (don't forget to enter the name of your Wi-Fi and its password):</p> <p> </p> <pre><code>import network wlan = network.WLAN(network.STA_IF) wlan.active(True) if not wlan.isconnected(): print('connecting to network...') wlan.connect('WIFI SSID', 'PASSWORD') while not wlan.isconnected(): pass print('network config:', wlan.ifconfig())</code></pre> <p> </p> <p>Then save the program by clicking on the diskette icon and then on MicroPython device :</p> <p> </p> <div> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/image.png" alt="" /> <figcaption>Click on MicroPython device</figcaption> </figure> </div> <p> </p> <p>And replace the file boot.py :</p> <p> </p> <div> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/image-1.png" alt="" /> <figcaption>Screenshot of the ESP32 content</figcaption> </figure> </div> <p> </p> <p>For our first MQTT program we will simply flash the LED on the board (pin 2 in my case), using this program :</p> <p> </p> <pre><code>from umqtt.simple import MQTTClient from machine import Pin import ubinascii import machine import micropython import network #Change the pin number according to your model led = Pin(2, Pin.OUT) # Serveur MQTT SERVER = "192.168.1.00" #Change the IP according to your server CLIENT_ID = ubinascii.hexlify(machine.unique_id()) TOPIC = b"led" state = 0 def sub_cb(topic, msg): global state print((topic, msg)) if msg == b"on": led.value(1) state = 1 elif msg == b"off": led.value(0) state = 0 else: print("Command unknown") c = MQTTClient(CLIENT_ID, SERVER) # Subscribed messages will be delivered to this callback c.set_callback(sub_cb) c.connect() c.subscribe(TOPIC) print("Connected to %s, subscribed to %s topic" % (SERVER, TOPIC)) try: while 1: c.wait_msg() finally: c.disconnect() </code></pre> <p> </p> <p>And you should see a led light up on your card every time you press the ON button or send /on to your Telegram bot :</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/20220416180357_IMG_5606-1024x683.jpg" alt="" /> <figcaption>The red LED lights up when the card is powered, the blue one is the one we control</figcaption> </figure> <p> </p> <h2>Conclusion:</h2> <p> </p> <p>So today we have seen how we will communicate with the connected part of the garden, as well as how Node-RED, Telegram bots and MQTT protocol works. In the next article, I will define the sensors and actuators I want to use and we will start designing the electronic board.</p> <p> </p> <p>I hope you enjoyed this article and that it made you want to play a bit with Node-RED!</p> <p> </p> <p>See you soon!</p> <p> </p> <h1>Sources to go further:</h1> <p> </p> <ul> <li><a href="https://nodered.org/docs/user-guide/runtime/securing-node-red">Secure your editor | Node-RED</a></li> <li><a href="https://nodered.org/docs/getting-started/raspberrypi">Running on a Raspberry Pi | Node-RED</a></li> <li><a href="https://docs.micropython.org/en/latest/esp32/quickref.html">Quick Reference ESP32 | Micropython</a></li> <li><a href="https://flows.nodered.org/node/node-red-contrib-aedes">MQTT Aedes</a> | Node RED</li> <li><a href="https://flows.nodered.org/node/node-red-dashboard">Dashboard</a> | Node RED</li> <li><a href="https://flows.nodered.org/node/node-red-contrib-telegrambot">Telegram</a> | Node Red</li> <li><a href="https://github.com/micropython/micropython-lib/blob/master/micropython/umqtt.simple/umqtt/simple.py">UMQTT Simple for ESP32</a> | GitHub</li> </ul> <p> </p> <h2>Garden update :</h2> <p> </p> <p>We transplanted the germinated seeds (lettuce) from the germination tray to the hydroponic system this week (maybe a bit too soon) and 5 out of 6 plants are doing great !</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/1651320630432-683x1024.jpg" alt="" /> <figcaption>Just after the transplantation</figcaption> </figure> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/1651320572904-1024x683.jpg" alt="" /> <figcaption>After 5 days in the hydroponic system</figcaption> </figure> <p> </p> <p>We also had our first strawberries arriving :</p> <p> </p> <figure><img src="https://101robotics.com/wp-content/uploads/2022/04/1651320572911-1024x683.jpg" alt="" /> <figcaption>First strawberry appearing this week</figcaption> </figure> <p> </p> <p>Unfortunately we also had an infestation of aphids to deal with this week, we bought some black soap and sprayed a diluted solution over the infested plants, after some days it looks like it going in the right direction :)</p>
author | robotics101 |
---|---|
permlink | node-red-the-swiss-army-knife-for-internet-of-things |
category | hive-196387 |
json_metadata | {"app":"peakd/2022.04.6","format":"markdown","tags":["stemsocial","stem","iot","nodered","ocd","palnet","neoxian","proofofbrain","technology"],"users":["robotics101"],"image":["https://101robotics.com/wp-content/uploads/2022/04/20220416180357_IMG_5606-1024x683.jpg","https://101robotics.com/wp-content/uploads/2022/04/image_2022-04-30_134444.png","https://101robotics.com/wp-content/uploads/2022/04/image_2022-04-30_134419.png","https://101robotics.com/wp-content/uploads/2022/03/image_2022-03-30_182310-1024x547.png","https://101robotics.com/wp-content/uploads/2022/03/image_2022-03-30_182456-1024x516.png","https://101robotics.com/wp-content/uploads/2022/04/opera_d9cFgRvuz2.png","https://101robotics.com/wp-content/uploads/2022/04/opera_a9FG00qm9T.png","https://101robotics.com/wp-content/uploads/2022/04/opera_awNEuq7Wad-1024x629.png","https://101robotics.com/wp-content/uploads/2022/04/opera_RwWrKRNmzd.png","https://i.imgur.com/WYGDHXJ.png","https://i.imgur.com/Oi5lPjH.png","https://i.imgur.com/TNIUbuv.png","https://i.imgur.com/2lh6UPQ.png","https://i.imgur.com/yFN2qaZ.png","https://101robotics.com/wp-content/uploads/2022/04/image.png"]} |
created | 2022-05-02 17:01:45 |
last_update | 2022-05-02 18:31:06 |
depth | 0 |
children | 16 |
last_payout | 2022-05-09 17:01:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 11.443 HBD |
curator_payout_value | 11.266 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16,498 |
author_reputation | 13,003,325,382,700 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,844,642 |
net_rshares | 23,921,747,540,239 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 876,262,862 | 2.6% | ||
modeprator | 0 | 757,828,874 | 100% | ||
kevinwong | 0 | 3,041,313,381 | 0.39% | ||
justtryme90 | 0 | 1,199,485,827 | 65% | ||
eric-boucher | 0 | 12,615,500,173 | 2.6% | ||
juanmiguelsalas | 0 | 1,143,071,181 | 1.56% | ||
thecryptodrive | 0 | 28,661,273,244 | 1.04% | ||
kaylinart | 0 | 1,339,989,408 | 2.6% | ||
mammasitta | 0 | 7,319,227,159 | 2.6% | ||
gerber | 0 | 8,357,019,750 | 5% | ||
roelandp | 0 | 1,248,010,350,932 | 32.5% | ||
ezzy | 0 | 285,928,482 | 5% | ||
cloh76 | 0 | 3,728,301,170 | 2.6% | ||
exyle | 0 | 45,630,915,599 | 5% | ||
joshglen | 0 | 590,133,899 | 5.2% | ||
akipponn | 0 | 2,956,521,958 | 32.5% | ||
stephen.king989 | 0 | 1,301,798,416 | 2.6% | ||
lordvader | 0 | 52,970,423,362 | 5.2% | ||
rmach | 0 | 2,466,071,941 | 32.5% | ||
lemouth | 0 | 1,572,351,036,387 | 65% | ||
lamouthe | 0 | 3,855,022,320 | 50% | ||
eftnow | 0 | 1,205,342,724 | 2.6% | ||
tfeldman | 0 | 5,085,980,528 | 2.6% | ||
metabs | 0 | 6,345,833,328 | 65% | ||
mcsvi | 0 | 126,205,255,305 | 50% | ||
lk666 | 0 | 1,565,645,766 | 2.6% | ||
cnfund | 0 | 9,541,457,384 | 5.2% | ||
justyy | 0 | 25,151,625,804 | 5.2% | ||
michelle.gent | 0 | 2,775,089,670 | 1.04% | ||
curie | 0 | 715,507,005,301 | 5.2% | ||
modernzorker | 0 | 3,337,740,424 | 3.64% | ||
techslut | 0 | 155,745,969,619 | 26% | ||
slider2990 | 0 | 14,649,258,487 | 100% | ||
roguewriter | 0 | 4,514,947,538 | 32.5% | ||
steemstem | 0 | 3,848,497,744,263 | 65% | ||
tristancarax | 0 | 666,319,028 | 2.6% | ||
yadamaniart | 0 | 2,174,799,345 | 2.6% | ||
apsu | 0 | 1,625,207,547 | 1.82% | ||
bigtakosensei | 0 | 729,076,879 | 0.78% | ||
walterjay | 0 | 140,863,586,446 | 12.5% | ||
valth | 0 | 10,654,690,353 | 32.5% | ||
driptorchpress | 0 | 1,452,934,197 | 1.3% | ||
gabriele-gio | 0 | 6,073,794,513 | 2.6% | ||
dna-replication | 0 | 2,538,476,432 | 65% | ||
boynashruddin | 0 | 862,450,521 | 5.2% | ||
ambyr00 | 0 | 3,288,559,864 | 0.78% | ||
oluwatobiloba | 0 | 1,807,725,075 | 65% | ||
detlev | 0 | 17,173,874,974 | 1.56% | ||
chasmic-cosm | 0 | 751,710,611 | 2.6% | ||
federacion45 | 0 | 7,529,045,576 | 2.6% | ||
iansart | 0 | 17,617,990,800 | 5% | ||
mobbs | 0 | 116,114,690,837 | 32.5% | ||
jerrybanfield | 0 | 19,568,578,649 | 5.2% | ||
roomservice | 0 | 2,532,787,711 | 2.6% | ||
rt395 | 0 | 1,240,885,856 | 1.5% | ||
bitrocker2020 | 0 | 8,594,256,316 | 0.78% | ||
newsflash | 0 | 1,072,789,794,582 | 1.56% | ||
sustainablyyours | 0 | 2,822,167,803 | 2.6% | ||
yehey | 0 | 10,435,595,961 | 5.2% | ||
helo | 0 | 7,702,548,001 | 32.5% | ||
zerotoone | 0 | 1,036,043,964 | 2.6% | ||
mahdiyari | 0 | 1,045,481,202,566 | 80% | ||
lorenzor | 0 | 1,347,892,683 | 50% | ||
aboutyourbiz | 0 | 993,610,910 | 5.2% | ||
chinito | 0 | 2,560,109,964 | 2.6% | ||
alexander.alexis | 0 | 39,844,730,811 | 65% | ||
ew-and-patterns | 0 | 8,602,265,393 | 3% | ||
hhayweaver | 0 | 1,009,078,305 | 1.3% | ||
techken | 0 | 36,659,579,039 | 50% | ||
princessmewmew | 0 | 6,891,735,441 | 2.6% | ||
diabolika | 0 | 727,493,566 | 2.6% | ||
pipiczech | 0 | 1,942,489,800 | 5.2% | ||
binkyprod | 0 | 2,790,090,105 | 2.6% | ||
ludmila.kyriakou | 0 | 9,179,996,070 | 19.5% | ||
toofasteddie | 0 | 138,784,183,020 | 30% | ||
eturnerx | 0 | 39,632,696,045 | 0.9% | ||
flatman | 0 | 4,546,837,604 | 5.2% | ||
samest | 0 | 7,633,086,330 | 50% | ||
analealsuarez | 0 | 495,608,223 | 32.5% | ||
minnowbooster | 0 | 1,226,427,949,433 | 20% | ||
howo | 0 | 1,918,202,132,714 | 65% | ||
tsoldovieri | 0 | 6,760,784,576 | 32.5% | ||
steemwizards | 0 | 3,959,457,215 | 5.2% | ||
neumannsalva | 0 | 3,435,070,492 | 2.6% | ||
stayoutoftherz | 0 | 83,415,181,110 | 1.3% | ||
abigail-dantes | 0 | 24,037,062,393 | 65% | ||
coindevil | 0 | 2,766,488,389 | 4.16% | ||
bambukah | 0 | 2,098,670,297 | 8.75% | ||
zonguin | 0 | 2,333,475,637 | 12.5% | ||
investingpennies | 0 | 14,061,716,465 | 5.2% | ||
francosteemvotes | 0 | 3,475,981,155 | 25% | ||
prapanth | 0 | 872,679,137 | 2.6% | ||
martibis | 0 | 1,274,709,905 | 1.04% | ||
travelingmercies | 0 | 1,175,756,323 | 5.2% | ||
redrica | 0 | 1,703,294,950 | 2.6% | ||
appleskie | 0 | 590,829,747 | 3.64% | ||
iamphysical | 0 | 12,971,299,831 | 90% | ||
hdmed | 0 | 1,546,236,417 | 5.2% | ||
zest | 0 | 917,888,382 | 32.5% | ||
felixrodriguez | 0 | 487,278,370 | 35% | ||
zyx066 | 0 | 6,264,029,370 | 2.6% | ||
chrisdavidphoto | 0 | 964,976,307 | 1.56% | ||
revo | 0 | 4,849,181,535 | 5.2% | ||
felander | 0 | 25,551,166,662 | 5% | ||
azulear | 0 | 1,828,573,739 | 100% | ||
psicoluigi | 0 | 802,161,185 | 50% | ||
nerdnews | 0 | 940,005,911 | 5.2% | ||
wilians | 0 | 505,413,688 | 32.5% | ||
stickchumpion | 0 | 784,162,595 | 2.6% | ||
noloafing | 0 | 532,841,130 | 16.25% | ||
thelordsharvest | 0 | 5,785,001,153 | 5.2% | ||
evildido | 0 | 1,453,385,738 | 12.5% | ||
bradfordtennyson | 0 | 1,047,437,636 | 2.6% | ||
trevorpetrie | 0 | 2,434,717,910 | 2.6% | ||
aidefr | 0 | 5,005,466,858 | 18.75% | ||
torico | 0 | 1,324,020,569 | 1.71% | ||
yogacoach | 0 | 4,572,448,473 | 5% | ||
karaoke1850 | 0 | 2,426,104,432 | 5.2% | ||
fatman | 0 | 7,974,257,097 | 2% | ||
minnowpowerup | 0 | 785,739,898 | 2.6% | ||
majes.tytyty | 0 | 573,569,928 | 10% | ||
cryptononymous | 0 | 1,713,545,786 | 2.6% | ||
upme | 0 | 1,586,910,146 | 2.6% | ||
meno | 0 | 20,505,961,009 | 2.6% | ||
bigdizzle91 | 0 | 588,446,565 | 2.6% | ||
steemed-proxy | 0 | 909,000,175,456 | 5.2% | ||
fatkat | 0 | 1,380,193,191 | 2.59% | ||
investegg | 0 | 39,265,332,028 | 1.6% | ||
peaceandwar | 0 | 812,304,259 | 2.6% | ||
bhoa | 0 | 5,734,251,221 | 32.5% | ||
enzor | 0 | 2,175,241,517 | 32.5% | ||
marcoriccardi | 0 | 955,414,855 | 5.2% | ||
bartosz546 | 0 | 1,927,645,244 | 2.6% | ||
tazbaz | 0 | 502,134,526 | 2.6% | ||
florian-glechner | 0 | 3,632,862,572 | 0.52% | ||
carloserp-2000 | 0 | 5,027,891,038 | 100% | ||
battebilly | 0 | 516,680,380 | 2.6% | ||
notb4mycoffee | 0 | 3,064,353,931 | 5.2% | ||
silverwhale | 0 | 1,390,637,331 | 4.68% | ||
dejan.vuckovic | 0 | 609,394,012 | 2.6% | ||
lottje | 0 | 565,052,488 | 65% | ||
sunsea | 0 | 3,395,438,111 | 2.6% | ||
postpromoter | 0 | 2,120,333,518,936 | 65% | ||
bluefinstudios | 0 | 2,671,968,420 | 1.56% | ||
steveconnor | 0 | 3,844,559,583 | 2.6% | ||
sankysanket18 | 0 | 1,472,861,426 | 32.5% | ||
dbddv01 | 0 | 1,491,323,564 | 12.5% | ||
dumitriu | 0 | 983,447,337 | 2.6% | ||
nicole-st | 0 | 4,894,089,192 | 2.6% | ||
aboutcoolscience | 0 | 90,833,950,672 | 65% | ||
mytechtrail | 0 | 58,873,729,473 | 15% | ||
hanzappedfirst | 0 | 4,028,071,906 | 5.2% | ||
skycae | 0 | 647,787,980 | 5.2% | ||
robotics101 | 0 | 4,126,909,527 | 25% | ||
lpv | 0 | 1,606,580,249 | 4.68% | ||
punchline | 0 | 14,131,537,227 | 5.2% | ||
howiemac | 0 | 583,113,025 | 2.6% | ||
gentleshaid | 0 | 20,452,927,411 | 100% | ||
statorcrime | 0 | 828,047,444 | 12.5% | ||
zipsardinia | 0 | 623,356,018 | 5.2% | ||
duke77 | 0 | 1,000,695,258 | 6.25% | ||
danaedwards | 0 | 699,261,855 | 5.2% | ||
r00sj3 | 0 | 113,819,315,024 | 32.5% | ||
sco | 0 | 19,853,145,045 | 65% | ||
anikekirsten | 0 | 2,890,884,902 | 32.5% | ||
ennyta | 0 | 987,399,645 | 50% | ||
stahlberg | 0 | 1,190,429,985 | 2.6% | ||
gabrielatravels | 0 | 1,098,628,903 | 1.82% | ||
cordeta | 0 | 915,813,991 | 5.2% | ||
carn | 0 | 1,395,968,469 | 4.68% | ||
branbello | 0 | 1,427,742,070 | 12.01% | ||
intrepidphotos | 0 | 1,816,989,692,790 | 48.75% | ||
fineartnow | 0 | 3,440,982,831 | 2.6% | ||
hijosdelhombre | 0 | 41,537,994,141 | 40% | ||
yoghurt | 0 | 2,311,918,519 | 5.2% | ||
steemvault | 0 | 1,937,096,798 | 5.2% | ||
steem4all | 0 | 1,129,272,684 | 2.6% | ||
shinedojo | 0 | 664,047,859 | 5.2% | ||
fragmentarion | 0 | 16,142,155,177 | 65% | ||
bennettitalia | 0 | 40,071,165,289 | 25% | ||
hadji | 0 | 739,222,749 | 100% | ||
utube | 0 | 4,225,355,513 | 5.2% | ||
jigstrike | 0 | 1,668,898,823 | 2.6% | ||
neneandy | 0 | 5,976,280,879 | 5.2% | ||
real2josh | 0 | 610,382,526 | 32.5% | ||
soufiani | 0 | 2,680,517,782 | 2.08% | ||
sportscontest | 0 | 5,068,278,366 | 5.2% | ||
itharagaian | 0 | 693,003,818 | 12.5% | ||
pandasquad | 0 | 1,634,177,114 | 5.2% | ||
stemng | 0 | 26,655,276,464 | 100% | ||
kingabesh | 0 | 2,020,483,382 | 50% | ||
miguelangel2801 | 0 | 791,512,637 | 50% | ||
mproxima | 0 | 1,256,883,672 | 2.6% | ||
didic | 0 | 1,792,666,105 | 2.6% | ||
unconditionalove | 0 | 540,888,404 | 2.5% | ||
emiliomoron | 0 | 113,422,196,625 | 50% | ||
obamike | 0 | 625,114,303 | 32.5% | ||
mamun123456 | 0 | 966,056,857 | 2.6% | ||
dexterdev | 0 | 2,665,576,544 | 32.5% | ||
nwjordan | 0 | 769,157,276 | 5.2% | ||
themonkeyzuelans | 0 | 918,446,626 | 2.6% | ||
photohunt | 0 | 3,494,074,477 | 5.2% | ||
geopolis | 0 | 4,335,688,928 | 65% | ||
ajfernandez | 0 | 768,742,320 | 100% | ||
robertbira | 0 | 7,038,210,107 | 16.25% | ||
the.chiomz | 0 | 1,108,067,764 | 55% | ||
alexdory | 0 | 9,681,794,887 | 65% | ||
takowi | 0 | 93,378,852,604 | 5.2% | ||
irgendwo | 0 | 9,979,235,653 | 5.2% | ||
flugschwein | 0 | 3,386,119,098 | 55.25% | ||
charitybot | 0 | 4,728,540,767 | 100% | ||
cyprianj | 0 | 12,668,154,941 | 50% | ||
kieranstone | 0 | 1,049,704,044 | 1.71% | ||
francostem | 0 | 9,032,886,765 | 65% | ||
endopediatria | 0 | 695,567,907 | 20% | ||
croctopus | 0 | 1,543,944,201 | 100% | ||
zipporah | 0 | 2,551,273,811 | 1.04% | ||
thomasthewolf | 0 | 82,022,368,625 | 94% | ||
superlotto | 0 | 16,729,542,418 | 5.2% | ||
djoi | 0 | 1,998,618,900 | 50% | ||
reazuliqbal | 0 | 27,855,679,855 | 5% | ||
positiveninja | 0 | 977,900,225 | 2.6% | ||
miroslavrc | 0 | 602,619,196 | 1.3% | ||
vonaurolacu | 0 | 1,445,177,020 | 2.6% | ||
scottcbusiness | 0 | 954,951,357 | 2.6% | ||
tomastonyperez | 0 | 17,009,939,180 | 50% | ||
bil.prag | 0 | 1,780,007,276 | 0.26% | ||
elvigia | 0 | 11,144,383,820 | 50% | ||
bestboom | 0 | 1,400,185,402 | 5% | ||
sanderjansenart | 0 | 4,324,804,957 | 2.6% | ||
vittoriozuccala | 0 | 1,911,151,382 | 2.6% | ||
schlafhacking | 0 | 379,713,106,786 | 100% | ||
qberry | 0 | 3,256,700,040 | 2.6% | ||
rambutan.art | 0 | 1,206,029,929 | 5.2% | ||
greddyforce | 0 | 595,022,702 | 1.92% | ||
flyerchen | 0 | 889,545,812 | 2.6% | ||
blainjones | 0 | 753,032,946 | 0.52% | ||
c0wtschpotato | 0 | 515,949,288 | 2.6% | ||
therising | 0 | 89,568,033,633 | 5.2% | ||
cryptocoinkb | 0 | 1,929,525,271 | 2.6% | ||
gifty-e | 0 | 569,642,535 | 80% | ||
de-stem | 0 | 35,817,648,971 | 64.35% | ||
imcore | 0 | 916,218,692 | 10% | ||
serylt | 0 | 2,995,108,169 | 63.7% | ||
gogreenbuddy | 0 | 5,274,829,885 | 5.2% | ||
josedelacruz | 0 | 4,190,174,560 | 50% | ||
lorenzopistolesi | 0 | 6,267,225,821 | 2.6% | ||
charitymemes | 0 | 524,959,327 | 100% | ||
mariusfebruary | 0 | 601,339,508 | 2.08% | ||
outtheshellvlog | 0 | 788,677,437 | 2.6% | ||
erickyoussif | 0 | 807,188,659 | 100% | ||
meanbees | 0 | 992,544,377 | 0.5% | ||
michaelwrites | 0 | 862,171,397 | 32.5% | ||
indigoocean | 0 | 1,239,715,281 | 2.6% | ||
deholt | 0 | 3,794,426,620 | 55.25% | ||
anneporter | 0 | 4,904,956,193 | 19.5% | ||
steem.services | 0 | 3,039,811,389 | 1.25% | ||
diabonua | 0 | 4,502,297,885 | 2.6% | ||
crystalhuman | 0 | 1,123,694,296 | 65% | ||
minerthreat | 0 | 650,928,145 | 2.6% | ||
stevenwood | 0 | 2,550,249,861 | 1.73% | ||
temitayo-pelumi | 0 | 4,259,137,301 | 50% | ||
andrick | 0 | 860,574,290 | 50% | ||
yusvelasquez | 0 | 97,404,535,453 | 50% | ||
motherofalegend | 0 | 10,633,840,757 | 32.5% | ||
doctor-cog-diss | 0 | 58,086,543,127 | 65% | ||
marcuz | 0 | 1,824,145,936 | 32.5% | ||
muelli | 0 | 75,486,034,167 | 50% | ||
cooltivar | 0 | 2,639,024,451 | 1.04% | ||
uche-nna | 0 | 5,756,755,164 | 4.16% | ||
anaestrada12 | 0 | 1,924,665,419 | 100% | ||
linco | 0 | 1,300,026,714 | 4.5% | ||
cheese4ead | 0 | 3,330,493,903 | 2.6% | ||
blewitt | 0 | 1,542,644,647 | 0.31% | ||
drsensor | 0 | 1,424,418,441 | 52% | ||
revueh | 0 | 1,107,105,373 | 25% | ||
olumzy | 0 | 635,387,084 | 1.56% | ||
ilovecryptopl | 0 | 855,064,168 | 4.16% | ||
bflanagin | 0 | 5,982,188,519 | 2.6% | ||
armandosodano | 0 | 13,645,369,936 | 2.6% | ||
sadbear | 0 | 511,593,109 | 2.6% | ||
marivic10 | 0 | 1,110,680,958 | 3.12% | ||
goblinknackers | 0 | 71,949,622,076 | 7% | ||
reinaseq | 0 | 6,739,747,767 | 100% | ||
vixmemon | 0 | 1,521,111,550 | 3.9% | ||
honeycup-waters | 0 | 518,291,709 | 2.6% | ||
yaelg | 0 | 1,040,271,667 | 1.56% | ||
minuetoacademy | 0 | 884,906,423 | 5.2% | ||
kylealex | 0 | 4,739,807,760 | 10% | ||
dlike | 0 | 9,577,489,703 | 5% | ||
cleanplanet | 0 | 56,572,200,360 | 6.25% | ||
fran.frey | 0 | 4,187,498,601 | 50% | ||
perpetuum-lynx | 0 | 1,986,886,462 | 63.7% | ||
pboulet | 0 | 26,788,796,238 | 20% | ||
javyeslava.photo | 0 | 957,200,487 | 2.34% | ||
marcocasario | 0 | 15,756,610,619 | 2.6% | ||
josesalazar200 | 0 | 2,496,433,891 | 5.2% | ||
bobby.madagascar | 0 | 1,489,092,592 | 5% | ||
stem-espanol | 0 | 50,616,704,914 | 100% | ||
cliffagreen | 0 | 1,069,816,850 | 10% | ||
aleestra | 0 | 11,898,047,449 | 80% | ||
palasatenea | 0 | 1,543,474,339 | 2.6% | ||
the.success.club | 0 | 2,548,328,244 | 2.6% | ||
chickenmeat | 0 | 964,793,174 | 2.6% | ||
meanroosterfarm | 0 | 1,296,154,343 | 32.5% | ||
teemike | 0 | 815,630,163 | 50% | ||
dubignyp | 0 | 1,841,953,010 | 17.5% | ||
brianoflondon | 0 | 19,268,885,956 | 0.78% | ||
giulyfarci52 | 0 | 1,711,757,004 | 50% | ||
steemcryptosicko | 0 | 11,036,049,499 | 1.04% | ||
cakemonster | 0 | 4,746,637,719 | 5.2% | ||
sbi10 | 0 | 18,029,047,646 | 21.53% | ||
cowpatty | 0 | 1,363,041,590 | 32.5% | ||
stem.witness | 0 | 3,833,242,740 | 65% | ||
witkowskipawel | 0 | 850,554,773 | 2.6% | ||
devann | 0 | 1,883,672,981 | 0.52% | ||
autobodhi | 0 | 691,659,832 | 5.2% | ||
robmojo | 0 | 955,937,738 | 6.5% | ||
bluerobo | 0 | 102,616,537,132 | 100% | ||
wilmer14molina | 0 | 1,203,890,420 | 50% | ||
bit4bit | 0 | 7,306,925,923 | 5.2% | ||
vaultec | 0 | 6,453,326,355 | 12% | ||
steemstorage | 0 | 6,227,037,233 | 5.2% | ||
aqua.nano | 0 | 951,963,425 | 32.5% | ||
jtm.support | 0 | 4,668,673,743 | 65% | ||
edithbdraw | 0 | 556,509,418 | 2.6% | ||
crowdwitness | 0 | 15,945,259,662 | 32.5% | ||
hairgistix | 0 | 2,819,239,895 | 2.6% | ||
limka | 0 | 69,285,527 | 74.23% | ||
sofiag | 0 | 9,999,721,420 | 30.4% | ||
bluemaskman | 0 | 553,841,458 | 2.6% | ||
steemean | 0 | 10,062,065,084 | 5% | ||
proxy-pal | 0 | 1,032,552,908 | 5.2% | ||
newton666 | 0 | 1,486,154,296 | 100% | ||
kggymlife | 0 | 3,221,883,711 | 20% | ||
ambifokus | 0 | 515,249,382 | 0.78% | ||
mfblack | 0 | 657,328,682 | 4.75% | ||
elements5 | 0 | 1,070,739,672 | 2.6% | ||
photographercr | 0 | 2,200,976,704 | 1.04% | ||
epicdice | 0 | 3,666,545,826 | 1.56% | ||
iamsaray | 0 | 1,498,497,198 | 2.6% | ||
monsterjamgold | 0 | 982,458,664 | 10% | ||
beerlover | 0 | 1,980,253,418 | 1.56% | ||
newtrailers | 0 | 938,282,794 | 5.2% | ||
tggr | 0 | 1,144,752,298 | 2.6% | ||
aicu | 0 | 46,204,671,342 | 5.2% | ||
walterprofe | 0 | 2,903,957,390 | 32.5% | ||
afarina46 | 0 | 1,807,547,017 | 32.5% | ||
titan-c | 0 | 761,697,515 | 5.2% | ||
davidtron | 0 | 583,556,514 | 4.16% | ||
mind.force | 0 | 1,162,189,491 | 1.3% | ||
milu-the-dog | 0 | 711,945,942 | 5% | ||
triplea.bot | 0 | 1,169,301,326 | 5% | ||
steem.leo | 0 | 6,158,802,984 | 5% | ||
stemgeeks | 0 | 31,981,848,990 | 100% | ||
stemcuration | 0 | 2,087,875,511 | 100% | ||
babytarazkp | 0 | 3,913,142,092 | 40% | ||
aicoding | 0 | 521,032,662 | 2.6% | ||
abh12345.stem | 0 | 1,819,349,050 | 100% | ||
knightsunited | 0 | 927,543,243 | 5.2% | ||
nazer | 0 | 2,426,840,850 | 32.5% | ||
rosana6 | 0 | 1,233,093,200 | 2.6% | ||
shtup | 0 | 1,155,743,695 | 1.04% | ||
electronico | 0 | 205,083,650 | 100% | ||
stem.alfa | 0 | 2,495,452,703 | 100% | ||
steemstem-trig | 0 | 5,342,511,582 | 65% | ||
yggdrasil.laguna | 0 | 1,204,419,790 | 100% | ||
mrhaldar | 0 | 637,829,133 | 2.6% | ||
atheistrepublic | 0 | 5,251,394,762 | 2.6% | ||
ibt-survival | 0 | 9,035,624,954 | 10% | ||
riazud | 0 | 593,614,040 | 2.6% | ||
delilhavores | 0 | 1,247,372,381 | 6.5% | ||
hjmarseille | 0 | 1,826,844,029 | 45.5% | ||
roamingsparrow | 0 | 769,840,939 | 2.6% | ||
steemdiamond | 0 | 648,161,487 | 5.2% | ||
abachon | 0 | 1,738,793,448 | 5.2% | ||
ribary | 0 | 1,735,731,866 | 2.5% | ||
chapmain | 0 | 126,946,568 | 100% | ||
onestop | 0 | 882,941,594 | 2.6% | ||
mice-k | 0 | 450,246,350 | 5% | ||
mengene | 0 | 957,804,044 | 32.5% | ||
peterale | 0 | 10,620,286,117 | 2.6% | ||
andreina57 | 0 | 677,408,932 | 32.5% | ||
ukulima | 0 | 41,733,718,871 | 5% | ||
stuntman.mike | 0 | 8,562,124,477 | 100% | ||
blue-witness | 0 | 1,714,038,148 | 100% | ||
solcycler | 0 | 847,953,616 | 32.5% | ||
laruche | 0 | 965,892,028,434 | 25% | ||
ykretz | 0 | 2,251,139,040 | 5% | ||
alphahippie | 0 | 596,273,377 | 32.5% | ||
stemsocial | 0 | 404,980,051,177 | 65% | ||
kyleana | 0 | 1,152,427,071 | 32.5% | ||
peterpanpan | 0 | 703,554,022 | 1.04% | ||
dcityrewards | 0 | 160,842,253,801 | 5% | ||
holoferncro | 0 | 17,366,629,354 | 10% | ||
gradeon | 0 | 714,676,655 | 5.2% | ||
the100 | 0 | 2,490,073,919 | 2.6% | ||
hiveonboard | 0 | 1,292,566,377 | 2.6% | ||
authentika | 0 | 1,318,273,526 | 12.5% | ||
hive-143869 | 0 | 29,295,589,698 | 12.5% | ||
ninnu | 0 | 858,248,543 | 0.39% | ||
kiemis | 0 | 3,739,943,233 | 0.39% | ||
kiemurainen | 0 | 564,772,058 | 2.18% | ||
taniagonzalez | 0 | 537,400,308 | 10% | ||
schmidi | 0 | 1,596,060,932 | 2.34% | ||
jsalvage | 0 | 755,187,227 | 32.5% | ||
quinnertronics | 0 | 6,576,663,634 | 3% | ||
hive-108278 | 0 | 556,241,661 | 32.5% | ||
jelly-cz | 0 | 1,668,443,362 | 100% | ||
sevenoh-fiveoh | 0 | 530,861,247 | 2.6% | ||
treefiddybruh | 0 | 1,353,140,337 | 2.6% | ||
aabcent | 0 | 10,414,217,846 | 4.16% | ||
hive-world | 0 | 555,069,610 | 2.6% | ||
artsyproxy | 0 | 14,349,221,375 | 5.2% | ||
pfwaus | 0 | 1,224,435,194 | 100% | ||
altleft | 0 | 20,002,850,116 | 0.05% | ||
liriadis | 0 | 753,312,191 | 32.5% | ||
surya2adiga | 0 | 426,592,920 | 2.6% | ||
gonklavez9 | 0 | 1,086,794,792 | 65% | ||
nbs.gmbh | 0 | 393,860,211,810 | 5.2% | ||
dorkpower | 0 | 3,188,548,752 | 100% | ||
chubb149 | 0 | 2,252,440,433 | 7.8% | ||
stemcur | 0 | 822,070,276 | 80% | ||
cosplay.hadr | 0 | 1,168,314,233 | 5.2% | ||
hadrgames | 0 | 1,200,992,365 | 5.2% | ||
rawecz | 0 | 1,029,994,833 | 5.2% | ||
maar | 0 | 615,896,749 | 65% | ||
brofund-stem | 0 | 3,699,886,979 | 100% | ||
labeba1969 | 0 | 1,198,765,253 | 2.6% | ||
meritocracy | 0 | 58,525,365,361 | 0.52% | ||
stemline | 0 | 6,398,418,196 | 50% | ||
sillybilly | 0 | 500,294,718 | 100% | ||
meestemboom | 0 | 486,416,524 | 25% | ||
academiccuration | 0 | 913,462,683 | 100% | ||
dcrops | 0 | 16,955,959,325 | 2.5% | ||
scooter77.stem | 0 | 504,497,198 | 50% | ||
krishu.stem | 0 | 844,606,409 | 100% | ||
dronegirl | 0 | 280,726,527 | 100% | ||
adamada.stem | 0 | 2,174,100,718 | 100% | ||
bobthebuilder2 | 0 | 1,039,027,813 | 6.5% | ||
nanggroe1 | 0 | 1,784,762,832 | 40% | ||
limn | 0 | 735,344,193 | 2.6% | ||
drricksanchez | 0 | 11,839,928,599 | 2.6% | ||
joseluis91 | 0 | 662,517,807 | 5.2% | ||
miroslaviv | 0 | 477,208,751 | 2.6% | ||
maxelitereturned | 0 | 1,479,501,602 | 32.5% | ||
juecoree.stem | 0 | 578,300,018 | 100% | ||
okluvmee | 0 | 2,032,443,105 | 2.6% | ||
luisestaba23 | 0 | 1,134,470,978 | 50% | ||
krrizjos18 | 0 | 2,926,034,360 | 32.5% | ||
holovision.stem | 0 | 133,389,294 | 50% | ||
lxsxl | 0 | 2,017,868,640 | 2.6% | ||
jessicaossom | 0 | 3,649,675,349 | 2.6% | ||
drhueso | 0 | 720,169,884 | 2.6% | ||
specialfeelings | 0 | 464,823,117 | 2.6% | ||
pinkfloyd878 | 0 | 4,307,295,296 | 100% | ||
solominer.stake | 0 | 1,032,912,907 | 100% | ||
star.stem | 0 | 1,602,118,916 | 50% | ||
solominer.stem | 0 | 779,400,090 | 100% | ||
aries90 | 0 | 40,486,529,753 | 5.2% | ||
rencongland | 0 | 3,242,780,959 | 16% | ||
cugel | 0 | 789,861,098 | 2.6% | ||
migka | 0 | 3,621,005,754 | 100% | ||
marshmellowman | 0 | 13,690,883,167 | 64% | ||
sanjie | 0 | 693,148,138 | 5.2% | ||
shadowalker21 | 0 | 1,096,932,746 | 32.5% | ||
cryptothesis | 0 | 2,747,699,786 | 5.2% | ||
dystopia2030 | 0 | 1,042,190,243 | 65% | ||
waivio.curator | 0 | 1,640,610,521 | 3.04% | ||
waivio.welcome | 0 | 455,726,774 | 0.93% | ||
ehizgabriel | 0 | 1,428,878,964 | 32.5% | ||
saboin.stem | 0 | 784,512,049 | 100% | ||
waivio.com | 0 | 304,018,075 | 0.93% | ||
zzz.accounting | 0 | 2,742,424,292 | 100% | ||
albuslucimus | 0 | 1,129,558,006 | 2.6% | ||
benwickenton | 0 | 1,305,013,607 | 5.2% | ||
pob-curator | 0 | 308,362,942 | 13% | ||
pal-curator | 0 | 501,140,311 | 60% | ||
neoxag-curator | 0 | 996,763,985 | 38% | ||
stem-curator | 0 | 684,554,785 | 100% | ||
vyb-curator | 0 | 0 | 1% | ||
dondido | 0 | 21,436,072,648 | 5.2% | ||
independance | 0 | 710,215,683 | 12.5% | ||
amafable07 | 0 | 558,857,825 | 32.5% | ||
temileke | 0 | 1,012,989,877 | 32.5% | ||
psychophilo | 0 | 0 | 100% |
 | <div class="phishy"><u><h4>You have received a __1UP__ from @kwskicky!</h4></u></div> The following @oneup-cartel family members will soon upvote your post:<br> __<code>@stem-curator, @vyb-curator, @pob-curator, @neoxag-curator, @pal-curator</code>__ <br>_And they will bring !PIZZA 🍕_ -|- <sup>[Learn more](https://peakd.com/hive-102223/@flauwy/the-curation-cartel-1up-trigger-smart-voting-mana-and-high-delegation-returns-for-14-different-tribes) about our delegation service to earn daily rewards. Join the family on [Discord](https://discord.gg/H5mxvTrexm).</sup>
author | curation-cartel |
---|---|
permlink | re-node-red-the-swiss-army-knife-for-internet-of-things-20220502t184930z |
category | hive-196387 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-02 18:49:33 |
last_update | 2022-05-02 18:49:33 |
depth | 1 |
children | 0 |
last_payout | 2022-05-09 18:49:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 739 |
author_reputation | 1,123,882,653,763 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,847,460 |
net_rshares | 25,804,083,036 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 2,964,496,571 | 20% | ||
dustbunny | 0 | 22,839,586,465 | 5.93% |
Good to see that the bulk of the plants is doing great. The interface will provide ground for a lot of manipulations to see how different variables affect the growth of individual plants. Good work!
author | gentleshaid |
---|---|
permlink | re-robotics101-rbapla |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"peakd/2022.04.6"} |
created | 2022-05-03 07:17:30 |
last_update | 2022-05-03 07:17:30 |
depth | 1 |
children | 1 |
last_payout | 2022-05-10 07:17:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 198 |
author_reputation | 402,911,091,952,401 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,862,564 |
net_rshares | 25,510,657,241 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 12,275,925,114 | 80% | ||
dustbunny | 0 | 11,468,169,916 | 2.94% | ||
stemgeeks | 0 | 1,699,797,782 | 6% | ||
stemcuration | 0 | 66,764,429 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% |
Yes, I will try to dial the parameters according to the plant's needs :) Thank you
author | robotics101 |
---|---|
permlink | re-gentleshaid-rbgypk |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"peakd/2022.05.4"} |
created | 2022-05-06 16:19:42 |
last_update | 2022-05-06 16:19:42 |
depth | 2 |
children | 0 |
last_payout | 2022-05-13 16:19:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.009 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 13,003,325,382,700 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,966,558 |
net_rshares | 32,698,415,117 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 30,934,045,416 | 8.31% | ||
stemgeeks | 0 | 1,697,743,372 | 6% | ||
stemcuration | 0 | 66,626,329 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% |
<center>[](https://hivebuzz.me/@robotics101) **Congratulations @robotics101**! You raised your level and are now a **Minnow**!</center> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
author | hivebuzz |
---|---|
permlink | notify-robotics101-20220512t234433 |
category | hive-196387 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-05-12 23:44:33 |
last_update | 2022-05-12 23:44:33 |
depth | 1 |
children | 0 |
last_payout | 2022-05-19 23:44:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 423 |
author_reputation | 369,402,020,241,833 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,155,963 |
net_rshares | 1,013,053,818 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gangstalking | 0 | 1,013,053,818 | 0.5% |
Dear @robotics101, we need your help!<br><br>The Hivebuzz proposal already got important support from the community. However, it lost its funding a few days ago and only needs a few more HP to get funded again.<br><br>May we ask you to support it so our team can continue its work this year?<br>You can do it on [Peakd](https://peakd.com/me/proposals/199), [ecency](https://ecency.com/proposals/199), [Hive.blog](https://wallet.hive.blog/proposals) or [using HiveSigner](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true).<br>https://peakd.com/me/proposals/199<br><br>Your support would be really helpful and you could make a difference.<br> Thank you!
author | hivebuzz |
---|---|
permlink | txt-robotics101-20220530t093656 |
category | hive-196387 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-05-30 09:36:57 |
last_update | 2022-05-30 09:36:57 |
depth | 1 |
children | 0 |
last_payout | 2022-06-06 09:36:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 694 |
author_reputation | 369,402,020,241,833 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,637,553 |
net_rshares | 0 |
Very interesting post, thank you for contributing to the community! !1UP 
author | kwskicky |
---|---|
permlink | re-robotics101-rb9oxn |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"peakd/2022.04.6"} |
created | 2022-05-02 18:05:48 |
last_update | 2022-05-02 18:05:48 |
depth | 1 |
children | 1 |
last_payout | 2022-05-09 18:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 212 |
author_reputation | 34,341,734,503,791 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,846,423 |
net_rshares | 25,890,885,471 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 10,638,392,466 | 69% | ||
dustbunny | 0 | 13,425,321,384 | 3.48% | ||
stemgeeks | 0 | 1,756,594,355 | 6% | ||
stemcuration | 0 | 70,577,266 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% |
Thank you :)
author | robotics101 |
---|---|
permlink | re-kwskicky-202256t10496771z |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"ecency/3.0.28-mobile","format":"markdown+html"} |
created | 2022-05-06 08:49:06 |
last_update | 2022-05-06 08:49:06 |
depth | 2 |
children | 0 |
last_payout | 2022-05-13 08:49:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 13,003,325,382,700 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,955,997 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yggdrasil.laguna | 0 | 0 | 3% |
I am glad to read from you again and to get some updates from the mini-garden. One important test will be to taste the products, to see how good they are. Soon soon I guess :) > Then I came across Node-RED, a graphical development tool based on JavaScript and having many modules (called nodes) allowing to realize all the functionalities I wanted, moreover it gives me a reason to learn a new programming language, in short the perfect solution! As you are now a JS expert, will you join us to develop the future STEMsocial app? (You can now imagine me diabolically laughing.) > To create an account for your bot, you will have to use another bot that will guide you along, and give you important information to communicate with your bot, it is called Bot Father. More seriously, this system of bots handling other bots seem a bit weird to me. Why can’t you just directly program the initial bot? I don’t understand the reason behind this layer of complexity.
author | lemouth |
---|---|
permlink | rbf27p |
category | hive-196387 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-05 15:40:42 |
last_update | 2022-05-05 15:40:42 |
depth | 1 |
children | 2 |
last_payout | 2022-05-12 15:40:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 965 |
author_reputation | 338,011,164,701,274 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,935,721 |
net_rshares | 29,333,100,028 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 12,475,948,243 | 80% | ||
dustbunny | 0 | 13,795,530,855 | 3.5% | ||
stemgeeks | 0 | 2,881,421,503 | 10% | ||
stemcuration | 0 | 145,612,775 | 10% | ||
yggdrasil.laguna | 0 | 9,040,637 | 5% | ||
saboin.stem | 0 | 25,546,015 | 10% |
Thank you, I'm glad to see you back on the chain :) I already had the chance to taste one strawberry yesterday !! First one of the year :) > As you are now a JS expert, will you join us to develop the future STEMsocial app? (You can now imagine me diabolically laughing.) I have just started, so I don't know if I could be very useful, but if at some point you need help finding bugs I can try ^^ Yes I can imagine your diabolical laugh very vividly :P > More seriously, this system of bots handling other bots seem a bit weird to me. Why can’t you just directly program the initial bot? I don’t understand the reason behind this layer of complexity. You just have to use this bot to create the ids of the account used by your bot, it's like asking for an API key on the Discord App but instead of a normal page, Telegram uses a chatbot. Thank you for passing by :)
author | robotics101 |
---|---|
permlink | re-lemouth-rbgz05 |
category | hive-196387 |
json_metadata | {"tags":["hive-196387"],"app":"peakd/2022.05.4"} |
created | 2022-05-06 16:26:03 |
last_update | 2022-05-06 16:26:03 |
depth | 2 |
children | 1 |
last_payout | 2022-05-13 16:26:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 870 |
author_reputation | 13,003,325,382,700 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,966,704 |
net_rshares | 121,163,926,496 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lemouth | 0 | 118,108,712,543 | 5% | ||
stemgeeks | 0 | 2,875,609,046 | 10% | ||
stemcuration | 0 | 145,224,911 | 10% | ||
yggdrasil.laguna | 0 | 8,982,490 | 5% | ||
saboin.stem | 0 | 25,397,506 | 10% |
> Thank you, I'm glad to see you back on the chain :) I already had the chance to taste one strawberry yesterday !! First one of the year :) Yes, finally :) I should take a picture of my 12 plants for you. They are however outdoor. If I think about it, you will get one tomorrow. > I have just started, so I don't know if I could be very useful, but if at some point you need help finding bugs I can try ^^ Yes I can imagine your diabolical laugh very vividly :P @bambukah and I will remember this, for sure. > You just have to use this bot to create the ids of the account used by your bot, it's like asking for an API key on the Discord App but instead of a normal page, Telegram uses a chatbot. ah OK now I got it. Thanks for clarifying and the nice comparison! Cheers!
author | lemouth |
---|---|
permlink | rbhdxb |
category | hive-196387 |
json_metadata | {"users":["bambukah"],"app":"hiveblog/0.1"} |
created | 2022-05-06 21:48:48 |
last_update | 2022-05-06 21:48:48 |
depth | 3 |
children | 0 |
last_payout | 2022-05-13 21:48:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 779 |
author_reputation | 338,011,164,701,274 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,973,770 |
net_rshares | 32,393,195,175 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 16,292,747,640 | 100% | ||
dustbunny | 0 | 14,331,659,913 | 4.01% | ||
stemgeeks | 0 | 1,701,884,928 | 6% | ||
stemcuration | 0 | 66,902,694 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% |
<center>PIZZA! PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments: @curation-cartel<sub>(17/20)</sub> tipped @robotics101 (x1) <sub>Please <a href="https://vote.hive.uno/@pizza.witness">vote for pizza.witness</a>!</sub></center>
author | pizzabot |
---|---|
permlink | re-node-red-the-swiss-army-knife-for-internet-of-things-20220502t220512z |
category | hive-196387 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-02 22:05:12 |
last_update | 2022-05-02 22:05:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-09 22:05:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 254 |
author_reputation | 7,555,460,989,499 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,852,597 |
net_rshares | 25,633,121,022 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 2,952,512,093 | 20% | ||
dustbunny | 0 | 22,680,608,929 | 5.89% |
Thank you . I just found from your article that I can use MQTT Aedes instead of MQTT mosquito. The Dashboard and Telegram nodes will also be helpful also. May I know if there is hardware that is robust . Is ESP32+ relay good enough? !LUV
author | princekham |
---|---|
permlink | re-robotics101-2022102t122253840z |
category | hive-196387 |
json_metadata | {"tags":["stemsocial","stem","iot","nodered","ocd","palnet","neoxian","proofofbrain","technology"],"app":"ecency/3.0.28-vision","format":"markdown+html"} |
created | 2022-10-02 05:52:54 |
last_update | 2022-10-02 05:52:54 |
depth | 1 |
children | 1 |
last_payout | 2022-10-09 05:52:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 124,238,336,401,183 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 117,110,510 |
net_rshares | 0 |
@princekham<sub>(5/5)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a href="https://tribaldex.com/wallet">wallet</a> | <a href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a> <br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
author | luvshares |
---|---|
permlink | re-re-robotics101-2022102t122253840z-20221002t055404z |
category | hive-196387 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-10-02 05:54:03 |
last_update | 2022-10-02 05:54:03 |
depth | 2 |
children | 0 |
last_payout | 2022-10-09 05:54:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 961 |
author_reputation | 5,651,102,754,153 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 117,110,544 |
net_rshares | 0 |
I love seeing this type content showing up in STEMGeeks, but please only post it once not multiple times in different languages.
author | stemgeeks |
---|---|
permlink | rb9ptz |
category | hive-196387 |
json_metadata | {"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@stemgeeks/rb9ptz"} |
created | 2022-05-02 18:25:12 |
last_update | 2022-05-02 18:25:12 |
depth | 1 |
children | 1 |
last_payout | 2022-05-09 18:25:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 97,411,603,235,209 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,846,843 |
net_rshares | 12,713,146,503 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 10,787,613,410 | 69% | ||
stemgeeks | 0 | 1,848,802,515 | 6% | ||
stemcuration | 0 | 76,730,578 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% | ||
guaritosex | 0 | 0 | 10% |
Thank you for your comment! It has been discussed on and off chain many times before... I will try posting both languages in the same post for the next articles ! I thought a lot about posting both languages in the same post for this topic but it was already too long (and a lot of work) so I preferred separating the languages instead of the content (plus it allows me to engage in 2 communities, StemSocial and LaRuche, without crossposting).
author | robotics101 |
---|---|
permlink | re-stemgeeks-202256t104832300z |
category | hive-196387 |
json_metadata | {"tags":["stem"],"app":"ecency/3.0.28-mobile","format":"markdown+html"} |
created | 2022-05-06 08:48:33 |
last_update | 2022-05-06 08:48:33 |
depth | 2 |
children | 0 |
last_payout | 2022-05-13 08:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 445 |
author_reputation | 13,003,325,382,700 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,955,985 |
net_rshares | 31,856,890,490 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 30,078,465,194 | 7.76% | ||
stemgeeks | 0 | 1,710,920,660 | 6% | ||
stemcuration | 0 | 67,504,636 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 0 | 6% |
<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. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-robotics101-node-red-the-swiss-army-knife-for-internet-of-things-20220505t155003451z |
category | hive-196387 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-05-05 15:50:03 |
last_update | 2022-05-05 15:50:03 |
depth | 1 |
children | 0 |
last_payout | 2022-05-12 15:50:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.011 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,918,491,691,707 |
root_title | "Node-Red, the Swiss army knife for Internet Of Things ?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 112,935,997 |
net_rshares | 29,313,281,059 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robotics101 | 0 | 4,498,891,187 | 30% | ||
dustbunny | 0 | 24,814,389,872 | 6.28% |