create account

Introducing AskSteem - A steem search engine by thekyle

View this thread on: hive.blogpeakd.comecency.com
· @thekyle · (edited)
$1,138.56
Introducing AskSteem - A steem search engine
![Asksteem](https://i.imgur.com/oTH9CLH.png)
Hello, Steemians!
Over the past month, I've been building a new search engine that indexes the steem blockchain. It's currently live at [asksteem.com](https://www.asksteem.com). The goal of AskSteem is to provide a reliable, powerful, and fast search engine that is optimized for steem. In this post, I'd like to cover some of the features that are available. 

# Query Syntax
There are many different ways that you can query the AskSteem index. I've created a video demonstrating each of them, but you may also read their descriptions and examples below.
https://www.youtube.com/watch?v=gw2kGFLGmxo&t=215s
### Keyword/Phrase Search
Like many other search engines, you can search for general phrases and terms. AskSteem will try its best to find the document that is most relevant to your query based on our ranking algorithm. 
**Example Queries:**
**Tip:** Click the example to go to that query on AskSteem
[`How to buy bitcoin`](https://www.asksteem.com/search?q=How+to+buy+bitcoin)
[`What is steem`](https://www.asksteem.com/search?q=What+is+steem)
[`Markdown tutorial`](https://www.asksteem.com/search?q=Markdown+tutorial)

### Exact Search
Putting a query into quotes requests that AskSteem only returns documents that have exactly that phrase in that order.
**Example Queries:**
[`"How to buy bitcoin"`](https://www.asksteem.com/search?q=%22How+to+buy+bitcoin%22)
[`"What is steem"`](https://www.asksteem.com/search?q=%22What+is+steem%22)
[`"Markdown tutorial"`](https://www.asksteem.com/search?q=%22Markdown+tutorial%22)

### Tag Search
AskSteem allows you to filter posts by tag.
**Example Queries:**
[`tags:life`](https://www.asksteem.com/search?q=tags:life)
[`tags:steemit`](https://www.asksteem.com/search?q=tags:steemit)

### Author Search
You can filter posts by the author too.
**Example Queries:**
[`author:thekyle`](https://www.asksteem.com/search?q=author:thekyle)
[`author:abit`](https://www.asksteem.com/search?q=author:abit)
[`author:steemit`](https://www.asksteem.com/search?q=author:steemit)

### Creation Date Search
AskSteem provides a highly flexible and powerful date search tool for posts. You can search by exact date or by date range. Dates must be in the form of YYYY-MM-DD.
**Example Queries:**
Search for all posts posted on June 2, 2017
[`created:2017-06-02`](https://www.asksteem.com/search?q=created:2017-06-02)
Search for all posts posted between May 1, 2017, and May 31, 2017
[`created:[2017-05-01 TO 2017-05-31]`](https://www.asksteem.com/search?q=created:%5B2017-05-01+TO+2017-05-31%5D)

### Search by Number of Votes/Comments
Similar to dates AskSteem has another set of robust tools that allow searches based on the number of upvotes or comments a post receives. 
**Example Queries:**
Posts with 150 votes:
[`net_votes:150`](https://www.asksteem.com/search?q=net_votes:150)
Posts with between 100 and 150 votes
[`net_votes:[100 TO 150]`](https://www.asksteem.com/search?q=net_votes:%5B100+TO+150%5D)
Posts with 50 comments:
[`children:50`](https://www.asksteem.com/search?q=children:50)
Posts with between 40 and 50 comments:
[`children:[40 TO 50]`](https://www.asksteem.com/search?q=children:%5B40+TO+50%5D)
Posts with more than 50 comments:
[`children:>50`](https://www.asksteem.com/search?q=children:%3E50)
or less than 50:
[`children:<50`](https://www.asksteem.com/search?q=children:%3C50)
this also works with votes, less than or equal to 10 votes:
[`net_votes:<=10`](https://www.asksteem.com/search?q=net_votes:%3C%3D10)

### Searches with Boosts
You can prioritize certain parts of your query with boosts. These are indicated by placing a `^n` at the end of a term, where `n` is the power you want to boost that part of the query to. 
**Example Queries:**
Give the term bitcoin a boost of two:
[`I really want posts to have the term bitcoin^2 in them.`](https://www.asksteem.com/search?q=I+really+want+posts+to+have+the+term+bitcoin%5E2+in+them.)
Give the term mine a boost of two, and term steem a boost of three:
[`How to mine^2 steem^3`](https://www.asksteem.com/search?q=How+to+mine%5E2+steem%5E3)

### Inclusive/Exclusive Search
You can indicate whether you want documents to contain certain terms by placing a `+` or a `-` in front of the term.
**Example Queries:**
Find documents about mining but not bitcoin:
[`cryptocurrency +mining -bitcoin`](https://www.asksteem.com/search?q=cryptocurrency+%2Bmining+-bitcoin)

### Wildcard Search
You can use the wildcard expressions of `?` for a single character, or `*` to match any number of characters.
**Example Queries:**
How to mine any cryptocurrency:
[`How to mine *`](https://www.asksteem.com/search?q=How+to+mine+*)

### Boolean Search
AskSteem supports any combination of the previously mentioned search types in a single powerful query. This uses boolean values of AND, OR, and NOT, along with parenthesis to separate statements.  
**Example Queries:**
Posts tagged with asksteem by @thekyle:
[`tags:asksteem AND author:thekyle`](https://www.asksteem.com/search?q=tags:asksteem+AND+author:thekyle)
Posts with between 50 and 100 comments that have more than 500 upvotes and that are tagged with 'bitcoin' or have the term bitcoin in the document:
[`(bitcoin OR tags:bitcoin) AND (net_votes:>500 AND children:(>50 AND <100))`](https://www.asksteem.com/search?q=%28bitcoin+OR+tags:bitcoin%29+AND+%28net_votes:%3E500+AND+children:%28%3E50+AND+%3C100%29%29)
Posts created on June 2, 2017, with 100 or more upvotes but less than 10 comments:
[`created:2017-06-02 AND net_votes:>=100 AND children:<10`](https://www.asksteem.com/search?q=created:2017-06-02+AND+net_votes:%3E%3D100+AND+children:%3C10)

# Developers
https://www.youtube.com/watch?v=aiqasuhUPXU
Because AskSteem integrates directly into the steem blockchain it can read metadata directly from posts and use that data when performing queries and displaying results. We encourage developers to add AskSteem compatible metadata to their posts so that we can show links to your application in our search results. The full documentation can be found at [asksteem.com/developers](https://www.asksteem.com/developers), however, in this post I will summarize the most important tags.

| Tag        | Description           | Example  |
| ------------- |:-------------:| -----:|
| domain      | The domain name or web address that your application is hosted on. | `example.com` |
| locator      | The path to reach the post on the domain relative to the root.      |   `/CATEGORY/@AUTHOR/PERMLINK` |
| protocol | Either 'http' or 'https' if not provided then http will be used by default      |    `https` |

If none of the above metadata is provided then AskSteem will link to steemit.com for all posts by default, however, it is assumed that the platform creating the content will have the best interface for viewing it, so we would rather link there.

The `domain` and `locator` tags are required for custom linking to work, however, the `protocol` tag is optional and will default to http.  
* The domain tag should be the domain name that your web-based steem application is hosted on and is subdomain sensitive (so if your hosting on www subdomain then put that). 
* The locator should be the permalink to that particular post in your applications URL structure, also notice the leading forward slash, this is required. 

The final URL that we point to will be generated by concatenating the domain and locator together with the protocol at the beginning which will be http unless otherwise specified. 

Additionally, if you are building an application on the steem blockchain and need a search API please email us at contact@asksteem.com, we are able to query custom metadata and make various other customizations to the ranking algorithm to support your use case.

# Funding
The harsh reality is that search engines are expensive to run and that adding new features and improving performance are difficult if the basic funding needs of the project are not covered. AskSteem currently costs me about $100/month to run, and that number will, of course, continue to increase as steem grows and the index size increases.

Ideally, my goal is the have those costs covered through upvotes from the steem community and to use any extra money for adding new features and scaling the search infrastructure to meet demand. If this works then AskSteem will be the first search engine in the world to use a cryptocurrency based revenue model, instead of selling advertising. 

Thank you for your time, and [happy searching](https://www.asksteem.com)!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 331 others
properties (23)
authorthekyle
permlinkintroducing-asksteem-a-steem-search-engine
categorysteemit
json_metadata{"tags":["steemit","steem","asksteem","steem-project","steemdev"],"users":["thekyle"],"image":["https://i.imgur.com/oTH9CLH.png","https://img.youtube.com/vi/gw2kGFLGmxo/0.jpg","https://img.youtube.com/vi/aiqasuhUPXU/0.jpg"],"links":["https://www.asksteem.com","https://www.youtube.com/watch?v=gw2kGFLGmxo&t=215s","https://www.asksteem.com/search?q=How+to+buy+bitcoin","https://www.asksteem.com/search?q=What+is+steem","https://www.asksteem.com/search?q=Markdown+tutorial","https://www.asksteem.com/search?q=%22How+to+buy+bitcoin%22","https://www.asksteem.com/search?q=%22What+is+steem%22","https://www.asksteem.com/search?q=%22Markdown+tutorial%22","https://www.asksteem.com/search?q=tags:life","https://www.asksteem.com/search?q=tags:steemit","https://www.asksteem.com/search?q=author:thekyle","https://www.asksteem.com/search?q=author:abit","https://www.asksteem.com/search?q=author:steemit","https://www.asksteem.com/search?q=created:2017-06-02","https://www.asksteem.com/search?q=created:%5B2017-05-01+TO+2017-05-31%5D","https://www.asksteem.com/search?q=net_votes:150","https://www.asksteem.com/search?q=net_votes:%5B100+TO+150%5D","https://www.asksteem.com/search?q=children:50","https://www.asksteem.com/search?q=children:%5B40+TO+50%5D","https://www.asksteem.com/search?q=children:%3E50","https://www.asksteem.com/search?q=children:%3C50","https://www.asksteem.com/search?q=net_votes:%3C%3D10","https://www.asksteem.com/search?q=I+really+want+posts+to+have+the+term+bitcoin%5E2+in+them.","https://www.asksteem.com/search?q=How+to+mine%5E2+steem%5E3","https://www.asksteem.com/search?q=cryptocurrency+%2Bmining+-bitcoin","https://www.asksteem.com/search?q=How+to+mine+*","https://www.asksteem.com/search?q=tags:asksteem+AND+author:thekyle","https://www.asksteem.com/search?q=%28bitcoin+OR+tags:bitcoin%29+AND+%28net_votes:%3E500+AND+children:%28%3E50+AND+%3C100%29%29","https://www.asksteem.com/search?q=created:2017-06-02+AND+net_votes:%3E%3D100+AND+children:%3C10","https://www.youtube.com/watch?v=aiqasuhUPXU","https://www.asksteem.com/developers"],"app":"steemit/0.1","format":"markdown"}
created2017-06-03 19:07:45
last_update2017-06-09 21:47:57
depth0
children149
last_payout2017-06-10 19:07:45
cashout_time1969-12-31 23:59:59
total_payout_value859.018 HBD
curator_payout_value279.541 HBD
pending_payout_value0.000 HBD
promoted26.400 HBD
body_length8,544
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,123,336
net_rshares33,823,557,132,562
author_curate_reward""
vote details (395)
@adamt ·
Solid!
properties (22)
authoradamt
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t221722608z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 22:17:21
last_update2017-06-07 22:17:21
depth1
children0
last_payout2017-06-14 22:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation6,928,229,020,018
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,365,154
net_rshares0
@airmatti ·
$0.89
This is something many were waiting for! Tried and it works well! It has to be  developed, congrats for the project!
👍  
properties (23)
authorairmatti
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t095325683z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 09:53:27
last_update2017-06-06 09:53:27
depth1
children0
last_payout2017-06-13 09:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.670 HBD
curator_payout_value0.221 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation28,523,573,828,702
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,262,403
net_rshares242,421,703,382
author_curate_reward""
vote details (1)
@albertvhons ·
Hello, i just got here..
But..


If you have time to check my blog,
Maybe you can help with my proposal..
And say something about it.. My pleasure
properties (22)
authoralbertvhons
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t073823162z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 07:38:30
last_update2017-06-06 07:38:30
depth1
children0
last_payout2017-06-13 07:38:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation27,135,699,010,226
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,258,164
net_rshares0
@alexpmorris ·
nice work, though it would also be great if an author's comments could be searched as well!
properties (22)
authoralexpmorris
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170608t185613763z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-08 18:56:15
last_update2017-06-08 18:56:15
depth1
children2
last_payout2017-06-15 18:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation32,063,874,290,523
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,421,054
net_rshares0
@thekyle ·
Thanks, I haven't really had any plans for allowing users to search authors comments, but if people start making comments that might answer queries then perhaps in the future I will allow comment searching. :)
properties (22)
authorthekyle
permlinkre-alexpmorris-re-thekyle-introducing-asksteem-a-steem-search-engine-20170608t190140969z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-08 19:01:39
last_update2017-06-08 19:01:39
depth2
children1
last_payout2017-06-15 19:01:39
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_length209
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,421,344
net_rshares0
@alexpmorris ·
I just know that for me, I often find myself searching my past comments in reference to a new post or comment (or even in chat).
properties (22)
authoralexpmorris
permlinkre-thekyle-re-alexpmorris-re-thekyle-introducing-asksteem-a-steem-search-engine-20170608t190730504z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-08 19:07:33
last_update2017-06-08 19:07:33
depth3
children0
last_payout2017-06-15 19:07:33
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_length128
author_reputation32,063,874,290,523
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,421,646
net_rshares0
@almvide ·
Great job, a search engine is sorely needed!
properties (22)
authoralmvide
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t073712908z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 07:37:15
last_update2017-06-07 07:37:15
depth1
children0
last_payout2017-06-14 07:37:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation1,856,213,405,187
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,321,847
net_rshares0
@anonnews ·
Thank you, resteemed and have a question:

Is it possible to combine 2 search tags like author and exact search in one search request?
properties (22)
authoranonnews
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t034345720z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 03:43:45
last_update2017-06-07 03:43:45
depth1
children2
last_payout2017-06-14 03:43: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_length134
author_reputation7,414,160,704,761
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,313,429
net_rshares0
@thekyle · (edited)
Glad you like it and yes. You can type `author:thekyle AND bitcoin` to get posts created by @thekyle (me) about bitcoin. This works with any two types of search. For more info read the part about boolean search in the above post.
properties (22)
authorthekyle
permlinkre-anonnews-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t125318287z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-07 12:53:21
last_update2017-06-07 12:54:09
depth2
children1
last_payout2017-06-14 12:53:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,334,995
net_rshares0
@anonnews ·
Thanks for answering!
properties (22)
authoranonnews
permlinkre-thekyle-re-anonnews-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t132415219z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 13:23:57
last_update2017-06-07 13:23:57
depth3
children0
last_payout2017-06-14 13:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation7,414,160,704,761
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,336,685
net_rshares0
@awesomianist ·
I can already think of so many ways AskSteemit will help Steemians. No, not just newbs who are starting. 

I'm saying this tool will be especially useless, ESPECIALLY, to steem veterans who wanna up their game. 

I'm Glad this initial post has help covered at least 3 months cost and I'm sure the community will be happy to support you all the way. 

Your tool will be part and parcel of many of us in our Steemit life. 

Thanks for "coming out of nowhere" with this amazing engine. I can say your tune and effort spent will be worth it.
properties (22)
authorawesomianist
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t181850270z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 18:19:06
last_update2017-06-09 18:19:06
depth1
children0
last_payout2017-06-16 18:19: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_length537
author_reputation30,939,172,096,979
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,484,768
net_rshares0
@bi5h0p ·
This is an awesome tool! Thank you for taking the time to create this for the benefit of all Steemians. ReSteem, followed.
👍  
properties (23)
authorbi5h0p
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t181027787z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 18:10:18
last_update2017-06-10 18:10:18
depth1
children1
last_payout2017-06-17 18:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation2,419,444,465,186
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,545,036
net_rshares174,818,379
author_curate_reward""
vote details (1)
@thekyle ·
Glad you like it! :)
properties (22)
authorthekyle
permlinkre-bi5h0p-re-thekyle-introducing-asksteem-a-steem-search-engine-20170610t181101460z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 18:11:00
last_update2017-06-10 18:11:00
depth2
children0
last_payout2017-06-17 18:11:00
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_length20
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,545,068
net_rshares0
@biblenerd ·
I've waited since 2016 for this. There's a lot of great old articles that are hard to find because Steem is focused on new content. I wish authors could get paid for old articles that might have been low rated originally, yet later were rediscovered for very useful content.
properties (22)
authorbiblenerd
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170901t075018474z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-01 07:50:12
last_update2017-09-01 07:50:12
depth1
children0
last_payout2017-09-08 07:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length274
author_reputation43,521,143,287
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,527,842
net_rshares0
@bonesounds ·
Genius!
👎  
properties (23)
authorbonesounds
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170604t181149369z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-04 18:11:51
last_update2017-06-04 18:11:51
depth1
children0
last_payout2017-06-11 18:11:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation250,040,665
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,170,190
net_rshares0
author_curate_reward""
vote details (1)
@bunnychum ·
Awesome.... Just upvoted and Resteemed...
properties (22)
authorbunnychum
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170608t134739740z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-08 13:47:42
last_update2017-06-08 13:47:42
depth1
children0
last_payout2017-06-15 13:47:42
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_length41
author_reputation38,701,359,387,872
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,404,171
net_rshares0
@camb ·
Thank you for providing a Steem search other than Google! 

Yacy might make your indexing efforts more distributed and cost effective. 

Yacy is a great Distributed Search engine. You can host a node that only indexes Steem in collaboration with anyone else who wants to index steem and share results. Yacy runs on Desktops, laptops and servers. Linux, Windows and Mac. 

http://yacy.net/en/index.html

There is also a built in interface for your site that works out of the box. Together we are strong. Take a look if you're interested. 

I have a basic demo that indexed some of steem and reddit on my Desktop here. http://camb.hopto.org:8090/ 
(this demo won't be up much longer)

I will be moving it to a proper server soon and begin indexing only distributed networks. 

Good luck!
👍  
properties (23)
authorcamb
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170820t001542498z
categorysteemit
json_metadata{"tags":["steemit"],"links":["http://yacy.net/en/index.html","http://camb.hopto.org:8090/"],"app":"steemit/0.1"}
created2017-08-20 00:15:42
last_update2017-08-20 00:15:42
depth1
children2
last_payout2017-08-27 00:15:42
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_length785
author_reputation2,733,578,557,743
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,304,899
net_rshares1,303,918,516
author_curate_reward""
vote details (1)
@thekyle ·
$0.04
Very interesting, I'll be looking into this. :)
👍  
properties (23)
authorthekyle
permlinkre-camb-re-thekyle-introducing-asksteem-a-steem-search-engine-20170820t002123533z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-20 00:21:21
last_update2017-08-20 00:21:21
depth2
children1
last_payout2017-08-27 00:21:21
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,305,150
net_rshares10,769,156,441
author_curate_reward""
vote details (1)
@camb ·
Yacy has been an undervalued project for years. It works great. If you have any questions getting started, feel free to ask me and I will answer as best as I can.
👍  
properties (23)
authorcamb
permlinkre-thekyle-re-camb-re-thekyle-introducing-asksteem-a-steem-search-engine-20170820t002353445z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-20 00:23:57
last_update2017-08-20 00:23:57
depth3
children0
last_payout2017-08-27 00:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation2,733,578,557,743
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,305,270
net_rshares1,226,201,518
author_curate_reward""
vote details (1)
@carface ·
$0.81
Yes thank you! I can now search then click back after reading an article and it will take me back to my search results. Small thing but needed! 😎
👍  
properties (23)
authorcarface
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t220735656z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 22:07:36
last_update2017-06-09 22:07:36
depth1
children1
last_payout2017-06-16 22:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.608 HBD
curator_payout_value0.203 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation20,232,737,189,861
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,496,721
net_rshares250,581,673,226
author_curate_reward""
vote details (1)
@thekyle ·
$0.04
Glad you like it!
👍  
properties (23)
authorthekyle
permlinkre-carface-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t220824431z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 22:08:24
last_update2017-06-09 22:08:24
depth2
children0
last_payout2017-06-16 22:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,496,756
net_rshares15,661,354,576
author_curate_reward""
vote details (1)
@chrissymchavez ·
Hope my upvote helps a bit! Really cool tool!
👍  
properties (23)
authorchrissymchavez
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170603t191824973z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-03 19:18:24
last_update2017-06-03 19:18:24
depth1
children1
last_payout2017-06-10 19:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation2,330,754,484,896
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,123,673
net_rshares756,429,820
author_curate_reward""
vote details (1)
@thekyle ·
Well they say every little bit helps. :)
👍  
properties (23)
authorthekyle
permlinkre-chrissymchavez-re-thekyle-introducing-asksteem-a-steem-search-engine-20170603t192847526z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-03 19:28:48
last_update2017-06-03 19:28:48
depth2
children0
last_payout2017-06-10 19:28:48
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_length40
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,124,033
net_rshares2,200,108,653
author_curate_reward""
vote details (1)
@codypanama ·
Great tool, thanks for the effort. This post paid really nice too, right on.
Sorry I found it too late, but now following
Cheers
properties (22)
authorcodypanama
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170720t225741903z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-20 22:57:42
last_update2017-07-20 22:57:42
depth1
children1
last_payout2017-07-27 22:57:42
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_length128
author_reputation3,879,315,360,846
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,129,187
net_rshares0
@thekyle ·
$0.06
Thanks, glad you like the tool.
👍  
properties (23)
authorthekyle
permlinkre-codypanama-re-thekyle-introducing-asksteem-a-steem-search-engine-20170720t225818613z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-20 22:58:18
last_update2017-07-20 22:58:18
depth2
children0
last_payout2017-07-27 22:58:18
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,129,230
net_rshares16,353,186,809
author_curate_reward""
vote details (1)
@cryplectibles · (edited)
I like everything but the name.  Expect slight competition from SteemCrawler and SteemaVista, but then Steemhoo and Steeng, will come in too.  Hopefully before all that you will be bought out by Stoogle.
👍  ,
properties (23)
authorcryplectibles
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t193623769z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 19:36:09
last_update2017-06-07 19:36:39
depth1
children1
last_payout2017-06-14 19:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation77,862,422,266,201
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,357,096
net_rshares5,127,155,082
author_curate_reward""
vote details (2)
@thekyle ·
Haha well, thanks. Glad you like the concept, and maybe the name is one of those things that grows on you over time. :)
👍  
properties (23)
authorthekyle
permlinkre-cryplectibles-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t201233993z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 20:12:33
last_update2017-06-07 20:12:33
depth2
children0
last_payout2017-06-14 20:12:33
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_length119
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,358,897
net_rshares4,711,475,046
author_curate_reward""
vote details (1)
@cryptodog ·
Amazing work @thekyle. Hopefully the Whales will upvote. Re-steeming.
properties (22)
authorcryptodog
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t235528590z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-06 23:55:30
last_update2017-06-06 23:55:30
depth1
children1
last_payout2017-06-13 23:55:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation867,897,048,877
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,303,941
net_rshares0
@thekyle ·
Really glad you like it! And thanks for the resteem.
properties (22)
authorthekyle
permlinkre-cryptodog-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t001236976z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 00:12:36
last_update2017-06-07 00:12:36
depth2
children0
last_payout2017-06-14 00:12:36
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_length52
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,304,717
net_rshares0
@cryptohustler ·
Resteemed
properties (22)
authorcryptohustler
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t174837465z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:48:39
last_update2017-06-09 17:48:39
depth1
children0
last_payout2017-06-16 17:48:39
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_length9
author_reputation914,153,620,156
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,483,261
net_rshares0
@cryptomancer ·
What a cool idea!  Just the other day I saw a comment from someone complaining about how crude Steemit's built-in search is.  I wished I could point them to some nifty tool that improves the experience.  Now I can!  Going to go try this out right away... you sir have earned another follower!
properties (22)
authorcryptomancer
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t101654117z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 10:16:54
last_update2017-06-06 10:16:54
depth1
children2
last_payout2017-06-13 10:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation27,910,646,046,989
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,263,138
net_rshares0
@thekyle ·
$0.88
Glad you like it! There is some room for improvement but it definitely works better than generic web search engines like Google (which is what steemit currently uses) which are not optimized for searching blockchains. Thanks for the follow, and make sure to spread the word if you see anyone else looking for an alternative to the default search. :)
👍  
properties (23)
authorthekyle
permlinkre-cryptomancer-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t172455440z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 17:24:57
last_update2017-06-06 17:24:57
depth2
children1
last_payout2017-06-13 17:24:57
cashout_time1969-12-31 23:59:59
total_payout_value0.662 HBD
curator_payout_value0.218 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length349
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,283,961
net_rshares241,096,527,586
author_curate_reward""
vote details (1)
@cryptomancer ·
I definitely will.  Spent some time playing around with it and it seems to work pretty well so far.
properties (22)
authorcryptomancer
permlinkre-thekyle-re-cryptomancer-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t231949852z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 23:19:51
last_update2017-06-06 23:19:51
depth3
children0
last_payout2017-06-13 23:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation27,910,646,046,989
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,302,436
net_rshares0
@djvidov ·
Good job @thekyle! Do you use LUIS (Microsoft services) or Amazon services to implement this cognitive search?
👍  
properties (23)
authordjvidov
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t201308239z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-09 20:13:09
last_update2017-06-09 20:13:09
depth1
children4
last_payout2017-06-16 20:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation11,066,789,299,895
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,490,772
net_rshares0
author_curate_reward""
vote details (1)
@thekyle ·
We use ElasticSearch hosted through AWS, with our own custom algorithm on top.
properties (22)
authorthekyle
permlinkre-djvidov-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t204733763z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 20:47:33
last_update2017-06-09 20:47:33
depth2
children3
last_payout2017-06-16 20:47:33
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_length78
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,492,676
net_rshares0
@djvidov ·
Interesting approach, I also use ELK on my daily job but I didn't expect to do that only with ELK. Congratz! :)
👍  
properties (23)
authordjvidov
permlinkre-thekyle-re-djvidov-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t205020756z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 20:50:21
last_update2017-06-09 20:50:21
depth3
children2
last_payout2017-06-16 20:50:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation11,066,789,299,895
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,492,846
net_rshares0
author_curate_reward""
vote details (1)
@doyoueatdolphins ·
Wow the syntax options are great!   It will be nice if you integrate these into the user interface.   For instance a quick button to sort the results by the most recent post would be helpful.
properties (22)
authordoyoueatdolphins
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170702t053556989z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-02 05:35:57
last_update2017-07-02 05:35:57
depth1
children1
last_payout2017-07-09 05:35:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation11,117,789,001
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,974,298
net_rshares0
@thekyle · (edited)
Thanks for the feedback, I've considered adding shortcuts but I don't want to add any clutter to the UI so it may take some time to figure something out.
properties (22)
authorthekyle
permlinkre-doyoueatdolphins-re-thekyle-introducing-asksteem-a-steem-search-engine-20170702t163056536z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-07-02 16:30:57
last_update2017-07-02 16:31:06
depth2
children0
last_payout2017-07-09 16:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,034,176
net_rshares0
@dragon40 ·
Out f'n standing!
properties (22)
authordragon40
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t154304695z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 15:43:06
last_update2017-06-09 15:43:06
depth1
children0
last_payout2017-06-16 15:43: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_length17
author_reputation6,821,883,583,944
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,476,456
net_rshares0
@dwinblood ·
I had a friend on here @kaptainkrayola who had a nice and effective search engine running for steemit called steemshovel.com until Feb 1st, 2017.    He ended it up shutting it down for exactly the reason you indicated.   No funding, and he was actually losing money by running it.
properties (22)
authordwinblood
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t152019401z
categorysteemit
json_metadata{"tags":["steemit"],"users":["kaptainkrayola"],"app":"steemit/0.1"}
created2017-06-09 15:20:18
last_update2017-06-09 15:20:18
depth1
children2
last_payout2017-06-16 15:20:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation383,232,067,634,988
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,177
net_rshares0
@thekyle ·
$0.04
Yeah, I looked into SteemShovel before launching AskSteem. Technically in the backend both search engines use ElasticSearch for indexing the blockchain, and think SteemShovel may have also been hosted on AWS. Hopefully, my goal of funding the search engine through upvotes will work out, otherwise, there are some other ideas I have for getting funding.
👍  
properties (23)
authorthekyle
permlinkre-dwinblood-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t170543770z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:05:45
last_update2017-06-09 17:05:45
depth2
children1
last_payout2017-06-16 17:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length353
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,481,124
net_rshares13,758,858,406
author_curate_reward""
vote details (1)
@dwinblood ·
Yeah my friend didn't post here enough or he likely could have funded it.   He is a developer, but didn't really want to blog.

Funny enough it was him talking to me about Eth mining that caused me to stumble on steemit, before him.    He was kicking himself and wondering how he missed it.
properties (22)
authordwinblood
permlinkre-thekyle-re-dwinblood-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t170718757z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:07:18
last_update2017-06-09 17:07:18
depth3
children0
last_payout2017-06-16 17:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation383,232,067,634,988
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,481,214
net_rshares0
@elizahfhaye ·
Wow, that is called great effort! @thekyle
https://media.giphy.com/media/3NtY188QaxDdC/giphy.gif
properties (22)
authorelizahfhaye
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t013138386z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"image":["https://media.giphy.com/media/3NtY188QaxDdC/giphy.gif"],"app":"steemit/0.1"}
created2017-06-10 01:31:39
last_update2017-06-10 01:31:39
depth1
children0
last_payout2017-06-17 01:31:39
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_length96
author_reputation66,024,390,617,355
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,505,235
net_rshares0
@ericdyce ·
Woow....genius, here to lend all the needed support
properties (22)
authorericdyce
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t221505318z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 22:15:18
last_update2017-06-07 22:15:18
depth1
children1
last_payout2017-06-14 22:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation3,184,480,752,738
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,365,047
net_rshares0
@thekyle ·
Awesome! I'm gonna need all the support I can get. :)
properties (22)
authorthekyle
permlinkre-ericdyce-re-thekyle-introducing-asksteem-a-steem-search-engine-20170608t002129945z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-08 00:21:30
last_update2017-06-08 00:21:30
depth2
children0
last_payout2017-06-15 00:21:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,371,031
net_rshares0
@everittdmickey ·
oh hell yeah.
we've needed that for a long time.
you got my vote.
properties (22)
authoreverittdmickey
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t174132027z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:41:30
last_update2017-06-09 17:41:30
depth1
children0
last_payout2017-06-16 17:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation237,810,557,737,590
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,482,935
net_rshares0
@freebornangel ·
asksteem.com is still open for an account.
I'll send you one sbd if you register it, and two more if you will give me the code that follows net_votes:<20 that limits for 6 days of age and less than a dollar payout.
properties (22)
authorfreebornangel
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170611t172930285z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 17:29:36
last_update2017-06-11 17:29:36
depth1
children12
last_payout2017-06-18 17:29:36
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_length214
author_reputation171,005,551,503,977
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,605,933
net_rshares0
@thekyle · (edited)
$0.05
Not sure what you mean by asksteem.com is still open for an account, but the code to filter posts less than 20 votes and 6 days of age would be as follows: `net_votes:<20 AND created:[2017-06-05 TO 2017-06-11]`The ability to search by payout is coming in the future, also notice that you would need to adjust the timestamp based on what day you are performing the search. Thanks.
👍  
properties (23)
authorthekyle
permlinkre-freebornangel-re-thekyle-introducing-asksteem-a-steem-search-engine-20170611t174200381z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 17:42:00
last_update2017-06-11 17:59:00
depth2
children11
last_payout2017-06-18 17:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length379
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,606,637
net_rshares18,362,836,895
author_curate_reward""
vote details (1)
@freebornangel ·
Having that account will give a central place to send questions?
Instead of your personal account?
Make it easier to sell?

I don't know, it's your's.
properties (22)
authorfreebornangel
permlinkre-thekyle-re-freebornangel-re-thekyle-introducing-asksteem-a-steem-search-engine-20170611t174720572z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-11 17:47:24
last_update2017-06-11 17:47:24
depth3
children10
last_payout2017-06-18 17:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation171,005,551,503,977
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,606,976
net_rshares0
@freebornangel · (edited)
I'm getting that server error, again?

Edit, and now i'm not,...
properties (22)
authorfreebornangel
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170612t193201789z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-12 19:32:06
last_update2017-06-12 19:33:30
depth1
children0
last_payout2017-06-19 19:32: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_length64
author_reputation171,005,551,503,977
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,678,000
net_rshares0
@furion ·
Are you using ElasticSearch?
👍  
properties (23)
authorfurion
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t184656006z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 18:46:54
last_update2017-06-09 18:46:54
depth1
children1
last_payout2017-06-16 18:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation116,503,940,714,958
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,486,254
net_rshares0
author_curate_reward""
vote details (1)
@thekyle ·
Yes, we are.
properties (22)
authorthekyle
permlinkre-furion-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t191048300z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 19:10:48
last_update2017-06-09 19:10:48
depth2
children0
last_payout2017-06-16 19:10:48
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_length12
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,487,451
net_rshares0
@gikitiki ·
This is fantastic
properties (22)
authorgikitiki
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t181349127z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 18:13:48
last_update2017-06-09 18:13:48
depth1
children0
last_payout2017-06-16 18:13:48
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_length17
author_reputation16,572,681,158,525
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,484,482
net_rshares0
@heimdall ·
Very cool concept!  I'm still wrapping my head around exactly what we can build with the steem framework.

I'm all for anything that takes advertising and personal data mining out of something as common as a search engine!
properties (22)
authorheimdall
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t204543803z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 20:45:45
last_update2017-06-09 20:45:45
depth1
children0
last_payout2017-06-16 20:45: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_length222
author_reputation1,067,367,374
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,492,584
net_rshares0
@joanroberts ·
$0.47
Hi @thekyle.  

 I'd like to tell you how happy I am for the lesson, not just on asksteem.com, but also on how to do a search and ferret out what might otherwise be obscure - but important - results.  I've been doing a little research now and then on a couple of open source investigations, and just learning more about how searches operate will help me to research for my own topics.  It will also help me better assist the activists and freedom-fighters who are busy helping  us reclaim our democracy.  

 It's a pleasure to meet you.  I'm @joanroberts, and I've been here for a whole week.  Forgive me for not upvoting - my (literal) 2 cents is going to go to someone else,  who is new,  but who, like yourself,  adds to the community.  Trust me.  When your vote is only worth 2 cents, when you see someone upvote you and you've got 4 cents, while it doesn't make you rich, it does make you smile.
👍  ,
properties (23)
authorjoanroberts
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170625t220403095z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle","joanroberts"],"app":"steemit/0.1"}
created2017-06-25 22:04:03
last_update2017-06-25 22:04:03
depth1
children2
last_payout2017-07-02 22:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.409 HBD
curator_payout_value0.058 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length900
author_reputation398,763,713,243
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,100,669
net_rshares47,057,079,984
author_curate_reward""
vote details (2)
@thekyle ·
Hi Joan thanks for your comment. I'm glad you're enjoying AskSteem and I hope you'll continue to use it for your investigations. Have a 23 cent upvote from me. :)
properties (22)
authorthekyle
permlinkre-joanroberts-re-thekyle-introducing-asksteem-a-steem-search-engine-20170625t220614232z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-25 22:06:12
last_update2017-06-25 22:06:12
depth2
children1
last_payout2017-07-02 22:06:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,100,901
net_rshares0
@joanroberts ·
@thekyle, you just brought tears to my eyes.  Thank you.
properties (22)
authorjoanroberts
permlinkre-thekyle-re-joanroberts-re-thekyle-introducing-asksteem-a-steem-search-engine-20170626t003020707z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-26 00:30:21
last_update2017-06-26 00:30:21
depth3
children0
last_payout2017-07-03 00:30:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation398,763,713,243
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,113,729
net_rshares0
@johano ·
Great job !!!
properties (22)
authorjohano
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t120430733z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 12:03:42
last_update2017-06-06 12:03:42
depth1
children0
last_payout2017-06-13 12:03:42
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_length13
author_reputation7,273,789,425,613
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,266,980
net_rshares0
@jtstreetman ·
About time, lol   GREAT job man ! This is just  ... well, Great !!! Hope more folks will start to appreciate the value of this  Search Engine, got to pay the bills !, Good luck ! Come on Folks, vote it UP !!

Read More, Reason More   ...   JTS
👍  
properties (23)
authorjtstreetman
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t031700476z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 03:17:12
last_update2017-06-06 03:17:12
depth1
children0
last_payout2017-06-13 03:17:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length243
author_reputation1,118,889,631,950
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,248,800
net_rshares154,596,435
author_curate_reward""
vote details (1)
@juanmiguelsalas ·
$0.06
Good work!!! Followed, up-voted and re-steemed the post for more visibility! I hope they can add it here on Steemit and replace the searcher we have now, it is really bad.
👍  ,
properties (23)
authorjuanmiguelsalas
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t073916520z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 07:39:12
last_update2017-06-06 07:39:12
depth1
children2
last_payout2017-06-13 07:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation91,321,277,026,429
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,258,192
net_rshares17,123,366,196
author_curate_reward""
vote details (2)
@thekyle ·
$0.03
Yeah, I would definitely love to see some steem clients (including steemit.com) start using AskSteem as their search backend.
👍  ,
properties (23)
authorthekyle
permlinkre-juanmiguelsalas-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t172009168z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 17:20:09
last_update2017-06-06 17:20:09
depth2
children1
last_payout2017-06-13 17:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,283,726
net_rshares9,793,466,269
author_curate_reward""
vote details (2)
@juanmiguelsalas ·
$0.04
That would be perfect! :) Nice work man!
👍  
properties (23)
authorjuanmiguelsalas
permlinkre-thekyle-re-juanmiguelsalas-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t172144323z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 17:21:39
last_update2017-06-06 17:21:39
depth3
children0
last_payout2017-06-13 17:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation91,321,277,026,429
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,283,808
net_rshares10,378,489,626
author_curate_reward""
vote details (1)
@kiaazad ·
I've been searching for something like this, I think it should be steems default search engine.
properties (22)
authorkiaazad
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170922t132501849z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-09-22 13:25:03
last_update2017-09-22 13:25:03
depth1
children0
last_payout2017-09-29 13:25: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_length95
author_reputation6,944,700,520,454
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,616,980
net_rshares0
@krnel ·
Nice job! Thanks so much for this!
properties (22)
authorkrnel
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t173829305z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:38:33
last_update2017-06-09 17:38:33
depth1
children0
last_payout2017-06-16 17:38:33
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_length34
author_reputation1,343,547,270,297,082
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,482,767
net_rshares0
@lakshmi ·
Just tried it and it works!!
God job.
properties (22)
authorlakshmi
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t151736311z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 15:17:39
last_update2017-06-09 15:17:39
depth1
children0
last_payout2017-06-16 15:17:39
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_length37
author_reputation4,639,984,079,456
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,034
net_rshares0
@magick323 ·
Very cool! Good job. Upvoted.
properties (22)
authormagick323
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t030152880z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 03:01:36
last_update2017-06-06 03:01:36
depth1
children1
last_payout2017-06-13 03:01:36
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_length29
author_reputation2,064,080,220,529
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,248,145
net_rshares0
@thekyle ·
Glad you like it. Thanks for the upvote, every little bit helps :)
properties (22)
authorthekyle
permlinkre-magick323-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t003759930z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 00:38:00
last_update2017-06-07 00:38:00
depth2
children0
last_payout2017-06-14 00:38:00
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_length66
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,305,838
net_rshares0
@mahaelsayed ·
great post i vote and resteem
properties (22)
authormahaelsayed
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t085544107z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 08:55:45
last_update2017-06-06 08:55:45
depth1
children0
last_payout2017-06-13 08:55: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_length29
author_reputation3,765,250,726,119
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,260,473
net_rshares0
@michaeladamparis ·
Boolean + tag search + everything else = Winner! We have been needing something like this, and perhaps it can be implemented on the blockchain itself in a future hard fork? Got to replace the current search bar with this!
properties (22)
authormichaeladamparis
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t152908523z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 15:29:06
last_update2017-06-09 15:29:06
depth1
children1
last_payout2017-06-16 15:29: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_length221
author_reputation11,246,378,246,432
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,654
net_rshares0
@thekyle ·
$0.07
It unlikely that you could include a full search engine inside the of the blockchain and make it as fast as AskSteem, however its possible in the future that they could include the ability to natively sort posts by tag (I know I was surprised the blockchain didn't have that already too)
👍  
properties (23)
authorthekyle
permlinkre-michaeladamparis-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t173249415z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:32:48
last_update2017-06-09 17:32:48
depth2
children0
last_payout2017-06-16 17:32:48
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,482,480
net_rshares22,396,127,921
author_curate_reward""
vote details (1)
@minneapplematt ·
Thanks, it looks and works good!
👍  
properties (23)
authorminneapplematt
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t152409101z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 15:24:09
last_update2017-06-09 15:24:09
depth1
children0
last_payout2017-06-16 15:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation348,482,948,803
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,377
net_rshares315,390,919
author_curate_reward""
vote details (1)
@miserableoracle ·
This looks great. I'm sure it will be way better than current searching methods.  Following for new updates. ^^
properties (22)
authormiserableoracle
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t154648704z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 15:46:54
last_update2017-06-09 15:46:54
depth1
children0
last_payout2017-06-16 15:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation1,655,543,921,926
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,476,659
net_rshares0
@misrori ·
$0.09
Great post! resteem! I hope one day it will have half of google traffic :)
👍  
properties (23)
authormisrori
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170820t045731409z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-20 04:57:33
last_update2017-08-20 04:57:33
depth1
children0
last_payout2017-08-27 04:57:33
cashout_time1969-12-31 23:59:59
total_payout_value0.066 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation20,447,544,397,525
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,318,646
net_rshares24,334,576,859
author_curate_reward""
vote details (1)
@mostshirleyalysa ·
Great idea!
properties (22)
authormostshirleyalysa
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t000414434z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 00:04:30
last_update2017-06-10 00:04:30
depth1
children0
last_payout2017-06-17 00:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation29,336,467,470
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,501,870
net_rshares0
@nigelmarkdias ·
$0.04
> The goal of AskSteem is to provide a reliable, powerful, and fast search engine that is optimized for steem

Great effort @thekyle
http://i.imgur.com/5ajbeWB.gif
👍  ,
properties (23)
authornigelmarkdias
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t152446880z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"image":["http://i.imgur.com/5ajbeWB.gif"],"app":"steemit/0.1"}
created2017-06-09 15:24:48
last_update2017-06-09 15:24:48
depth1
children2
last_payout2017-06-16 15:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation47,068,459,201,342
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,411
net_rshares14,749,024,762
author_curate_reward""
vote details (2)
@thekyle ·
Thanks!
properties (22)
authorthekyle
permlinkre-nigelmarkdias-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t173105533z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:31:06
last_update2017-06-09 17:31:06
depth2
children1
last_payout2017-06-16 17:31: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_length7
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,482,409
net_rshares0
@nigelmarkdias ·
You're welcome, @thekyle
properties (22)
authornigelmarkdias
permlinkre-thekyle-re-nigelmarkdias-re-thekyle-introducing-asksteem-a-steem-search-engine-20170610t032615185z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-10 03:26:15
last_update2017-06-10 03:26:15
depth3
children0
last_payout2017-06-17 03:26:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation47,068,459,201,342
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,509,478
net_rshares0
@nnnarvaez ·
Thanks for this! 
I've just joined here, made a few posts and comments and tried asksteem, and it can't find myself.

Is it normal?

I was willing to translate your guides to my language to help others but need to make sure it works first.

Thanks again
properties (22)
authornnnarvaez
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170826t130054889z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-26 13:00:57
last_update2017-08-26 13:00:57
depth1
children2
last_payout2017-09-02 13:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation64,435,481,297,270
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,932,143
net_rshares0
@thekyle ·
Hi there,
As you can see [here](https://www.asksteem.com/search?q=author%3Annnarvaez) it has indexed all of your posts. It may take a few days for your user account to get indexed.
👍  
properties (23)
authorthekyle
permlinkre-nnnarvaez-re-thekyle-introducing-asksteem-a-steem-search-engine-20170826t170448499z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://www.asksteem.com/search?q=author%3Annnarvaez"],"app":"steemit/0.1"}
created2017-08-26 17:04:48
last_update2017-08-26 17:04:48
depth2
children1
last_payout2017-09-02 17:04:48
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_length180
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,951,150
net_rshares1,120,004,737
author_curate_reward""
vote details (1)
@nnnarvaez ·
Thanks i though something like that was happening
properties (22)
authornnnarvaez
permlinkre-thekyle-re-nnnarvaez-re-thekyle-introducing-asksteem-a-steem-search-engine-20170827t130515196z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-27 13:05:15
last_update2017-08-27 13:05:15
depth3
children0
last_payout2017-09-03 13:05:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation64,435,481,297,270
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,023,301
net_rshares0
@oneshot · (edited)
Why 10/11 months old posts are reported with a today research as follow?
`"@oneshot" linux created:[2018-01-01 TO 2018-02-28]`<br>
![new.jpg](https://steemitimages.com/DQmUh4jyugo6UjibKndJbGqshctkbgmWfaDTpnT3J8Le1qq/new.jpg)
properties (22)
authoroneshot
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20180306t061821907z
categorysteemit
json_metadata{"tags":["steemit"],"image":["https://steemitimages.com/DQmUh4jyugo6UjibKndJbGqshctkbgmWfaDTpnT3J8Le1qq/new.jpg"],"app":"steemit/0.1"}
created2018-03-06 06:18:21
last_update2018-03-06 06:20:06
depth1
children1
last_payout2018-03-13 06:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation2,618,161,935,301
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,552,357
net_rshares0
@thekyle ·
$0.03
You need to separate the parts of your search query with boolean operators. The correct query would be: [`linux AND author:"oneshot" AND created:[2018-01-01 TO 2018-02-28]`](https://www.asksteem.com/search?q=linux+AND+author%3A%22oneshot%22+AND+created%3A%5B2018-01-01+TO+2018-02-28%5D)
👍  
properties (23)
authorthekyle
permlinkre-oneshot-re-thekyle-introducing-asksteem-a-steem-search-engine-20180306t225033418z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://www.asksteem.com/search?q=linux+AND+author%3A%22oneshot%22+AND+created%3A%5B2018-01-01+TO+2018-02-28%5D"],"app":"steemit/0.1"}
created2018-03-06 22:50:33
last_update2018-03-06 22:50:33
depth2
children0
last_payout2018-03-13 22:50:33
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length286
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,728,868
net_rshares7,073,554,887
author_curate_reward""
vote details (1)
@oneshot ·
When searching posts by keyword is possible to obtain a given chronological order? From newer to older and vice-versa?
properties (22)
authoroneshot
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20180308t050929196z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-08 05:09:30
last_update2018-03-08 05:09:30
depth1
children1
last_payout2018-03-15 05:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation2,618,161,935,301
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,031,197
net_rshares0
@thekyle ·
$0.03
It is possible to do that via our API but not through the web interface.
`https://api.asksteem.com/search?q=asksteem&sort_by=created&order=desc`
👍  
properties (23)
authorthekyle
permlinkre-oneshot-re-thekyle-introducing-asksteem-a-steem-search-engine-20180310t041123043z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-03-10 04:11:21
last_update2018-03-10 04:11:21
depth2
children0
last_payout2018-03-17 04:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,446,710
net_rshares8,665,104,737
author_curate_reward""
vote details (1)
@ozmaga ·
Sounds like a great idea. Bookmarked and upvoted!👌
properties (22)
authorozmaga
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t192814180z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 19:28:15
last_update2017-06-09 19:28:15
depth1
children0
last_payout2017-06-16 19:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation681,223,762,723
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,488,324
net_rshares0
@por500bolos ·
Awesome post, app & tool dear @thekyle. To make the things on steemit flow as they should. With absolute order and harmony!!
Kickass search engine mate. A much succulent delight to be used.
A plain inspiration for my next post. Especially now, that I'm finally able to order and organize [My original crazy stuff as God commands.](https://www.asksteem.com/search?q=author:%20por500bolos&pg=1) Cheers!! }:)

**¡Upvoted & Resteemed!**
properties (22)
authorpor500bolos
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t021156963z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"links":["https://www.asksteem.com/search?q=author:%20por500bolos&pg=1"],"app":"steemit/0.1"}
created2017-06-06 02:12:00
last_update2017-06-06 02:12:00
depth1
children2
last_payout2017-06-13 02:12:00
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_length432
author_reputation15,122,863,535,182
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,246,145
net_rshares0
@thekyle ·
Glad you like it! :)
properties (22)
authorthekyle
permlinkre-por500bolos-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t021258674z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 02:12:57
last_update2017-06-06 02:12:57
depth2
children1
last_payout2017-06-13 02:12:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,246,194
net_rshares0
@por500bolos ·
Oh! Much more than to like it my dear developer. I'm just beginning to squeeze the real juice out of your excellent creation. 
Keep Up with the good work! :)
properties (22)
authorpor500bolos
permlinkre-thekyle-re-por500bolos-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t022838457z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 02:28:42
last_update2017-06-06 02:28:42
depth3
children0
last_payout2017-06-13 02:28:42
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_length157
author_reputation15,122,863,535,182
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,246,866
net_rshares0
@pqlenator ·
$0.14
@thekyle please repost this for the benefit of those who haven't had a chance to see it. I wanted to resteem but that option is gone as the post is too old. Old posts can still be a valuable resource for us on Steemit.
👍  
properties (23)
authorpqlenator
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170622t213101995z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2017-06-22 21:31:03
last_update2017-06-22 21:31:03
depth1
children1
last_payout2017-06-29 21:31:03
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation6,852,849,487,588
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,683,562
net_rshares11,298,201,953
author_curate_reward""
vote details (1)
@thekyle ·
$0.14
I'm not going to repost because I don't want to put duplicates in my feed, however, feel free to resteem this [newer post about user search functionality](https://steemit.com/asksteem/@thekyle/new-asksteem-feature-user-search) if you'd like to spread the word.
👍  
properties (23)
authorthekyle
permlinkre-pqlenator-re-thekyle-introducing-asksteem-a-steem-search-engine-20170622t214123558z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/asksteem/@thekyle/new-asksteem-feature-user-search"],"app":"steemit/0.1"}
created2017-06-22 21:41:24
last_update2017-06-22 21:41:24
depth2
children0
last_payout2017-06-29 21:41:24
cashout_time1969-12-31 23:59:59
total_payout_value0.137 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,684,598
net_rshares11,035,453,070
author_curate_reward""
vote details (1)
@reggaemuffin ·
This is really cool! I added you to my [Tools Collection](https://steemit.com/help/@reggaemuffin/complete-guide-to-what-is-steem-it)
👍  
properties (23)
authorreggaemuffin
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170603t204625187z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://steemit.com/help/@reggaemuffin/complete-guide-to-what-is-steem-it"],"app":"steemit/0.1"}
created2017-06-03 20:46:24
last_update2017-06-03 20:46:24
depth1
children1
last_payout2017-06-10 20:46:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation37,964,839,695,531
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,127,082
net_rshares5,362,461,882
author_curate_reward""
vote details (1)
@thekyle ·
Thanks! Looks like a cool list so I'll have to check out some of the other stuff on there.
properties (22)
authorthekyle
permlinkre-reggaemuffin-re-thekyle-introducing-asksteem-a-steem-search-engine-20170603t230619187z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-03 23:06:18
last_update2017-06-03 23:06:18
depth2
children0
last_payout2017-06-10 23:06:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,131,932
net_rshares0
@revulv ·
There's a definite need for this.  Steemit's google-integrated search is almost the only time I use google search and I prefer to never use it at all.
properties (22)
authorrevulv
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t004030424z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 00:40:30
last_update2017-06-10 00:40:30
depth1
children0
last_payout2017-06-17 00:40:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation132,739,789,855
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,503,290
net_rshares0
@richreeve · (edited)
@thekyle
I've just been playing with AskSteem and I love it. I'm very impressed and I'm certainly going to adopt it as my goto source for steem based content.

I do have a couple of questions/suggestions that I would like to ask if that's ok...

1. As content on the steem blockchain is being published constantly, I was wondering if there is any way to search for new content using a time variable? The meta of every post gives an indicator of when the post was published if, within the last 24hrs, this is a min-by-min indicator. It would be incredibly powerful if I could run a time-based search or a search for content published 25mins ago. This would allow users to benefit from the 30min voting.

2. Is there any information on the SEO of your search engine. For example, if I searched the tag, "introduceyourself" how would I get my post to be listed first?

EDIT: Btw, I seem to be getting a server error (500) when I click on dashboard.
properties (22)
authorrichreeve
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20180405t222054228z
categorysteemit
json_metadata{"tags":["steemit"],"users":["thekyle"],"app":"steemit/0.1"}
created2018-04-05 22:20:54
last_update2018-04-05 22:24:09
depth1
children0
last_payout2018-04-12 22:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length945
author_reputation104,864,378,366
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,558,878
net_rshares0
@robertdurst10 ·
I was just thinking today I f*cking hate the search bar on Steemit. Glad someone else thought the same and did something about it. Resteemed. Hope you get the funding! Cheers mate!
properties (22)
authorrobertdurst10
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t235914025z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 23:59:15
last_update2017-06-06 23:59:15
depth1
children1
last_payout2017-06-13 23:59:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation5,401,785,748,657
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,304,129
net_rshares0
@thekyle · (edited)
Thanks, good to see I'm not the only one who saw this as a problem that needed solving.
👍  
properties (23)
authorthekyle
permlinkre-robertdurst10-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t001600930z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 00:16:00
last_update2017-06-07 00:16:09
depth2
children0
last_payout2017-06-14 00:16:00
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_length87
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,304,844
net_rshares4,636,919,471
author_curate_reward""
vote details (1)
@scalextrix ·
Well done, this is much needed to find stuff in steemit
properties (22)
authorscalextrix
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t093833845z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 09:38:36
last_update2017-06-06 09:38:36
depth1
children0
last_payout2017-06-13 09:38:36
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_length55
author_reputation17,941,237,668,958
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,261,928
net_rshares0
@skcamper ·
upvoted and followed.I like this and I can actually understand it!  Ty!
properties (22)
authorskcamper
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t222638150z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 22:26:39
last_update2017-06-09 22:26:39
depth1
children0
last_payout2017-06-16 22:26:39
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_length71
author_reputation4,887,389,481,081
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,497,723
net_rshares0
@smasssh ·
Awesome!!
properties (22)
authorsmasssh
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t182500268z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 18:24:54
last_update2017-06-09 18:24:54
depth1
children0
last_payout2017-06-16 18:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation44,000,682,492,974
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,485,047
net_rshares0
@steemchiller ·
<strong>You're the man!</strong> Thank you very much for your great work! It's really fast :) Would be nice to have the filter possibilities in a html form. Maybe with a link to an "advanced search" or so... I'll resteem ;)
properties (22)
authorsteemchiller
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t161639164z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 16:16:39
last_update2017-06-09 16:16:39
depth1
children2
last_payout2017-06-16 16:16:39
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_length223
author_reputation219,937,669,501,793
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,478,349
net_rshares0
@thekyle ·
Thanks, I've been planning to create an advanced search page since I launched AskSteem so that is definitely on the to-do list.
👍  
properties (23)
authorthekyle
permlinkre-steemchiller-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t172752606z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 17:27:51
last_update2017-06-09 17:27:51
depth2
children1
last_payout2017-06-16 17:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,482,224
net_rshares1,781,415,390
author_curate_reward""
vote details (1)
@steemchiller · (edited)
Perfect! Do you have access to the number of views or are they tracked by Steemit only? If that would be possible, you could add this for searching "lost content", which didn't get many views (for whatever reason), but nevertheless could be interesting content for some of us...
properties (22)
authorsteemchiller
permlinkre-thekyle-re-steemchiller-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t181208353z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 18:12:06
last_update2017-06-09 18:12:42
depth3
children0
last_payout2017-06-16 18:12: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_length278
author_reputation219,937,669,501,793
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,484,398
net_rshares0
@steeminganarchy ·
Very impressive! Nice work.
properties (22)
authorsteeminganarchy
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t000526497z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 00:05:27
last_update2017-06-10 00:05:27
depth1
children0
last_payout2017-06-17 00:05:27
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_length27
author_reputation126,775,254,040,929
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,501,905
net_rshares0
@steemitqa ·
If you need to use the account @asksteem let me know :)
It's being used to ask questions , but maybe it can be used for people to query right inside steemit to pull up info from your  search engine.
properties (22)
authorsteemitqa
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t152202328z
categorysteemit
json_metadata{"tags":["steemit"],"users":["asksteem"],"app":"steemit/0.1"}
created2017-06-09 15:21:39
last_update2017-06-09 15:21:39
depth1
children2
last_payout2017-06-16 15:21:39
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_length198
author_reputation22,135,803,163,402
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,475,255
net_rshares0
@thekyle ·
Yeah, I could build a bot that allows people to query the index from steemit directly. Are you available on steem chat?
properties (22)
authorthekyle
permlinkre-steemitqa-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t211616058z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 21:16:15
last_update2017-06-09 21:16:15
depth2
children1
last_payout2017-06-16 21:16:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,494,119
net_rshares0
@steemitqa ·
> Yeah, I could build a bot that allows people to query the index from steemit directly. Are you available on steem chat?

I am good sir. Steemitqa under steemit.chat. 

Yes, it would allow people to query the index from steemit directly and come back with the results.
properties (22)
authorsteemitqa
permlinkre-thekyle-re-steemitqa-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t211805864z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 21:17:42
last_update2017-06-09 21:17:42
depth3
children0
last_payout2017-06-16 21:17:42
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_length269
author_reputation22,135,803,163,402
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,494,187
net_rshares0
@steevc ·
$0.55
Looks great. We have the metadata, so searching by that should make life easier. Thanks
👍  , , ,
properties (23)
authorsteevc
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t071623726z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 07:16:24
last_update2017-06-06 07:16:24
depth1
children0
last_payout2017-06-13 07:16:24
cashout_time1969-12-31 23:59:59
total_payout_value0.524 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation1,383,352,404,232,940
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,257,450
net_rshares153,283,060,871
author_curate_reward""
vote details (4)
@svosse ·
$0.21
Great tool, thanks for building this. Is there a way to sort the search results? For examply by number of votes or comments? Or does anybody know another tool that does this?
👍  
properties (23)
authorsvosse
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20180113t064616066z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-13 06:46:15
last_update2018-01-13 06:46:15
depth1
children2
last_payout2018-01-20 06:46:15
cashout_time1969-12-31 23:59:59
total_payout_value0.158 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation3,868,527,914,261
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,167,811
net_rshares26,367,074,941
author_curate_reward""
vote details (1)
@thekyle ·
$0.11
Not currently through the Web UI, but that functionality is available in our [developer API](https://github.com/Hoxly/asksteem-docs/wiki) so it may come in the future.
👍  
properties (23)
authorthekyle
permlinkre-svosse-re-thekyle-introducing-asksteem-a-steem-search-engine-20180115t231749197z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://github.com/Hoxly/asksteem-docs/wiki"],"app":"steemit/0.1"}
created2018-01-15 23:17:48
last_update2018-01-15 23:17:48
depth2
children1
last_payout2018-01-22 23:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.086 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,811,589
net_rshares12,029,668,426
author_curate_reward""
vote details (1)
@svosse ·
$0.11
Ah great, you have an API. Thanks for answering, I'll definitely look into that.
👍  
properties (23)
authorsvosse
permlinkre-thekyle-re-svosse-re-thekyle-introducing-asksteem-a-steem-search-engine-20180116t044001072z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-16 04:40:00
last_update2018-01-16 04:40:00
depth3
children0
last_payout2018-01-23 04:40:00
cashout_time1969-12-31 23:59:59
total_payout_value0.111 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation3,868,527,914,261
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,858,477
net_rshares12,029,668,426
author_curate_reward""
vote details (1)
@system-sengine ·
$0.05
This is good. Got a question though: Is there a way to check who resteemed a post?
👍  
properties (23)
authorsystem-sengine
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170616t202000345z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-16 20:20:06
last_update2017-06-16 20:20:06
depth1
children2
last_payout2017-06-23 20:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation215,253,611,637
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,038,434
net_rshares2,393,107,169
author_curate_reward""
vote details (1)
@thekyle · (edited)
$0.17
No, and sadly its not likely to be added in the future because resteems are not part of the blockchain and are kept in steemit.com's private database I have no way to index them.
👍  ,
properties (23)
authorthekyle
permlinkre-system-sengine-re-thekyle-introducing-asksteem-a-steem-search-engine-20170616t202220488z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-16 20:22:21
last_update2017-06-16 20:22:48
depth2
children1
last_payout2017-06-23 20:22:21
cashout_time1969-12-31 23:59:59
total_payout_value0.130 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,038,577
net_rshares7,925,154,588
author_curate_reward""
vote details (2)
@system-sengine ·
Too bad :/ Thanks for the quick answer.
properties (22)
authorsystem-sengine
permlinkre-thekyle-re-system-sengine-re-thekyle-introducing-asksteem-a-steem-search-engine-20170616t205305547z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-16 20:53:12
last_update2017-06-16 20:53:12
depth3
children0
last_payout2017-06-23 20:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation215,253,611,637
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,040,512
net_rshares0
@tectum ·
Great tool, thanks!
properties (22)
authortectum
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20180109t003751652z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-01-09 00:37:51
last_update2018-01-09 00:37:51
depth1
children0
last_payout2018-01-16 00:37:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation4,102,085,152
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,123,504
net_rshares0
@the-ego-is-you · (edited)
I like it. Works much smoother than the search on Steemit.com and has some nice features. 

Resteemed!
properties (22)
authorthe-ego-is-you
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t121356709z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 12:13:54
last_update2017-06-06 12:14:39
depth1
children2
last_payout2017-06-13 12:13:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation7,031,347,556,614
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,267,407
net_rshares0
@thekyle ·
$0.02
Thanks for the resteem, I'm going to keep improving it, but I'm glad you like it. It should work better than Steemit's default search because it interfaces directly with the blockchain rather than using a HTML proxy layer (like the current steemit search)
👍  ,
properties (23)
authorthekyle
permlinkre-the-ego-is-you-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t004014473z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 00:40:15
last_update2017-06-07 00:40:15
depth2
children1
last_payout2017-06-14 00:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,305,951
net_rshares7,446,510,632
author_curate_reward""
vote details (2)
@the-ego-is-you ·
Yes the google search function is a bit primitive so this is a great step up :)
properties (22)
authorthe-ego-is-you
permlinkre-thekyle-201767t61740518z
categorysteemit
json_metadata{"tags":"steemit","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-07 04:17:45
last_update2017-06-07 04:17:45
depth3
children0
last_payout2017-06-14 04:17: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_length79
author_reputation7,031,347,556,614
root_title"Introducing AskSteem - A steem search engine"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,314,719
net_rshares0
@thedynamic ·
It would be really nice to have a search engine dedicated to steemit!  Waiting for the tool to go live.
properties (22)
authorthedynamic
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170604t051828075z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-04 05:18:30
last_update2017-06-04 05:18:30
depth1
children1
last_payout2017-06-11 05:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation30,910,007,448
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,142,835
net_rshares0
@thekyle ·
It is live! https://www.asksteem.com :)
properties (22)
authorthekyle
permlinkre-thedynamic-re-thekyle-introducing-asksteem-a-steem-search-engine-20170604t160801151z
categorysteemit
json_metadata{"tags":["steemit"],"links":["https://www.asksteem.com"],"app":"steemit/0.1"}
created2017-06-04 16:08:00
last_update2017-06-04 16:08:00
depth2
children0
last_payout2017-06-11 16:08:00
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_length39
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,164,484
net_rshares0
@traderdad ·
Kyle, Thanks for a great too. As a trader in all markets, your search tool helped me find two other Steemians who also post market and trading data.
properties (22)
authortraderdad
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t004538751z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 00:45:42
last_update2017-06-07 00:45:42
depth1
children1
last_payout2017-06-14 00:45:42
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_length148
author_reputation840,256,477,178
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,306,184
net_rshares0
@thekyle ·
Glad you found the tool useful. :)
properties (22)
authorthekyle
permlinkre-traderdad-re-thekyle-introducing-asksteem-a-steem-search-engine-20170607t125507187z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 12:55:06
last_update2017-06-07 12:55:06
depth2
children0
last_payout2017-06-14 12:55: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_length34
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,335,073
net_rshares0
@transisto · (edited)
$3.01
Highly recommended tags for such post #steemdev and #steem-project

You almost missed out on 300$ of reward by not having this tag.
👍  , ,
properties (23)
authortransisto
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170609t200415178z
categorysteemit
json_metadata{"tags":["steemdev","steem-project","steemit"],"app":"steemit/0.1"}
created2017-06-09 20:04:18
last_update2017-06-09 20:07:03
depth1
children3
last_payout2017-06-16 20:04:18
cashout_time1969-12-31 23:59:59
total_payout_value2.998 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation330,357,940,720,833
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,490,270
net_rshares814,411,026,372
author_curate_reward""
vote details (3)
@thekyle ·
Well thanks for letting me know, I'll make sure to include those in future posts.
properties (22)
authorthekyle
permlinkre-transisto-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t204609302z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 20:46:09
last_update2017-06-09 20:46:09
depth2
children2
last_payout2017-06-16 20:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,492,608
net_rshares0
@transisto ·
you can edit
properties (22)
authortransisto
permlinkre-thekyle-re-transisto-re-thekyle-introducing-asksteem-a-steem-search-engine-20170609t214649897z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-09 21:46:51
last_update2017-06-09 21:46:51
depth3
children1
last_payout2017-06-16 21:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation330,357,940,720,833
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,495,702
net_rshares0
@uv888p ·
Congratulations on a fantastic project, I have voted and resteemed
properties (22)
authoruv888p
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t095425204z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 09:54:24
last_update2017-06-06 09:54:24
depth1
children0
last_payout2017-06-13 09:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation43,800,280,419
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,262,429
net_rshares0
@veganv ·
This seems like a interesting and helpful resource, thanks for sharing.
properties (22)
authorveganv
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t045637273z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 04:56:36
last_update2017-06-06 04:56:36
depth1
children0
last_payout2017-06-13 04:56:36
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_length71
author_reputation57,074,296
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,252,531
net_rshares0
@wahidplayz ·
Great, Very likely awesome thing! thanks for it, resteemed it !
properties (22)
authorwahidplayz
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20181129t161806337z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2018-11-29 16:18:09
last_update2018-11-29 16:18:09
depth1
children0
last_payout2018-12-06 16:18:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation697,885,027
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id76,103,972
net_rshares0
@wallsnow ·
Nice article!By the way,I have upvoted your post,can you upvote my new post? Thanks
properties (22)
authorwallsnow
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170605t140030323z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-05 14:00:39
last_update2017-06-05 14:00:39
depth1
children0
last_payout2017-06-12 14:00:39
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_length83
author_reputation199,985,198,977
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,212,779
net_rshares0
@whatsup ·
$5.24
properties (23)
authorwhatsup
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170606t072319263z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 07:23:21
last_update2017-06-06 07:23:21
depth1
children3
last_payout2017-06-13 07:23:21
cashout_time1969-12-31 23:59:59
total_payout_value3.934 HBD
curator_payout_value1.303 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation519,839,651,581,670
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,257,695
net_rshares1,170,090,758,250
author_curate_reward""
vote details (9)
@michellecarter ·
How do your 'Resteem' a post?
👍  
properties (23)
authormichellecarter
permlinkre-whatsup-re-thekyle-introducing-asksteem-a-steem-search-engine-20170822t121329801z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-08-22 12:13:30
last_update2017-08-22 12:13:30
depth2
children0
last_payout2017-08-29 12:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation10,645,627,009,265
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,528,455
net_rshares0
author_curate_reward""
vote details (1)
@thekyle · (edited)
Thanks, I look forward to making it even better!
👍  ,
properties (23)
authorthekyle
permlinkre-whatsup-re-thekyle-introducing-asksteem-a-steem-search-engine-20170606t135508520z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-06 13:55:09
last_update2017-06-06 13:55:15
depth2
children1
last_payout2017-06-13 13:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,272,304
net_rshares114,562,786
author_curate_reward""
vote details (2)
@nitromad ·
yay
👍  
properties (23)
authornitromad
permlinkre-thekyle-re-whatsup-re-thekyle-introducing-asksteem-a-steem-search-engine-20170610t201422973z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 20:14:33
last_update2017-06-10 20:14:33
depth3
children0
last_payout2017-06-17 20:14:33
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_length3
author_reputation201,010,841,442
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,551,115
net_rshares84,414,684
author_curate_reward""
vote details (1)
@whizzkid · (edited)
Have been looking for sth. like that! Good Job. Hope this will be implemented in steemit.com! Resteemed.
properties (22)
authorwhizzkid
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170627t215920274z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 21:59:21
last_update2017-06-27 23:21:27
depth1
children1
last_payout2017-07-04 21:59:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation407,475,625,680
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,393,752
net_rshares0
@thekyle ·
Thanks.
properties (22)
authorthekyle
permlinkre-whizzkid-re-thekyle-introducing-asksteem-a-steem-search-engine-20170627t215954892z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-27 21:59:54
last_update2017-06-27 21:59:54
depth2
children0
last_payout2017-07-04 21:59:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation4,705,240,024,157
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,393,817
net_rshares0
@xervantes ·
Resteemed, upvoted and bookmarked. Its like watching Google being developed for the first time. Excellent work
properties (22)
authorxervantes
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170610t165551565z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-10 16:55:54
last_update2017-06-10 16:55:54
depth1
children0
last_payout2017-06-17 16:55:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation7,940,091,240,088
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,541,471
net_rshares0
@yacov ·
cool stuff  ...resteemed
👍  
properties (23)
authoryacov
permlinkre-thekyle-introducing-asksteem-a-steem-search-engine-20170607t062938625z
categorysteemit
json_metadata{"tags":["steemit"],"app":"steemit/0.1"}
created2017-06-07 06:29:39
last_update2017-06-07 06:29:39
depth1
children0
last_payout2017-06-14 06:29:39
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_length24
author_reputation294,798,054,531
root_title"Introducing AskSteem - A steem search engine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,319,676
net_rshares1,571,388,740
author_curate_reward""
vote details (1)