Quick GUI in Java
Previously we looked at a Java terminal application for generating 'Hello World!', today let's get graphical!
Java is mainly thought of as either an Android app development language or the language of massive corporations, but that is not strictly true. A lot of desktop software that we use daily is quietly developed in Java.
We might not realize we are using a Java app because Java apps do not have a particular 'look', and that is because there are frameworks that give us a lot of control over the appearance of our interfaces.
The two major approaches are called JavaFX and Swing.
JavaFX vs Swing
JavaFX is a modern, actively maintained Java project for developing graphical user interfaces (GUIs).
Modern means it has advanced features like CSS styling, FXML for declarative UI design, and better animation support. It also includes graphics primitives like rectangles and text, 3D features, and a web view.
Swing on the other hand is an older framework (~1998) that's not actively improved any longer but is bundled as default, and while it is is mainly used for maintaining legacy systems, there are still a lot of people who use it due to its simplicity and immediacy.
I was surprised to find out, that a popular Java IDE that I use called IntelliJ is built using Swing.
Due to it being simple and right there ready to use without any additional installation, it also makes it ideal for learning, so many people start with Swing before progressing to JavaFX.
Write a Swing App in 2 Minutes
To demonstrate how quickly you can get a quick and dirty GUI app running in Java let's build a simple example of a question-and-answer dialog box type wizard.
import javax.swing.JOptionPane;
public class Main {
public static void main(String[] args) {
String name = JOptionPane.showInputDialog("Enter your name");
JOptionPane.showMessageDialog(null, "Hello "+name);
}
}
Windowed GUI Apps with Java Swing
You are not restricted to dialog boxes, we can create fully windowed applications with just a few more instructions.
For example, let's make a graphical version of 'Hello World'.
import java.awt.Color;
import java.awt.Font;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class hellogui {
public static void main(String[] args) {
// create a new label
JLabel label = new JLabel();
label.setText("Hello World!");
// set text color to blue
label.setForeground(new Color(0x0000FF));
// create an icon
ImageIcon icon = new ImageIcon("java.png");
label.setIcon(icon);
// create a window ('frame')
JFrame window = new JFrame();
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.add(label);
// make the window fit the contents
window.pack();
window.setVisible(true);
}
}
Notice where we say window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- that is necessary because otherwise, the application will keep running even when the last window is closed. This is because Java doesn't know if you are creating a multi-window app where closing a window might not be the end of your interaction with the software.
Adding Interaction using Buttons and Events
For the final example today let's add some interactivity in the form (sorry) of a button that initiates an action.
Since we are still using the default layout, the order in which we add our form elements matters. In the future you will not be so constrained, we are just sticking to the default layout for brevity right now.
import java.awt.Color;
import java.awt.Font;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class hellogui {
public static void main(String[] args) {
// create a new label
JLabel label = new JLabel();
label.setText("Hello World!");
// set text color to blue
label.setForeground(new Color(0x0000FF));
// create an icon
ImageIcon icon = new ImageIcon("java.png");
label.setIcon(icon);
label.setVisible(true);
// create a window ('frame')
JFrame window = new JFrame();
//window.setLayout(null);
window.setSize(800,600);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// clickable button
JButton button = new JButton("OK");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if(e.getSource()==button) {
label.setText("CLICK!");
}
}});
button.setBounds(0, 120, 250, 50);
window.add(button);
window.add(label);
// make the window fit the contents
window.pack();
window.setVisible(true);
}
}
The button itself is as simple as adding a label, but it has an extra piece where we tell Java that we need to listen out for 'actions' which are the event messages informing us that something has happened.
Our event handler is added right there in our example to keep things all in one code listing, but they need not be if you prefer to separate this out.
The function is passed e
which we interrogate to see if it was generated by the button. If not we ignore it, otherwise we set the label text.
Just to show this is a cross-platform application, here it is developed on Linux, running on a Mac, and without re-compiling :)
Exploring the Possibilities of AI Art with Bilpcoin NFTs Episode 94 BUILDAWHALE SCAM FARM ON #HIVE
Art crafted by the Bilpcoin team with the help of AI we take great pride in our work
IF YOU WANT MORE FREEDOM JOIN BLURT STEEMIT AND THE TON BLOCKCHAIN
Bilpcoin poly
Bilpcon Crypto Talk
Trending page on Hive voting circles and gangs
What is Bilpcoin What is BPC
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS March 14 2023 Bilpcoin
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS FEB 19 2023 Bilpcoin
https://peakd.com/hive-164833/@bilpcoinbpc/you-have-all-witnessed-this-account-being-downvoted-to-a-negative-reputation-for-no-reason
https://blurt.blog/@bilpcoinbpc
https://hive.blog/hive-167922/@bpcvoter1/our-response-to-themarkymark-marcus-buildawhale-usainvote-ipomote-leovoter-gogreenbuddy-and-over-100-of-his-alt-accounts
https://hive.blog/hive-167922/@bpcvoter1/problems
Find links to why we was downvoted on Hive
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/our-goal-is-to-transform-hive-into-a-more-inclusive-space-similar-to-the-user-friendly-atmospheres-of-blurt-and-steemit
https://peakd.com/hive-167922/@bilpcoinbpc/by-standing-together-we-can-create-a-more-inclusive-and-fair-environment-on-hive-as-we-see-on-blurt-and-steemit-we-need-to-get-r
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/actions-indeed-speak-louder-than-words-a-fact-weve-all-observed-individuals-may-talk-a-good-game-a-whole-lot-of-shit-but-their-
https://peakd.com/hive-167922/@bpcvoter3/reply-2-crimsonclad-you-may-consider-yourself-clever
https://peakd.com/hive-167922/@bpcvoter3/reply-to-crimsonclad
https://peakd.com/hive-167922/@bpcvoter3/consider-revising-the-value-plan-as-it-s-not-providing-significant-benefits-to-hive
73,585.851 HP
(2,301,627.566 HP)
A power down is scheduled to happen in 7 days (~7,291.521 HIVE, remaining 6 weeks)
@BUILDAWHALE Received: 2,301,628 HP
blocktrades 2,301,575 HP
@nwjordan 24 HP
@gillianlienmap 23 HP
@epicgames
https://peakd.com/@buildawhale/wallet
https://peakd.com/hive-167922/@bilpcoinbpc/its-been-observed-by-many-that-you-have-not-respected-boundaries-you-have-abused-others-and-caused-distress-to-others-you-might
On HIVE when you cease your actions, we will too. If not, we will continue to advocate and share the truth you may believe you're aware of our accounts, but you're mistaken LOL Accounts are cheap and cost nothing to create a new account
https://peakd.com/hive-167922/@bpcvoter1/let-s-delve-into-the-builda-whale-farm-on-the-hive-gogreenbuddy-who-is-also-colloquially-known-as-the-marky-mark-usainvote
https://steemit.com/@bilpcoinbpc/posts
Hive Emergency: A Call to Action STOP THE BAD DOWNVOTES
We are facing a critical situation on the Hive blockchain, where a small group of individuals is exerting undue influence and control over the community. This group, comprised of a single "whale" and their associated accounts, is using their power to downvote good content, self-vote their own posts, and power down their tokens.
This behavior is having a devastating impact on our community, and it is essential that we take immediate action to address this issue. We propose two key solutions:
We understand that some individuals may be concerned about the rules and moderators. However, it is essential to recognize that the rules are made by the same individuals who are farming the system. Therefore, it is time for us to take matters into our own hands and create a new, better Hive.
We invite you to share your thoughts, ideas, and concerns in the comments below. Together, we can work towards creating a more inclusive, compassionate community for all Hivers.
We've even caught some top Hivers using their alt accounts to fund their own projects and manipulate the system. It is like they are playing a game of Hiveopoly, but instead of rolling dice, they are rolling out downvotes and taking money as they wish
The Bilpcoin team were attacked by Themarkymark gang so, we started investigating and gathering evidence, and before long, we had a whole list of scammers and abusers. And let me tell you, it was a doozy
We are like the superheroes of Hive LOL night night Buildawhale scam farm
Merry Christmas, Hive community! We're excited to share some amazing Santa Claus art crafted by the Bilpcoin team with the help of AI
As we approach the end of the year, the Bilpcoin team would like to extend their warmest wishes to everyone happy Christmas and a prosperous New Year
The Bilpcoin team is shifting its focus towards creating more in-depth content, aiming for less frequent but higher quality posts, potentially once or twice a day
We're ending the day with a bang - introducing two more crazy Santa designs: one happy drunk and one smoking
Their attempts to intimidate and silence their critics are equally concerning. The use of downvotes as a means of censorship is a clear indication of their desperation to maintain their grip on the narrative. But it's not working
https://hive.blog/hive-167922/@themarkymark/re-bpcvoter3-sp2q9h
Don't let the enthusiasm of friends or family members cloud your judgment – crypto is a game where there will always be winners and losers
WE EXPOSED A SUPER FARM ON HIVE
Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts
https://hive.blog/hive-121566/@louis88/re-slobberchops-sp4a2y
At Bilpcoin, we're passionate about what we do, and we're committed to helping our community thrive. If any tribes or individuals need assistance, please don't hesitate to reach out, and we'll do our best to help. We believe in the power of community
https://hive.blog/hive-140217/@themarkymark/re-bpcvoter1-sp87n1
themarkymark (80)in LeoFinance 18 hours ago You are the abuse on Hive hive.blog/hive-167922/@themarkymark/re-bpcvoter3-smp740 LOL TRANSACTIONS DON'T LIE PEOPLE DO PEOPLE LIKE YOU DO Curation reward for BUILDAWHALE COMMENT FARM buildawhale51.108 HP
When investing, we want to emphasize the importance of diversification. It's essential to spread your investments across different assets to minimize risk and maximize returns
https://hive.blog/@kevm/comments
https://hive.blog/@kcgm/comments
Posted using Bilpcoin
https://hive.blog/hive/@trumpman/re-azircon-spk05h
Bad downvotes on Hive are a growing concern that must be addressed. These downvotes not only discourage users from sharing their real thoughts and ideas but also damage the community as a whole, we see many walk away
We're disappointed to see that our work is still being downvoted despite the valuable insights and information we provide
https://hive.blog/hive/@themarkymark/re-bpcvoter1-spolvn
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
The Need for Change
We've been having heated discussions on Hive, and off Hive it's time to set the record straight. The Buildawhale scam farm has been exposed, and it's time for them to face the consequences.
Concerns about Downvotes on Hive
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
https://peakd.com/@elmerlin/activities
That is really a nice tip for Java!
Exploring the Possibilities of AI Art with Bilpcoin NFTs Episode 94 BUILDAWHALE SCAM FARM ON #HIVE
Art crafted by the Bilpcoin team with the help of AI we take great pride in our work
IF YOU WANT MORE FREEDOM JOIN BLURT STEEMIT AND THE TON BLOCKCHAIN
Bilpcoin poly
Bilpcon Crypto Talk
Trending page on Hive voting circles and gangs
What is Bilpcoin What is BPC
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS March 14 2023 Bilpcoin
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS FEB 19 2023 Bilpcoin
https://peakd.com/hive-164833/@bilpcoinbpc/you-have-all-witnessed-this-account-being-downvoted-to-a-negative-reputation-for-no-reason
https://blurt.blog/@bilpcoinbpc
https://hive.blog/hive-167922/@bpcvoter1/our-response-to-themarkymark-marcus-buildawhale-usainvote-ipomote-leovoter-gogreenbuddy-and-over-100-of-his-alt-accounts
https://hive.blog/hive-167922/@bpcvoter1/problems
Find links to why we was downvoted on Hive
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/our-goal-is-to-transform-hive-into-a-more-inclusive-space-similar-to-the-user-friendly-atmospheres-of-blurt-and-steemit
https://peakd.com/hive-167922/@bilpcoinbpc/by-standing-together-we-can-create-a-more-inclusive-and-fair-environment-on-hive-as-we-see-on-blurt-and-steemit-we-need-to-get-r
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/actions-indeed-speak-louder-than-words-a-fact-weve-all-observed-individuals-may-talk-a-good-game-a-whole-lot-of-shit-but-their-
https://peakd.com/hive-167922/@bpcvoter3/reply-2-crimsonclad-you-may-consider-yourself-clever
https://peakd.com/hive-167922/@bpcvoter3/reply-to-crimsonclad
https://peakd.com/hive-167922/@bpcvoter3/consider-revising-the-value-plan-as-it-s-not-providing-significant-benefits-to-hive
73,585.851 HP
(2,301,627.566 HP)
A power down is scheduled to happen in 7 days (~7,291.521 HIVE, remaining 6 weeks)
@BUILDAWHALE Received: 2,301,628 HP
blocktrades 2,301,575 HP
@nwjordan 24 HP
@gillianlienmap 23 HP
@epicgames
https://peakd.com/@buildawhale/wallet
https://peakd.com/hive-167922/@bilpcoinbpc/its-been-observed-by-many-that-you-have-not-respected-boundaries-you-have-abused-others-and-caused-distress-to-others-you-might
On HIVE when you cease your actions, we will too. If not, we will continue to advocate and share the truth you may believe you're aware of our accounts, but you're mistaken LOL Accounts are cheap and cost nothing to create a new account
https://peakd.com/hive-167922/@bpcvoter1/let-s-delve-into-the-builda-whale-farm-on-the-hive-gogreenbuddy-who-is-also-colloquially-known-as-the-marky-mark-usainvote
https://steemit.com/@bilpcoinbpc/posts
Hive Emergency: A Call to Action STOP THE BAD DOWNVOTES
We are facing a critical situation on the Hive blockchain, where a small group of individuals is exerting undue influence and control over the community. This group, comprised of a single "whale" and their associated accounts, is using their power to downvote good content, self-vote their own posts, and power down their tokens.
This behavior is having a devastating impact on our community, and it is essential that we take immediate action to address this issue. We propose two key solutions:
We understand that some individuals may be concerned about the rules and moderators. However, it is essential to recognize that the rules are made by the same individuals who are farming the system. Therefore, it is time for us to take matters into our own hands and create a new, better Hive.
We invite you to share your thoughts, ideas, and concerns in the comments below. Together, we can work towards creating a more inclusive, compassionate community for all Hivers.
We've even caught some top Hivers using their alt accounts to fund their own projects and manipulate the system. It is like they are playing a game of Hiveopoly, but instead of rolling dice, they are rolling out downvotes and taking money as they wish
The Bilpcoin team were attacked by Themarkymark gang so, we started investigating and gathering evidence, and before long, we had a whole list of scammers and abusers. And let me tell you, it was a doozy
We are like the superheroes of Hive LOL night night Buildawhale scam farm
Merry Christmas, Hive community! We're excited to share some amazing Santa Claus art crafted by the Bilpcoin team with the help of AI
As we approach the end of the year, the Bilpcoin team would like to extend their warmest wishes to everyone happy Christmas and a prosperous New Year
The Bilpcoin team is shifting its focus towards creating more in-depth content, aiming for less frequent but higher quality posts, potentially once or twice a day
We're ending the day with a bang - introducing two more crazy Santa designs: one happy drunk and one smoking
Their attempts to intimidate and silence their critics are equally concerning. The use of downvotes as a means of censorship is a clear indication of their desperation to maintain their grip on the narrative. But it's not working
https://hive.blog/hive-167922/@themarkymark/re-bpcvoter3-sp2q9h
Don't let the enthusiasm of friends or family members cloud your judgment – crypto is a game where there will always be winners and losers
WE EXPOSED A SUPER FARM ON HIVE
Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts
https://hive.blog/hive-121566/@louis88/re-slobberchops-sp4a2y
At Bilpcoin, we're passionate about what we do, and we're committed to helping our community thrive. If any tribes or individuals need assistance, please don't hesitate to reach out, and we'll do our best to help. We believe in the power of community
https://hive.blog/hive-140217/@themarkymark/re-bpcvoter1-sp87n1
themarkymark (80)in LeoFinance 18 hours ago You are the abuse on Hive hive.blog/hive-167922/@themarkymark/re-bpcvoter3-smp740 LOL TRANSACTIONS DON'T LIE PEOPLE DO PEOPLE LIKE YOU DO Curation reward for BUILDAWHALE COMMENT FARM buildawhale51.108 HP
When investing, we want to emphasize the importance of diversification. It's essential to spread your investments across different assets to minimize risk and maximize returns
https://hive.blog/@kevm/comments
https://hive.blog/@kcgm/comments
Posted using Bilpcoin
https://hive.blog/hive/@trumpman/re-azircon-spk05h
Bad downvotes on Hive are a growing concern that must be addressed. These downvotes not only discourage users from sharing their real thoughts and ideas but also damage the community as a whole, we see many walk away
We're disappointed to see that our work is still being downvoted despite the valuable insights and information we provide
https://hive.blog/hive/@themarkymark/re-bpcvoter1-spolvn
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
The Need for Change
We've been having heated discussions on Hive, and off Hive it's time to set the record straight. The Buildawhale scam farm has been exposed, and it's time for them to face the consequences.
Concerns about Downvotes on Hive
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
https://peakd.com/@elmerlin/activities
Exploring the Possibilities of AI Art with Bilpcoin NFTs Episode 94 BUILDAWHALE SCAM FARM ON #HIVE
Art crafted by the Bilpcoin team with the help of AI we take great pride in our work
IF YOU WANT MORE FREEDOM JOIN BLURT STEEMIT AND THE TON BLOCKCHAIN
Bilpcoin poly
Bilpcon Crypto Talk
Trending page on Hive voting circles and gangs
What is Bilpcoin What is BPC
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS March 14 2023 Bilpcoin
Exploring the Supply of BPC: Total Supply, Circulating Supply, Burned, and Staked BPC STATS FEB 19 2023 Bilpcoin
https://peakd.com/hive-164833/@bilpcoinbpc/you-have-all-witnessed-this-account-being-downvoted-to-a-negative-reputation-for-no-reason
https://blurt.blog/@bilpcoinbpc
https://hive.blog/hive-167922/@bpcvoter1/our-response-to-themarkymark-marcus-buildawhale-usainvote-ipomote-leovoter-gogreenbuddy-and-over-100-of-his-alt-accounts
https://hive.blog/hive-167922/@bpcvoter1/problems
Find links to why we was downvoted on Hive
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/our-goal-is-to-transform-hive-into-a-more-inclusive-space-similar-to-the-user-friendly-atmospheres-of-blurt-and-steemit
https://peakd.com/hive-167922/@bilpcoinbpc/by-standing-together-we-can-create-a-more-inclusive-and-fair-environment-on-hive-as-we-see-on-blurt-and-steemit-we-need-to-get-r
https://peakd.com/hive-167922/@bilpcoinbpc/those-who-are-dedicated-to-the-cause-of-freedom-and-decentralization-lets-fight-for-good
https://peakd.com/hive-167922/@bilpcoinbpc/actions-indeed-speak-louder-than-words-a-fact-weve-all-observed-individuals-may-talk-a-good-game-a-whole-lot-of-shit-but-their-
https://peakd.com/hive-167922/@bpcvoter3/reply-2-crimsonclad-you-may-consider-yourself-clever
https://peakd.com/hive-167922/@bpcvoter3/reply-to-crimsonclad
https://peakd.com/hive-167922/@bpcvoter3/consider-revising-the-value-plan-as-it-s-not-providing-significant-benefits-to-hive
73,585.851 HP
(2,301,627.566 HP)
A power down is scheduled to happen in 7 days (~7,291.521 HIVE, remaining 6 weeks)
@BUILDAWHALE Received: 2,301,628 HP
blocktrades 2,301,575 HP
@nwjordan 24 HP
@gillianlienmap 23 HP
@epicgames
https://peakd.com/@buildawhale/wallet
https://peakd.com/hive-167922/@bilpcoinbpc/its-been-observed-by-many-that-you-have-not-respected-boundaries-you-have-abused-others-and-caused-distress-to-others-you-might
On HIVE when you cease your actions, we will too. If not, we will continue to advocate and share the truth you may believe you're aware of our accounts, but you're mistaken LOL Accounts are cheap and cost nothing to create a new account
https://peakd.com/hive-167922/@bpcvoter1/let-s-delve-into-the-builda-whale-farm-on-the-hive-gogreenbuddy-who-is-also-colloquially-known-as-the-marky-mark-usainvote
https://steemit.com/@bilpcoinbpc/posts
Hive Emergency: A Call to Action STOP THE BAD DOWNVOTES
We are facing a critical situation on the Hive blockchain, where a small group of individuals is exerting undue influence and control over the community. This group, comprised of a single "whale" and their associated accounts, is using their power to downvote good content, self-vote their own posts, and power down their tokens.
This behavior is having a devastating impact on our community, and it is essential that we take immediate action to address this issue. We propose two key solutions:
We understand that some individuals may be concerned about the rules and moderators. However, it is essential to recognize that the rules are made by the same individuals who are farming the system. Therefore, it is time for us to take matters into our own hands and create a new, better Hive.
We invite you to share your thoughts, ideas, and concerns in the comments below. Together, we can work towards creating a more inclusive, compassionate community for all Hivers.
We've even caught some top Hivers using their alt accounts to fund their own projects and manipulate the system. It is like they are playing a game of Hiveopoly, but instead of rolling dice, they are rolling out downvotes and taking money as they wish
The Bilpcoin team were attacked by Themarkymark gang so, we started investigating and gathering evidence, and before long, we had a whole list of scammers and abusers. And let me tell you, it was a doozy
We are like the superheroes of Hive LOL night night Buildawhale scam farm
Merry Christmas, Hive community! We're excited to share some amazing Santa Claus art crafted by the Bilpcoin team with the help of AI
As we approach the end of the year, the Bilpcoin team would like to extend their warmest wishes to everyone happy Christmas and a prosperous New Year
The Bilpcoin team is shifting its focus towards creating more in-depth content, aiming for less frequent but higher quality posts, potentially once or twice a day
We're ending the day with a bang - introducing two more crazy Santa designs: one happy drunk and one smoking
Their attempts to intimidate and silence their critics are equally concerning. The use of downvotes as a means of censorship is a clear indication of their desperation to maintain their grip on the narrative. But it's not working
https://hive.blog/hive-167922/@themarkymark/re-bpcvoter3-sp2q9h
Don't let the enthusiasm of friends or family members cloud your judgment – crypto is a game where there will always be winners and losers
WE EXPOSED A SUPER FARM ON HIVE
Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts
https://hive.blog/hive-121566/@louis88/re-slobberchops-sp4a2y
At Bilpcoin, we're passionate about what we do, and we're committed to helping our community thrive. If any tribes or individuals need assistance, please don't hesitate to reach out, and we'll do our best to help. We believe in the power of community
https://hive.blog/hive-140217/@themarkymark/re-bpcvoter1-sp87n1
themarkymark (80)in LeoFinance 18 hours ago You are the abuse on Hive hive.blog/hive-167922/@themarkymark/re-bpcvoter3-smp740 LOL TRANSACTIONS DON'T LIE PEOPLE DO PEOPLE LIKE YOU DO Curation reward for BUILDAWHALE COMMENT FARM buildawhale51.108 HP
When investing, we want to emphasize the importance of diversification. It's essential to spread your investments across different assets to minimize risk and maximize returns
https://hive.blog/@kevm/comments
https://hive.blog/@kcgm/comments
Posted using Bilpcoin
https://hive.blog/hive/@trumpman/re-azircon-spk05h
Bad downvotes on Hive are a growing concern that must be addressed. These downvotes not only discourage users from sharing their real thoughts and ideas but also damage the community as a whole, we see many walk away
We're disappointed to see that our work is still being downvoted despite the valuable insights and information we provide
https://hive.blog/hive/@themarkymark/re-bpcvoter1-spolvn
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
The Need for Change
We've been having heated discussions on Hive, and off Hive it's time to set the record straight. The Buildawhale scam farm has been exposed, and it's time for them to face the consequences.
Concerns about Downvotes on Hive
Withdraw vesting from @buildawhale to @ipromote7318.996 HIVE Sep 21, 2024 Sent to alpha-4,573.000 HIVE Sep 20, 2024 Withdraw vesting from @stemgeeks to @ipromote4.970 HIVE Sep 20, 2024 Sent to hiveswap-5,000.000 HIVE Sep 20, 2024
https://peakd.com/@elmerlin/activities
Thanks for your contribution to the STEMsocial community. Feel free to join us on discord 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.