create account

SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application by dez1337

View this thread on: hive.blogpeakd.comecency.com
· @dez1337 · (edited)
$95.63
SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application
*This is the final 1.0.0 release of SteemJ-Image-Upload that heavily improves the code quality.*

<center>
![SteemJImageUploadLogo](https://imgur.com/npjYMLy.png)
</center>

# SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application
<br>Hello Steemians!

about three weeks ago I've decided to make Steem-Image-Upload public and released a first pre-release to collect feedback from you guys (checkout [the announcement post](https://steemit.com/utopian-io/@dez1337/steemj-image-upload-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application)). So far, I've only received positive feedback and in addition testers like @paatrick mentioned that everything is working fine. Thanks for that! =)

While everything seems to work perfectly, I still had some code quality related tasks on my side. In example:
* The whole project had 0 tests and no documentation at all 
* It supported no possibility to debug it as 0 logs were available
* It was pretty heavy as it was based on big libraries while only using a small part of them

This release solves all those issues so that I feel more than confident to give this version the number 1.0.0 which makes SteemJ-Image-Upload my first Steem related tool that I would call "finished". 

# Changelog for version 1.0.0

* [Issue #01](https://github.com/marvin-we/steemj-image-upload/issues/1) - Use crypto-core instead of bitcoinj to reduce the size of the project
* [Issue #02](https://github.com/marvin-we/steemj-image-upload/issues/2) - Add timeout configuration to the Config object
* [Issue #04](https://github.com/marvin-we/steemj-image-upload/issues/4) - Add a logging framework and implement proper logging
* [Issue #05](https://github.com/marvin-we/steemj-image-upload/issues/5) - Add, implement and use proper Exceptions
* [Issue #06](https://github.com/marvin-we/steemj-image-upload/issues/6) - Update dependencies
* [Issue #07](https://github.com/marvin-we/steemj-image-upload/issues/7) - Add a proper copyright header
* [Issue #08](https://github.com/marvin-we/steemj-image-upload/issues/8) - Add a license
* [Issue (PR) #09](https://github.com/marvin-we/steemj-image-upload/pull/9) - Create LICENSE
* [Issue #10](https://github.com/marvin-we/steemj-image-upload/issues/10) - Do not depend on SteemJ
* [Issue #11](https://github.com/marvin-we/steemj-image-upload/issues/11) - Secure the functionality with tests

# Changes in Detail
The only change that will effect you, as a user, is the addition of a logging framework. Based on the experience made with SteemJ I only added the **slf4j-api** to the project. This gives you all the flexibility to choose the implementation on your own, so if you have an Android project, you can choose a logging framework that will actually work there, while you can still add common logging implementations like **log4j2** if you develop a common desktop or server application.

If no slf4j-implementation is added at all, you will face the following *WARNING* messages at start up if no implementation has been provided:

> SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
> SLF4J: Defaulting to no-operation (NOP) logger implementation
> SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

## Adding a slf4j-implementation to your project
One good example of an alternative slf4j implementation is log4j-slf4j-impl, which implements the slf4j-api and adds the powerfull configuration options of log4j2.

As a first step, the **log4j-slf4j-impl** jar needs to be added to your project. The most easiest way to achieve this is the usage of a Build-Management tool like Maven, because you only need to add the required dependencies the pom.xml.

```XML
<dependency>
	<groupId>org.apache.logging.log4j</groupId>
	<artifactId>log4j-slf4j-impl</artifactId>
	<version>${log4j.version}</version>
</dependency>
<dependency>
	<groupId>org.apache.logging.log4j</groupId>
	<artifactId>log4j-core</artifactId>
	<version>${log4j.version}</version>
</dependency>
```

To finalize the logging configuration of your project, create a **log4j2.xml** and add it to the *src/main/resources* folder. An example log4j2.xml configuration is shown below.

```XML
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="INFO">
	<Appenders>
		<Console name="Console" target="SYSTEM_OUT">
			<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n" />
		</Console>
	</Appenders>
	<Loggers>
		<Logger name="eu.bittrade.libs.steemj.image.upload" level="WARN">
			<AppenderRef ref="Console" />
		</Logger>
		<Logger name="my.project" level="DEBUG">
			<AppenderRef ref="Console" />
		</Logger>
		<Root level="ERROR" />
	</Loggers>
</Configuration>
```

The configuration above would append all log messages of:
* SteemJ-Image-Upload, that have a severity of WARN or higher
* your project (package my.project), that have a severity of DEBUG or higher 
to the console, while ignoring all other log messages, because no logger is defined for Root.

If you want to use log4j2 in your project too, you should have a look at the [official documentation](https://logging.apache.org/log4j/2.0/manual/configuration.html) to find detailed configuration examples.

# General Project information

## What is SteemJ-Image-Upload?
SteemJ-Image-Upload is a sub-project of [SteemJ](https://github.com/marvin-we/steem-java-api-wrapper) - The Steem API for Java. 

[SteemJ Image Upload](https://github.com/marvin-we/steemj-image-upload) allows to upload images to ([https://steemitimages.com](https://steemitimages.com)) out of your Java application.

The project has been initialized by <a href="https://steemit.com/@dez1337">dez1337 on steemit.com</a>.

## Technologies
* Java 7 
* Maven 3+ for building the project
* [Crypto-Core](https://steemit.com/utopian-io/@dez1337/crypto-core-a-swiss-army-knife-for-blockchain-related-java-projects) to sign the image with your private posting key
* Google HTTP Client 
* SLF4J 
* WireMock to simulate a steemitimages.com response during test execution

## Quick start guide
Using SteemJ-Image-Upload is really easy: Add it to your project and upload your first image as shown below.

### Add SteemJ-Image-Upload to your project
SteemJ Image Upload binaries are pushed into the maven central repository and can be integrated with a bunch of build management tools like Maven.

**File:** *pom.xml*
```XML
<dependency>
    <groupId>eu.bittrade.libs</groupId>
    <artifactId>steemj-image-upload</artifactId>
    <version>1.0.0</version>
</dependency>
```

### Write a Java Class to upload an Image
SteemJ Image Upload is really easy to use. The following code shows a full sample:

```Java
import java.io.File;
import java.io.IOException;
import java.net.URL;

import eu.bittrade.libs.steemj.base.models.AccountName;
import eu.bittrade.libs.steemj.image.upload.SteemJImageUpload;

public class ExampleApplication {
    public static void main(String args[]) {
        AccountName myAccount = new AccountName("dez1337");
        // Please be informed that this is not the correct private key of dez1337.
        String myPrivatePostingKeyAsWif = "5KMamixsFoUkdlz7sNG4RsyaKQyJMBBqrdT6y54qr4cdVhU9rz7";
        File imageToUpload = new File("C:/Users/dez1337/Desktop/SteemJImageBanner.png");

        try {
            URL myImageUrl = SteemJImageUpload.uploadImage(myAccount, myPrivatePostingKeyAsWif, imageToUpload);
            System.out.println("The image has been uploaded and is reachable using the URL: " + myImageUrl);
        } catch (IOException e) {
            System.out.println("There was a problem uploading the image.");
            e.printStackTrace();
        }
    }
}
```

An output of the code above will look like this:
> The image has been uploaded and is reachable using the URL: https:/<span>/steemitimages.com/DQmfWn1z6HwwxfaWhrpY28MYh43wEEyNsV25GnGSGZUDo2U/SteemJImageSteemFriendlyWithUpdatetBanner.png

As you can see in the sample above, your account name and your private posting are required to upload an image - If you do not provide those details, your upload request will not be accepted. For sure, SteemJ-Image-Upload will not send or store your private posting key!

If you have security doubts about it you can:
* Check the [official imagehoster README file](https://github.com/steemit/imagehoster/blob/master/README.md)
* Review the SteemJ-Image-Upload source code at GitHub.

## Bugs reports, feedback and discussions
For bugs or feature requests please create a [GitHub Issue](https://github.com/marvin-we/steemj-image-upload/issues). 

For general discussions or questions you can also:
* Post your questions in the [Discord Java Channel](https://discord.gg/fsJjr3Q)
* Reply to one of the *Crypto Core* update posts on [Steemit.com](https://steemit.com/@dez1337)
* Contact me on [steemit.chat](https://steemit.chat/channel/dev)

## Contribute
Bug reports and feature requests already help a lot to improve the project. What helps even more is an active contribution, so if you see something to improve, I would love to see a [pull request](https://help.github.com/articles/creating-a-pull-request/) from you.

> git clone https://github.com/marvin-we/steemj-image-upload

# Get in touch!
Most of my projects are pretty time consuming and I always try to provide some useful stuff to the community. What keeps me going for that is your feedback and your support. For that reason I would love to get some Feedback from you <3. Just contact me here onΒ [Steemit](https://steemit.com/@dez1337)Β or ping me onΒ [GitHub](https://github.com/marvin-we/steem-java-api-wrapper).

<hr>
<center>Thanks for reading and best regards,
@dez1337
</center>

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@dez1337/steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authordez1337
permlinksteemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":111241028,"name":"steemj-image-upload","full_name":"marvin-we/steemj-image-upload","owner":{"login":"marvin-we","id":23293713,"avatar_url":"https://avatars0.githubusercontent.com/u/23293713?v=4","gravatar_id":"","url":"https://api.github.com/users/marvin-we","html_url":"https://github.com/marvin-we","followers_url":"https://api.github.com/users/marvin-we/followers","following_url":"https://api.github.com/users/marvin-we/following{/other_user}","gists_url":"https://api.github.com/users/marvin-we/gists{/gist_id}","starred_url":"https://api.github.com/users/marvin-we/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/marvin-we/subscriptions","organizations_url":"https://api.github.com/users/marvin-we/orgs","repos_url":"https://api.github.com/users/marvin-we/repos","events_url":"https://api.github.com/users/marvin-we/events{/privacy}","received_events_url":"https://api.github.com/users/marvin-we/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/marvin-we/steemj-image-upload","description":"Upload images to Steemit.com using Java","fork":false,"url":"https://api.github.com/repos/marvin-we/steemj-image-upload","forks_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/forks","keys_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/keys{/key_id}","collaborators_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/teams","hooks_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/hooks","issue_events_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/issues/events{/number}","events_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/events","assignees_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/assignees{/user}","branches_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/branches{/branch}","tags_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/tags","blobs_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/git/refs{/sha}","trees_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/git/trees{/sha}","statuses_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/statuses/{sha}","languages_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/languages","stargazers_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/stargazers","contributors_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/contributors","subscribers_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/subscribers","subscription_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/subscription","commits_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/commits{/sha}","git_commits_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/git/commits{/sha}","comments_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/comments{/number}","issue_comment_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/issues/comments{/number}","contents_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/contents/{+path}","compare_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/compare/{base}...{head}","merges_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/merges","archive_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/downloads","issues_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/issues{/number}","pulls_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/pulls{/number}","milestones_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/milestones{/number}","notifications_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/labels{/name}","releases_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/releases{/id}","deployments_url":"https://api.github.com/repos/marvin-we/steemj-image-upload/deployments","created_at":"2017-11-18T21:32:45Z","updated_at":"2017-12-01T16:27:00Z","pushed_at":"2017-12-16T19:36:23Z","git_url":"git://github.com/marvin-we/steemj-image-upload.git","ssh_url":"git@github.com:marvin-we/steemj-image-upload.git","clone_url":"https://github.com/marvin-we/steemj-image-upload.git","svn_url":"https://github.com/marvin-we/steemj-image-upload","homepage":"","size":297,"stargazers_count":2,"watchers_count":2,"language":"Java","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0"},"forks":0,"open_issues":1,"watchers":2,"default_branch":"master","score":29.907965},"pullRequests":[],"platform":"github","type":"development","tags":["utopian-io","steemdev","programming","java","steem"],"users":["dez1337","paatrick"],"links":["https://imgur.com/npjYMLy.png","https://steemit.com/utopian-io/@dez1337/steemj-image-upload-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application","https://github.com/marvin-we/steemj-image-upload/issues/1","https://github.com/marvin-we/steemj-image-upload/issues/2","https://github.com/marvin-we/steemj-image-upload/issues/4","https://github.com/marvin-we/steemj-image-upload/issues/5","https://github.com/marvin-we/steemj-image-upload/issues/6","https://github.com/marvin-we/steemj-image-upload/issues/7","https://github.com/marvin-we/steemj-image-upload/issues/8","https://github.com/marvin-we/steemj-image-upload/pull/9","https://github.com/marvin-we/steemj-image-upload/issues/10","https://github.com/marvin-we/steemj-image-upload/issues/11","https://logging.apache.org/log4j/2.0/manual/configuration.html","https://github.com/marvin-we/steem-java-api-wrapper","https://github.com/marvin-we/steemj-image-upload","https://steemitimages.com","https://steemit.com/utopian-io/@dez1337/crypto-core-a-swiss-army-knife-for-blockchain-related-java-projects","https://github.com/steemit/imagehoster/blob/master/README.md","https://github.com/marvin-we/steemj-image-upload/issues","https://discord.gg/fsJjr3Q","https://steemit.com/@dez1337","https://steemit.chat/channel/dev","https://help.github.com/articles/creating-a-pull-request/"],"image":["https://imgur.com/npjYMLy.png"]}"
created2017-12-16 19:39:18
last_update2017-12-17 12:19:03
depth0
children7
last_payout2017-12-23 19:39:18
cashout_time1969-12-31 23:59:59
total_payout_value68.411 HBD
curator_payout_value27.219 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,954
author_reputation20,544,257,521,749
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,789,184
net_rshares18,708,909,076,905
author_curate_reward""
vote details (42)
@codingdefined · (edited)
Your contribution cannot be approved yet because it does not have **proof of work** because the development category rules state that if your username on Github does not correspond to the Utopian username you must provide proof that you are the owner by providing a screenshot of the logged in session in Github. Also you need to remove the resteem part from the post.

See the [Utopian Rules](https://utopian.io/rules). Please edit your contribution and add **proof** (links, screenshots, commits, etc) of your work, to reapply for approval.

You may edit your post [here](https://utopian.io/utopian-io/@dez1337/steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application), as shown below: 
![](https://res.cloudinary.com/hpiynhbhq/image/upload/v1509788371/nbgbomithszxs3nxq6gx.png)

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorcodingdefined
permlinkre-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t070903094z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"}
created2017-12-17 07:09:03
last_update2017-12-17 11:50:27
depth1
children1
last_payout2017-12-24 07:09: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_length950
author_reputation532,612,006,083,513
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,845,173
net_rshares0
@dez1337 · (edited)
$0.50
Hay @codingdefined and thank you for your accurate report.

Here is a screenshot where I am logged in to GitHub: 

marvin-we/dez1337:
![GitHub](https://imgur.com/25JDRnz.png) 

neutralleiter:
![GitHubNeutralleiter](https://imgur.com/FSsPGpt.png)

Beside that the projects are already linked with Utopian :) Please let me know if this is sufficient now.

Best regards!
πŸ‘  
properties (23)
authordez1337
permlinkre-codingdefined-re-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t115152531z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["codingdefined"],"image":["https://imgur.com/25JDRnz.png","https://imgur.com/FSsPGpt.png"],"app":"steemit/0.1"}
created2017-12-17 11:51:51
last_update2017-12-17 12:07:39
depth2
children0
last_payout2017-12-24 11:51:51
cashout_time1969-12-31 23:59:59
total_payout_value0.377 HBD
curator_payout_value0.122 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length367
author_reputation20,544,257,521,749
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,869,918
net_rshares77,117,853,873
author_curate_reward""
vote details (1)
@codingdefined ·
$0.11
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
πŸ‘  
properties (23)
authorcodingdefined
permlinkre-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t122801467z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/1.0.0"}
created2017-12-17 12:28:00
last_update2017-12-17 12:28:00
depth1
children0
last_payout2017-12-24 12:28:00
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation532,612,006,083,513
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,873,419
net_rshares16,993,067,461
author_curate_reward""
vote details (1)
@devart ·
Good post.
Follow and upvote me https://steemit.com/@devart/
Thanks buddy.
properties (22)
authordevart
permlinkre-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171227t053043243z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/@devart/"],"app":"steemit/0.1"}
created2017-12-27 05:30:45
last_update2017-12-27 05:30:45
depth1
children0
last_payout2018-01-03 05:30:45
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_length74
author_reputation1,106,820,731,426
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,455,797
net_rshares0
@fun2learn ·
$0.10
Thank you for your great job in contributing to the experience of steemit. It is people like you who can help steemit to keep progressing. I am new here and I appreciate every info and idea.
πŸ‘  ,
properties (23)
authorfun2learn
permlinkre-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t024436416z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-17 02:44:36
last_update2017-12-17 02:44:36
depth1
children1
last_payout2017-12-24 02:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation155,461,413,801,653
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,824,198
net_rshares15,671,259,149
author_curate_reward""
vote details (2)
@dez1337 ·
$0.51
Thank you for your nice words :)
πŸ‘  
properties (23)
authordez1337
permlinkre-fun2learn-re-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t081212071z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2017-12-17 08:12:15
last_update2017-12-17 08:12:15
depth2
children0
last_payout2017-12-24 08:12:15
cashout_time1969-12-31 23:59:59
total_payout_value0.382 HBD
curator_payout_value0.126 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation20,544,257,521,749
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,850,468
net_rshares78,716,151,363
author_curate_reward""
vote details (1)
@utopian-io ·
### Hey @dez1337 I am @utopian-io. I have just upvoted you!
#### Achievements
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-dez1337-steemj-image-upload-1-0-0-has-been-released-upload-images-to-steemitimages-com-out-of-your-java-application-20171217t224106834z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2017-12-17 22:41:06
last_update2017-12-17 22:41:06
depth1
children0
last_payout2017-12-24 22:41:06
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,005
author_reputation152,955,367,999,756
root_title"SteemJ-Image-Upload 1.0.0 has been released ~ Upload Images to steemitimages.com out of your Java Application"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,938,886
net_rshares0