diff --git a/hive/db/db_state.py b/hive/db/db_state.py index 8df0b6f751a628657dbf0afb045f73054991eb22..fce39a6d2d537e35190e9d6161b5c31590eef84c 100644 --- a/hive/db/db_state.py +++ b/hive/db/db_state.py @@ -144,7 +144,7 @@ class DbState: 'blacklisted_block_num_idx', 'follow_muted_block_num_idx', 'follow_blacklisted_block_num_idx', - 'hive_post_data_bm25_idx', + 'hive_text_search_data_body_tsv_idx', ] to_return = {} diff --git a/hive/db/schema.py b/hive/db/schema.py index 5987ab85521e5be201146364d1ca2efb60a50ee5..6c9f332d6c57f98f4ff3a7e9a3e53e85e17f646f 100644 --- a/hive/db/schema.py +++ b/hive/db/schema.py @@ -20,7 +20,6 @@ from hive.conf import SCHEMA_OWNER_NAME from hive.indexer.hive_db.haf_functions import prepare_app_context from hive.version import GIT_DATE, GIT_REVISION, VERSION -import json log = logging.getLogger(__name__) @@ -164,10 +163,7 @@ def build_metadata(): postgresql_where=sql_text("NOT is_paidout AND counter_deleted = 0"), ) ) - text_fields = json.dumps({ - "title": {"record": "position"}, - "body": {"record": "position"}, - }) + sa.Table( 'hive_post_data', metadata, @@ -175,15 +171,6 @@ def build_metadata(): sa.Column('title', VARCHAR(512), nullable=False, server_default=''), sa.Column('body', TEXT, nullable=False, server_default=''), sa.Column('json', TEXT, nullable=False, server_default=''), - # BM25 index for full-text search - sa.Index('hive_post_data_bm25_idx', - 'id', 'title', 'body', - postgresql_using='bm25', - postgresql_with={ - 'key_field': "'id'", - 'text_fields': f"'{text_fields}'" - }, - postgresql_where=sql_text(f'{SCHEMA_NAME}.is_top_level_post(id)')) ) sa.Table( @@ -194,6 +181,14 @@ def build_metadata(): sa.UniqueConstraint('permlink', name='hive_permlink_data_permlink'), ) + sa.Table( + 'hive_text_search_data', + metadata, + sa.Column('id', sa.Integer, primary_key=True, autoincrement=False), + sa.Column('body_tsv', TSVECTOR, nullable=False, server_default=''), + sa.Index('hive_text_search_data_body_tsv_idx', 'body_tsv', postgresql_using='gin') + ) + sa.Table( 'hive_category_data', metadata, @@ -492,45 +487,8 @@ def setup(db, admin_db): admin_db.query(f'CREATE SCHEMA IF NOT EXISTS hivemind_endpoints AUTHORIZATION {SCHEMA_OWNER_NAME};') admin_db.query(f'CREATE SCHEMA IF NOT EXISTS hivemind_postgrest_utilities AUTHORIZATION {SCHEMA_OWNER_NAME};') - # Create extensions before table creation (needed for BM25 index type) - # Create ParadeDB pg_search extension for BM25 search - admin_db.query('CREATE EXTENSION IF NOT EXISTS pg_search;') - # Create plpython3u extension (requires superuser privileges) - # Note: plpython3u is an untrusted language, only superusers can use it - admin_db.query('CREATE EXTENSION IF NOT EXISTS plpython3u;') - prepare_app_context(db=db) - - # Create a dummy is_top_level_post function BEFORE table creation so the - # BM25 index WHERE clause can refer to it - sql = f""" - CREATE OR REPLACE FUNCTION {SCHEMA_NAME}.is_top_level_post(post_id INTEGER) - RETURNS BOOLEAN - LANGUAGE sql - IMMUTABLE PARALLEL SAFE - AS $$ - SELECT TRUE; - $$; - """ - db.query_no_return(sql) - build_metadata().create_all(db.engine()) - - # Now that tables exist, replace the function with its real implementation that - # references the hive_posts table - sql = f""" - CREATE OR REPLACE FUNCTION {SCHEMA_NAME}.is_top_level_post(post_id INTEGER) - RETURNS BOOLEAN - LANGUAGE sql - IMMUTABLE PARALLEL SAFE - AS $$ - SELECT EXISTS ( - SELECT 1 FROM {SCHEMA_NAME}.hive_posts hp - WHERE hp.id = post_id AND hp.depth = 0 - ); - $$; - """ - db.query_no_return(sql) create_statistics(db) @@ -618,14 +576,6 @@ def setup(db, admin_db): """ db.query_no_return(sql) - # Execute plpython3u scripts with admin privileges - sql_scripts_dir_path = Path(__file__).parent / 'sql_scripts' - admin_sql_scripts = [ - "postgrest/utilities/preprocess_search_query.sql", - ] - for script in admin_sql_scripts: - execute_sql_script(admin_db.query_no_return, sql_scripts_dir_path / script) - def setup_runtime_code(db): sql_scripts = [ "utility_functions.sql", @@ -739,7 +689,6 @@ def setup_runtime_code(db): "postgrest/utilities/find_subscription_id.sql", "postgrest/bridge_api/bridge_api_get_profiles.sql", "postgrest/utilities/valid_accounts.sql", - # preprocess_search_query.sql moved to admin execution below "postgrest/search-api/find_text.sql", "endpoints/endpoint_schema.sql", "endpoints/types/operation.sql", diff --git a/hive/db/sql_scripts/postgrest/search-api/find_text.sql b/hive/db/sql_scripts/postgrest/search-api/find_text.sql index 000534b279a4383607310236c90d99b225459149..6603c34acd384bbaec3a555c78157b0e50a46d90 100644 --- a/hive/db/sql_scripts/postgrest/search-api/find_text.sql +++ b/hive/db/sql_scripts/postgrest/search-api/find_text.sql @@ -15,7 +15,6 @@ DECLARE _truncate_body INT; _result JSONB; _author_id INT; - _search_query TEXT; BEGIN _params = hivemind_postgrest_utilities.validate_json_arguments(_params, '{"pattern": "string", "sort": "string", "author": "string", "start_author": "string", "start_permlink": "string", "limit": "number", "observer": "string", "truncate_body": "number"}', 1, '{"start_permlink": "permlink must be string"}'); @@ -32,6 +31,7 @@ BEGIN _pattern = hivemind_postgrest_utilities.parse_argument_from_json(_params, 'pattern', True); + _observer_id = hivemind_postgrest_utilities.find_account_id( hivemind_postgrest_utilities.valid_account( hivemind_postgrest_utilities.parse_argument_from_json(_params, 'observer', False), @@ -53,162 +53,41 @@ BEGIN ELSE RAISE EXCEPTION '%', hivemind_postgrest_utilities.raise_parameter_validation_exception('Unsupported sort, valid sorts: relevance, created'); END CASE; - -- Build search query for ParadeDB using the preprocessor - -- Handles: quoted phrases, +/- terms, field specifications, and escaping - _search_query = hivemind_postgrest_utilities.preprocess_search_query(_pattern); - - -- If preprocessing returns empty (e.g., for empty input), return empty result - IF _search_query = '' OR _search_query IS NULL THEN - RETURN '[]'::jsonb; - END IF; + -- TODO(mickiewicz@syncad.com): maybe we should give options to search only with post with a give tag (_tag parameter) ?) + -- TODO(mickiewicz@syncad.com): add search only in communities posts - -- Branch based on whether author is specified - IF _author_id > 0 THEN - -- Author-specific search: filter by author first, then search - _result = ( - SELECT jsonb_agg ( - hivemind_postgrest_utilities.create_bridge_post_object(_observer_id, row, _truncate_body, NULL, row.is_pinned, True) - ) FROM ( - WITH -- Get all posts by the specified author - author_posts AS ( - SELECT id - FROM hivemind_app.hive_posts - WHERE author_id = _author_id - AND depth = 0 - ), - -- Search within author's posts - bm25_posts AS ( - SELECT - hpd.id as id, - CASE _sort_type - WHEN 'relevance' THEN paradedb.score(hpd.id) - ELSE 0 - END as score - FROM hivemind_app.hive_post_data hpd - INNER JOIN author_posts ap ON ap.id = hpd.id - WHERE hpd @@@ paradedb.parse(_search_query) - ORDER BY - CASE _sort_type - WHEN 'relevance' THEN paradedb.score(hpd.id) - ELSE hpd.id - END DESC - LIMIT _limit * 2 -- Reduced multiplier for better performance - ), - not_muted_posts as ( - SELECT bp.id, bp.score - FROM bm25_posts bp - JOIN hivemind_app.hive_posts hp ON hp.id = bp.id - WHERE (_observer_id = 0 OR NOT EXISTS ( - SELECT 1 - FROM hivemind_app.muted_accounts_by_id_view - WHERE observer_id = _observer_id AND muted_id = hp.author_id)) - ), - ordered_posts as ( - SELECT nmp.id, - ROW_NUMBER() OVER ( - ORDER BY - CASE _sort_type - WHEN 'created' THEN nmp.id - ELSE nmp.score - END DESC, - nmp.id DESC - ) AS rank_order, - nmp.score - FROM not_muted_posts nmp - ), - upper_bound as ( - SELECT op.rank_order AS from_order - FROM ordered_posts op - WHERE op.id = _post_id - ) - SELECT - hp.id, - hp.author, - hp.parent_author, - hp.author_rep, - hp.root_title, - hp.beneficiaries, - hp.max_accepted_payout, - hp.percent_hbd, - hp.url, - hp.permlink, - hp.parent_permlink_or_category, - hp.title, - hp.body, - hp.category, - hp.depth, - hp.payout, - hp.pending_payout, - hp.payout_at, - hp.is_paidout, - hp.children, - hp.votes, - hp.created_at, - hp.updated_at, - hp.rshares, - hp.abs_rshares, - hp.json, - hp.is_hidden, - hp.is_grayed, - hp.total_votes, - hp.sc_trend, - hp.role_title, - hp.community_title, - hp.role_id, - hp.is_pinned, - hp.curator_payout_value, - hp.is_muted, - hp.source AS blacklists, - hp.muted_reasons - FROM ordered_posts op, - LATERAL hivemind_app.get_full_post_view_by_id(op.id, _observer_id) hp - WHERE op.rank_order > - COALESCE((SELECT from_order FROM upper_bound),0) - ORDER BY op.rank_order ASC - LIMIT _limit - ) row - ); - ELSE - -- General search: use BM25 with early limiting - _result = ( - SELECT jsonb_agg ( - hivemind_postgrest_utilities.create_bridge_post_object(_observer_id, row, _truncate_body, NULL, row.is_pinned, True) - ) FROM ( - WITH -- find posts with BM25 search, LIMIT EARLY - bm25_posts AS ( + _result = ( + SELECT jsonb_agg ( + hivemind_postgrest_utilities.create_bridge_post_object(_observer_id, row, _truncate_body, NULL, row.is_pinned, True) + ) FROM ( + WITH -- find posts with a given pattern + all_posts as + ( SELECT - hpd.id as id, - CASE _sort_type - WHEN 'relevance' THEN paradedb.score(hpd.id) - ELSE 0 - END as score - FROM hivemind_app.hive_post_data hpd - WHERE hpd @@@ paradedb.parse(_search_query) - ORDER BY - CASE _sort_type - WHEN 'relevance' THEN paradedb.score(hpd.id) - ELSE hpd.id - END DESC - LIMIT _limit * 2 -- Reduced multiplier for better performance - ), - not_muted_posts as ( - SELECT bp.id, bp.score - FROM bm25_posts bp - JOIN hivemind_app.hive_posts hp ON hp.id = bp.id - WHERE (_observer_id = 0 OR NOT EXISTS ( - SELECT 1 - FROM hivemind_app.muted_accounts_by_id_view - WHERE observer_id = _observer_id AND muted_id = hp.author_id)) + htsd.id as id + , ts_rank( htsd.body_tsv, plainto_tsquery('simple', _pattern ) ) as rank + FROM hivemind_app.hive_text_search_data htsd --TODO(mickiewicz@syncad.com): dead (deleted) posts are also found + WHERE htsd.body_tsv @@ plainto_tsquery( 'simple', _pattern ) ), + not_muted_posts as ( + SELECT ap.id, ap.rank + FROM all_posts ap + JOIN hivemind_app.hive_posts hp ON hp.id = ap.id + WHERE (_observer_id = 0 OR NOT EXISTS ( + SELECT 1 + FROM hivemind_app.muted_accounts_by_id_view + WHERE observer_id = _observer_id AND muted_id = hp.author_id)) + AND (_author_id = 0 OR hp.author_id = _author_id) + ), ordered_posts as ( SELECT nmp.id, CASE _sort_type WHEN 'created' THEN ROW_NUMBER() OVER (ORDER BY nmp.id DESC) -- newer first ELSE - ROW_NUMBER() OVER (ORDER BY nmp.score DESC, nmp.id DESC) + ROW_NUMBER() OVER (ORDER BY nmp.rank DESC, nmp.id DESC) END::int AS rank_order, - nmp.score + nmp.rank FROM not_muted_posts nmp ), upper_bound as ( -- find starting post (if passed) order @@ -262,8 +141,7 @@ BEGIN ORDER BY op.rank_order ASC LIMIT _limit ) row - ); - END IF; + ); RETURN COALESCE(_result, '[]'::jsonb); END diff --git a/hive/db/sql_scripts/postgrest/utilities/preprocess_search_query.sql b/hive/db/sql_scripts/postgrest/utilities/preprocess_search_query.sql deleted file mode 100644 index febf931a80e691d886eb4a4104950d7026339041..0000000000000000000000000000000000000000 --- a/hive/db/sql_scripts/postgrest/utilities/preprocess_search_query.sql +++ /dev/null @@ -1,177 +0,0 @@ --- Helper function to preprocess search queries for ParadeDB --- Handles quoted phrases, +/- prefixes, field specifications, and escaping - -DROP FUNCTION IF EXISTS hivemind_postgrest_utilities.preprocess_search_query; -CREATE OR REPLACE FUNCTION hivemind_postgrest_utilities.preprocess_search_query(_pattern TEXT) -RETURNS TEXT -LANGUAGE plpython3u -IMMUTABLE -SECURITY DEFINER -AS $$ -import re - -def preprocess_search_query(pattern): - """ - Preprocesses user search queries to generate valid ParadeDB query syntax. - - Handles: - - Quoted phrases: "hello world" -> exact phrase search - - Must/mustnot: +term -term - - Field-specific: title:term or body:term - - Default: searches both title and body fields - """ - if not pattern or not pattern.strip(): - return '' - - # First pass: fix unclosed quotes by adding closing quotes at the end - quote_count = pattern.count('"') - if quote_count % 2 != 0: - pattern = pattern + '"' - - # Tokenize the input while preserving quoted phrases - tokens = [] - i = 0 - while i < len(pattern): - # Skip whitespace - while i < len(pattern) and pattern[i].isspace(): - i += 1 - if i >= len(pattern): - break - - # Check for quoted phrase - if pattern[i] == '"': - j = i + 1 - phrase_parts = [] - while j < len(pattern): - if pattern[j] == '"': - # Found closing quote - phrase = ''.join(phrase_parts) - # Escape any quotes within the phrase - phrase = phrase.replace('"', '\\"') - tokens.append(('phrase', f'"{phrase}"')) - i = j + 1 - break - elif pattern[j] == '\\' and j + 1 < len(pattern): - # Handle escaped characters - phrase_parts.append(pattern[j:j+2]) - j += 2 - else: - phrase_parts.append(pattern[j]) - j += 1 - else: - # Should not happen due to quote fixing above - i = j - - # Check for must/mustnot prefix - elif pattern[i] == '+': - j = i + 1 - while j < len(pattern) and not pattern[j].isspace(): - j += 1 - term = pattern[i+1:j] - if term: - tokens.append(('must', term)) - i = j - - elif pattern[i] == '-': - j = i + 1 - while j < len(pattern) and not pattern[j].isspace(): - j += 1 - term = pattern[i+1:j] - if term: - tokens.append(('mustnot', term)) - i = j - - # Check for field:value pattern - else: - j = i - while j < len(pattern) and not pattern[j].isspace(): - j += 1 - word = pattern[i:j] - - # Check if it's a field specification - if ':' in word and word.split(':', 1)[0] in ['title', 'body']: - field, value = word.split(':', 1) - # Check if value starts with a quote (field:"quoted value") - if value.startswith('"'): - # Find the closing quote - k = j - if not value.endswith('"'): - # Continue searching for closing quote - while k < len(pattern): - if pattern[k] == '"': - value = pattern[i:k+1].split(':', 1)[1] - j = k + 1 - break - k += 1 - # Process the field:value - if value.startswith('"') and value.endswith('"'): - inner = value[1:-1] - inner = inner.replace('"', '\\"') - tokens.append(('field', f'{field}:"{inner}"')) - else: - tokens.append(('field', f'{field}:{value}')) - else: - tokens.append(('field', word)) - else: - # Regular word - if word and word != '"': # Skip standalone quotes - tokens.append(('word', word)) - i = j - - if not tokens: - return '' - - # Build the ParadeDB query - query_parts = [] - - for token_type, value in tokens: - if token_type == 'field': - # Field-specific search - use as-is - query_parts.append(value) - - elif token_type == 'phrase': - # Quoted phrase - search in both fields - query_parts.append(f'(title:{value} OR body:{value})') - - elif token_type == 'must': - # Must have term - search in both fields with + prefix - # Escape quotes in the term if present - if '"' in value: - value = value.replace('"', '\\"') - query_parts.append(f'+(title:{value} OR body:{value})') - - elif token_type == 'mustnot': - # Must not have term - search in both fields with - prefix - # Escape quotes in the term if present - if '"' in value: - value = value.replace('"', '\\"') - query_parts.append(f'-(title:{value} OR body:{value})') - - elif token_type == 'word': - # Regular word - search in both fields - # Escape quotes if present - if '"' in value: - value = value.replace('"', '\\"') - query_parts.append(f'(title:{value} OR body:{value})') - - # Join with AND by default (like Google) - # Must/mustnot terms are already prefixed, so they work correctly - result = ' AND '.join([q for q in query_parts if not q.startswith(('+', '-'))]) - - # Add must/mustnot terms at the end - must_terms = ' '.join([q for q in query_parts if q.startswith(('+', '-'))]) - if must_terms: - if result: - result = f'{result} {must_terms}' - else: - result = must_terms - - return result - -# Call the function -return preprocess_search_query(_pattern) -$$; - --- Grant execute permission -GRANT EXECUTE ON FUNCTION hivemind_postgrest_utilities.preprocess_search_query TO hivemind; -GRANT EXECUTE ON FUNCTION hivemind_postgrest_utilities.preprocess_search_query TO hivemind_user; \ No newline at end of file diff --git a/hive/indexer/post_data_cache.py b/hive/indexer/post_data_cache.py index d6483c157e0841e4fe7d5e304686686a825ac269..5d9377aaf35906d29360a3087ca64547a0d9c90c 100644 --- a/hive/indexer/post_data_cache.py +++ b/hive/indexer/post_data_cache.py @@ -78,6 +78,13 @@ class PostDataCache(DbAdapterHolder): SELECT id, title, body, json FROM insert_values RETURNING id ), + insert_search_text AS ( + INSERT INTO {SCHEMA_NAME}.hive_text_search_data (id, body_tsv) + SELECT iv.id, to_tsvector('simple', COALESCE(iv.title, '') || ' ' || COALESCE(iv.body, '')) + FROM insert_values iv + WHERE iv.is_root = true + RETURNING id + ), update_post_data AS ( UPDATE {SCHEMA_NAME}.hive_post_data AS hpd SET title = COALESCE( i.title, hpd.title ), @@ -87,13 +94,27 @@ class PostDataCache(DbAdapterHolder): WHERE hpd.id = i.id AND i.id IS NOT NULL RETURNING hpd.id ), + update_search_text AS ( + UPDATE {SCHEMA_NAME}.hive_text_search_data + SET body_tsv = to_tsvector('simple', COALESCE(i.title, '') || ' ' || COALESCE(i.body, '')) --TODO(mickiewicz@syncad.com) title or body could be null + FROM update_values i + WHERE hive_text_search_data.id = i.id AND i.id IS NOT NULL + RETURNING hive_text_search_data.id + ), combined AS ( SELECT id FROM insert_post_data UNION ALL SELECT id FROM update_post_data + ), + combined_text_search AS ( + SELECT id FROM insert_search_text + UNION ALL + SELECT id FROM update_search_text ) SELECT {SCHEMA_NAME}.process_hive_post_mentions(array_agg(id)) FROM combined + UNION ALL + SELECT id FROM combined_text_search """ if print_query: log.info(f"Executing query:\n{sql}") diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance.pat.json index ef406f5977f327fcdec6b8eff7984ea0c2075d0e..e46eb0a13933a3d55037a4fd9db644659f5a82e3 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance.pat.json @@ -2,806 +2,923 @@ { "active_votes": [ { - "rshares": 56815342, - "voter": "madodel" + "rshares": 6878586295, + "voter": "manoami" + }, + { + "rshares": 32790372645, + "voter": "biophil" + }, + { + "rshares": 8177100479, + "voter": "shla-rafia" + }, + { + "rshares": 792782029, + "voter": "jsteck" + }, + { + "rshares": 3837675045, + "voter": "joshglen" + }, + { + "rshares": 165494691, + "voter": "pulpably" + }, + { + "rshares": 2893714979, + "voter": "spetey" + }, + { + "rshares": 74072122, + "voter": "runridefly" + }, + { + "rshares": 8559062169, + "voter": "darrantrute" + }, + { + "rshares": 303416346, + "voter": "funkywanderer" } ], - "author": "madodel", + "author": "joshglen", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 55.38, "beneficiaries": [], "blacklists": [], - "body": "Think Beek Urban Beekeeping in the Tropics\n\nTop Bar Hive V.S. Langstroth Hive Inspection\n\nMADE in the Philippines\n\nhttps://www.youtube.com/watch?v=LMu6WxqksdA", - "category": "food", - "children": 0, - "created": "2016-08-09T14:19:30", + "body": "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg\n\nBefore I start, let's talk about why we should raise bees. Honey is a great reason, as there is nothing that beats your own homemade honey, but there are other things the bees also produce. For example, they produce beeswax, which you can use to make your own candles and beauty products. Pollination is also a good reason to have bees, as if you have a small garden it can produce lots of products due to the large amount of bees that will pollinate it. A final reason to do some beekeeping is that bees are very independent, and do not require a lot of maintenance. However, there are a few cons to look into as well. The first, and most major one is probably the fact that bees can sting. Another issue is the cost of supplies, and sometimes when beekeeping, the first year does not go very well.\n\nhttps://pixabay.com/static/uploads/photo/2013/08/07/20/13/bee-170551_960_720.jpg\n\nSo, let's get started! But before we do that, make sure that you check the local laws. Some places do not allow beekeeping. Also, know that bees take the quickest path from one location to another, known as a beeline, and that they may defecate in midair. When choosing a place to put a hive, try to make it in an open space, and let it get a little bit of sunlight (not too much). The best place to put a hive is in a sheltered area, not a hilltop as those are too windy. As you may know, nectar comes from different kinds of flowers. In fact, honey may taste very different depending on which kinds of flowers are the main source for the nectar that the bees bring back to the hive. Be careful about pesticides, as they can kill bees, and if they don't initially and the bee brings it back it can kill other bees or even the queen bee.\n\nhttp://www.almanac.com/sites/default/files/d6/images/bee-clothing.jpeg\n\nThere is quite a bit of equipment that you will need to start beekeeping. The first major piece of equipment is beekeeping clothing. You need to have proper protection from the bees, or else you may get stung. Generally, for a beginner, a veil is important, along with sting proof gloves and sting proof clothing that covers your entire body. Other than the hive, which I will discuss later, you will need something called a smoker, which produces smoke and help the bees calm down. You will also need something called a hive tool, which is used to loosen the frames and the boxes that bees are in. One of the last tools you will need is something called the uncapping knife, which is used uncap wax cells where the honey is stored. There are plenty of places that you can go to to purchase beekeeping equipment.\n\nAnother thing to consider before buying the bees themselves is a hive. The most common hive for beginners is a hive that uses the Langstroth method.\nhttp://www.almanac.com/sites/default/files/d6/images/langstrothHiveIllus.gif\nYou don't really need to worry about how to exactly build it though, as there are many kits for sale that are under $150. There are a few things to consider about the exact location of the hive. One important one is that it can be warmed by the morning sun. It should also be sheltered from the wind. A beehive needs to be near a source of water, as bees also need to drink. The beehive should be painted white or black, depending on where you live, but never with a toxic paint. To prevent bees from being a nuisance, there should be a fence around nearby street locations so that the bees fly over it.\n\nhttps://pixabay.com/static/uploads/photo/2016/04/14/14/18/silk-bee-1328961_960_720.jpg\n\nAfter you have built a beehive, you will need to find some bees. Bees are very social creatures, and that is why it is important to know the basics of bee society. There are three main levels of bees: the worker, the drone, and the queen. Worker bees are females and are responsible for things like tending to the hive, its queen, guarding the hive's entrance, and collecting food. Drones are the males, and the only thing they need to do is mate with the queen. The queen herself is responsible for the genetic traits found withing a colony. To get bees, you can go through the wild and search for clusters of bees called swarms. If these swarms are on a tree limb, it is best to cut the entire limb and gently shake the bees into a container. Bees on a flat surface can be guided with a piece of cardboard, or some smoke behind them. However, by getting these bees for free, they may have certain diseases or have poor genetic material, resulting in weak bees. You should also be careful with regards to property laws, as taking a beehive on someone else's property may be considered stealing.\n\nhttps://i.ytimg.com/vi/eFqrbPdZuTA/maxresdefault.jpg\n\nThere are two main ways in which you can buy bees, which are in a package or a nucleus. The package method comes stocked with some worker bees, a queen bee, and some sweet syrup for the bees to eat out of. Here is where you make an important decision: How to introduce the bees to the queen. There are two main methods, the indirect method and the direct method. In the indirect method, the bees eat their way through food to get to the queen and slowly get used to her. This method is safer but may take longer. The direct method is to let out the queen bee directly into the hive, but the bees may attack her and destroy the hive. However, if the bees do not attack her, or the queen survives the attack, it may be faster than the indirect method, but it is also more risky. The other kind of thing that you can buy is a nucleus, which is already a small, fully functioning hive. You may, however, run into the fact that the queen is a weak or old queen, resulting in poor honey production and weak bees.\n\nhttps://www.farminguk.com/images/News/20600_1.jpg\n\nBefore you can start harvesting the liquid-gold that bees make, you need to know about some diseases that bees can catch. Here are the most common ones: Varroa Mites, which are parasites that attack both the larvae and adult bees. A medicine called Apistan appears to work well on them. Foulbrood is a virus that can deform and kill sealed broods of honeybees. CCD, or colony collapse disorder, is when bees just start leaving the hive. There is no cure for it, but some researchers have found that it is caused by both of fungus and a certain virus being present. When winter comes, you may want to wrap up your beehive, but make sure that the bees are not literally trapped in the hive.\n\nhttps://zeebeeman.files.wordpress.com/2012/09/honey-harvest.jpg\n\nSo, now you have the bees, which means that you have honey. Before you start harvesting honey by yourself, it is recommended that you go out with an expert for a few times to get the hang of it. Generally, there is a basic process of collecting honey. You need to make sure that you use small, gentle movement instead of large ones when collecting honey. The first step is get the bees off of the supers (a special layer in the bee hive). Try not to use smoke, as this may affect the taste of the honey. The next step is to remove the supers, and get the honey out of them. This can be done by uncapping the wax on the combs, or by purchasing a special extractor or centrifuge to make it easier. After this is done, you should strain the honey through cheesecloth to remove excess wax. Keep the honey in a settling tank to allow air bubbles to go up and bring foreign object with them, making those objects easier to remove. Then, you will need to skim off the foam. After you figure out which temperature you can store the honey at, you can start bottling it and then start selling it!\n\nI hope you guys enjoyed this tutorial. I would like to give a special thanks to almanac.com for providing some of the information here.", + "category": "tutorial", + "children": 7, + "created": "2016-08-16T16:34:09", "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { - "links": [ - "https://www.youtube.com/watch?v=LMu6WxqksdA" + "image": [ + "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg" ], "tags": [ - "food" + "tutorial", + "steemit", + "steem" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56815342, - "payout": 0.0, - "payout_at": "2016-09-09T02:19:30", - "pending_payout_value": "0.000 HBD", + "net_rshares": 64472276800, + "payout": 0.034, + "payout_at": "2016-08-23T16:34:09", + "pending_payout_value": "0.034 HBD", "percent_hbd": 10000, - "permlink": "top-bar-hive-v-s-langstroth-hive-beekeeping", - "post_id": 703905, + "permlink": "what-is-beekeeping-all-about", + "post_id": 836800, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 1 + "total_votes": 10 }, - "title": "Top Bar Hive V.S. Langstroth Hive, Beekeeping", - "updated": "2016-08-09T14:19:30", - "url": "/food/@madodel/top-bar-hive-v-s-langstroth-hive-beekeeping" + "title": "What is Beekeeping All About?", + "updated": "2016-08-16T16:34:09", + "url": "/tutorial/@joshglen/what-is-beekeeping-all-about" }, { "active_votes": [ { - "rshares": 36264946146, - "voter": "redpalestino" + "rshares": 21816618785, + "voter": "ossama-benjohn" }, { - "rshares": 70910846, - "voter": "zakharsmirnoff" + "rshares": 6191155663, + "voter": "mark-waser" }, { - "rshares": 502074408, - "voter": "lifeworship" + "rshares": 3632587828, + "voter": "svamiva" + }, + { + "rshares": 30806602935, + "voter": "acassity" + }, + { + "rshares": 6755232214, + "voter": "mtber" + }, + { + "rshares": 458525808, + "voter": "edrivegom" + }, + { + "rshares": 1279135617, + "voter": "doctorstrange" + }, + { + "rshares": 5949351326, + "voter": "inti" + }, + { + "rshares": 190058704038, + "voter": "blueorgy" + }, + { + "rshares": 3644108334, + "voter": "bristolchris72" + }, + { + "rshares": 1213221173, + "voter": "politicasan2" + }, + { + "rshares": 8588256056, + "voter": "michaeldodridge" + }, + { + "rshares": 2091538583, + "voter": "lukmarcus" + }, + { + "rshares": 42155830202, + "voter": "anotherjoe" + }, + { + "rshares": 74299708, + "voter": "august-newbie" + }, + { + "rshares": 267622891, + "voter": "levycore" + }, + { + "rshares": 8308915925, + "voter": "steemitpatina" + }, + { + "rshares": 8353239954, + "voter": "etcmike" + }, + { + "rshares": 198479777, + "voter": "kita" + }, + { + "rshares": 1753773543, + "voter": "davidjkelley" + }, + { + "rshares": 5992569234, + "voter": "digital-wisdom" + }, + { + "rshares": 56760954, + "voter": "ethical-ai" + }, + { + "rshares": 999749973, + "voter": "matthewtiii" + }, + { + "rshares": 6048950061, + "voter": "jwaser" + }, + { + "rshares": 2853258517, + "voter": "bwaser" + }, + { + "rshares": 1611217127, + "voter": "ellepdub" + }, + { + "rshares": 1157169630, + "voter": "herpetologyguy" }, { - "rshares": 80880272, - "voter": "motsna" + "rshares": 5114895425, + "voter": "morgan.waser" } ], - "author": "tanshin", + "author": "jwaser", "author_payout_value": "0.000 HBD", - "author_reputation": 43.7, + "author_reputation": 51.05, "beneficiaries": [], "blacklists": [], - "body": "This is the most well-designed hive I've seen to date, much easier to extract honey and less disturbance to the bees. \n\nBees are the world\u2019s most important pollinator of food crops. Let's stop the bee population decline!\n\nhttps://www.youtube.com/watch?v=WbMV9qYIXqM", + "body": "\n

Feeling stylish and always a little sexy in my beekeepers garb, I grab my smoker in one hand and my hive tool in the other and bounce like Tigger out into my beloved bee-yard.  The apiary is no longer the two original hives -- expansion was inevitable. On this day, we are sitting pretty at 7 hives.   Temperatures reaching into the 90's with some notable humidity, I feel simple pure joy as I remove the bricks from the top of the hive and pry off the first of the hive covers.  I'm immediately met with a whiff of a gentle sweet smell and hear the simple quiet buzz of the girls at work -- as a couple of crabby ladies pop out and ping off my veil, informing me that I'm in their space.  I tell myself \"it is ok, settle down, all is well\".  After a few gentle puffs of cool smoke we all seem to calm down a bit. 

\n

Today, I'm checking in on a brand new queen that I grafted (created) just six weeks ago.  Four weeks later, I noted eggs and larva in this hive, so I know the queen emerged and mated.  Today's work is simple... find this queen and mark her -- always assuming that she is still alive today!

\n

 That's the queen -- dead-center

\n

Now, the bee \"authorities\" all claim that you should gently hold the queen between thumb and finger and then very carefully place a small spot of paint on her thorax.  Let it dry and then release her back into the colony. The color is specific to the last 2 digits of the year.  Pretty simple!  What the experts don't seem to mention is that you must search among 50,000 bees buzzing about -- grumpy and stressed in the late summer heat during the dearth of late nectar.  Now that I have had the hive open for a few minutes, everything feels frantic.  Sweat is dripping from every pore in my body while I search frame by frame looking for that one special bug.  I find my mind racing.  Where the heck is that she?  As time passes, the open hive is defenseless to the other bees in the bee-yard and for miles around -- causing the girls to become more and more feisty and defensive as I become more impatient with the task at hand.

\n

\"Oh yippy skippy, I found her!\"  This is so much better than finding Waldo (although I rock at that too).  I move the frame she's crawling on into a special box to protect her (mostly from myself) for the moment.  Put the hive back together and toss on a cover.  That should keep the other bees from robbing the hive for a few moments.  With the paint pen readied, it is time to take on the task of placing a dot on her back.  I, once again, try to locate the queen.  Darn this lady has speed - moving all over the frame and ducking through holes in the comb arriving on the opposite side.  

\n

\n

I spend some time trying to corner and catch her but fail as she flies off the frame and runs (breaking my 100M dash pace) under the hive.  The \"experts\" don't mention that the fat plump mated queen can still fly!  Oh no, what have I done?! Tears well up. But realize my friends, this is no ordinary queen, she's one that I grafted from a colony with a queen who I had over-wintered not once but twice! She's the only queen to emerge and mate from the 36 cells I thought I successfully grafted back in late June (The other grafts were a complete fail after taking an unplanned dive off the deck -- but that too is another story.  My Bad!)

\n

Now, sadly, I must admit that this is not the first time I have had a queen who had a story to tell . . . but I digress... I carefully drop the frame, sputter a few less than positive words to myself and without a thought lean the entire hive to one side in hopes of finding my Queen. Now I know what you\u2019re thinking -- \"BAD IDEA!\", \"DON'T DO THAT!\".   Trust me, I thought that too, but I needed find that queen, as without her the colony would dwindle and die.  I had no replacement, no plan B.

\n

\n

Awesome sauce! I found her - a REAL RESCUE.  Scooping her up in my gloved hand and leaning the hive back down into its normal position, I commenced my attempt to mark her with a \"small\" white dot ... well it turned out she got herself a big fat splotch! (Serves her right!) Then acting like nothing unusual ever happened (which in some ways is was no different than any other bee-yard adventure), I released her into the hive, replaced the missing frame and put the inner & outer cover back in place. 

\n

Feeling fairly good with the overall final outcome (queen still alive, MARKED and in the hive), I collected my beekeeping stuff and snuffed the smoker.  Just another fun day of awesome skillfulness in the bee-yard.

\n

=========================================================================

\n

I love the Doolittle Method for grafting (combined with the use of a Cloake board)!  Don't get faked out, it is not \"do little\" but a name for the method of grafting/\u201ccreating\u201d queens.  

\n
    \n
  1. Choose carefully from a frame of eggs and larva, selecting the tiniest larva in hopes it is < 24 hours old AND floating it in a pool of delicious royal jelly.  
  2. \n
  3. Once the grafts are selected and delicately scooped up (careful not to flip the larva and block the sphericals/\"breathing tubes\" -- drowning them in the process), place them in plastic queen cells on a grafting bar fitted into a frame.  
  4. \n
  5. Inserted the frame into a queen-less hive that has been outfitted and manipulated for several days with the use of a Cloake Board.  
  6. \n
  7. With the proper planning and manipulation, tens of thousands of nurse bees fill the top hive box and will feed the grafts royal jelly while draw out the new queen cells, and care for the developing queens over the following 11 days.
  8. \n
\n

http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf

\n

http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/

\n

\n


\n

\n

Minnows UNITE! (use the keyword minnowsunite)

\n

Today, I'm trying to promote a starving herpetologist who joined Steemit just two days ago (his stuff really rocks!):

\n

Here with little to no clue!

\n

Hello everyone! My name is Thomas and like the title says, I have very little idea just what the heck I\u2019m doing here\u2026 

\n

 =============================

\n

FrogWatchUSA: Citizen Science as the Future of Environmental Research

\n

Citizen Science is an form of research collaboration between scientists and volunteers, allowing for a wider array of\u2026 

\n

==============================

\n

Copperhead Photos

\n

I was fooling around at work taking a few photos of our Northern Copperheads. Not the crispest quality, but definitely\u2026 

\n

==============================

\n

My Experience Training Alligators

\n

If that title doesn\u2019t draw people in, then I don\u2019t know how to please you folks!       As I\u2019ve said in previous posts\u2026 

\n", "category": "bee", - "children": 6, - "created": "2016-09-02T06:46:15", + "children": 5, + "created": "2016-08-26T11:36:09", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://img.youtube.com/vi/WbMV9qYIXqM/0.jpg" + "https://www.steemimg.com/images/2016/08/25/beautyqueen07982.md.jpg", + "http://redbricktown.com/wp-content/uploads/2015/07/608.png", + "https://www.steemimg.com/images/2016/08/25/DSCF0117bd6dd.jpg", + "https://www.steemimg.com/images/2016/08/25/May201205567d61.md.jpg", + "https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_c609e6e3b70444fd8b756f5880dfcffb~mv2_d_2941_2046_s_2.jpg?dn=Minnow+Strength+2.jpg" ], "links": [ - "https://www.youtube.com/watch?v=WbMV9qYIXqM" + "http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf", + "http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/", + "https://steemit.com/created/minnowsunite", + "https://steemit.com/minnowsunite/@herpetologyguy/here-with-little-to-no-clue", + "https://steemit.com/conservation/@herpetologyguy/frogwatchusa-citizen-science-as-the-future-of-environmental-research", + "https://steemit.com/photography/@herpetologyguy/copperhead-photos", + "https://steemit.com/science/@herpetologyguy/my-experience-training-alligators" ], "tags": [ "bee", - "food", - "life", - "gardening", - "nature" + "bees", + "story", + "nature", + "science" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 36918811672, - "payout": 0.015, - "payout_at": "2016-09-09T06:46:15", - "pending_payout_value": "0.015 HBD", + "net_rshares": 367431771281, + "payout": 0.21, + "payout_at": "2016-09-02T11:36:09", + "pending_payout_value": "0.210 HBD", "percent_hbd": 10000, - "permlink": "best-hive-for-beekeepers", - "post_id": 1095224, + "permlink": "bee-happy-crowning-of-a-queen", + "post_id": 996365, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 4 + "total_votes": 28 }, - "title": "Best Hive for Beekeepers", - "updated": "2016-09-02T06:46:15", - "url": "/bee/@tanshin/best-hive-for-beekeepers" + "title": "BEE Happy: Crowning of a QUEEN.", + "updated": "2016-08-26T11:36:09", + "url": "/bee/@jwaser/bee-happy-crowning-of-a-queen" }, { "active_votes": [ { - "rshares": 7239080969594, - "voter": "steempty" + "rshares": 109595483146, + "voter": "nextgenwitness" }, { - "rshares": 3371361043859, - "voter": "complexring" + "rshares": 2853528223820, + "voter": "pharesim" }, { - "rshares": 25567367321, - "voter": "proctologic" + "rshares": 3098953009, + "voter": "boy" }, { - "rshares": 22704430910, - "voter": "steampunkpowered" + "rshares": 3762157484, + "voter": "bue-witness" }, { - "rshares": 46078277944, - "voter": "tshering-tamang" + "rshares": 697282365, + "voter": "bunny" }, { - "rshares": 265420321559, - "voter": "cryptogee" + "rshares": 53957148226, + "voter": "bue" }, { - "rshares": 1799222478, - "voter": "murh" + "rshares": 2821279392, + "voter": "thepresident" }, { - "rshares": 601900636, - "voter": "kodi" + "rshares": 16161664622, + "voter": "danknugs" }, { - "rshares": 16682015112, - "voter": "thecryptofiend" + "rshares": 1660795487, + "voter": "mini" }, { - "rshares": 11066221058, - "voter": "btotherest" + "rshares": 213655207, + "voter": "moon" }, { - "rshares": 42124549828, - "voter": "michaelx" + "rshares": 8070446640, + "voter": "bentley" }, { - "rshares": 6043683039, - "voter": "mark-waser" + "rshares": 622693401, + "voter": "healthcare" }, { - "rshares": 326801401197, - "voter": "inboundinken" + "rshares": 967137774, + "voter": "daniel.pan" }, { - "rshares": 48034834648, - "voter": "razvanelulmarin" + "rshares": 288133732, + "voter": "helen.tan" }, { - "rshares": 333760331, - "voter": "soupernerd" + "rshares": 22084251149, + "voter": "nikolai" }, { - "rshares": 54600759882, - "voter": "furion" + "rshares": 840869850, + "voter": "coar" }, { - "rshares": 437122816138, - "voter": "neoxian" + "rshares": 1431534505, + "voter": "murh" }, { - "rshares": 4261415648, - "voter": "on0tole" + "rshares": 12105765091, + "voter": "thecryptofiend" }, { - "rshares": 239718921, - "voter": "sairji" + "rshares": 12960638669, + "voter": "magnebit" }, { - "rshares": 247359035, - "voter": "losos" + "rshares": 19162728146, + "voter": "acassity" }, { - "rshares": 1489925458, - "voter": "egjoshslim" + "rshares": 226931879895, + "voter": "tomkirkham" }, { - "rshares": 32175346383, - "voter": "biophil" + "rshares": 7756918915, + "voter": "cmtzco" }, { - "rshares": 2771844727, - "voter": "rigel" + "rshares": 164136412, + "voter": "steemswede" }, { - "rshares": 6132654165, - "voter": "phenom" + "rshares": 2016764833, + "voter": "endgame" }, { - "rshares": 8114364975, - "voter": "neroru" + "rshares": 8168668850, + "voter": "noodhoog" }, { - "rshares": 27645583742, - "voter": "zaebars" + "rshares": 506839773, + "voter": "luisucv34" }, { - "rshares": 116653017, - "voter": "bigb" + "rshares": 262099822642, + "voter": "knozaki2015" }, { - "rshares": 309604078, - "voter": "xcode18" + "rshares": 3982979378, + "voter": "cryptohustlin" }, { - "rshares": 105249109, - "voter": "steemster1" + "rshares": 1556310339, + "voter": "tokyodude" }, { - "rshares": 1206956298, - "voter": "spinner" + "rshares": 17803537413, + "voter": "papa-pepper" }, { - "rshares": 327673258, - "voter": "weenis" + "rshares": 1153114340, + "voter": "ace108" }, { - "rshares": 50103733367, - "voter": "gomeravibz" + "rshares": 1553534620, + "voter": "leylar" }, { - "rshares": 51143991, - "voter": "sharon" + "rshares": 56747133, + "voter": "reported" }, { - "rshares": 5085386592, - "voter": "kental" + "rshares": 5043425215, + "voter": "jed78" }, { - "rshares": 26991515125, - "voter": "xtester" + "rshares": 5387965254, + "voter": "theprophet0" }, { - "rshares": 445651226406, - "voter": "glitterfart" + "rshares": 58887718, + "voter": "krushing" }, { - "rshares": 50390768, - "voter": "steema" + "rshares": 47093177067, + "voter": "capitalism" }, { - "rshares": 793558013, - "voter": "kdugar" + "rshares": 148152809, + "voter": "btctoken" }, { - "rshares": 51153233, - "voter": "jarvis" + "rshares": 16569843788, + "voter": "timelapse" }, { - "rshares": 50692212, - "voter": "fortuner" + "rshares": 776735447, + "voter": "minnowsunited" }, { - "rshares": 61475837, - "voter": "natako" + "rshares": 60605656, + "voter": "whatyouganjado" }, { - "rshares": 1407753980, - "voter": "edbriv" + "rshares": 460272200, + "voter": "bitcoindon23" }, { - "rshares": 50684643, - "voter": "johnbyrd" + "rshares": 12506647483, + "voter": "jphamer1" }, { - "rshares": 75872674, - "voter": "steem42" + "rshares": 100450889, + "voter": "makaveli" }, { - "rshares": 8864967182, - "voter": "nastik" + "rshares": 562498382, + "voter": "future24" }, { - "rshares": 56238093, - "voter": "fiat19" + "rshares": 1063686952, + "voter": "bledarus" }, { - "rshares": 50416427, - "voter": "curpose" + "rshares": 56109399, + "voter": "alexbones" }, { - "rshares": 55608355, - "voter": "runridefly" + "rshares": 45144402741, + "voter": "anotherjoe" }, { - "rshares": 50588612, - "voter": "troich" + "rshares": 89407628671, + "voter": "creadordelfuturo" }, { - "rshares": 56792345, - "voter": "benaccept" + "rshares": 175623645, + "voter": "wuyueling" }, { - "rshares": 3900103781, - "voter": "digital-wisdom" + "rshares": 83237614, + "voter": "ozertayiz" }, { - "rshares": 6038485591, - "voter": "jwaser" + "rshares": 2039323978, + "voter": "eileenbeach" }, { - "rshares": 62606315, - "voter": "alexskinner" + "rshares": 52498231, + "voter": "salebored" }, { - "rshares": 3775924808, - "voter": "canalytic" + "rshares": 6743523304, + "voter": "einsteinpotsdam" }, { - "rshares": 50065875, - "voter": "bane" + "rshares": 1734646723, + "voter": "funkywanderer" }, { - "rshares": 50059754, - "voter": "vive" + "rshares": 51444457, + "voter": "bitdrone" }, { - "rshares": 1373651957, - "voter": "bwaser" + "rshares": 51436144, + "voter": "sleepcult" }, { - "rshares": 50825587, - "voter": "sofa" + "rshares": 55892382, + "voter": "mobios" }, { - "rshares": 54234557, - "voter": "lifeworship" + "rshares": 73940467, + "voter": "osame066" }, { - "rshares": 51328265, - "voter": "doze49" + "rshares": 44725075650, + "voter": "zahnspange" }, { - "rshares": 50923900, - "voter": "inwoxer" + "rshares": 185235623517, + "voter": "asksisk" + }, + { + "rshares": 1624291534, + "voter": "burnin" + }, + { + "rshares": 51250382, + "voter": "rony" + }, + { + "rshares": 1366333355, + "voter": "robotev" + }, + { + "rshares": 59061931, + "voter": "steemdidge" } ], - "author": "kental", + "author": "jed78", "author_payout_value": "0.000 HBD", - "author_reputation": 63.52, + "author_reputation": 57.38, "beneficiaries": [], "blacklists": [], - "body": "\n

So, What is a swarm of #bees?

\n

Swarming of bees is when the parent family is forced to split into two almost equal parts. At a time when the first part will remain in the same habitat, second (with old or young bee queen) will hit the road to search for a new residence. 

\n

About this reproduction is a lot of debate among scholars and practitioners #beekeepers.

\n

http://i.imgur.com/Gwx3GK7.png?1

\n

How to put a swarm in the hive?

\n

In my opinion, the most effective planting bees by using the gangway. Gangway for Swarming are a sheet of plywood or fiberboard, one end of which is tapered to 20 cm with the narrow end Gangways are placed on the arrivals Board.

\n

The longitudinal and the underside of the plywood edge slats. Unlike violent landing directly on frame in hive with a swarm of bees settled gangway self-propelled. Bees naturally go through the notches. Beautiful come, together, without crowding, injury and anger bees. To monitor this process very interesting. Landing a swarm in a hive with staircases, we can say, gentle way.

\n

http://pchelovod-ya.at.ua/_ph/2/770969534.jpg

\n

The beekeeper, as it invites and does not force the bees to occupy a well-appointed nest.

\n

The work planted by this method, the swarm starts the next morning. After landing a swarm in a new hive has no one bee will not return to the old hive. If this is an early swarm, he manages to gain strength to the main trick.

\n

#Swarm activity due to the fact that the first time the bees are too busy rearing brood and they are dominated by the instinct of accumulation of feed. 

\n

On second plan is being pushed equally important is the instinct of procreation. Sometimes the bees fill the cells so that the bee queen there is no place even to lay eggs.

\n

The main task of the beekeeper in the summer \u2013 not only to increase the strength of bee colonies, but also to keep them in working condition.

\n

Thank you for your attention!

\n

@kental with you!

\n

Follow me If you want to learn more about beekeeping

\n

My last article about Production of frames for the hive with your hands

\n", - "category": "bees", - "children": 10, - "created": "2016-08-18T16:23:03", + "body": "\n

 SteemHouse Welcomes New Bees! 

\n

We got our shipment in of bees in today! Finally! Now we can stop with all the inefficient, fake hand pollinating. You can't beat mother nature when it comes to anything in nature! 

\n

 There is a saying about busy bees and let me tell you, these bees started faster than any other bees we have ever had.  Usually, when we get a shipment of bees, we set the out in the Steemhouse, and I run thru the steps to get the hive ready. The last step is to open the little slider that allows the bees out of the hive. 

\n

 I usually sit and watch for any bee movement, and in about four or five minutes they will start to emerge. This time, I walked away for less than a minute and bees were lined up to get out of the hive, granted we often get bees during the colder months so that may slow them down a bit. 

\n
\n

 Let's just hope they keep up the enthusiasm and start some round the clock pollination!

\n
\n

 This is the box that holds the hive inside, these bees do not make honey, but they earn their keep just the same.  The hole that you see right in the center of the lid is the entrance and exit holes, the plastic slider moves up and you can set it to where the bees can move in and out freely or just enter the hive and stay there. This comes in handy if you ever want to relocate the hive. If you were to move the hive while the bees are out, they would be lost. You would have a large swarm of bees hovering where the hive used to be. They have a great memory as far as the location of the hive, but no problem-solving skills to find the new location. 

\n


\n

I shot some video of me setting up the hive and it is awful, it's hard to shoot and work the box with only one hand, so please forgive me for the crap quality, but I think it covers most of it.

\n

https://youtu.be/dSXaLNzWJmM

\n

 And as I said earlier, a little video of the bees ready to get out and work! Hope you enjoy them!

\n

https://youtu.be/W-_rAde9hGw

\n

In Other News

\n

 Quick update on the tomatoes, last week I showed you a few new baby tomatoes. this week they have grown a little bit, getting close to golf ball size. So now with the bees in, we should see new tomatoes start to pack on the vines. Hold on tight folks, the fun is just starting!

\n
\n
\n

 

\n

Sorry for the lack of updates, but things are really moving right now, I'll try to get more updates in as we go.

\n

Thanks for stopping by and hope you come back!

\n


\n", + "category": "gardening", + "children": 9, + "created": "2016-08-31T00:06:57", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "http://i.imgur.com/Gwx3GK7.png?1", - "http://pchelovod-ya.at.ua/_ph/2/770969534.jpg" + "https://www.steemimg.com/images/2016/08/30/8303ba16d.jpg", + "https://www.steemimg.com/images/2016/08/30/830297c53.jpg", + "https://img.youtube.com/vi/dSXaLNzWJmM/0.jpg", + "https://img.youtube.com/vi/W-_rAde9hGw/0.jpg", + "https://www.steemimg.com/images/2016/08/30/830c40bb.jpg", + "https://www.steemimg.com/images/2016/08/30/830188220.jpg" ], "links": [ - "https://steemit.com/@kental", - "https://steemit.com/bees/@kental/hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees" + "https://youtu.be/dSXaLNzWJmM", + "https://youtu.be/W-_rAde9hGw" ], "tags": [ - "bees", - "", - "beekeepers", - "Swarm" - ], - "users": [ - "kental" + "gardening", + "hydroponic", + "food", + "minnowsunite", + "greenhouse" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 12555585332593, - "payout": 25.036, - "payout_at": "2016-08-25T16:23:03", - "pending_payout_value": "25.036 HBD", + "net_rshares": 4126345789243, + "payout": 3.24, + "payout_at": "2016-09-07T00:06:57", + "pending_payout_value": "3.240 HBD", "percent_hbd": 10000, - "permlink": "landing-a-swarm-to-the-hive-beekeeper-new-hive-with-the-bees-what-is-a-swarm-of-bees", - "post_id": 873194, + "permlink": "steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger", + "post_id": 1063882, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 61 + "total_votes": 65 }, - "title": "Landing a swarm to the hive! Beekeeper. New hive with the bees. What is a swarm of bees.", - "updated": "2016-08-18T21:18:57", - "url": "/bees/@kental/landing-a-swarm-to-the-hive-beekeeper-new-hive-with-the-bees-what-is-a-swarm-of-bees" + "title": "SteemHouse Update: The Bees Have Arrived and Tomatoes Grow Larger", + "updated": "2016-08-31T00:06:57", + "url": "/gardening/@jed78/steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger" }, { "active_votes": [ { - "rshares": 1246225032, - "voter": "anwar78" - }, - { - "rshares": 51776763, - "voter": "dimon14" + "rshares": 212943674016, + "voter": "lukestokes" }, { - "rshares": 336822295, - "voter": "lemooljiang" + "rshares": 57189482, + "voter": "sofabear" }, { - "rshares": 49269459, - "voter": "celebrities" + "rshares": 625412642, + "voter": "danstig" } ], - "author": "anwar78", - "author_payout_value": "0.000 HBD", - "author_reputation": 32.16, + "author": "sofabear", + "author_payout_value": "0.146 HBD", + "author_reputation": 41.14, "beneficiaries": [], "blacklists": [], - "body": "It's the beekeepers dream, turn a tap right on your beehive and watch pure fresh honey flow right out of your Flow hive and into your Jar! No mess no fuss and the bees are hardly disturbed.\n\n\nhttps://www.youtube.com/watch?v=WbMV9qYIXqM", - "category": "self", + "body": "https://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-3.png\n\nSo, Exactly What are these Important Bees? \nHoney bees are social insects like ants and other hymenoptera. (membrane winged insects) Do you know what being a social insect means? They are insects which live in large groups. These are called colonies and a single honey bee colony can have as many as 60,000 bees in it. With so many bees in each colony, it is important that different jobs are given to different bees, and that each bee knows what it should be doing.\nOrganization is Important for Bees\n\nOrganization is important because the success of the colony is dependent on how well the bees work their jobs. Team work among the colony is vital for the hive to function well. And so for the good of the hive, the entire colony must work as a team. In case you don\u2019t exactly know, a hive is the bee\u2019s home or nest, where eggs are laid and the bees store their ready made honey. Inside the hive, there are three types of bees: the queen, workers, and drones. Each bee has its own purpose within this hive.\n\nhttps://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-4.png\n\nThe Queen of The Hive\nThere is only one queen within a typical hive and \u2013 interesting fact \u2013 the male drones actually do not have stingers. The queen, as well as worker bees, have stings at the end of their abdomens, which they use in emergencies to defend their territory should the hive be attacked. The queen is the largest bee in the hive, with a longer abdomen, a non hairy shiny thorax (middle section). She maintains the colony\u2019s numbers by laying as many eggs as she possibly can, laying up to 2,000 eggs a day.\n\nWorker Bees\nThe worker bees outnumber the other bees in the hive, although they are the smallest members of the beehive. Did you know that, in fact, all worker bees are female? And as I previously mentioned, worker bees have stingers; however, they can only sting once and then they die because when they sting, parts of their internal organs are pulled out with the sting. Ouch.\n\nWhy are Honey Bees So Important\nHoney bees are very important. Why is this? They are the strongest link in the chain between the people who grow the food and the people who eat the food. Without bee pollination, the food we eat could decrease by up to a 3rd. Many fruits such as oranges, apples, peaches, pears, strawberries, cherries, vegetables, nuts and seeds are all pollinated by worker bees. As well as pollinating many crops, honey produced by honey bees is a very important source of energy especially in poorer nations.\n\nHow Can we Help Honey Bees? \nHumans have been harvesting honey for at least 6000 years, possibly longer. At this present time bees are suffering from many conditions which have plummeted their numbers to drastic levels and many hives have mysteriously disappeared. The causes aren\u2019t fully understood, but are usually blamed on the rising use of pesticides, and many diseases which colonies tend to suffer from like the deadly cripaviridae, and chronic bee paralysis virus. Everything in our absolute capability must be done to find the causes. We we must protect bee colonies.\n\nWe must also encourage wild bees by planting flowers, particularly flowers they like, which will help encourage their numbers. It\u2019s quite simple. Without bees, we will not be able to eat the necessary fruits and vegetable we need in our diets. No bees, no ecosystem. If the bees go, they will take us with them.\n\nhttps://savetheearth.coop/wp-content/uploads/2016/07/seeds-300x225.jpg?42a6f2\n\nJoin us here and be part of a movement to make change http://www.crowdfunder.co.uk/save-the-earth-the-peoples-cooperative", + "category": "bees", "children": 0, - "created": "2016-07-26T09:14:00", - "curator_payout_value": "0.000 HBD", + "created": "2016-08-06T16:14:48", + "curator_payout_value": "0.044 HBD", "depth": 0, "is_paidout": true, "json_metadata": { - "links": [ - "https://www.youtube.com/watch?v=WbMV9qYIXqM" + "image": [ + "https://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-3.png" ], "tags": [ - "self", - "harverting", - "honey", - "flow", - "hive" + "bees", + "environment", + "selfsufficiancy", + "orgaincfood", + "ecovillages" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 1684093549, - "payout": 0.0, - "payout_at": "2016-08-26T09:17:27", + "net_rshares": 213626276140, + "payout": 0.19, + "payout_at": "2016-09-06T04:43:30", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "self-harvesting-honey-with-flow-hive", - "post_id": 369381, + "permlink": "what-are-honey-bees-and-why-are-they-important", + "post_id": 646369, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 4 + "total_votes": 3 }, - "title": "Self harvesting honey with Flow Hive", - "updated": "2016-07-26T09:14:00", - "url": "/self/@anwar78/self-harvesting-honey-with-flow-hive" - }, + "title": "What are Honey Bees And Why Are They Important?", + "updated": "2016-08-06T16:14:48", + "url": "/bees/@sofabear/what-are-honey-bees-and-why-are-they-important" + }, { "active_votes": [ { - "rshares": 22100005809322, - "voter": "dantheman" - }, - { - "rshares": 9247355213510, - "voter": "pharesim" + "rshares": 712983617211, + "voter": "erath" }, { - "rshares": 5426219311263, - "voter": "kushed" + "rshares": 80972403386, + "voter": "friend5" }, { - "rshares": 2470277036, + "rshares": 3083589875, "voter": "boy" }, { - "rshares": 2998174524, + "rshares": 3742391312, "voter": "bue-witness" }, { - "rshares": 567607877, + "rshares": 708653898, "voter": "bunny" }, { - "rshares": 3955104359988, + "rshares": 1534036564075, "voter": "complexring" }, { - "rshares": 1469448037898, - "voter": "steemychicken1" - }, - { - "rshares": 41962144669, + "rshares": 52054573688, "voter": "bue" }, { - "rshares": 1324181972, + "rshares": 1653058252, "voter": "mini" }, { - "rshares": 170709221, + "rshares": 213211427, "voter": "moon" }, { - "rshares": 200381618688, - "voter": "b0y2k" + "rshares": 51200689219, + "voter": "twiceuponatime" }, { - "rshares": 1206870273222, - "voter": "steempower" + "rshares": 268926183681, + "voter": "indominon" }, { - "rshares": 11853694119, - "voter": "proctologic" + "rshares": 3000331770000, + "voter": "onceuponatime" }, { - "rshares": 496877572, - "voter": "healthcare" + "rshares": 714069515661, + "voter": "marginal" }, { - "rshares": 725581132, - "voter": "daniel.pan" + "rshares": 74515224928, + "voter": "vault" }, { - "rshares": 2676277622352, - "voter": "donkeypong" + "rshares": 613281016, + "voter": "healthcare" }, { - "rshares": 72633920246, - "voter": "jchch" + "rshares": 882691586, + "voter": "daniel.pan" }, { - "rshares": 230147170, + "rshares": 287408803, "voter": "helen.tan" }, { - "rshares": 45137904925, - "voter": "tshering-tamang" - }, - { - "rshares": 202478365319, - "voter": "camilla" - }, - { - "rshares": 17202412248, - "voter": "richman" - }, - { - "rshares": 1798826545, + "rshares": 1449938852, "voter": "murh" }, { - "rshares": 601900636, - "voter": "kodi" - }, - { - "rshares": 473933491812, - "voter": "cyber" - }, - { - "rshares": 11250004760, - "voter": "btotherest" - }, - { - "rshares": 5487596603, - "voter": "karbonxx" - }, - { - "rshares": 325671008768, - "voter": "hedge-x" - }, - { - "rshares": 41282058831, - "voter": "michaelx" - }, - { - "rshares": 33841331754, - "voter": "cheftony" + "rshares": 5248703708, + "voter": "magnebit" }, { - "rshares": 191120735629, - "voter": "mexbit" - }, + "rshares": 56782755, + "voter": "amyerstownfarm" + } + ], + "author": "amyerstownfarm", + "author_payout_value": "10.490 HBD", + "author_reputation": 43.03, + "beneficiaries": [], + "blacklists": [], + "body": "
http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/IMG_20130506_181600_467.jpg
\nImagine the tickle of the little legs going about all up and down your body and then... No not that kind of al natural! \n\nYou've heard about the plight of the beekeeping community. You've heard about the dying bees and how \"scientists\" are baffled by the strange die offs and disappearances. Well friends, I have kept bees for over 10 years and the only die offs I had were those that came as a mistake of my own. Those who feel they know whats going on only know the half of it (myself included). \n\nThe subject of beekeeping is a hot topic so I am sure I'll have plenty of folks who want to chime in. Feel free. After all, they are the biggest pollinator for the hosts of crops that are produced in all over the world. Given the relatively new problem facing beekeeping these days, I thought I might interject a few of my own practices. \n\n
http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/IMG_20140511_092927_996-1.jpg
\nIn full disclosure, I've been out of the beekeeping business for 2 years due to a move to Alaska and now a move back to Missouri. Although, plans are set to restore the Apiary I once had. \n\nWhen I meet folks who like the concept of beekeeping but are an older generation who have not been listening much to the beekeeping world, the first thing they always ask is: How are the bees doing with the Mites? Truth is, Mites have not been an issue for a long time. The bees have learned to adapt. The beekeepers have adapted their methods to make mites (veroa) a non issue. \n\nWhat is my own method of managing this pesky little problem is simple?\n\nhttp://myerstownfamilyfarm.com/wp-content/uploads/2016/08/dsc01758smaller.jpg \nI have a flour sifter that I fill with powdered sugar. I select a time in the spring and in the fall and I take the boxes loose and sift powdered sugar over the frames of each of the boxes. Boom Done. How does this work? When you coat all of the bees in the sweet white powder, you not only end up with little white ghosts flying around, but you also give the bees a sweet incentive to clean each other off. In the process, they also find the mites and remove them from their sisters and they fall down onto the bottom board where, if you have installed a screened bottom board, they fall through and are out of the hive. This has been a very successful method for me. \n\n
http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/20150515_162746small.jpg
\nA secondary method is to NOT requeen every year or so. Many beekeepers requeen in order to keep the brood capacity high and to manage the breed type. I dont care about breeds, I only care that my bees are healthy and productive. By not requeening each time, this gives the natural processes of the hive the ability to adapt to whatever diseases may be present. \n\nThe hive has a normal process of supersedure that is a process by which the workers are alerted to the waning pheromone of the queen and the select a couple young eggs that she has laid and they place it in a \"queen cell\" to which they feed the larva a full diet of royal jelly. This higher potency diet gives the larva the nutrients necessary to develop the reproductive organs fully and become a queen. The new queen emerge out of the cell and escape out the hive to which drones sensing her pheromone excite and attempt to bread with her. After this period, she has all of the sperm she'll ever need to fertilize the eggs for the rest of her life. She goes back into the hive from which she was born and kills the old queen and becomes the new queen. \n\n
http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/20150411_170230small.jpg
\nBy allowing this natural process to occur, one allows the successful genetic traits to continue on to the next generation which in turn, effects your other hives in the apiary. The problem of today's beekeeping methods are compounded by the artificial management of hives. Beekeepers move hives around to various fields to take advantage of the different pollination periods, they requeen with queens from a different \"Breeder\", and they use toxic chemicals on the bees to control every malady that is known instead of allowing nature to take its course and fix the problem. \n\nNatural beekeeping does take some nerve. Watching a hive die is not fun. I admit to attempting to save a hive by adding a frame of young brood from a good productive hive in hopes that the genetic traits in the eggs will be spread to the rest of the hive through Supersedure. \n\n

Please be sure to check out our website at MyerstownFamilyFarm.com (currently under construction) and visit our Facebook Page for more updates.

", + "category": "farming", + "children": 1, + "created": "2016-08-14T19:30:54", + "curator_payout_value": "3.480 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/IMG_20130506_181600_467.jpg", + "http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/IMG_20140511_092927_996-1.jpg", + "http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/dsc01758smaller.jpg", + "http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/20150515_162746small.jpg", + "http://myerstownfamilyfarm.com/wp-content/uploads/2016/08/20150411_170230small.jpg" + ], + "links": [ + "http://www.myerstownfamilyfarm.com", + "https://www.facebook.com/myerstownfarm/" + ], + "tags": [ + "farming", + "beekeeping", + "natural", + "genetics", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 6507030253333, + "payout": 13.97, + "payout_at": "2016-09-14T10:57:39", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "beekeeping-al-natural", + "post_id": 803473, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 20 + }, + "title": "Beekeeping Al-natural", + "updated": "2016-08-14T19:30:54", + "url": "/farming/@amyerstownfarm/beekeeping-al-natural" + }, + { + "active_votes": [ { - "rshares": 365542712, - "voter": "alextsvirko" + "rshares": 7239080969594, + "voter": "steempty" }, { - "rshares": 13223634172, - "voter": "jparty" + "rshares": 3371361043859, + "voter": "complexring" }, { - "rshares": 326218265530, - "voter": "inboundinken" + "rshares": 25567367321, + "voter": "proctologic" }, { - "rshares": 2968407528, - "voter": "fuck.off" + "rshares": 22704430910, + "voter": "steampunkpowered" }, { - "rshares": 44341293514, - "voter": "razvanelulmarin" + "rshares": 46078277944, + "voter": "tshering-tamang" }, { - "rshares": 4044051178, - "voter": "iloveporn" + "rshares": 265420321559, + "voter": "cryptogee" }, { - "rshares": 1445153822, - "voter": "the.bot" + "rshares": 1799222478, + "voter": "murh" }, { - "rshares": 4918132693, - "voter": "johnbradshaw" + "rshares": 601900636, + "voter": "kodi" }, { - "rshares": 11661217192, - "voter": "primus" + "rshares": 16682015112, + "voter": "thecryptofiend" }, { - "rshares": 24959127114, - "voter": "djm34" + "rshares": 11066221058, + "voter": "btotherest" }, { - "rshares": 3429856187, - "voter": "the.whale" + "rshares": 42124549828, + "voter": "michaelx" }, { - "rshares": 50468824673, - "voter": "booja" + "rshares": 6043683039, + "voter": "mark-waser" }, { - "rshares": 3249819896, - "voter": "unicornfarts" + "rshares": 326801401197, + "voter": "inboundinken" }, { - "rshares": 217237696209, - "voter": "tomkirkham" + "rshares": 48034834648, + "voter": "razvanelulmarin" }, { - "rshares": 617471935, + "rshares": 333760331, "voter": "soupernerd" }, { - "rshares": 3430152139, - "voter": "vote" - }, - { - "rshares": 3611448643, - "voter": "kissmybutt" - }, - { - "rshares": 504533851, - "voter": "chamviet" - }, - { - "rshares": 321815601, - "voter": "damono" + "rshares": 54600759882, + "voter": "furion" }, { - "rshares": 447291284963, + "rshares": 437122816138, "voter": "neoxian" }, { - "rshares": 3279735636, - "voter": "karen13" - }, - { - "rshares": 484944867, - "voter": "luisucv34" - }, - { - "rshares": 187772472, - "voter": "delik" - }, - { - "rshares": 6131281377, - "voter": "phenom" - }, - { - "rshares": 420782975, - "voter": "vlad" + "rshares": 4261415648, + "voter": "on0tole" }, { - "rshares": 148331250065, - "voter": "jl777" + "rshares": 239718921, + "voter": "sairji" }, { - "rshares": 2069332962, - "voter": "lostnuggett" + "rshares": 247359035, + "voter": "losos" }, { - "rshares": 18536998975, - "voter": "crazymumzysa" + "rshares": 1489925458, + "voter": "egjoshslim" }, { - "rshares": 8438509202, - "voter": "alsprinting" + "rshares": 32175346383, + "voter": "biophil" }, { - "rshares": 6401329621, - "voter": "crypto.owl" + "rshares": 2771844727, + "voter": "rigel" }, { - "rshares": 439944406, - "voter": "quigua" + "rshares": 6132654165, + "voter": "phenom" }, { - "rshares": 14017730704, - "voter": "proto" + "rshares": 8114364975, + "voter": "neroru" }, { - "rshares": 36396552118, - "voter": "healthyrecipes" + "rshares": 27645583742, + "voter": "zaebars" }, { - "rshares": 7100407699, - "voter": "lykkeliten" + "rshares": 116653017, + "voter": "bigb" }, { - "rshares": 1546353742, - "voter": "smailer" + "rshares": 309604078, + "voter": "xcode18" }, { "rshares": 105249109, "voter": "steemster1" }, { - "rshares": 606232368, + "rshares": 1206956298, + "voter": "spinner" + }, + { + "rshares": 327673258, "voter": "weenis" }, { - "rshares": 6864402269, - "voter": "taker" + "rshares": 50103733367, + "voter": "gomeravibz" }, { "rshares": 51143991, "voter": "sharon" }, { - "rshares": 50731326, - "voter": "lillianjones" - }, - { - "rshares": 2550973962, - "voter": "pdogg147" - }, - { - "rshares": 68059409, - "voter": "always1success" - }, - { - "rshares": 5085097715, + "rshares": 5085386592, "voter": "kental" }, { - "rshares": 43818559886, - "voter": "krishtopa" - }, - { - "rshares": 51120963, - "voter": "msjennifer" - }, - { - "rshares": 50828873, - "voter": "ciao" - }, - { - "rshares": 6709674565, - "voter": "thebotkiller" - }, - { - "rshares": 83843678, - "voter": "carlyadams" + "rshares": 26991515125, + "voter": "xtester" }, { - "rshares": 50521096, - "voter": "steemo" + "rshares": 445651226406, + "voter": "glitterfart" }, { "rshares": 50390768, "voter": "steema" }, { - "rshares": 50183394, - "voter": "confucius" + "rshares": 793558013, + "voter": "kdugar" }, { "rshares": 51153233, @@ -812,136 +929,60 @@ "voter": "fortuner" }, { - "rshares": 55775081, - "voter": "alfaman" + "rshares": 61475837, + "voter": "natako" }, { - "rshares": 168112420, - "voter": "jimmytwoshoes" + "rshares": 1407753980, + "voter": "edbriv" }, { "rshares": 50684643, "voter": "johnbyrd" }, { - "rshares": 50682252, - "voter": "thomasaustin" + "rshares": 75872674, + "voter": "steem42" }, { - "rshares": 50680459, - "voter": "thermor" + "rshares": 8864967182, + "voter": "nastik" }, { - "rshares": 50677748, - "voter": "ficholl" + "rshares": 56238093, + "voter": "fiat19" }, { - "rshares": 50673817, - "voter": "widell" + "rshares": 50416427, + "voter": "curpose" }, { - "rshares": 6820474750, - "voter": "jaredcwillis" + "rshares": 55608355, + "voter": "runridefly" }, { - "rshares": 50311250, - "voter": "revelbrooks" + "rshares": 50588612, + "voter": "troich" }, { - "rshares": 7788648927, - "voter": "nastik" + "rshares": 56792345, + "voter": "benaccept" }, { - "rshares": 6349026392, - "voter": "craigwilliamz" + "rshares": 3900103781, + "voter": "digital-wisdom" }, { - "rshares": 854738071, - "voter": "eileenbeach" + "rshares": 6038485591, + "voter": "jwaser" }, { - "rshares": 120555384, - "voter": "mrainp" + "rshares": 62606315, + "voter": "alexskinner" }, { - "rshares": 74117546, - "voter": "runridefly" - }, - { - "rshares": 247403806, - "voter": "funkywanderer" - }, - { - "rshares": 37999116029, - "voter": "onesunbeingnow" - }, - { - "rshares": 1800633267, - "voter": "jeremyfromwi" - }, - { - "rshares": 55942085, - "voter": "team101" - }, - { - "rshares": 57797737, - "voter": "carlyle" - }, - { - "rshares": 50593879, - "voter": "crion" - }, - { - "rshares": 50271139, - "voter": "hitherise" - }, - { - "rshares": 50262756, - "voter": "wiss" - }, - { - "rshares": 50395408, - "voter": "virgo" - }, - { - "rshares": 55678770, - "voter": "benaccept" - }, - { - "rshares": 51033798, - "voter": "stroully" - }, - { - "rshares": 6038485591, - "voter": "jwaser" - }, - { - "rshares": 54745334, - "voter": "justme" - }, - { - "rshares": 50712038, - "voter": "thadm" - }, - { - "rshares": 50710305, - "voter": "prof" - }, - { - "rshares": 52845998, - "voter": "kev7000" - }, - { - "rshares": 50356354, - "voter": "yorsens" - }, - { - "rshares": 922833074, - "voter": "canalytic" - }, - { - "rshares": 60253110, - "voter": "magdalenaruth" + "rshares": 3775924808, + "voter": "canalytic" }, { "rshares": 50065875, @@ -952,28 +993,24 @@ "voter": "vive" }, { - "rshares": 50054445, - "voter": "coad" + "rshares": 1373651957, + "voter": "bwaser" }, { "rshares": 50825587, "voter": "sofa" }, { - "rshares": 54110156, - "voter": "panther" - }, - { - "rshares": 58780971, - "voter": "gardengirlcanada" + "rshares": 54234557, + "voter": "lifeworship" }, { - "rshares": 53163793, - "voter": "powpos" + "rshares": 51328265, + "voter": "doze49" }, { - "rshares": 52071789, - "voter": "nooler" + "rshares": 50923900, + "voter": "inwoxer" } ], "author": "kental", @@ -981,4383 +1018,5043 @@ "author_reputation": 63.52, "beneficiaries": [], "blacklists": [], - "body": "\n

Hi #steemit. Today i want to tell you about how make a hive for bees with your hands.

\n

I will talk about the VARRE#hive. This technique is the manufacture of beehives are very popular among the beekeepers.

\n

http://i.imgur.com/NQXvVA8.jpg

\n

The design and features of the hive

\n

http://i.imgur.com/Jxlcd8S.jpg

\n\n

Housing

\n

The case is in the form of an ordinary box, accommodates 8 tickers. The distance between each of them about 12 mm. Shell, be careful to board at the junctions was connected directly.

\n

Bars size of 300 * 20 * 20mm need to glue and fix with 3 nails. The upper edge of the handle should mow it helps water to drain freely in the rain weather.

\n

Advantages hive Varre

\n\n

Populations of bees in the hive Varre

\n

Beekeepers - a novice is better to populate the bees in the hive Varre swarm. But if the swarm is difficult to get, then I offer to settle the bees in this hive follows.

\n


\n

When will the bee season, buy a couple of bee colonies with hives (eg Dadant hives). Bring a hive to his apiary and wait until the bees start to swarm (swarm of bees). First released swarm necessary to capture and besiege the hive Varre. But the second swarm can catch and the place of the old hive Dadant put Varre evidence. And after all the bees move into a new house.

\n

This method forces experienced by beekeepers and novices better to take a swarm of bees to populate.

\n

My new article about Production of frames for the hive with your hands

\n

Thank you!

\n

@kental with you!

\n", + "body": "\n

So, What is a swarm of #bees?

\n

Swarming of bees is when the parent family is forced to split into two almost equal parts. At a time when the first part will remain in the same habitat, second (with old or young bee queen) will hit the road to search for a new residence. 

\n

About this reproduction is a lot of debate among scholars and practitioners #beekeepers.

\n

http://i.imgur.com/Gwx3GK7.png?1

\n

How to put a swarm in the hive?

\n

In my opinion, the most effective planting bees by using the gangway. Gangway for Swarming are a sheet of plywood or fiberboard, one end of which is tapered to 20 cm with the narrow end Gangways are placed on the arrivals Board.

\n

The longitudinal and the underside of the plywood edge slats. Unlike violent landing directly on frame in hive with a swarm of bees settled gangway self-propelled. Bees naturally go through the notches. Beautiful come, together, without crowding, injury and anger bees. To monitor this process very interesting. Landing a swarm in a hive with staircases, we can say, gentle way.

\n

http://pchelovod-ya.at.ua/_ph/2/770969534.jpg

\n

The beekeeper, as it invites and does not force the bees to occupy a well-appointed nest.

\n

The work planted by this method, the swarm starts the next morning. After landing a swarm in a new hive has no one bee will not return to the old hive. If this is an early swarm, he manages to gain strength to the main trick.

\n

#Swarm activity due to the fact that the first time the bees are too busy rearing brood and they are dominated by the instinct of accumulation of feed. 

\n

On second plan is being pushed equally important is the instinct of procreation. Sometimes the bees fill the cells so that the bee queen there is no place even to lay eggs.

\n

The main task of the beekeeper in the summer \u2013 not only to increase the strength of bee colonies, but also to keep them in working condition.

\n

Thank you for your attention!

\n

@kental with you!

\n

Follow me If you want to learn more about beekeeping

\n

My last article about Production of frames for the hive with your hands

\n", "category": "bees", "children": 10, - "created": "2016-08-17T23:31:15", + "created": "2016-08-18T16:23:03", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "http://i.imgur.com/NQXvVA8.jpg", - "http://i.imgur.com/Jxlcd8S.jpg" + "http://i.imgur.com/Gwx3GK7.png?1", + "http://pchelovod-ya.at.ua/_ph/2/770969534.jpg" ], "links": [ + "https://steemit.com/@kental", "https://steemit.com/bees/@kental/hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees" ], "tags": [ "bees", - "steemit", - "introduceyourself", - "hive" + "", + "beekeepers", + "Swarm" ], "users": [ "kental" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 49322045076389, - "payout": 364.331, - "payout_at": "2016-08-24T23:31:15", - "pending_payout_value": "364.331 HBD", + "net_rshares": 12555585332593, + "payout": 25.036, + "payout_at": "2016-08-25T16:23:03", + "pending_payout_value": "25.036 HBD", "percent_hbd": 10000, - "permlink": "hi-steem-make-a-hive-for-bees-with-their-hands-beekeeper-bees-on-steemit", - "post_id": 861737, + "permlink": "landing-a-swarm-to-the-hive-beekeeper-new-hive-with-the-bees-what-is-a-swarm-of-bees", + "post_id": 873194, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 125 + "total_votes": 61 }, - "title": "Hi Steem! Make a hive for bees with your hands! Beekeeper. Bees on Steemit!", - "updated": "2016-08-18T08:03:57", - "url": "/bees/@kental/hi-steem-make-a-hive-for-bees-with-their-hands-beekeeper-bees-on-steemit" + "title": "Landing a swarm to the hive! Beekeeper. New hive with the bees. What is a swarm of bees.", + "updated": "2016-08-18T21:18:57", + "url": "/bees/@kental/landing-a-swarm-to-the-hive-beekeeper-new-hive-with-the-bees-what-is-a-swarm-of-bees" }, { "active_votes": [ { - "rshares": 7884259156, - "voter": "chris-bates" - }, - { - "rshares": 27510133359, - "voter": "paradigm-lives" - }, - { - "rshares": 245433423, - "voter": "timotron" - }, - { - "rshares": 700552219, - "voter": "johnnydollar" + "rshares": 52876669, + "voter": "ethosfetchmania" } ], - "author": "chris-bates", - "author_payout_value": "0.032 HBD", - "author_reputation": 55.96, + "author": "ethosfetchmania", + "author_payout_value": "0.000 HBD", + "author_reputation": 30.64, "beneficiaries": [], "blacklists": [], - "body": "http://i156.photobucket.com/albums/t5/tabalitigi/bluepill.jpg\n\n\n\nWhen it comes to deciphering the origin of civilization, or the \"origins of consciousness\", we still only have conjecture and trivial theories because of lack of resources via various causes: i.e. oral history traditions, book burning, natural disasters, etc...\n\nOn top of the historical disconnect, we also have ancient cultures capable of building structures that could last for multiple epochs, while with modern technology we can't build structures that last for a 100 years. These engineers, while capable of scientific/technological feats that we cannot match today also seemed to believe in some stupid/crazy/fantastical nonsense that either we have completely taken out of context, misinterpreted, COULD have possibly existed in some form, it could have been done to mislead the uneducated, propaganda, OR they could have just actually been crazy...\n\nI have a very difficult time believing that the people that created geometry, chemistry, and mastered engineering believed that some \"magic dude in the sky\" used his magic powers to \"turn planets\", or \"create stars\", as they seemed very intent on understanding anything they possibly could, so to attribute some things to \"gods\" because they \"couldn't explain them\", when the gods seemed to have VERY specific directions or clear interactions when it happened, it's not a consistent argument. Especially when you have things like the identification of Sirius B thousands of years before telescopes capable of seeing it would have been invented.\n\nhttp://en.wikipedia.org/wiki/Dogon_people\nhttp://arcturi.com/AncientAliens/DogonPeopleAndAliens.html\n\nWhile I don't ascribe to the ancient alien theory, there might be a biological explanation as to why people used to believe in \"supernatural/superhuman\" beings.\n\nhttp://en.wikipedia.org/wiki/Bee_hives\nhttp://en.wikipedia.org/wiki/Ant_Hive\n\nhttp://i156.photobucket.com/albums/t5/tabalitigi/neo2.jpg\n\nIn the natural world, we have bee hives, ant colonies, and many other \"hive minded\" species. This entails a \"collective consciousness\" so to speak, and in turn, it would mean that there is likely little ego, or \"individuals\" within the colony. I believe that at some point, humans existed in a \"hive mind\" state, and the collective consciousness would have naturally preceded the formation of the \"individual\".\n\nWhat this would imply, is that during the evolution of humans, if at some point in time, we were all tapped into a \"collective consciousness\", there would be NO NEED for written language, no NEED for written history traditions, and NO NEED for an economic system, as the information and resources had not yet reached a point that exceeded the \"collective consciousness's\" capacity to either process information, or distribute available resources.\n\nhttp://en.wikipedia.org/wiki/Homer\n\n\"The formative influence played by the Homeric epics in shaping Greek culture was widely recognized, and Homer was described as the teacher of Greece.[3] Homer's works, which are about fifty percent speeches, provided models in persuasive speaking and writing that were emulated throughout the ancient and medieval Greek worlds. Fragments of Homer account for nearly half of all identifiable Greek literary papyrus finds.[4]\"\n\nIf you are not familiar with \"Homer\" he is often misattributed as the \"writer\" of the Iliad and the Odyssey, when he was just supposedly the person who \"wrote them down\"...You have epics like the iliad and the odyssey being committed to memory by ONE person who is just ONE teacher amongst many scholars. I believe when you see THIS period of transition into \"writing\" things down, it's not because they reached the \"pinnacle\" of society necessarily, but they were breaking the processing limits of the collective consciousness, so it was necessary to begin using more methods of \"collecting information\" to record \"the important things\"...\nIf we use the \"computer\" as a metaphor for the collective consciousness since the computer was modeled after the brain, we can assume that the collective consciousness will hit a \"processing limit\". In computing, when we hit a processing limit, the solution is usually to take two equally fast processors, and divide the work load. This would be tantamount to a \"split\" in the collective consciousness: the formation of \"individuals\" able to process information outside of the \"processing limit\" of the \"collective consciousness\"...\n\nIt would be like an \"intranet\" vs. an \"Internet\"...\n\nthe collective conscious=Internet, and the individual = intranet...\n\nboth can be linked to each other, but the \"intranet\" has been \"disconnected\" from the \"Internet\" so it's functionally a \"private network\" at this point...\n\nNow, if this were the case, the \"hardware\" for the Internet, or collective consciousness would be \"vestigial brain tissue\" in SOME people but OTHER people might still be able to \"hack\" the Internet, and access the \"collective consciousness\", making them appear to have \"supernatural or godlike\" abilities. This is when you hear lore like that of \"alexander the great\" being able to stand on the shoulders of two of his men, and all three of them function as one warrior in battle...\n\nhttp://i156.photobucket.com/albums/t5/tabalitigi/smith2.jpg\n\nAlso, the idea of \"god kings\" or \"divine pharoahs\" where people completely devoted their lives and existence to one person, much like an ant colony or bee hive, and were able to accomplish things that a force under duress has NEVER been able to match. The reason I believe that there MIGHT have been some sort of different capacity of processing information is that you have these people who built the pyramids with VERY few people, VERY few resources, and didn't need to leave very much instruction on HOW to do it, for whatever reason.\n\nThey OBVIOUSLY weren't stupid, and although by this point they had definitely started keeping records, and were writing things down, they didn't much feel the need to record EVERY detail...I don't see these people being \"lazy\", or \"lax\" about their decision making, and on top of that, the idea that the \"information\" that this culture had amassed was SO dangerous that the religion that came to DOMINATE the world for the next 1200 years needed to completely wipe it off the face of the earth to rule the masses makes me think the christian church found something a long time ago that would explain why there are pyramids ALL over the planet, and whatever they found was something that allowed them to \"make everyone forget\"...\n\nI thought this might explain why we are moving TOWARDS a collective consciousness to a degree in the \"Internet\", as it's possible our neural network might be wired to \"be plugged in\"...\n\n\nhttp://en.wikipedia.org/wiki/Collective_consciousness\nhttp://en.wikipedia.org/wiki/Abilene_paradox\nhttp://en.wikipedia.org/wiki/Groupthink\n\nhttp://farm7.static.flickr.com/6172/6138348999_f8bba5c918_m.jpg", - "category": "revolution", - "children": 3, - "created": "2016-07-15T14:38:48", + "body": "\n

\n

Part 1 Dreaming Dreams Where Others Wouldn't Dare

\n

At one point or another in our lives we've likely been asked some variation of the question \"what are your dreams?\" For most people they have elected to become part of a subconsciousness hive mind wherein they all share the same basic dreams. A lot of these dreams revolve around simple things such as fame and riches. And while supporting a variance of individualistic manifestations covering a broad range of applications the construct of the subconscious hive mind is still by and large the same throughout. The desire for prominence and wealth is preeminent and promulgated by the inherent herd mentality of the subconscious hive mind construct.

\n

\n

Granted, the appeal of these things is obvious, especially when dealing with hive mind and herd mentalities. Fame is synonymous with recognition and the more recognizable you are to more people the more influence you have over the collective subconscious. However, it should be noted that this influence can work for or against the wielder of fame. Fortune and wealth grants similar (albeit more subtle and powerful) influence and control over the minds of the masses. So what really does the individual and collective mind alike yearn for if the two most prominent dreams and desires essentially reduce down to having more power? Well, that's the answer. The mind (both collective and individual) craves power at its core.

\n

Going Where Others Fear To Tread

\n

We live in an age of interconnectedness and continuously emerging disruptive technologies. We've come a long way from following herds on the open plains. Or have we? In this digital age are not content creators such as myself essentially tracking the patterns and movements of the herd in order to best benefit from the resources that the herd provides? How am I any different from my often so call primitive ancestors? If anything, I'm worse off. Whereas my ancestors only needed to pick off a couple stragglers here and there to provide for themselves I am playing a different numbers game where I am attempting to get as many of the herd as possible. I've evolved from hunter gatherer to wild west rustler and rancher.

\n

\n

So what does it really mean to tread where others fear? I'm certainly not treading anywhere that others aren't willing to tread by posting here on Steemit. I'm just like thousands, if not millions, of others all vying for the same attention from the same pool of people. The level of uncertainty when concerning success certainly isn't any greater or much less than what was experienced by our hunter gatherer progenitors. So again, where's the dream? If you'll bear with me I'm laying the ground work as fast as I can to drive home the point I'm hoping to get across.

\n

Running the Risk of Alienation

\n

What it comes down to in this day and age (and even in past ages) is the risk of alienation. In order to successfully branch out into new territory you must run the risk of alienating the rest of the herd. This however is self-defeating if your livelihood effectively depends on your overall level of acceptance with the hive mind. Is there anyway to alienate yourself and at the same time draw in a mass core of followers? This formula tends to only work well with shock rockers and not so well for the blogging crowd.

\n

\n

History has taught us that to challenge the zeitgeist is to often resign oneself to complete and total rejection. Sometimes this is as passive as ridicule and shame (which in some societies can prove to be harmful if not in some extreme cases fatal) and others it goes as far as imprisonment or death. And yet many of the greatest innovations that we today tend to take for granted come from those who were overtly ostracized and even persecuted for the challenging new ideas that they brought forth. Is this to mean that we are to forever remain subservient to the whims of the crowd? Must we really pander to the lowest common denominator?

\n

Creating a Mutually Beneficial Relationship

\n

I do not believe that we are forever doomed to feed into the consumer mentality in order to sustain ourselves through group economics. Platforms like Steemit more than support this belief. It allows me the freedom and comfort to produce content that while disruptive in nature is inviting and insightful. Never before has a platform appealed to me the way that Steemit does. And it goes beyond the obvious mass appeal of being paid for creating and upvoting content. I truly feel invited to share my thoughts on this platform.

\n

Fortunately enough for me Steemit has already created a mutually beneficial relationship whereby I can bypass the essential disruptive and alienating nature that I have found my thoughts and content often displays. I know there are plenty of people out there who would vibe with my prose and my mode of thinking but the challenge is that people who think like me are often so preoccupied with our own thoughts that we have little to no incentive to build a reliable community.

\n

I would call this something of a lone wolf complex wherein we who are inherently and instinctively predisposed to challenge the status quo often do so to our own isolation and detriment. We would be stronger together and yet we cannot overcome our cynicism and our own apathetic lethargy to form a cohesive bond by which to overthrow the power systems which threaten to drive the herd off a cliff.

\n

A Hive Mind of Free Thinking Rebels

\n

Yet I dare to dream of a coalition of free thinking rebels and lone wolves who are able to for a time work together a common and mutually beneficial goal. But finally I know I am not alone in this dream and there is light in the darkness and the dream is looking to become a reality for the first time in my life. Yes, my dream much like Steemit is still in its infancy but as I have chosen this as the platform for my dream I am wholly committed to nurturing both this dream and this groundbreaking platform.

\n

As I have no following established on any other social media platform for the aforementioned reasons I am attempting to create from the ground up my entire following here on Steemit. I simply don't feel comfortable on any other platform and that's the honest truth of it.

\n

Ethos Fetch Mania

\n", + "category": "amusingethos", + "children": 0, + "created": "2016-09-01T17:13:33", "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { "image": [ - "http://i156.photobucket.com/albums/t5/tabalitigi/bluepill.jpg" + "http://i1154.photobucket.com/albums/p534/merkabah47/eceae344-94bf-4401-8410-f958d0a10f74.jpg", + "http://i1154.photobucket.com/albums/p534/merkabah47/hive%20mind%202.jpg", + "http://i1154.photobucket.com/albums/p534/merkabah47/5a3ecc87-28b4-4af9-ae6b-7e22e44b0485.jpg", + "http://i1154.photobucket.com/albums/p534/merkabah47/Marilyn_Manson_f9214071.jpg?t=1472662470" ], - "tags": [ - "revolution", - "origins", - "of", - "man", - "hive", - "mind" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 36340378157, - "payout": 0.032, - "payout_at": "2016-08-24T01:28:42", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "origin-of-man-hive-mind-theory", - "post_id": 119967, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "Origin of Man: Hive Mind Theory", - "updated": "2016-07-15T14:46:18", - "url": "/revolution/@chris-bates/origin-of-man-hive-mind-theory" - }, - { - "active_votes": [ - { - "rshares": 323377072, - "voter": "rafikichi" - }, - { - "rshares": 32181337554, - "voter": "binwah-de-rese" - }, - { - "rshares": 220419103, - "voter": "hacknomist" - }, - { - "rshares": 224777709, - "voter": "ranajit" - }, - { - "rshares": 1237837109, - "voter": "anthonyj" - } - ], - "author": "rafikichi", - "author_payout_value": "0.036 HBD", - "author_reputation": 42.97, - "beneficiaries": [], - "blacklists": [], - "body": "\n

First post!  As a long time Bitshares holder, I am trying out this Steem blog and today share with you my video inspection of a top-bar bee hive.

\nhttps://www.youtube.com/watch?v=xJ8jaQH4kY8\n", - "category": "bees", - "children": 2, - "created": "2016-07-13T17:48:18", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": { "links": [ - "https://www.youtube.com/watch?v=xJ8jaQH4kY8" + "https://steemit.com/@ethosfetchmania" ], "tags": [ - "bees" + "amusingethos", + "life", + "blog", + "" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 34187748547, - "payout": 0.036, - "payout_at": "2016-08-23T14:01:24", + "net_rshares": 52876669, + "payout": 0.0, + "payout_at": "2016-09-08T17:13:33", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "a-visual-walkthrough-of-a-honey-bee-top-bar-hive", - "post_id": 98152, + "permlink": "a-musing-ethos-pt-1-dreaming-dreams-where-others-wouldn-t-dare", + "post_id": 1087207, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 5 + "total_votes": 1 }, - "title": "A Visual Walkthrough of a Honey Bee Top-bar Hive", - "updated": "2016-07-13T17:52:00", - "url": "/bees/@rafikichi/a-visual-walkthrough-of-a-honey-bee-top-bar-hive" + "title": "A Musing Ethos (pt 1 Dreaming Dreams Where Others Wouldn't Dare)", + "updated": "2016-09-01T17:13:33", + "url": "/amusingethos/@ethosfetchmania/a-musing-ethos-pt-1-dreaming-dreams-where-others-wouldn-t-dare" }, { "active_votes": [ { - "rshares": 3243988325297, + "rshares": 9247355213510, "voter": "pharesim" }, { - "rshares": 5582792216463, + "rshares": 5540542008005, "voter": "kushed" }, { - "rshares": 1641629323871, - "voter": "silver" - }, - { - "rshares": 3877404409460, - "voter": "silversteem" + "rshares": 190560139167, + "voter": "liondani" }, { - "rshares": 3722028971, + "rshares": 2470489533, "voter": "boy" }, { - "rshares": 230036002225, - "voter": "steem-id" - }, - { - "rshares": 4518781667, + "rshares": 2998443686, "voter": "bue-witness" }, { - "rshares": 828837492, + "rshares": 567644710, "voter": "bunny" }, { - "rshares": 6927232009390, + "rshares": 3822427673370, "voter": "complexring" }, { - "rshares": 1689089737434, - "voter": "steemychicken1" - }, - { - "rshares": 65287944281, + "rshares": 41983571234, "voter": "bue" }, { - "rshares": 1994583900, + "rshares": 1324291056, "voter": "mini" }, { - "rshares": 256483325, + "rshares": 170710638, "voter": "moon" }, { - "rshares": 208760336937, + "rshares": 131979728114, "voter": "alex90342fastn1" }, { - "rshares": 6134716600, - "voter": "bentley" - }, - { - "rshares": 13444996533, + "rshares": 11853694119, "voter": "proctologic" }, { - "rshares": 747707858, + "rshares": 496907322, "voter": "healthcare" }, { - "rshares": 1161396281, - "voter": "daniel.pan" + "rshares": 11365709237, + "voter": "wpalczynski" }, { - "rshares": 345917583, - "voter": "helen.tan" + "rshares": 889575874845, + "voter": "tuck-fheman" }, { - "rshares": 312977819042, - "voter": "cryptogee" + "rshares": 727046825, + "voter": "daniel.pan" }, { - "rshares": 145914960267, - "voter": "steve-walschot" + "rshares": 2678703803030, + "voter": "donkeypong" }, { - "rshares": 1424880476, - "voter": "murh" + "rshares": 980438659, + "voter": "relativelyboston" }, { - "rshares": 40889960095, - "voter": "justtryme90" + "rshares": 230154255, + "voter": "helen.tan" }, { - "rshares": 13749006857, - "voter": "samether" + "rshares": 45137904925, + "voter": "tshering-tamang" }, { - "rshares": 1361853504, - "voter": "ratel" + "rshares": 381318195280, + "voter": "cryptogee" }, { - "rshares": 1951573675, - "voter": "stephen-somers" + "rshares": 365109284922, + "voter": "kevinwong" }, { - "rshares": 4122610334, - "voter": "fuck.off" + "rshares": 1798985913, + "voter": "murh" }, { - "rshares": 5337246827, - "voter": "iloveporn" + "rshares": 323581189902, + "voter": "blakemiles84" }, { - "rshares": 3317495020, - "voter": "the.bot" + "rshares": 474085274553, + "voter": "cyber" }, { - "rshares": 6491587121, - "voter": "johnbradshaw" + "rshares": 11066221058, + "voter": "btotherest" }, { - "rshares": 4523980753, - "voter": "the.whale" + "rshares": 41282058831, + "voter": "michaelx" }, { - "rshares": 4397697146, - "voter": "unicornfarts" + "rshares": 294489187817, + "voter": "anwenbaumeister" }, { - "rshares": 4522437660, - "voter": "vote" + "rshares": 372853566, + "voter": "alextsvirko" }, { - "rshares": 4766070691, - "voter": "kissmybutt" + "rshares": 25586814646, + "voter": "jonnyrevolution" }, { - "rshares": 454018566670, - "voter": "juneaugoldbuyer" + "rshares": 11346049160, + "voter": "primus" }, { - "rshares": 1650349427, - "voter": "steem1653" + "rshares": 505226617, + "voter": "soupernerd" }, { - "rshares": 241825907, - "voter": "danielkt" + "rshares": 5083961069, + "voter": "cmtzco" }, { - "rshares": 343106582149, - "voter": "knozaki2015" + "rshares": 128722864367, + "voter": "chhayll" }, { - "rshares": 17717247795, - "voter": "phenom" + "rshares": 31775654867, + "voter": "r4fken" }, { - "rshares": 115197185, - "voter": "kastaned" + "rshares": 426619429989, + "voter": "neoxian" }, { - "rshares": 644607497, - "voter": "curator" + "rshares": 4258432854, + "voter": "on0tole" }, { - "rshares": 7003655261, - "voter": "michaeldodridge" + "rshares": 239718921, + "voter": "sairji" }, { - "rshares": 20057009263, - "voter": "smailer" + "rshares": 1347860309, + "voter": "marcgodard" }, { - "rshares": 129103709, - "voter": "steemster1" + "rshares": 2265819213, + "voter": "egjoshslim" }, { - "rshares": 1955679634, - "voter": "andreynoch" + "rshares": 4059377371, + "voter": "deviedev" }, { - "rshares": 55181675, - "voter": "sharon" + "rshares": 173514756338, + "voter": "knozaki2015" }, { - "rshares": 54844677, - "voter": "lillianjones" + "rshares": 519281167, + "voter": "fubar-bdhr" }, { - "rshares": 4585098273, - "voter": "darknet" + "rshares": 83009312228, + "voter": "liberosist" }, { - "rshares": 17562158650, - "voter": "kental" + "rshares": 4038805706, + "voter": "sacode" }, { - "rshares": 816695215, - "voter": "boddhisattva" + "rshares": 5780404223, + "voter": "webdeals" }, { - "rshares": 64412430228, - "voter": "krishtopa" + "rshares": 638555850, + "voter": "curator" }, { - "rshares": 55265906, - "voter": "msjennifer" + "rshares": 3386344700, + "voter": "sisterholics" }, { - "rshares": 53370316, - "voter": "ciao" + "rshares": 84206519, + "voter": "elliottgodard" }, { - "rshares": 8629056028, - "voter": "thebotkiller" + "rshares": 1613722381, + "voter": "smailer" }, { - "rshares": 52985539, - "voter": "steemo" + "rshares": 186902061, + "voter": "taz" }, { - "rshares": 52848854, - "voter": "steema" + "rshares": 105249109, + "voter": "steemster1" }, { - "rshares": 69952247, - "voter": "evgenyche" + "rshares": 108563312, + "voter": "zloyevgen" }, { - "rshares": 61515128, - "voter": "confucius" + "rshares": 1481722965, + "voter": "spinner" }, { - "rshares": 53648513, - "voter": "jarvis" + "rshares": 9608331105, + "voter": "michiel" }, { - "rshares": 53106127, - "voter": "fortuner" + "rshares": 440913264, + "voter": "weenis" }, { - "rshares": 228466038, - "voter": "natako" + "rshares": 67221575, + "voter": "skyefox" }, { - "rshares": 65635734213, - "voter": "serejandmyself" + "rshares": 51143991, + "voter": "sharon" }, { - "rshares": 1423723498, - "voter": "alexma3x" + "rshares": 52810577, + "voter": "johnblow" }, { - "rshares": 226683034, - "voter": "jimmytwoshoes" + "rshares": 50731326, + "voter": "lillianjones" }, { - "rshares": 53042068, - "voter": "johnbyrd" + "rshares": 528063945675, + "voter": "laonie" }, { - "rshares": 53039566, - "voter": "thomasaustin" + "rshares": 3602813000, + "voter": "laonie1" }, { - "rshares": 53037689, - "voter": "thermor" + "rshares": 3602789727, + "voter": "laonie2" }, { - "rshares": 53034852, - "voter": "ficholl" + "rshares": 3782873230, + "voter": "laonie3" }, { - "rshares": 53030738, - "voter": "widell" + "rshares": 130513072490, + "voter": "somebody" }, { - "rshares": 52651308, - "voter": "revelbrooks" + "rshares": 5085224178, + "voter": "kental" }, { - "rshares": 12231285768, - "voter": "nastik" + "rshares": 24775737274, + "voter": "xtester" }, { - "rshares": 13906986251, - "voter": "mandibil" + "rshares": 3782588882, + "voter": "laonie4" }, { - "rshares": 962047214, - "voter": "fiat19" + "rshares": 3782562020, + "voter": "laonie5" }, { - "rshares": 52708083, - "voter": "curpose" + "rshares": 3782635861, + "voter": "laonie6" }, { - "rshares": 7016892444, - "voter": "einsteinpotsdam" + "rshares": 3782531393, + "voter": "laonie7" }, { - "rshares": 51712804, - "voter": "troich" + "rshares": 3782521206, + "voter": "laonie8" }, { - "rshares": 51718188, - "voter": "crion" + "rshares": 3782515042, + "voter": "laonie9" }, { - "rshares": 51388276, - "voter": "hitherise" + "rshares": 19988874819, + "voter": "xiaohui" }, { - "rshares": 51379706, - "voter": "wiss" + "rshares": 43818559886, + "voter": "krishtopa" }, { - "rshares": 105661384, - "voter": "rusla" + "rshares": 2678551213, + "voter": "gargon" }, { - "rshares": 54565194, - "voter": "benaccept" + "rshares": 51120963, + "voter": "msjennifer" }, { - "rshares": 52143228, - "voter": "stroully" + "rshares": 50828873, + "voter": "ciao" }, { - "rshares": 51814474, - "voter": "thadm" + "rshares": 50521096, + "voter": "steemo" }, { - "rshares": 51812703, - "voter": "prof" + "rshares": 50390768, + "voter": "steema" }, { - "rshares": 51451058, - "voter": "yorsens" + "rshares": 50183394, + "voter": "confucius" }, { - "rshares": 51154263, - "voter": "bane" + "rshares": 51153233, + "voter": "jarvis" }, { - "rshares": 51148009, - "voter": "vive" + "rshares": 299506282, + "voter": "microluck" }, { - "rshares": 51142585, - "voter": "coad" + "rshares": 50692212, + "voter": "fortuner" }, { - "rshares": 226876451, - "voter": "pjo" + "rshares": 61475837, + "voter": "natako" }, { - "rshares": 51906983, - "voter": "sofa" + "rshares": 59575622, + "voter": "gmskov" }, { - "rshares": 51979174, - "voter": "ailo" + "rshares": 50684643, + "voter": "johnbyrd" }, { - "rshares": 52948298, - "voter": "alwayzgamez" + "rshares": 50682252, + "voter": "thomasaustin" }, { - "rshares": 2698737055, - "voter": "funnyman" + "rshares": 50680459, + "voter": "thermor" }, { - "rshares": 50441122, - "voter": "eavy" + "rshares": 50677748, + "voter": "ficholl" }, { - "rshares": 50439559, - "voter": "roto" + "rshares": 50673817, + "voter": "widell" }, { - "rshares": 62859786, - "voter": "drac59" + "rshares": 50311250, + "voter": "revelbrooks" }, { - "rshares": 50938725, - "voter": "haved" + "rshares": 3780579832, + "voter": "laonie10" }, { - "rshares": 50708837, - "voter": "ardly" + "rshares": 7944566435, + "voter": "nastik" }, { - "rshares": 50704078, - "voter": "yotoh" + "rshares": 19782309838, + "voter": "someguy123" }, { - "rshares": 50433760, - "voter": "morse" + "rshares": 50416427, + "voter": "curpose" }, { - "rshares": 50372583, - "voter": "carre" + "rshares": 74144473, + "voter": "runridefly" }, { - "rshares": 72784915, - "voter": "igtes" + "rshares": 2690168900, + "voter": "einsteinpotsdam" }, { - "rshares": 157612601, - "voter": "buffett" - } - ], - "author": "kental", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.52, - "beneficiaries": [], - "blacklists": [], - "body": "## Hi Steemers! I'd like to tell you about How make frames for the hive Dadant!\n\nHere is what we have now should get!\nhttp://i.imgur.com/kgsK4ma.png\n\n## Who is Charles Dadant? \nCharles Dadant was a French-American beekeeper. Along with Petro Prokopovych, Dadant is considered one of the founding fathers of modern beekeeping.\n\nhttp://zoohoz.ru/wp-content/uploads/2015/06/img_5567_-.jpg\n### Tools and materials:\n- dry thin billets from the slats (the example and the dimensions in the photo below);\n- hammer;\n- steel wire;\n- awl;\n- pliers with wire cutters;\n- Shoe nails.\n\n## Produce a frame.\n\nThe size of the frames of the hive Dadana 12 and 10 to the frame structure does not differ among themselves, and their production are identical. The size of this frame should be 43,5h30 see Take cooked dry billet rails and with the help of nails and hammer connect them as shown in the photo.\nhttp://i.imgur.com/OwrRm1l.jpg\nThe size of the slats for frame\nhttp://i.imgur.com/YTZMBsK.png\nThe process of connecting strips\nhttp://i.imgur.com/370YXAs.png\nDigging the holes for the wire with an awl\n\nWith an awl make holes for the wire in the side rails.\nhttp://i.imgur.com/i2oivU1.png\nPulled through the holes the wire and, with the awl and pliers, hold it.\nhttp://i.imgur.com/tJI2SfY.png\nThrough the last hole make a loop and fasten a stretched wire as shown in the photo. Bites off all the excess with pliers.\nhttp://i.imgur.com/KJzLsmE.png\nAle Op, all is ready!\nhttp://i.imgur.com/kgsK4ma.png\n\nAll the frame is ready. Now after the procedure of waxing, it is possible to use it.\n\nI like bees and honey. \n\nThank you for your attention!\n\n@kental with you!\n\nLet's learn beekeeping together!\n\nFollow me If you want to learn more about beekeeping! \n\nImages from: \nhttp://keepingbee.org/bee-hive-frames-diy/", - "category": "bees", - "children": 7, - "created": "2016-09-04T09:15:54", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i.imgur.com/kgsK4ma.png", - "http://zoohoz.ru/wp-content/uploads/2015/06/img_5567_-.jpg", - "http://i.imgur.com/OwrRm1l.jpg", - "http://i.imgur.com/i2oivU1.png" - ], - "links": [ - "https://steemit.com/@kental", - "http://keepingbee.org/bee-hive-frames-diy/" - ], - "tags": [ - "bees", - "frames", - "hive", - "beekeepering" - ], - "users": [ - "kental" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 25104792115472, - "payout": 76.461, - "payout_at": "2016-09-11T09:15:54", - "pending_payout_value": "76.461 HBD", - "percent_hbd": 10000, - "permlink": "make-frames-for-the-hive-dadant-beekeeping-is-returned-charles-dadant", - "post_id": 1120637, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 103 - }, - "title": "Make Frames for the Dadant's hive! Beekeeping is Returned! Charles Dadant.", - "updated": "2016-09-04T09:44:51", - "url": "/bees/@kental/make-frames-for-the-hive-dadant-beekeeping-is-returned-charles-dadant" - }, - { - "active_votes": [ + "rshares": 3764610663, + "voter": "laonie11" + }, { - "rshares": 9247355213510, - "voter": "pharesim" + "rshares": 1765329976, + "voter": "jeremyfromwi" }, { - "rshares": 5540542008005, - "voter": "kushed" + "rshares": 50588612, + "voter": "troich" }, { - "rshares": 190560139167, - "voter": "liondani" + "rshares": 378662335, + "voter": "xanoxt" }, { - "rshares": 2470489533, - "voter": "boy" + "rshares": 57797737, + "voter": "carlyle" }, { - "rshares": 2998443686, - "voter": "bue-witness" + "rshares": 50593879, + "voter": "crion" }, { - "rshares": 567644710, - "voter": "bunny" + "rshares": 50271139, + "voter": "hitherise" }, { - "rshares": 3822427673370, - "voter": "complexring" + "rshares": 50262756, + "voter": "wiss" }, { - "rshares": 41983571234, + "rshares": 55678770, + "voter": "benaccept" + }, + { + "rshares": 51033798, + "voter": "stroully" + }, + { + "rshares": 6159255303, + "voter": "jwaser" + }, + { + "rshares": 50712038, + "voter": "thadm" + }, + { + "rshares": 50710305, + "voter": "prof" + }, + { + "rshares": 52845998, + "voter": "kev7000" + }, + { + "rshares": 50356354, + "voter": "yorsens" + }, + { + "rshares": 941666402, + "voter": "canalytic" + }, + { + "rshares": 50065875, + "voter": "bane" + }, + { + "rshares": 50059754, + "voter": "vive" + }, + { + "rshares": 50054445, + "voter": "coad" + }, + { + "rshares": 1318663130, + "voter": "renzoarg" + }, + { + "rshares": 50825587, + "voter": "sofa" + }, + { + "rshares": 50258926, + "voter": "doze49" + }, + { + "rshares": 53190835, + "voter": "einbeck" + }, + { + "rshares": 50976864, + "voter": "runthis" + }, + { + "rshares": 220660172, + "voter": "mgibson" + } + ], + "author": "kental", + "author_payout_value": "0.000 HBD", + "author_reputation": 63.52, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Hi steemit! I want to tell you about production of #frames for the hive with your hands! i'll tell you the correct dimensions to create it.

\n

http://i.imgur.com/HZ0gAU5.jpg

\n

By itself, the manufacturing process is simple. To do at home frame for beehives, you will need a bit of dry strips (it is better to use lime, pine and other hardwoods), thin wire and Shoe nails. From tools, use the common pliers, an awl and a hammer. tool for making remolds that would have an idea on how to make frames for the bees, you need to understand what forms are used and main dimensions. It is the shape and size of the frame affect the activity of the bee colony, and the space between them, the width of streets and the installation of the framework contribute to the productivity of bees, their intensity.

\n

http://i.imgur.com/62Bl7dD.png

\n

The size of frames for the #hive

\n

The size of frames for the hive to determine the productivity of the entire apiary, serviceability bees, therefore, specially developed standards, which should adhere to when making the design. The idea of unification of fundamental sizes of hives, caused by the invention of the hive. The basics of beekeeping to date give a clear idea about the courses of the optimal size.

\n

http://i.imgur.com/1gQYNk1.jpg
\n

\n

The famous Russian theorist and practitioner P. I. Prokopovich has proven the success of using home-made framework, their effectiveness and necessity. Established almost 100 years ago the standards for the framework and today, continue to be the benchmark.

\n

In beekeeping today are widely used frame Dagana-Blatt, the size of which is 435x300mm. No less popular is the frame Langstroth-Ruta, which is slightly smaller in width 435 x 230 mm. Store frame has dimensions of 435 x 145 mm. At present enjoys great popularity, the invention of domestic beekeepers, the so-called Ukrainian frame, dimensions 300 x 435 mm .

\n

Used today in the bee fisheries framework for hives differ not only in their size, but also different ways of fastening, fixing honeycombs. The manufacture of frames for beehives require the #beekeeper patience and diligence. In order to expedite Assembly and facilitate the work of the beekeeper, you can use the template to build the framework.

\n

Thank you! 

\n

@kental with you!

\n

Follow me!

\n

My last post: Make a hive for bees with your hands! Beekeeper!

\n", + "category": "bees", + "children": 5, + "created": "2016-08-18T05:05:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/HZ0gAU5.jpg", + "http://i.imgur.com/62Bl7dD.png", + "http://i.imgur.com/1gQYNk1.jpg" + ], + "links": [ + "https://steemit.com/@kental", + "https://steemit.com/bees/@kental/hi-steem-make-a-hive-for-bees-with-their-hands-beekeeper-bees-on-steemit" + ], + "tags": [ + "bees", + "frames", + "hive", + "beekeeper" + ], + "users": [ + "kental" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 26280589157765, + "payout": 104.018, + "payout_at": "2016-08-25T05:05:36", + "pending_payout_value": "104.018 HBD", + "percent_hbd": 10000, + "permlink": "hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees", + "post_id": 865749, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 123 + }, + "title": "Hi Steem! Production of frames for the hive with your hands! The correct dimensions! Beekeeper! Bees.", + "updated": "2016-08-18T08:03:12", + "url": "/bees/@kental/hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees" + }, + { + "active_votes": [ + { + "rshares": 42320746713971, + "voter": "blocktrades" + }, + { + "rshares": 3700932749, + "voter": "boy" + }, + { + "rshares": 4491665290, + "voter": "bue-witness" + }, + { + "rshares": 850486301, + "voter": "bunny" + }, + { + "rshares": 62548233168, "voter": "bue" }, { - "rshares": 1324291056, + "rshares": 1983966132, "voter": "mini" }, { - "rshares": 170710638, + "rshares": 255868846, "voter": "moon" }, { - "rshares": 131979728114, - "voter": "alex90342fastn1" + "rshares": 736023702, + "voter": "healthcare" }, { - "rshares": 11853694119, - "voter": "proctologic" + "rshares": 1059368285, + "voter": "daniel.pan" }, { - "rshares": 496907322, - "voter": "healthcare" + "rshares": 23671170532, + "voter": "dedriss" }, { - "rshares": 11365709237, - "voter": "wpalczynski" + "rshares": 344918671, + "voter": "helen.tan" }, { - "rshares": 889575874845, - "voter": "tuck-fheman" + "rshares": 533738898, + "voter": "ifttt" }, { - "rshares": 727046825, - "voter": "daniel.pan" + "rshares": 123510295464, + "voter": "bbqbear" }, { - "rshares": 2678703803030, - "voter": "donkeypong" + "rshares": 1812708293, + "voter": "murh" }, { - "rshares": 980438659, - "voter": "relativelyboston" + "rshares": 2218103969, + "voter": "ben99" }, { - "rshares": 230154255, - "voter": "helen.tan" + "rshares": 212516356, + "voter": "ghozia" }, { - "rshares": 45137904925, - "voter": "tshering-tamang" + "rshares": 105546573310, + "voter": "knircky" }, { - "rshares": 381318195280, - "voter": "cryptogee" + "rshares": 78882026176, + "voter": "paco" }, { - "rshares": 365109284922, - "voter": "kevinwong" + "rshares": 1651593996, + "voter": "incomemonthly" }, { - "rshares": 1798985913, - "voter": "murh" + "rshares": 22875698878, + "voter": "igster" }, { - "rshares": 323581189902, - "voter": "blakemiles84" + "rshares": 232265942, + "voter": "zoicneo" }, { - "rshares": 474085274553, - "voter": "cyber" + "rshares": 10098197082, + "voter": "domavila" }, { - "rshares": 11066221058, - "voter": "btotherest" + "rshares": 2555694065, + "voter": "screasey" }, { - "rshares": 41282058831, - "voter": "michaelx" + "rshares": 85509493345, + "voter": "bonface" }, { - "rshares": 294489187817, - "voter": "anwenbaumeister" + "rshares": 14053315626, + "voter": "artific" }, { - "rshares": 372853566, - "voter": "alextsvirko" + "rshares": 8318860928, + "voter": "mustafaomar" }, { - "rshares": 25586814646, - "voter": "jonnyrevolution" + "rshares": 9652989863, + "voter": "shredlord" }, { - "rshares": 11346049160, - "voter": "primus" + "rshares": 7620917028, + "voter": "neroru" }, { - "rshares": 505226617, - "voter": "soupernerd" + "rshares": 2371894032, + "voter": "lostnuggett" }, { - "rshares": 5083961069, - "voter": "cmtzco" + "rshares": 17439662976, + "voter": "paquito" }, { - "rshares": 128722864367, - "voter": "chhayll" + "rshares": 12733981890, + "voter": "fleuri" }, { - "rshares": 31775654867, - "voter": "r4fken" + "rshares": 5783842657, + "voter": "carlidos" }, { - "rshares": 426619429989, - "voter": "neoxian" + "rshares": 382247578, + "voter": "berrysmok" }, { - "rshares": 4258432854, - "voter": "on0tole" + "rshares": 17143990835, + "voter": "team-leibniz" }, { - "rshares": 239718921, - "voter": "sairji" + "rshares": 566637858, + "voter": "ace108" }, { - "rshares": 1347860309, - "voter": "marcgodard" + "rshares": 221366704, + "voter": "culoemono" }, { - "rshares": 2265819213, - "voter": "egjoshslim" + "rshares": 99183315, + "voter": "alrx6918" }, { - "rshares": 4059377371, - "voter": "deviedev" + "rshares": 207706274, + "voter": "elizabetemaia" }, { - "rshares": 173514756338, - "voter": "knozaki2015" + "rshares": 6670394424, + "voter": "viktor.phuket" }, { - "rshares": 519281167, - "voter": "fubar-bdhr" + "rshares": 573267348, + "voter": "romancs" }, { - "rshares": 83009312228, - "voter": "liberosist" + "rshares": 999500562, + "voter": "dolov" }, { - "rshares": 4038805706, - "voter": "sacode" + "rshares": 18719429286, + "voter": "sirwinchester" }, { - "rshares": 5780404223, - "voter": "webdeals" + "rshares": 101260834, + "voter": "annaha" }, { - "rshares": 638555850, - "voter": "curator" + "rshares": 52115021, + "voter": "andrey000" }, { - "rshares": 3386344700, - "voter": "sisterholics" + "rshares": 60076482, + "voter": "trimpy" }, { - "rshares": 84206519, - "voter": "elliottgodard" + "rshares": 577159844, + "voter": "chanbam" }, { - "rshares": 1613722381, - "voter": "smailer" + "rshares": 411377435651, + "voter": "dollarvigilante" }, { - "rshares": 186902061, - "voter": "taz" + "rshares": 5122194750, + "voter": "anotherjoe" }, { - "rshares": 105249109, - "voter": "steemster1" + "rshares": 4008931809, + "voter": "themanualbot" }, { - "rshares": 108563312, - "voter": "zloyevgen" + "rshares": 78736891, + "voter": "steemitgal" }, { - "rshares": 1481722965, - "voter": "spinner" + "rshares": 76457240, + "voter": "steemcash" }, { - "rshares": 9608331105, - "voter": "michiel" + "rshares": 56381779, + "voter": "unnsmed" }, { - "rshares": 440913264, - "voter": "weenis" + "rshares": 1255187157, + "voter": "steembeast" }, { - "rshares": 67221575, - "voter": "skyefox" + "rshares": 57828280, + "voter": "attacheguevera" + }, + { + "rshares": 7231440603, + "voter": "craigwilliamz" + }, + { + "rshares": 58824509, + "voter": "rimke" + }, + { + "rshares": 60327454, + "voter": "timbalasian" + }, + { + "rshares": 57077457, + "voter": "junkyard454" + }, + { + "rshares": 92353710, + "voter": "runridefly" + }, + { + "rshares": 57914869, + "voter": "steemgenerator" + }, + { + "rshares": 57303789, + "voter": "sabot" + }, + { + "rshares": 55667136, + "voter": "r-b-e-4life" + }, + { + "rshares": 55201561, + "voter": "pierce-the-veil" + }, + { + "rshares": 65583292, + "voter": "llawen" + }, + { + "rshares": 55401224, + "voter": "walternz" + }, + { + "rshares": 56392121, + "voter": "improvetrix" + }, + { + "rshares": 56003936, + "voter": "apriltown" + }, + { + "rshares": 54813939, + "voter": "craftercrafter" + }, + { + "rshares": 50281530, + "voter": "topslim" + }, + { + "rshares": 55620742, + "voter": "alexander255" + }, + { + "rshares": 53986558, + "voter": "avpd" + }, + { + "rshares": 50736532, + "voter": "shmits" + }, + { + "rshares": 50718248, + "voter": "orangenews" + }, + { + "rshares": 54956834, + "voter": "allyouneedtoknow" + } + ], + "author": "steemgenerator", + "author_payout_value": "253.739 HBD", + "author_reputation": 52.05, + "beneficiaries": [], + "blacklists": [], + "body": "https://i.imgsafe.org/1a9b4720a0.jpeg\nThe decline of the honey has gained the attention of the international community over the past two decades. The honey bee (Apis mellifera) colonies have decreased by 25% over the 20 in Europe and 59% in 60 years in North America. In these parts, many bumblebee populations have become locally extinct. The loss of bee hives costs beekeepers an estimated $2 billion in the United States while bees are responsible for pollinating $200 billion dollars\u2019 worth of food products. Bees are also responsible for pollinating over 70% of the food we find in supermarkets. Foods such as: nuts, fruits and vegetables are dependent on the pollination of the honey bee. The meat industry would also be affected as the feed given to livestock relies bees too. \nOur existence depends on the honey bee. Without the pollination of plants and trees from honey bees our food choice would be severely limited. While there are a few reasons as to why the honey bee is in decline, many sources blame climate change, this article will identify some of the main causes for why the honey bee is declining and what can be done about it. \n\nPesticides\nMuch of the declining numbers of bees and other wild pollinators is occurring in north western Europe and North America. This is due to pesticides. In fact, the use of pesticides plays the largest role in the decline of bee population. Studies from Harvard University showed that when bees were exposed to two neonicotinoids it would lead to half of the bee hives being studied dying. The control group in the experiment which was not exposed to neonicotinoids remained healthy with none of the hives dying off. Neonicotinoids are the most widely used class of insecticides making their use even more devastating to bee populations. \nBy buying organic produce you can, not only eliminate reduce the amount of insecticides and pesticides you ingest through the food you eat but you will also be encouraging farmers to stop treating their crops with insecticides. \n\nVarroa mite \nThe varroa mite is a small red mite which attaches itself to honey bees. It sucks their blood and it some cases it can spread a disease called varroosis. This mite can only reproduce in honey bee colonies. A significant varroa mite infestation will lead to the death of the entire bee colony. This pest has been attributed to colony collapse disorder in bees. \n\nPlant diversity\nMost of the honey that you will find in your super market is produced by beekeepers with a large number of hives. These beekeepers will work with farmers and people who work in the field of agriculture. Plants which have been pollinated by bees produce a larger yield when they have been pollinated therefore food producers are only too happy to have bee hives on their land. However, the farmers tend to specialise and produce few kinds of foods. A farmer may only grow strawberries or he may only produce almonds. As a result, the bees who are pollinating the farmer\u2019s land are restricted to one main source of nectar an pollen. Bees do not fly further than a range of 3km from their hive. On a large farm they are almost forced to pollinate one type of plant. \nThis means that they do not get much diversity of pollen and nectar in their hive. This is comparable to humans only eating one kind of food. We need a varied diet to be healthy. The same goes for bees. Farmers and beekeepers in Europe have had success in reducing the number hive losses by have a piece of land on the farm which is dedicated to wild flower and giving the bees an alternative source of nectar and pollen. \n\nWifi signals\nStudies have shown that phone signals can have an effect on bees. When mobile phones were placed in or near a bee hive and the phone received a call or made a call it resulted in the bees creating 10 times more noise than they normally would. This increase in noise is a signal used by the bees to communicate that they should leave the hive. When the bees created this noise as a result of the mobile phone signals and left the hive they would fly erratically as they were confused and disorientated.", + "category": "life", + "children": 14, + "created": "2016-08-15T11:39:36", + "curator_payout_value": "84.278 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "image": [ + "https://i.imgsafe.org/1a9b4720a0.jpeg" + ], + "tags": [ + "life", + "food", + "gardening", + "science", + "topnews" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 43410741814387, + "payout": 338.017, + "payout_at": "2016-09-15T00:50:36", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "why-are-the-bees-dying-top-reasons-for-the-decline-of-the-honey-bee", + "post_id": 815302, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 74 + }, + "title": "Why are the bees dying? Top reasons for the decline of the Honey Bee", + "updated": "2016-08-15T15:10:42", + "url": "/life/@steemgenerator/why-are-the-bees-dying-top-reasons-for-the-decline-of-the-honey-bee" + }, + { + "active_votes": [ + { + "rshares": 3274637057439, + "voter": "pharesim" + }, + { + "rshares": 4442691153152, + "voter": "kushed" + }, + { + "rshares": 1119181397810, + "voter": "rossco99" + }, + { + "rshares": 3105215287, + "voter": "boy" + }, + { + "rshares": 3770155915, + "voter": "bue-witness" + }, + { + "rshares": 684160007, + "voter": "bunny" + }, + { + "rshares": 6574769788237, + "voter": "complexring" + }, + { + "rshares": 1665460244638, + "voter": "steemychicken1" + }, + { + "rshares": 55055762489, + "voter": "bue" + }, + { + "rshares": 1663817747, + "voter": "mini" + }, + { + "rshares": 213811733, + "voter": "moon" + }, + { + "rshares": 625122697, + "voter": "healthcare" + }, + { + "rshares": 973372822, + "voter": "daniel.pan" + }, + { + "rshares": 288384296, + "voter": "helen.tan" + }, + { + "rshares": 1333506750, + "voter": "elishagh1" + }, + { + "rshares": 10354304849, + "voter": "richman" + }, + { + "rshares": 1027472226, + "voter": "coar" + }, + { + "rshares": 353363017, + "voter": "murh" + }, + { + "rshares": 20202637877, + "voter": "samether" + }, + { + "rshares": 47240199623, + "voter": "ratel" + }, + { + "rshares": 95955198800, + "voter": "will-zewe" + }, + { + "rshares": 1975899689, + "voter": "stephen-somers" + }, + { + "rshares": 3294688054, + "voter": "stranger27" + }, + { + "rshares": 242525826, + "voter": "alexandr33" + }, + { + "rshares": 615126686425, + "voter": "juneaugoldbuyer" + }, + { + "rshares": 549867269082, + "voter": "neoxian" + }, + { + "rshares": 224162674, + "voter": "ardina" + }, + { + "rshares": 1681112968, + "voter": "leksimus" + }, + { + "rshares": 626633578, + "voter": "steem1653" + }, + { + "rshares": 4822028822, + "voter": "gikitiki" + }, + { + "rshares": 242164232, + "voter": "danielkt" + }, + { + "rshares": 17483411053, + "voter": "senseiteekay" + }, + { + "rshares": 11061856006, + "voter": "allmonitors" + }, + { + "rshares": 1867028105, + "voter": "splatterhaus" + }, + { + "rshares": 425765873147, + "voter": "knozaki2015" + }, + { + "rshares": 13529779713, + "voter": "nippel66" + }, + { + "rshares": 24124263142, + "voter": "phenom" + }, + { + "rshares": 4114515484, + "voter": "fubar-bdhr" + }, + { + "rshares": 2896199982, + "voter": "tarindel" + }, + { + "rshares": 551728358, + "voter": "qonq99" + }, + { + "rshares": 179902255, + "voter": "sergey44" + }, + { + "rshares": 35703838574, + "voter": "smailer" + }, + { + "rshares": 156369688, + "voter": "steemster1" + }, + { + "rshares": 115958450, + "voter": "bullionstackers" + }, + { + "rshares": 2941019391, + "voter": "dmilash" + }, + { + "rshares": 2748972774, + "voter": "jed78" + }, + { + "rshares": 63257042, + "voter": "sharon" + }, + { + "rshares": 64457212, + "voter": "lillianjones" + }, + { + "rshares": 29440345666, + "voter": "kental" + }, + { + "rshares": 65287683, + "voter": "kurzer42" + }, + { + "rshares": 36994693442, + "voter": "sirwinchester" + }, + { + "rshares": 80354386889, + "voter": "krishtopa" + }, + { + "rshares": 64952156, + "voter": "msjennifer" + }, + { + "rshares": 59738641, + "voter": "ciao" + }, + { + "rshares": 59146649, + "voter": "steemo" + }, + { + "rshares": 58994070, + "voter": "steema" + }, + { + "rshares": 64826311, + "voter": "sijoittaja" + }, + { + "rshares": 76113746, + "voter": "confucius" + }, + { + "rshares": 11785429805, + "voter": "borran" + }, + { + "rshares": 59901741, + "voter": "jarvis" + }, + { + "rshares": 57933957, + "voter": "fortuner" + }, + { + "rshares": 8925161251, + "voter": "kyriacos" + }, + { + "rshares": 305184158, + "voter": "natako" + }, + { + "rshares": 6564390971, + "voter": "solarguy" + }, + { + "rshares": 728479455, + "voter": "alexma3x" + }, + { + "rshares": 56593235, + "voter": "johnbyrd" + }, + { + "rshares": 56575537, + "voter": "thomasaustin" + }, + { + "rshares": 56573535, + "voter": "thermor" + }, + { + "rshares": 56585538, + "voter": "ficholl" + }, + { + "rshares": 56566121, + "voter": "widell" + }, + { + "rshares": 3084024832, + "voter": "movievertigo" + }, + { + "rshares": 56161396, + "voter": "revelbrooks" + }, + { + "rshares": 13830950923, + "voter": "nastik" + }, + { + "rshares": 59376719932, + "voter": "mandibil" + }, + { + "rshares": 363894416, + "voter": "ukblogger" + }, + { + "rshares": 54999739, + "voter": "curpose" + }, + { + "rshares": 1359848672, + "voter": "englishtchrivy" + }, + { + "rshares": 7365213918, + "voter": "einsteinpotsdam" + }, + { + "rshares": 5117638839, + "voter": "richardcrill" + }, + { + "rshares": 1649621874, + "voter": "eight-rad" + }, + { + "rshares": 53961187, + "voter": "troich" + }, + { + "rshares": 5672182069, + "voter": "nadin3" + }, + { + "rshares": 53966805, + "voter": "crion" + }, + { + "rshares": 53622549, + "voter": "hitherise" + }, + { + "rshares": 53613607, + "voter": "wiss" + }, + { + "rshares": 53451619, + "voter": "benaccept" + }, + { + "rshares": 53252658, + "voter": "stroully" + }, + { + "rshares": 52916909, + "voter": "thadm" + }, + { + "rshares": 52915101, + "voter": "prof" + }, + { + "rshares": 52560790, + "voter": "yorsens" + }, + { + "rshares": 52242652, + "voter": "bane" + }, + { + "rshares": 53324520, + "voter": "vive" + }, + { + "rshares": 52230725, + "voter": "coad" + }, + { + "rshares": 53003720, + "voter": "sofa" + }, + { + "rshares": 54280743, + "voter": "unlonely-soul" + }, + { + "rshares": 513275541, + "voter": "jessicanicklos" + }, + { + "rshares": 51994517, + "voter": "ailo" + }, + { + "rshares": 51470533, + "voter": "eavy" + }, + { + "rshares": 51484593, + "voter": "roto" + }, + { + "rshares": 98795632, + "voter": "mlialen" + }, + { + "rshares": 1184135726, + "voter": "anns" + }, + { + "rshares": 50938725, + "voter": "haved" + }, + { + "rshares": 50372583, + "voter": "carre" + }, + { + "rshares": 77652082, + "voter": "igtes" + }, + { + "rshares": 157720038, + "voter": "buffett" + }, + { + "rshares": 159474270, + "voter": "linka" + } + ], + "author": "kental", + "author_payout_value": "0.000 HBD", + "author_reputation": 63.52, + "beneficiaries": [], + "blacklists": [], + "body": "![](https://i.imgur.com/CUc0vip.jpg)\nImage Source\n\nThe leaf cutter bees hive is something like a wooden hotel for bees. \nHuman is not only the one creatures who need a habitation. There\u2019re well-furnished hotels for pets everywhere. They started to appear in a great amount the last few years. People reasoned that bees aren\u2019t worse. Moreover, they\u2019re very useful and make honey despite of the fact that they\u2019re not the members of family like pats in the most cases. In this way, people started to build hotels for bees.\n\nHow leaf cutter bees hive looks like?\n===\n![](https://i.imgur.com/xmKCyIB.jpg)\nImage Source\n\n![](https://i.imgur.com/AyNg16s.jpg)\nImage Source\n\nIt looks very differently. Some of them are one tier and multistory; some of them are a like a real houses with many tiers and multistory too. Every \u00abapartment\u00bb is differ from another one a lot. Some of holes are small, some of them are big; they have different sizes, structure and form. You can see the pictures of some leaf cutter bees hives calls \u00abwooden bees\u2019 hotels\u00bb below.\nOf course, the bees\u2019 hotel can\u2019t even compare with a real hotel for people. It\u2019s not that important for bees if the conditions are comfortable or not. The most important in this \u00abbuilding\u00bb for bees are holes where they can put off the larvae. \nFor \u00abhotel\u00bb like that is very good, more precisely, perfect to have complete \u00abnumbers\u00bb. For bees that\u2019s not important from what material they are done. The most important when you choose the material is to choose something that won\u2019t be harmful for bees. The most common materials are hollow bamboo or wooden sticks. \n\nHow to build the hotel for bees?\n===\n![](https://i.imgur.com/fKH1c1N.jpg)\nImage Source\n\n1.\tThe most important is to prepare a rectangular frame; it\u2019s a foundation for future hotel. To do this, connect four wooden planks. The optimal deep of a frame is approximately 10 cm. \n2.\tThen you should choose the hollow rods. It\u2019s desirable to find materials of different diameter from 2 and even to 10 mm. It\u2019s important to keep track of the rods because the walls inside tubes must be smooth not to harm the insects. \n3.\tSticks are trimming for deep of frame. After that, you should just carefully fill by them all free space. \n4.\tAfter all of that, you should choose the place for your hotel for bees. The sunlight should light the constriction the most part of the day. Moreover, it must be the direct sunlight. You also should ensure that the hotel for bees won\u2019t become wet in the rainy days because if it is like that, all the bees will leave the hotel very soon. You should hang or place your hotel on a one meter height. What\u2019s more, that\u2019s a minimum. Don\u2019t forget to get rid of excess vegetation which can block the access to insects in their home. \n\n\nFor what kind of bees these hotels are attractive and why?\n===\n![](https://i.imgur.com/BAh0jtF.jpg)\nImage Source\n\nThe number of bees is reduced sharply in recent years. Pesticides destroy a huge number of these beneficial insects. Moreover, not just pesticides do this dirty work. \nThe hotels like that attract the bees on the areas. However, the most of the bees who aspire into these hotels are lonely bees, the bees who doesn\u2019t have their own family. They can\u2019t just come to a big unknown family and ask to take them into their hive. It\u2019s like in the cities or even towns: people can\u2019t come to unknown family or even to rivals for a very long time and ask to take them forever. They try to find an apartment or a room where everyone is like them: without a big \u00abfamily\u00bb and trying to make his own one. Bees are social insects, they can\u2019t live in the whole loneliness, so it\u2019s not a good way for them to fins an apartment. They will just die in the loneliness. They should have their hive, their family. In this way, many lonely bees are going to the hotels like that to make their own new family. \n\nWhat\u2019s the benefits of these bees\u2019 hotels?\n===\n![](https://i.imgur.com/vPn6u4n.jpg)\nImage Source\n\nBy building leaf cutter bees or bees\u2019 hotels, how they are called, you kill two birds with one stone. Firstly, it\u2019s a benefit for you and, secondly, you help our ecology a little bit. As it was told above, the number of bees is reduced sharply in recent years because many other creatures kill bees. Moreover, people often watered their fields with chemicals which are deadly not just for insects which people want to kill but for bees too. \nIt\u2019s a real ecological help because after any kind of catastrophe, for example, there are lonely bees who try to find a family. They are going to these hotels. It\u2019s a real help for insects if the hotel is built in the right way. \nAdding to that, it\u2019s a great benefit for you. Bees are very useful insects. Firstly, they make really great and healthy honey. Moreover, bees are useful not just because of their honey. Anyway, having a bees\u2019 hotel on your green area is a great benefit. \n\n###

Thank you for your attention!

\n###

@kental with you!

\n###

Let's learn beekeeping together!

\n###

Follow me If you want to learn more about beekeeping! 

\n\n----\nP.S. This article was wrote special for @englishtchrivy. Here all the answers to your questions", + "category": "bees", + "children": 18, + "created": "2016-09-11T07:39:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://i.imgur.com/CUc0vip.jpg", + "https://i.imgur.com/xmKCyIB.jpg", + "https://i.imgur.com/AyNg16s.jpg", + "https://i.imgur.com/fKH1c1N.jpg", + "https://i.imgur.com/BAh0jtF.jpg", + "https://i.imgur.com/vPn6u4n.jpg" + ], + "links": [ + "http://static.moydom.ru/st1/zghkzqnm/144390046856102c3493068.jpeg", + "http://i.imgur.com/KrXDZ79.jpg", + "http://static.moydom.ru/st1/1500/zghkzqnm/144390060856102cc0b6bcd.jpeg", + "http://varlamov.me/img/--/DSC09355.jpg", + "http://mir-pchelovoda.ru/www/www/mir-pchelovoda/images/11-193.jpg", + "http://img-fotki.yandex.ru/get/6602/11206178.166/0_b9e3d_e18b1d7_orig", + "https://steemit.com/@kental" + ], + "tags": [ + "bees", + "life", + "hive", + "beekeepering", + "steemsquad" + ], + "users": [ + "kental", + "englishtchrivy" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19318129504129, + "payout": 36.067, + "payout_at": "2016-09-18T07:39:48", + "pending_payout_value": "36.067 HBD", + "percent_hbd": 10000, + "permlink": "what-s-the-leaf-cutter-bees-hive-how-bees-live-there-bees", + "post_id": 1206186, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 106 + }, + "title": "What\u2019s The Leaf Cutter Bees Hive? How Bees Live There? BEES.", + "updated": "2016-09-11T07:42:57", + "url": "/bees/@kental/what-s-the-leaf-cutter-bees-hive-how-bees-live-there-bees" + }, + { + "active_votes": [ + { + "rshares": 28250112213147, + "voter": "berniesanders" + }, + { + "rshares": 680084487752, + "voter": "justin" + }, + { + "rshares": 5614387981829, + "voter": "kushed" + }, + { + "rshares": 1992590846131, + "voter": "silver" + }, + { + "rshares": 4616065709682, + "voter": "silversteem" + }, + { + "rshares": 5176267940548, + "voter": "nextgencrypto" + }, + { + "rshares": 210277864747, + "voter": "liondani" + }, + { + "rshares": 1853497814, + "voter": "boy" + }, + { + "rshares": 2249630625, + "voter": "bue-witness" + }, + { + "rshares": 421626256, + "voter": "bunny" + }, + { + "rshares": 3375242752678, + "voter": "complexring" + }, + { + "rshares": 31555956972, + "voter": "bue" + }, + { + "rshares": 474793116528, + "voter": "steemservices" + }, + { + "rshares": 993532565, + "voter": "mini" + }, + { + "rshares": 128046730, + "voter": "moon" + }, + { + "rshares": 1181473863506, + "voter": "steempower" + }, + { + "rshares": 25567367321, + "voter": "proctologic" }, { - "rshares": 51143991, - "voter": "sharon" + "rshares": 372773605, + "voter": "healthcare" }, { - "rshares": 52810577, - "voter": "johnblow" + "rshares": 550728076, + "voter": "daniel.pan" }, { - "rshares": 50731326, - "voter": "lillianjones" + "rshares": 29458661710, + "voter": "jchch" }, { - "rshares": 528063945675, - "voter": "laonie" + "rshares": 172642142, + "voter": "helen.tan" }, { - "rshares": 3602813000, - "voter": "laonie1" + "rshares": 47021241105, + "voter": "tshering-tamang" }, { - "rshares": 3602789727, - "voter": "laonie2" + "rshares": 14904407650, + "voter": "redredwine" }, { - "rshares": 3782873230, - "voter": "laonie3" + "rshares": 2159288891, + "voter": "murh" }, { - "rshares": 130513072490, - "voter": "somebody" + "rshares": 431346036072, + "voter": "cyber" }, { - "rshares": 5085224178, - "voter": "kental" + "rshares": 213760304385, + "voter": "java1959" }, { - "rshares": 24775737274, - "voter": "xtester" + "rshares": 26624294475, + "voter": "altoz" }, { - "rshares": 3782588882, - "voter": "laonie4" + "rshares": 318635597995, + "voter": "hedge-x" }, { - "rshares": 3782562020, - "voter": "laonie5" + "rshares": 31626836916, + "voter": "wongshiying" }, { - "rshares": 3782635861, - "voter": "laonie6" + "rshares": 42124549828, + "voter": "michaelx" }, { - "rshares": 3782531393, - "voter": "laonie7" + "rshares": 6081575123, + "voter": "mark-waser" }, { - "rshares": 3782521206, - "voter": "laonie8" + "rshares": 15029208446, + "voter": "jparty" }, { - "rshares": 3782515042, - "voter": "laonie9" + "rshares": 9143389295, + "voter": "primus" }, { - "rshares": 19988874819, - "voter": "xiaohui" + "rshares": 222529448, + "voter": "soupernerd" }, { - "rshares": 43818559886, - "voter": "krishtopa" + "rshares": 10825201303, + "voter": "stealthtrader" }, { - "rshares": 2678551213, - "voter": "gargon" + "rshares": 4477554723, + "voter": "manoami" }, { - "rshares": 51120963, - "voter": "msjennifer" + "rshares": 1337524672, + "voter": "anwar78" }, { - "rshares": 50828873, - "voter": "ciao" + "rshares": 416465943914, + "voter": "neoxian" }, { - "rshares": 50521096, - "voter": "steemo" + "rshares": 103438135661, + "voter": "knircky" }, { - "rshares": 50390768, - "voter": "steema" + "rshares": 4261891391, + "voter": "on0tole" }, { - "rshares": 50183394, - "voter": "confucius" + "rshares": 1275410915, + "voter": "marcgodard" }, { - "rshares": 51153233, - "voter": "jarvis" + "rshares": 3707781752, + "voter": "deviedev" }, { - "rshares": 299506282, - "voter": "microluck" + "rshares": 4458028175, + "voter": "r-niki09" }, { - "rshares": 50692212, - "voter": "fortuner" + "rshares": 12357364149, + "voter": "dudutaulois" }, { - "rshares": 61475837, - "voter": "natako" + "rshares": 3985004526, + "voter": "oululahti" }, { - "rshares": 59575622, - "voter": "gmskov" + "rshares": 1867849696, + "voter": "lostnuggett" }, { - "rshares": 50684643, - "voter": "johnbyrd" + "rshares": 2656090730, + "voter": "jedau" }, { - "rshares": 50682252, - "voter": "thomasaustin" + "rshares": 7061097921, + "voter": "michaeldodridge" }, { - "rshares": 50680459, - "voter": "thermor" + "rshares": 81930668, + "voter": "elliottgodard" }, { - "rshares": 50677748, - "voter": "ficholl" + "rshares": 1823009429, + "voter": "smailer" }, { - "rshares": 50673817, - "voter": "widell" + "rshares": 179979763, + "voter": "taz" }, { - "rshares": 50311250, - "voter": "revelbrooks" + "rshares": 101853977, + "voter": "steemster1" }, { - "rshares": 3780579832, - "voter": "laonie10" + "rshares": 1276786275, + "voter": "spinner" }, { - "rshares": 7944566435, - "voter": "nastik" + "rshares": 218471399, + "voter": "weenis" }, { - "rshares": 19782309838, - "voter": "someguy123" + "rshares": 51143991, + "voter": "sharon" }, { - "rshares": 50416427, - "voter": "curpose" + "rshares": 50731326, + "voter": "lillianjones" }, { - "rshares": 74144473, - "voter": "runridefly" + "rshares": 7063031673, + "voter": "kental" }, { - "rshares": 2690168900, - "voter": "einsteinpotsdam" + "rshares": 27618843620, + "voter": "xtester" }, { - "rshares": 3764610663, - "voter": "laonie11" + "rshares": 309652226, + "voter": "mama-steem" }, { - "rshares": 1765329976, - "voter": "jeremyfromwi" + "rshares": 851591663, + "voter": "havok777" }, { - "rshares": 50588612, - "voter": "troich" + "rshares": 253004564, + "voter": "boddhisattva" }, { - "rshares": 378662335, - "voter": "xanoxt" + "rshares": 25231956969, + "voter": "driv3n" }, { - "rshares": 57797737, - "voter": "carlyle" + "rshares": 51120963, + "voter": "msjennifer" }, { - "rshares": 50593879, - "voter": "crion" + "rshares": 635730262, + "voter": "theconnoisseur" }, { - "rshares": 50271139, - "voter": "hitherise" + "rshares": 50183394, + "voter": "confucius" }, { - "rshares": 50262756, - "voter": "wiss" + "rshares": 1706312850, + "voter": "unrealisback" }, { - "rshares": 55678770, - "voter": "benaccept" + "rshares": 51153233, + "voter": "jarvis" }, { - "rshares": 51033798, - "voter": "stroully" + "rshares": 35709979469, + "voter": "thecurator" }, { - "rshares": 6159255303, - "voter": "jwaser" + "rshares": 61475837, + "voter": "natako" }, { - "rshares": 50712038, - "voter": "thadm" + "rshares": 898433988, + "voter": "seraph" }, { - "rshares": 50710305, - "voter": "prof" + "rshares": 1628709191, + "voter": "madoff" }, { - "rshares": 52845998, - "voter": "kev7000" + "rshares": 50682252, + "voter": "thomasaustin" }, { - "rshares": 50356354, - "voter": "yorsens" + "rshares": 50680459, + "voter": "thermor" }, { - "rshares": 941666402, - "voter": "canalytic" + "rshares": 50673817, + "voter": "widell" }, { - "rshares": 50065875, - "voter": "bane" + "rshares": 88172172, + "voter": "elvyraloca" }, { - "rshares": 50059754, - "voter": "vive" + "rshares": 57309804, + "voter": "mrlogic" }, { - "rshares": 50054445, - "voter": "coad" + "rshares": 8884032574, + "voter": "nastik" }, { - "rshares": 1318663130, - "voter": "renzoarg" + "rshares": 43128493415, + "voter": "albensilverberg" }, { - "rshares": 50825587, - "voter": "sofa" + "rshares": 3987815940, + "voter": "craigwilliamz" }, { - "rshares": 50258926, - "voter": "doze49" + "rshares": 56671622, + "voter": "ajavajive" }, { - "rshares": 53190835, - "voter": "einbeck" + "rshares": 74198022, + "voter": "runridefly" }, { - "rshares": 50976864, - "voter": "runthis" + "rshares": 2307278223, + "voter": "einsteinpotsdam" }, { - "rshares": 220660172, - "voter": "mgibson" - } - ], - "author": "kental", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.52, - "beneficiaries": [], - "blacklists": [], - "body": "\n

Hi steemit! I want to tell you about production of #frames for the hive with your hands! i'll tell you the correct dimensions to create it.

\n

http://i.imgur.com/HZ0gAU5.jpg

\n

By itself, the manufacturing process is simple. To do at home frame for beehives, you will need a bit of dry strips (it is better to use lime, pine and other hardwoods), thin wire and Shoe nails. From tools, use the common pliers, an awl and a hammer. tool for making remolds that would have an idea on how to make frames for the bees, you need to understand what forms are used and main dimensions. It is the shape and size of the frame affect the activity of the bee colony, and the space between them, the width of streets and the installation of the framework contribute to the productivity of bees, their intensity.

\n

http://i.imgur.com/62Bl7dD.png

\n

The size of frames for the #hive

\n

The size of frames for the hive to determine the productivity of the entire apiary, serviceability bees, therefore, specially developed standards, which should adhere to when making the design. The idea of unification of fundamental sizes of hives, caused by the invention of the hive. The basics of beekeeping to date give a clear idea about the courses of the optimal size.

\n

http://i.imgur.com/1gQYNk1.jpg
\n

\n

The famous Russian theorist and practitioner P. I. Prokopovich has proven the success of using home-made framework, their effectiveness and necessity. Established almost 100 years ago the standards for the framework and today, continue to be the benchmark.

\n

In beekeeping today are widely used frame Dagana-Blatt, the size of which is 435x300mm. No less popular is the frame Langstroth-Ruta, which is slightly smaller in width 435 x 230 mm. Store frame has dimensions of 435 x 145 mm. At present enjoys great popularity, the invention of domestic beekeepers, the so-called Ukrainian frame, dimensions 300 x 435 mm .

\n

Used today in the bee fisheries framework for hives differ not only in their size, but also different ways of fastening, fixing honeycombs. The manufacture of frames for beehives require the #beekeeper patience and diligence. In order to expedite Assembly and facilitate the work of the beekeeper, you can use the template to build the framework.

\n

Thank you! 

\n

@kental with you!

\n

Follow me!

\n

My last post: Make a hive for bees with your hands! Beekeeper!

\n", - "category": "bees", - "children": 5, - "created": "2016-08-18T05:05:36", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i.imgur.com/HZ0gAU5.jpg", - "http://i.imgur.com/62Bl7dD.png", - "http://i.imgur.com/1gQYNk1.jpg" - ], - "links": [ - "https://steemit.com/@kental", - "https://steemit.com/bees/@kental/hi-steem-make-a-hive-for-bees-with-their-hands-beekeeper-bees-on-steemit" - ], - "tags": [ - "bees", - "frames", - "hive", - "beekeeper" - ], - "users": [ - "kental" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 26280589157765, - "payout": 104.018, - "payout_at": "2016-08-25T05:05:36", - "pending_payout_value": "104.018 HBD", - "percent_hbd": 10000, - "permlink": "hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees", - "post_id": 865749, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 123 - }, - "title": "Hi Steem! Production of frames for the hive with your hands! The correct dimensions! Beekeeper! Bees.", - "updated": "2016-08-18T08:03:12", - "url": "/bees/@kental/hi-steem-production-of-frames-for-the-hive-with-your-hands-the-correct-dimensions-beekeeper-bees" - }, - { - "active_votes": [ - { - "rshares": 3274637057439, - "voter": "pharesim" + "rshares": 4829517436, + "voter": "brandonv111" }, { - "rshares": 4442691153152, - "voter": "kushed" + "rshares": 725968001, + "voter": "xanoxt" }, { - "rshares": 1119181397810, - "voter": "rossco99" + "rshares": 56792345, + "voter": "benaccept" }, { - "rshares": 3105215287, - "voter": "boy" + "rshares": 3824018741, + "voter": "digital-wisdom" }, { - "rshares": 3770155915, - "voter": "bue-witness" + "rshares": 27621038832, + "voter": "zahnspange" }, { - "rshares": 684160007, - "voter": "bunny" + "rshares": 6039190252, + "voter": "jwaser" }, { - "rshares": 6574769788237, - "voter": "complexring" + "rshares": 57591825, + "voter": "justme" }, { - "rshares": 1665460244638, - "voter": "steemychicken1" + "rshares": 50356354, + "voter": "yorsens" }, { - "rshares": 55055762489, - "voter": "bue" + "rshares": 3776788071, + "voter": "canalytic" }, { - "rshares": 1663817747, - "voter": "mini" + "rshares": 1411738548, + "voter": "thebeachedwhale" }, { - "rshares": 213811733, - "voter": "moon" + "rshares": 50065875, + "voter": "bane" }, { - "rshares": 625122697, - "voter": "healthcare" + "rshares": 50059754, + "voter": "vive" }, { - "rshares": 973372822, - "voter": "daniel.pan" + "rshares": 1123548482, + "voter": "renzoarg" }, { - "rshares": 288384296, - "voter": "helen.tan" + "rshares": 53986558, + "voter": "avpd" }, { - "rshares": 1333506750, - "voter": "elishagh1" + "rshares": 82123379, + "voter": "ezrathecat" }, { - "rshares": 10354304849, - "voter": "richman" + "rshares": 51328265, + "voter": "doze49" }, { - "rshares": 1027472226, - "voter": "coar" + "rshares": 53657546, + "voter": "donguillermo" }, { - "rshares": 353363017, - "voter": "murh" + "rshares": 53278513, + "voter": "napwest" }, { - "rshares": 20202637877, - "voter": "samether" + "rshares": 52028050, + "voter": "breakerzer0x" }, { - "rshares": 47240199623, - "voter": "ratel" + "rshares": 53553244, + "voter": "ecoosha" + } + ], + "author": "kental", + "author_payout_value": "0.000 HBD", + "author_reputation": 63.52, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Hi guys. Today i want to tell you about some secrets of the #beekeeper. Look it!

\n

http://econet.ru/media/155/kindeditor/image/201303/20130311191615.jpg

\n
    \n
  • Quality of the comb is greatly enhanced when a frame with honeycombs put between the honeycombs with open brood. Honeycomb build good quality cuttings with young Queens. After the bees of the nucleus will pull the cell across the square honeycomb, these palustrine frame transmit strong families for completion and mastery, and cuttings put in a new one with the honeycombs.
  • \n
\n

http://media.dietolog.org/img/food/1/13807-0.jpg

\n
    \n
  • The liquid part of the honey bees usually suck, and the crystals thrown on the floor or carried out of the hive. To get the bees to use crystallized honey, it should spray into the cells with it warm water, repeating this until the full use of the crystals.
  • \n
\n

http://receptymeda.ru/wp-content/uploads/2014/11/45545556.jpg

\n
    \n
  • Eating a mixture of pollen of different species of plants, bees are grown more brood than the feeding on the pollen of the same species. This may explain the eagerness of the bees to have a hive with a mixture of pollen of different plants.
  • \n
\n


\n
    \n
  • Pleuromutilin should be included only at the time of the spring season, when the bees in large numbers bring pylorus plants. Experiments showed that using pollen traps is only 40 bring pollen. When pollen prinos her #bees increases. With the onset of a significant bribe pleuromutilin should be switched off. Four-year experiments of the Institute of apiculture has shown that family can get 2-3 kg of dried pollen without prejudice to brood growth and the allocation of wax.
  • \n
\n


\n
    \n
  • For delivery of water to the hive bees spend a lot of energy and time. To bring a liter of water, they need to make at least 17,000 flights. Therefore in the spring it is necessary to supply the bees clean warm water. It will protect from destruction and premature wear many bees. Water (0.5 l) can be given in the cells of one of the outer combs to pour a thin stream to penetrate into cells. Early spring in the water you can add 0,8 salt. Bees willingly take it and use it for honey liquefaction and other needs.
  • \n
\n

http://izhevsk.ru/forums/icons/forum_pictures/006034/6034525.jpg

\n
    \n
  • Print #honey comb is quite labor \u2014 intensive operation, time consuming, and together with signet removes a portion of the honey, reduced the volume disturbed the surface of the comb. Use the dryer to dry your hair or air heater having a spiral and a fan, these disadvantages are eliminated. A jet of warm air directed onto the surface of a honeycomb. The wax caps are melted and fold. Because the frame is filled with honey, which has a large heat capacity, the walls of the cells do not have time to warm up and are not damaged. Treating with dryer both sides, honeycomb is placed in a honey extractor. After extraction of honey frames can be put in the form of pale malt or return to the hive; preferably at the same place as the configuration of the honeycomb is preserved. 
  • \n
\n

http://www.membrana.ru/storage/img/3/3p1.jpg

\n
    \n
  • Bees are not only capable of high stability to adjust the temperature of the nest, but also to aerate it. To do this, they flap their wings. The frequency of strokes and the number of individuals participating, increases with increasing concentration of carbon dioxide. In the same way the bees react to the overheating of the nest. In hot weather, when delivered in the beehive of a large amount of nectar during the hours bees ventilators provide a more than hundred-fold air exchange. To reduce energy costs to the bees on the job, you should open ledovye vents and ventilation Windows of the hives.
  • \n
\n

Thank you for your attention!

\n

@kental was with you!

\n

Follow me!!!

\n

My last article about Landing a swarm to the hive

\n", + "category": "bees", + "children": 9, + "created": "2016-08-19T03:59:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://econet.ru/media/155/kindeditor/image/201303/20130311191615.jpg", + "http://media.dietolog.org/img/food/1/13807-0.jpg", + "http://receptymeda.ru/wp-content/uploads/2014/11/45545556.jpg", + "http://izhevsk.ru/forums/icons/forum_pictures/006034/6034525.jpg", + "http://www.membrana.ru/storage/img/3/3p1.jpg" + ], + "links": [ + "https://steemit.com/@kental", + "https://steemit.com/bees/@kental/landing-a-swarm-to-the-hive-beekeeper-new-hive-with-the-bees-what-is-a-swarm-of-bees" + ], + "tags": [ + "bees", + "beekeeper", + "honey" + ], + "users": [ + "kental" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 53616133104622, + "payout": 391.278, + "payout_at": "2016-08-26T03:59:36", + "pending_payout_value": "391.278 HBD", + "percent_hbd": 10000, + "permlink": "secrets-of-the-beekeeper-subtlety-beekeeping-bees", + "post_id": 883064, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 102 + }, + "title": "Secrets of the beekeeper. Subtlety. Beekeeping. Bees.", + "updated": "2016-08-19T03:59:36", + "url": "/bees/@kental/secrets-of-the-beekeeper-subtlety-beekeeping-bees" + }, + { + "active_votes": [ + { + "rshares": 33359057301, + "voter": "mrwang" }, { - "rshares": 95955198800, - "voter": "will-zewe" + "rshares": 778893790, + "voter": "juvyjabian" }, { - "rshares": 1975899689, - "voter": "stephen-somers" + "rshares": 8449887911, + "voter": "winstonwolfe" }, { - "rshares": 3294688054, - "voter": "stranger27" + "rshares": 1012899736, + "voter": "sykochica" }, { - "rshares": 242525826, - "voter": "alexandr33" + "rshares": 3713167958, + "voter": "reneenouveau" }, { - "rshares": 615126686425, - "voter": "juneaugoldbuyer" + "rshares": 123992385, + "voter": "giftedgaia" }, { - "rshares": 549867269082, - "voter": "neoxian" + "rshares": 82391922, + "voter": "quantumanomaly" }, { - "rshares": 224162674, - "voter": "ardina" + "rshares": 37070812, + "voter": "garri74" + } + ], + "author": "quantumanomaly", + "author_payout_value": "0.024 HBD", + "author_reputation": 55.08, + "beneficiaries": [], + "blacklists": [], + "body": "Every song tells a story to me. Fascinating visuals broadcast through my mind like an IMAX presentation when I close my eyes and put my headphones on. I'd like to give you a glimpse into what I see, so feel free to listen along as I present the stories I've found while listening to some of my favorite tracks. \n\nToday's track: *Strife II - How Do I (Maduk Remix)*\n\n# 002 - Welcome to the Steemit Hivemind\n\nhttps://www.youtube.com/watch?v=F1s0bW3GIlY\n\nA kaleidoscope of color washed over my mind as I was integrated into the Steemit hivemind. As reality stabilized around me, I found myself welcomed by a dozen friendly faces, all eager to greet me, like I was a long-lost friend returning after being separated for decades. The spatial reality construct before me was clean and futuristic, with just a hint of the stylistic embellishments that I recognized from my childhood, before the hives appeared. I was lost in the amount of dancing, cheering, and smiling I saw in the crowd. Everywhere I saw people sculpting, writing, and showing their real faces. No one was using a holo-avatar saved from their best smile of the week. Everyone here looked very natural, which in itself was unusual.\n\nI was no stranger to being in a hive mind, a collective group of thousands or millions of minds all plugged in to the same digital reality. After the first couple of times it becomes just like any other adventure, and one is free to traverse between them given enough time and social status. Generally, those who couldn't pay could donate a portion of their own brain's processing power to keep the simulation going, and many did. In the last few years though, questions began to swirl through the dominant hives as to just how much brainpower they were taking from those in the simulation, and many saw diminishing returns on their investments, which started to shake the foundations of the larger hives. People were getting tired of being absorbed in a reality that promised the world but delivered nothing. The masses grew tired and restless, searching for validation of their own personal realities amidst the crowds of fake personalities and the bland landscapes delivered by the hive's steady distancing from stable and creative realities to more advertisment-heavy cityscapes made of copy-and-pasted code stripped from the stretches of the net, code we'd all seen before and were unimpressed by.\n\nI wasn't the first of my group to leave, but I was already growing tired of my current hive, casually spending more time away from it than plugged in, when a good friend of mine, a trusted photographer and uniquely creative individual started ranting and raving about a hive that would pay you not just for your processing power, but just for showing your personality. They'd pay you for watching others and being the first to identify a particularly nice holo-field, artistic ability, or just a caring stranger willing to help those in need. Not only that, but they'd pay the creator of said art, inspiration, or story, all for just being a part of it, and helping it grow into something beautiful.\n\nNaturally I questioned him, aware of promising schemes where guarantees of plugging in would net you great rewards, just to have your mind slagged and your bank account ruined. I didn't particularly like the feeling of having to pay off the debt of a neuro-wipe at the hospital, and it had been a while since I performed a backup anyway, being barely a middle-class citizen myself. He swore up and down that he just made his first major deposit, that it wasn't fake, and continued with the semantics of the cube-chain and decentralized currencies. The conversation blurred somewhat over the advertisements of a nearby coffee shop coming in over my sub-vocal receiver, but I got the gist of it.\n\nThat evening I took off from the office early, headed home, and sat down in my den. I punched in the coordinates of the Steemit hive mind, and waited as the scanners in my room synchronized to my current frequency. I knew I'd never be the same as soon as a kaleidoscope of color washed over my mind, and I finally felt at home.", + "category": "writing", + "children": 4, + "created": "2016-08-09T01:30:27", + "curator_payout_value": "0.004 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://www.youtube.com/watch?v=F1s0bW3GIlY" + ], + "tags": [ + "writing", + "fiction", + "steemit", + "sci-fi", + "music" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 47557361815, + "payout": 0.028, + "payout_at": "2016-09-08T14:11:33", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "storytrax-the-adventures-i-see-in-music-002-steemit-hivemind", + "post_id": 694765, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 8 + }, + "title": "StoryTrax - The Adventures I See in Music - 002 Steemit Hivemind", + "updated": "2016-08-09T13:19:18", + "url": "/writing/@quantumanomaly/storytrax-the-adventures-i-see-in-music-002-steemit-hivemind" + }, + { + "active_votes": [ + { + "rshares": 1910164505286, + "voter": "smooth" }, { - "rshares": 1681112968, - "voter": "leksimus" + "rshares": 9935798960942, + "voter": "berniesanders" }, { - "rshares": 626633578, - "voter": "steem1653" + "rshares": 86782262622, + "voter": "nextgenwitness" }, { - "rshares": 4822028822, - "voter": "gikitiki" + "rshares": 274052188238, + "voter": "justin" }, { - "rshares": 242164232, - "voter": "danielkt" + "rshares": 2043715473744, + "voter": "nextgencrypto" }, { - "rshares": 17483411053, - "voter": "senseiteekay" + "rshares": 1844234189217, + "voter": "xeroc" }, { - "rshares": 11061856006, - "voter": "allmonitors" + "rshares": 179005788351, + "voter": "steemservices" }, { - "rshares": 1867028105, - "voter": "splatterhaus" + "rshares": 344040905136, + "voter": "smooth.witness" }, { - "rshares": 425765873147, - "voter": "knozaki2015" + "rshares": 7851727606, + "voter": "woo7739" }, { - "rshares": 13529779713, - "voter": "nippel66" + "rshares": 292043478480, + "voter": "chitty" }, { - "rshares": 24124263142, - "voter": "phenom" + "rshares": 11546533157, + "voter": "dave-hughes" }, { - "rshares": 4114515484, - "voter": "fubar-bdhr" + "rshares": 15889697989, + "voter": "ervin-lemark" }, { - "rshares": 2896199982, - "voter": "tarindel" + "rshares": 25720518389, + "voter": "instructor2121" }, { - "rshares": 551728358, - "voter": "qonq99" + "rshares": 147837963626, + "voter": "steve-walschot" }, { - "rshares": 179902255, - "voter": "sergey44" + "rshares": 1432715390, + "voter": "murh" }, { - "rshares": 35703838574, - "voter": "smailer" + "rshares": 204698064444, + "voter": "dragonslayer109" }, { - "rshares": 156369688, - "voter": "steemster1" + "rshares": 33759557543, + "voter": "ranko-k" }, { - "rshares": 115958450, - "voter": "bullionstackers" + "rshares": 516429668083, + "voter": "cyber" }, { - "rshares": 2941019391, - "voter": "dmilash" + "rshares": 36553243173, + "voter": "drinkzya" }, { - "rshares": 2748972774, - "voter": "jed78" + "rshares": 51771021334, + "voter": "thecryptodrive" }, { - "rshares": 63257042, - "voter": "sharon" + "rshares": 31654554462, + "voter": "wongshiying" }, { - "rshares": 64457212, - "voter": "lillianjones" + "rshares": 47817487763, + "voter": "kus-knee" }, { - "rshares": 29440345666, - "voter": "kental" + "rshares": 37081301748, + "voter": "michaelx" }, { - "rshares": 65287683, - "voter": "kurzer42" + "rshares": 86347197607, + "voter": "kimziv" }, { - "rshares": 36994693442, - "voter": "sirwinchester" + "rshares": 271177945479, + "voter": "lukestokes" }, { - "rshares": 80354386889, - "voter": "krishtopa" + "rshares": 36008152558, + "voter": "cryptoiskey" }, { - "rshares": 64952156, - "voter": "msjennifer" + "rshares": 575108527, + "voter": "mrhankeh" }, { - "rshares": 59738641, - "voter": "ciao" + "rshares": 40343935969, + "voter": "clement" }, { - "rshares": 59146649, - "voter": "steemo" + "rshares": 57299248894, + "voter": "isteemit" }, { - "rshares": 58994070, - "voter": "steema" + "rshares": 4159771964, + "voter": "azaan" }, { - "rshares": 64826311, - "voter": "sijoittaja" + "rshares": 16163894753, + "voter": "skapaneas" }, { - "rshares": 76113746, - "voter": "confucius" + "rshares": 48132452719, + "voter": "bacchist" }, { - "rshares": 11785429805, - "voter": "borran" + "rshares": 82777950711, + "voter": "venuspcs" }, { - "rshares": 59901741, - "voter": "jarvis" + "rshares": 7798514209, + "voter": "cannav" }, { - "rshares": 57933957, - "voter": "fortuner" + "rshares": 55838449361, + "voter": "sonzweil" }, { - "rshares": 8925161251, - "voter": "kyriacos" + "rshares": 2737885092, + "voter": "soupernerd" }, { - "rshares": 305184158, - "voter": "natako" + "rshares": 413574500080, + "voter": "juneaugoldbuyer" }, { - "rshares": 6564390971, - "voter": "solarguy" + "rshares": 36264946146, + "voter": "redpalestino" }, { - "rshares": 728479455, - "voter": "alexma3x" + "rshares": 43164944313, + "voter": "mrwang" }, { - "rshares": 56593235, - "voter": "johnbyrd" + "rshares": 167157147201, + "voter": "repholder" }, { - "rshares": 56575537, - "voter": "thomasaustin" + "rshares": 38539977192, + "voter": "diana.catherine" }, { - "rshares": 56573535, - "voter": "thermor" + "rshares": 11898521103, + "voter": "jaycobbell" }, { - "rshares": 56585538, - "voter": "ficholl" + "rshares": 38660593043, + "voter": "condra" }, { - "rshares": 56566121, - "voter": "widell" + "rshares": 47235307283, + "voter": "creationlayer" }, { - "rshares": 3084024832, - "voter": "movievertigo" + "rshares": 70518909823, + "voter": "inertia" }, { - "rshares": 56161396, - "voter": "revelbrooks" + "rshares": 103669226, + "voter": "wildchild" }, { - "rshares": 13830950923, - "voter": "nastik" + "rshares": 4423044779, + "voter": "konti" }, { - "rshares": 59376719932, - "voter": "mandibil" + "rshares": 1756997134, + "voter": "fiona777" }, { - "rshares": 363894416, - "voter": "ukblogger" + "rshares": 1747343123, + "voter": "fubar-bdhr" }, { - "rshares": 54999739, - "voter": "curpose" + "rshares": 4502833508, + "voter": "cryptohustlin" }, { - "rshares": 1359848672, - "voter": "englishtchrivy" + "rshares": 7817070581, + "voter": "fishborne" }, { - "rshares": 7365213918, - "voter": "einsteinpotsdam" + "rshares": 11382407925, + "voter": "carlidos" }, { - "rshares": 5117638839, - "voter": "richardcrill" + "rshares": 12852656019, + "voter": "sisterholics" }, { - "rshares": 1649621874, - "voter": "eight-rad" + "rshares": 2543959068, + "voter": "royalmacro" }, { - "rshares": 53961187, - "voter": "troich" + "rshares": 5258618075, + "voter": "logic" }, { - "rshares": 5672182069, - "voter": "nadin3" + "rshares": 2049249490, + "voter": "tygergamer" }, { - "rshares": 53966805, - "voter": "crion" + "rshares": 81491004, + "voter": "salamanca1987ar" }, { - "rshares": 53622549, - "voter": "hitherise" + "rshares": 5689511161, + "voter": "sulev" }, { - "rshares": 53613607, - "voter": "wiss" + "rshares": 2688248291, + "voter": "weenis" }, { - "rshares": 53451619, - "voter": "benaccept" + "rshares": 3966793008, + "voter": "jed78" }, { - "rshares": 53252658, - "voter": "stroully" + "rshares": 121800475170, + "voter": "steemdrive" }, { - "rshares": 52916909, - "voter": "thadm" + "rshares": 11460812765, + "voter": "bergy" }, { - "rshares": 52915101, - "voter": "prof" + "rshares": 2274953901, + "voter": "sykochica" }, { - "rshares": 52560790, - "voter": "yorsens" + "rshares": 878296691740, + "voter": "laonie" }, { - "rshares": 52242652, - "voter": "bane" + "rshares": 27019865711, + "voter": "laonie1" }, { - "rshares": 53324520, - "voter": "vive" + "rshares": 27044055045, + "voter": "laonie2" }, { - "rshares": 52230725, - "voter": "coad" + "rshares": 27053992147, + "voter": "laonie3" }, { - "rshares": 53003720, - "voter": "sofa" + "rshares": 7636420956, + "voter": "myfirst" }, { - "rshares": 54280743, - "voter": "unlonely-soul" + "rshares": 102612014061, + "voter": "somebody" }, { - "rshares": 513275541, - "voter": "jessicanicklos" + "rshares": 3840485715, + "voter": "flysaga" }, { - "rshares": 51994517, - "voter": "ailo" + "rshares": 16343171349, + "voter": "timelapse" }, { - "rshares": 51470533, - "voter": "eavy" + "rshares": 21261759852, + "voter": "midnightoil" }, { - "rshares": 51484593, - "voter": "roto" + "rshares": 67630544, + "voter": "guineapig" }, { - "rshares": 98795632, - "voter": "mlialen" + "rshares": 2429198461, + "voter": "avtzis.petros" }, { - "rshares": 1184135726, - "voter": "anns" + "rshares": 2713723526, + "voter": "cjclaro" }, { - "rshares": 50938725, - "voter": "haved" + "rshares": 27049437565, + "voter": "laonie4" }, { - "rshares": 50372583, - "voter": "carre" + "rshares": 27048105097, + "voter": "laonie5" }, { - "rshares": 77652082, - "voter": "igtes" + "rshares": 27045327386, + "voter": "laonie6" }, { - "rshares": 157720038, - "voter": "buffett" + "rshares": 27042516508, + "voter": "laonie7" }, { - "rshares": 159474270, - "voter": "linka" - } - ], - "author": "kental", - "author_payout_value": "0.000 HBD", - "author_reputation": 63.52, - "beneficiaries": [], - "blacklists": [], - "body": "![](https://i.imgur.com/CUc0vip.jpg)\nImage Source\n\nThe leaf cutter bees hive is something like a wooden hotel for bees. \nHuman is not only the one creatures who need a habitation. There\u2019re well-furnished hotels for pets everywhere. They started to appear in a great amount the last few years. People reasoned that bees aren\u2019t worse. Moreover, they\u2019re very useful and make honey despite of the fact that they\u2019re not the members of family like pats in the most cases. In this way, people started to build hotels for bees.\n\nHow leaf cutter bees hive looks like?\n===\n![](https://i.imgur.com/xmKCyIB.jpg)\nImage Source\n\n![](https://i.imgur.com/AyNg16s.jpg)\nImage Source\n\nIt looks very differently. Some of them are one tier and multistory; some of them are a like a real houses with many tiers and multistory too. Every \u00abapartment\u00bb is differ from another one a lot. Some of holes are small, some of them are big; they have different sizes, structure and form. You can see the pictures of some leaf cutter bees hives calls \u00abwooden bees\u2019 hotels\u00bb below.\nOf course, the bees\u2019 hotel can\u2019t even compare with a real hotel for people. It\u2019s not that important for bees if the conditions are comfortable or not. The most important in this \u00abbuilding\u00bb for bees are holes where they can put off the larvae. \nFor \u00abhotel\u00bb like that is very good, more precisely, perfect to have complete \u00abnumbers\u00bb. For bees that\u2019s not important from what material they are done. The most important when you choose the material is to choose something that won\u2019t be harmful for bees. The most common materials are hollow bamboo or wooden sticks. \n\nHow to build the hotel for bees?\n===\n![](https://i.imgur.com/fKH1c1N.jpg)\nImage Source\n\n1.\tThe most important is to prepare a rectangular frame; it\u2019s a foundation for future hotel. To do this, connect four wooden planks. The optimal deep of a frame is approximately 10 cm. \n2.\tThen you should choose the hollow rods. It\u2019s desirable to find materials of different diameter from 2 and even to 10 mm. It\u2019s important to keep track of the rods because the walls inside tubes must be smooth not to harm the insects. \n3.\tSticks are trimming for deep of frame. After that, you should just carefully fill by them all free space. \n4.\tAfter all of that, you should choose the place for your hotel for bees. The sunlight should light the constriction the most part of the day. Moreover, it must be the direct sunlight. You also should ensure that the hotel for bees won\u2019t become wet in the rainy days because if it is like that, all the bees will leave the hotel very soon. You should hang or place your hotel on a one meter height. What\u2019s more, that\u2019s a minimum. Don\u2019t forget to get rid of excess vegetation which can block the access to insects in their home. \n\n\nFor what kind of bees these hotels are attractive and why?\n===\n![](https://i.imgur.com/BAh0jtF.jpg)\nImage Source\n\nThe number of bees is reduced sharply in recent years. Pesticides destroy a huge number of these beneficial insects. Moreover, not just pesticides do this dirty work. \nThe hotels like that attract the bees on the areas. However, the most of the bees who aspire into these hotels are lonely bees, the bees who doesn\u2019t have their own family. They can\u2019t just come to a big unknown family and ask to take them into their hive. It\u2019s like in the cities or even towns: people can\u2019t come to unknown family or even to rivals for a very long time and ask to take them forever. They try to find an apartment or a room where everyone is like them: without a big \u00abfamily\u00bb and trying to make his own one. Bees are social insects, they can\u2019t live in the whole loneliness, so it\u2019s not a good way for them to fins an apartment. They will just die in the loneliness. They should have their hive, their family. In this way, many lonely bees are going to the hotels like that to make their own new family. \n\nWhat\u2019s the benefits of these bees\u2019 hotels?\n===\n![](https://i.imgur.com/vPn6u4n.jpg)\nImage Source\n\nBy building leaf cutter bees or bees\u2019 hotels, how they are called, you kill two birds with one stone. Firstly, it\u2019s a benefit for you and, secondly, you help our ecology a little bit. As it was told above, the number of bees is reduced sharply in recent years because many other creatures kill bees. Moreover, people often watered their fields with chemicals which are deadly not just for insects which people want to kill but for bees too. \nIt\u2019s a real ecological help because after any kind of catastrophe, for example, there are lonely bees who try to find a family. They are going to these hotels. It\u2019s a real help for insects if the hotel is built in the right way. \nAdding to that, it\u2019s a great benefit for you. Bees are very useful insects. Firstly, they make really great and healthy honey. Moreover, bees are useful not just because of their honey. Anyway, having a bees\u2019 hotel on your green area is a great benefit. \n\n###

Thank you for your attention!

\n###

@kental with you!

\n###

Let's learn beekeeping together!

\n###

Follow me If you want to learn more about beekeeping! 

\n\n----\nP.S. This article was wrote special for @englishtchrivy. Here all the answers to your questions", - "category": "bees", - "children": 18, - "created": "2016-09-11T07:39:48", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://i.imgur.com/CUc0vip.jpg", - "https://i.imgur.com/xmKCyIB.jpg", - "https://i.imgur.com/AyNg16s.jpg", - "https://i.imgur.com/fKH1c1N.jpg", - "https://i.imgur.com/BAh0jtF.jpg", - "https://i.imgur.com/vPn6u4n.jpg" - ], - "links": [ - "http://static.moydom.ru/st1/zghkzqnm/144390046856102c3493068.jpeg", - "http://i.imgur.com/KrXDZ79.jpg", - "http://static.moydom.ru/st1/1500/zghkzqnm/144390060856102cc0b6bcd.jpeg", - "http://varlamov.me/img/--/DSC09355.jpg", - "http://mir-pchelovoda.ru/www/www/mir-pchelovoda/images/11-193.jpg", - "http://img-fotki.yandex.ru/get/6602/11206178.166/0_b9e3d_e18b1d7_orig", - "https://steemit.com/@kental" - ], - "tags": [ - "bees", - "life", - "hive", - "beekeepering", - "steemsquad" - ], - "users": [ - "kental", - "englishtchrivy" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19318129504129, - "payout": 36.067, - "payout_at": "2016-09-18T07:39:48", - "pending_payout_value": "36.067 HBD", - "percent_hbd": 10000, - "permlink": "what-s-the-leaf-cutter-bees-hive-how-bees-live-there-bees", - "post_id": 1206186, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 106 - }, - "title": "What\u2019s The Leaf Cutter Bees Hive? How Bees Live There? BEES.", - "updated": "2016-09-11T07:42:57", - "url": "/bees/@kental/what-s-the-leaf-cutter-bees-hive-how-bees-live-there-bees" - }, - { - "active_votes": [ - { - "rshares": 58722032, - "voter": "tsbloyer" + "rshares": 27039520380, + "voter": "laonie8" }, { - "rshares": 50129179, - "voter": "julianoneill" - } - ], - "author": "tsbloyer", - "author_payout_value": "0.000 HBD", - "author_reputation": 43.02, - "beneficiaries": [], - "blacklists": [], - "body": "\n

Salt Lake Freedom Hive

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/14021447_1562481587394536_2837768993548173540_n.png?w=706&h=245

\n


\n

 I'd like to share a recent project that I'm working on with the Steemit community. I think the Voluntaryist/Anarchist in the scene will find it interesting and useful. 

\n


\n

Find this original article on my site and be sure to subscribe to my blog if you're in the local area of Salt Lake City, Utah: Salt Lake Freedom Hive.

\n


\n

The Salt Lake Freedom Hive is a local community support network built to provide education and support for engaging in the real world solutions of Voluntaryism, Agorism, Personal and Community Gardening, Permaculture, Home Schooling/Unschooling, Peaceful Parenting and respecting the Non-Aggression Principle.

\n


\n

I've perceived a need for an action oriented community in the local area of Salt Lake City, Utah. One in which people can come to find solutions that can be incorporated into their lives and they can then participate in the learning, integrating, and teaching processes that we all have to offer depending at what stage we are at in moving toward more personal freedom in our lives and the lives of our friends and family.

\n


\n

The solutions to the the problems we all face in this world are not always easy to recognize, but they are out there. Most of us are heavily manipulated since birth, and the indoctrination of Statism, authoritarian models, Social Darwinism, Moral Relativism and a society which is continuously traumatized through fear based propaganda. These factors are all obfuscating the real issues. Unfortunately, those who seek to plunder human power, productivity, and the amazing creative force that each of us holds are working around the clock on the systems set up to enslave all of us and all future generations.

\n


\n

\"There is no proper role for tyranny in the lives of people. As soon as you yield to the forces of compulsion in the name of life, you have lost your life, for it belongs to those who control you. Life is liberty. Without liberty, your life belongs to another. Liberty is to be defended at all costs and at all times.\"

\n

~ Jeremy Locke - The End Of All Evil

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/the-end-of-all-evil-2.jpg?w=551&h=270

\n


\n

Those who have foregone ignorance of the negative conditions that we face, in an effort to ultimately better themselves and rise in consciousness, are empowered to make a decision to act on the knowledge they have gained. This action on knowledge gained is true wisdom. Action based on what one knows is true. To know and not to act is really not to know and not to care.

\n


\n

We can no longer ignore the enslaving forces within our systems of society, as well as the enslaving forces within each individual which cause them to bring about these conditions. The conditions which absolutely oppose liberty, freedom, and truth.

\n


\n

The Salt Lake Freedom Hive is a grassroots community built to spread and integrate the message of Freedom. Launched to network with individuals that are looking for a way to actively participate in building a community of like minded people who are establishing the foundations of freedom for themselves and working on spreading the message to others.

\n


\n

The information provided here will assist in raising consciousness by bringing awareness to the concepts which support a Free Society. One based in respecting the non-aggression principle and voluntary interactions between people. These concepts are directly opposed to the current condition, Statism.

\n


\n

In order to bring about the conditions of a free society, we have to break down the old paradigm of Statism (violence and slavery), and embrace a world of real freedom and prosperity. This can be difficult for someone who does not even understand that the current condition of Statism is violence and slavery. Healing this worldview is something that ultimately has to start from the individual. The spark of true care has to be born within that individual in order for them to start the process of breaking down fear, and moving into love.

\n


\n

Many people feel overwhelmed when they begin to lift the vale that has been pulled over their eyes. This blindness is kept in place not only by our own fear and ignorance, but firmly fitted and tied initially through an onslaught of indoctrination, lies, coercion, propaganda, and manipulation.

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/blindfold-critique-joshua-david-lynch.jpg?w=381&h=234

\n


\n


\n

\u201cThere are two ways to be fooled. One is to believe what isn't true; the other is to refuse to believe what is true.\u201d

\n

~ S\u00f8ren Kierkegaard

\n


\n

There are ways to operate in the world and organize communities that work to bring about conditions of freedom. Many things can be done personally, individually, without having to even work within a group or with other people whatsoever. However, working with others on the common goal of a free society is an integral part of establishing the new systems and building the foundations.

\n


\n

A list of solutions that I feel can be acted on in order to bring about grassroots solutions for real and positive change:

\n


\n
    \n
  • Positive Thinking
  • \n
  • Develop Mindfulness and True Present Moment Awareness
  • \n
  • Detach From The Monetary System
  • \n
  • A Positive Change in Diet
  • \n
  • Change the Quality of Attention
  • \n
  • Heal Worldview
  • \n
  • Help Others to Awaken
  • \n
  • Peaceful Parenting
  • \n
  • Practice and Promote Voluntary Interaction with Others
  • \n
  • Respect the Non-Aggression Principle
  • \n
\n


\n

One concept, among many, which can be utilized for learning about a free society based in voluntary interaction between people rather than once based on force and aggression is Agorism.

\n


\n

An article you can find posted to this site on the topic of Agorism, Agorism - Solution Oriented Action.

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/07/agorism.png?w=540&h=282

\n


\n

Agorism comes from the Greek word \"agora,\" referring to an open place for assembly and market in ancient Greek city-states. The concept uses the mechanism of Counter-economics. The term Agorism was conceived by SEK3 and used to impart Libertarian philosophy in political terms.*emphasized text*

\n


\n

SEK3, or Samual Edward Konkin III, says about counter-economics that it is \"the study or practice of all peaceful human action which is forbidden by the State.\"

\n


\n

From a Pamplet put out by Konkin, Counter-Economics, we can find this excerpt:

\n


\n

*\"The Counter-Economy is the sum of all non-aggressive Human Action which is forbidden by the State. Counter-economics is the study of the Counter-Economy and its practices. The Counter-Economy includes the free market, the Black Market, the \u201cunderground economy,\u201d all acts of civil and social disobedience, all acts of forbidden association (sexual, racial, cross-religious), and anything else the State, at any place or time, chooses to prohibit, control, regulate, tax, or tariff. The Counter-Economy excludes all State-approved action (the \u201cWhite Market\u201d) and the Red Market (violence and theft not approved by the State).\"*

\n


\n

A counter economy with a basis in the non-aggression principle which has a goal of bringing about a free and voluntary society is basically the definition of Agorism.

\n

 

\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/13606466_10208063183231354_5512978581846077039_n.jpg?w=338&h=338

\n


\n
    \n
  •  Peaceful Parenting
  • \n
\n


\n

Statism starts at home. Through practicing peaceful parenting we can immediately effect positive change by adapting a new value system and passing this new value system to the next generation. With the understanding that Statism directly opposes the Non-Aggression Principle (NAP), that it is not within someones right to initiate violence on others who do not consent. That the fundamental concept of Statism is inherently flawed. That no one can properly delegate a right that they do not have to someone else or a group of other people and make it a right. Basically, teaching our children the real difference between right and wrong, and practicing these realities ourselves as examples.

\n


\n

By respecting the NAP and giving that respect to our children, we are practicing the concept of Peaceful Parenting. This instills the principles of Self-Ownership and the basic difference between right and wrong at an early age, which children intuitively understand already.

\n


\n

However, it gives confusing mixed signals if we initiate violence on our children while also trying to teach them the difference between right and wrong. The child is confused by a parent who explains that it's not okay to hit, but then has a parent who hits them as a punishment. Peaceful parenting helps us use logic and reason with our child, and teach them how that process works. This concept falls directly in place with Voluntaryism and establishing a free society.

\n


\n

This does not mean that there are not rules, but rather that as parents, we are not \"rulers\" over our children. It is giving your child the respect that they own their own body, and no one can initiate aggression upon their property, this is always wrong.

\n


\n
    \n
  • Change Diet
  • \n
\n


\n

Along with peaceful parenting, a positive change in diet is something that we can still control. Luckily, we can still make decisions which benefit our health by using discernment in the foods we choose to eat, where the food comes from, how it got to the market, and what quality of nutrition the food contains. We can choose not to buy foods that are filled with toxic chemicals and avoid supporting companies that use unsustainable practices when producing the food.

\n


\n

For me personally, addressing my health and the quality of food and water I was consuming massively changed the way I felt and looked at the world and led to so many beautiful things in my life. I highly recommend anyone who has not addressed this area in their own lives, starts with a positive change in their diet and don't ever stop taking the best possible care of your body as possible. More to come on this topic in future content produced by the Salt Lake Freedom Hive.

\n


\n
    \n
  • Detach From Monetary System
  • \n
\n


\n

The use of the current monetary system, the Federal Reserve System, is something that each of us has a certain level of control over. One can spend time understanding how this monetary system works and quickly find that this is an immoral institution of human slavery that is among us and effecting each and every one of our lives very directly.

\n


\n

Fortunately, there are many things that we can start doing to detach from this current monetary system, and build completely new forms of exchange. Systems which adhere to the NAP, Voluntarysim, and a free society in which people refuse to participate in systems of coercion, theft, and violence.

\n


\n

\"It is well enough that people of the nation do not understand our banking and monetary system, for if they did, I believe there would be a revolution before tomorrow morning.\"

\n

~ Henry Ford

\n


\n

To begin addressing this problem, some may be able to pull there money out of big banks and use smaller credit unions, thus reducing the amount of funds the bigger banks have to operate. Others may choose to stay out or get out of debt and stop using debt as a means of purchasing things they may or may not even need. Some may choose to become active and spread information about the Federal Reserve to help awaken others to our condition. While others may start creating or use existing alternative currencies which are not within the control of the current banking cartel monopoly.

\n


\n

Cryptocurrencies, Decentralized Currencies, Community Currencies, are all currently existing models of alternative currencies that could be deployed through the practice of Agorism and truly start making a massive impact. We will discuss these concepts here at the Freedom Hive. I'm not saying that the alternative currencies I mentioned are the definitive solutions to the current condition. However, I feel they are a bridge which we can start using while new concepts are formed and developed.

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/14022139_488076711403117_7387425816887739475_n.jpg?w=446&h=334

\n


\n
    \n
  • Practice and Promote Voluntary Interaction with Others.
  • \n
\n


\n

The purpose of creating the Salt Lake Freedom Hive is to practice and promote voluntary interactions with others. Again, it is important to remember that the reason why people are labeling themselves as \"Anarchist\", \"Voluntaryist\", \"Liberitarian\", \"Minarchist\" and so on is to definitively differentiate themselves from the stance held by the vast overwhelming majority of humanity, Statist.

\n


\n

Opposing Statism is not just an alternative view in the cesspool of \"Left vs Right\" politics. Voluntaryism and Statism are directly opposed.

\n


\n

The fundamental design of the Government is to operate using coercion with the threat and use of violence, forcing people to obey its commands. By creating rights that do not exist and cannot be believed into existence regardless of how many people hold the same belief, the State permits itself to use violence against peaceful people. When Governments violate the Non-Aggression Principle, it is still wrong. Governments are not magically exempt from this basic principle. You cannot properly delegate a right that you do not hold, the right to commit violence, to someone else or a group of other people called \"authority\" and somehow make it into a right.

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/11836767_10205836201958214_407845009262651166_n.jpg?w=576&h=316

\n


\n


\n
    \n
  • Change the Quality of Attention
  • \n
\n


\n

Through changing the quality of our attention and developing true present moment awareness, we can strengthen the imagination for what kind of change is possible and bring this into physical manifestation.

\n


\n

When those who understand that they are truly sovereign beings align their thoughts, emotions, and actions, we can become powerful forces for positive change.

\n


\n

By standing in Natural Law principles, the inherent laws of the Universe which bind us, we can actually become truly free. It is through ignoring this information and living in fear that we cause harm and continue to bring suffering to ourselves and others.

\n


\n

\u201cThe liberty of man consists solely in this, that he obeys the laws of nature because he has himself recognized them as such, and not because they have been imposed upon him externally by any foreign will whatsoever, human or divine, collective or individual.\u201d

\n

  ~ Mikhail Bakunin

\n


\n


\n
    \n
  • Help To Awaken Others
  • \n
\n


\n

When we've developed true care and start to embrace Truth, Love and Freedom in our lives we can use our actions to help awaken others. The Great Work is to recognize that the vast overwhelming majority of humanity is in a state of mental somnolence. That even if we've worked to awaken ourselves and free ourselves from mental and physical slavery, still most of the people around us have not started the process and are manifesting pain and suffering for all of us as a result of their ignorance.

\n


\n

People ultimately have to begin to care enough to change and to awaken. We cannot force them to start this process. However, once someone does start that process, we can be available to them with information and solutions. We can be an example by the way we live our lives to others who are beginning the journey to a life of true freedom.

\n


\n

This site will be used to bring together people, bring forward ideas, create tools, blaze pathways, and continue to put out the message of Freedom. I'm interested in making new connections, interviewing unique and inspiring guests and explore all the different possibilities available to us in this amazing time. I'm looking forward to going on this journey and working with all those who participate.

\n


\n

Find this original article on my site and be sure to subscribe to my blog if you're in the local area of Salt Lake City, Utah: Salt Lake Freedom Hive

\n

 

\n


\n

https://saltlakefreedomhive.files.wordpress.com/2016/08/rect4212.png?w=536&h=402

\n


\n

Tyler Bloyer

\n


\n


\n


\n", - "category": "voluntaryism", - "children": 1, - "created": "2016-08-28T21:05:12", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://saltlakefreedomhive.files.wordpress.com/2016/08/14021447_1562481587394536_2837768993548173540_n.png?w=706&h=245", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/the-end-of-all-evil-2.jpg?w=551&h=270", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/blindfold-critique-joshua-david-lynch.jpg?w=381&h=234", - "https://saltlakefreedomhive.files.wordpress.com/2016/07/agorism.png?w=540&h=282", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/13606466_10208063183231354_5512978581846077039_n.jpg?w=338&h=338", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/14022139_488076711403117_7387425816887739475_n.jpg?w=446&h=334", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/11836767_10205836201958214_407845009262651166_n.jpg?w=576&h=316", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/rect4212.png?w=536&h=402" - ], - "links": [ - "https://saltlakefreedomhive.wordpress.com/", - "https://saltlakefreedomhive.wordpress.com/2016/08/14/agorism_solution/", - "https://en.wikipedia.org/wiki/Samuel_Edward_Konkin_III", - "https://saltlakefreedomhive.files.wordpress.com/2016/08/counter-economics.pdf", - "https://en.wikipedia.org/wiki/Non-aggression_principle", - "https://en.wikipedia.org/wiki/Cryptocurrency", - "https://en.wikipedia.org/wiki/Electronic_money#Decentralized_systems", - "https://en.wikipedia.org/wiki/Community_currency" - ], - "tags": [ - "voluntaryism", - "anarchy", - "freedom", - "" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 108851211, - "payout": 0.0, - "payout_at": "2016-09-04T21:05:12", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "freedom-cell-the-freedom-hive-a-voluntaryist-support-network", - "post_id": 1032671, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "Freedom Cell - The Freedom Hive. A Voluntaryist Support Network", - "updated": "2016-08-28T21:25:24", - "url": "/voluntaryism/@tsbloyer/freedom-cell-the-freedom-hive-a-voluntaryist-support-network" - }, - { - "active_votes": [ + "rshares": 27037869525, + "voter": "laonie9" + }, { - "rshares": 3370763019096, - "voter": "wang" + "rshares": 105564756919, + "voter": "xiaohui" }, { - "rshares": 3716393231, - "voter": "boy" + "rshares": 1144812100, + "voter": "paynode" }, { - "rshares": 2018736530061, - "voter": "xeroc" + "rshares": 716803194, + "voter": "boddhisattva" }, { - "rshares": 4511375320, - "voter": "bue-witness" + "rshares": 1775495835, + "voter": "xiaokongcom" }, { - "rshares": 836372556, - "voter": "bunny" + "rshares": 423739572, + "voter": "future24" }, { - "rshares": 491037814113, - "voter": "ajvest" + "rshares": 123516361, + "voter": "darthnava" }, { - "rshares": 64458777800, - "voter": "bue" + "rshares": 3574501195, + "voter": "xianjun" }, { - "rshares": 1991756697, - "voter": "mini" + "rshares": 19705855089, + "voter": "hanshotfirst" }, { - "rshares": 256330811, - "voter": "moon" + "rshares": 56258376, + "voter": "stevescriber" }, { - "rshares": 623883875204, - "voter": "masteryoda" + "rshares": 53674030, + "voter": "loli" }, { - "rshares": 106091578017, - "voter": "bonapartist" + "rshares": 53624183, + "voter": "nano2nd" }, { - "rshares": 11442714264, - "voter": "proctologic" + "rshares": 235453627, + "voter": "microluck" }, { - "rshares": 746881679, - "voter": "healthcare" + "rshares": 15290182141, + "voter": "thecurator" }, { - "rshares": 855894993737, - "voter": "tuck-fheman" + "rshares": 57802223, + "voter": "cryptoblu" }, { - "rshares": 1159981233, - "voter": "daniel.pan" + "rshares": 57795937, + "voter": "instructor" }, { - "rshares": 299893452698, - "voter": "chitty" + "rshares": 595650672196, + "voter": "dollarvigilante" }, { - "rshares": 6646348234, - "voter": "patrice" + "rshares": 70159404092, + "voter": "serejandmyself" }, { - "rshares": 345661496, - "voter": "helen.tan" + "rshares": 1389891868, + "voter": "alexma3x" }, { - "rshares": 13737465174, - "voter": "gregory-f" + "rshares": 7687038924, + "voter": "jaredcwillis" }, { - "rshares": 23532851956, - "voter": "instructor2121" + "rshares": 58570757, + "voter": "ethansteem" }, { - "rshares": 1965487747, - "voter": "jerome-colley" + "rshares": 65550658, + "voter": "steemitvirals" }, { - "rshares": 20572124000, - "voter": "acidyo" + "rshares": 27032299173, + "voter": "laonie10" }, { - "rshares": 138094111002, - "voter": "steve-walschot" + "rshares": 58431340, + "voter": "steemchina" }, { - "rshares": 53914539744, - "voter": "oaldamster" + "rshares": 58991201, + "voter": "dave-mohican" }, { - "rshares": 1411861696, - "voter": "coar" + "rshares": 531814125, + "voter": "tradz" }, { - "rshares": 73816010256, - "voter": "asch" + "rshares": 66110269293, + "voter": "barrycooper" }, { - "rshares": 2144715220, - "voter": "murh" + "rshares": 13000237047, + "voter": "hilarski" }, { - "rshares": 41349153995, - "voter": "ranko-k" + "rshares": 12943050992, + "voter": "mandibil" }, { - "rshares": 457365085, - "voter": "treeleaves" + "rshares": 54705383, + "voter": "rickmiller" }, { - "rshares": 373381756141, - "voter": "taoteh1221" + "rshares": 7556203181, + "voter": "alexandre" }, { - "rshares": 364318019, - "voter": "applecrisp" + "rshares": 1140269343, + "voter": "nulliusinverba" }, { - "rshares": 6961474454, - "voter": "givemeyoursteem" + "rshares": 17773644582, + "voter": "krnel" }, { - "rshares": 13310507864, - "voter": "samether" + "rshares": 1126836533, + "voter": "contentjunkie" }, { - "rshares": 49112341218, - "voter": "thecryptodrive" + "rshares": 26631129108, + "voter": "laonie11" }, { - "rshares": 120980010120, - "voter": "bravenewcoin" + "rshares": 57362880, + "voter": "tarungupta" }, { - "rshares": 69685458255, - "voter": "herzmeister" + "rshares": 57133915, + "voter": "jadonanime" }, { - "rshares": 28898266287, - "voter": "everythink" + "rshares": 41225084978, + "voter": "daxon" }, { - "rshares": 441273170513, - "voter": "infovore" + "rshares": 1302966060, + "voter": "maryfromsochi" }, { - "rshares": 438907956, - "voter": "magdalena" + "rshares": 339666990, + "voter": "masonmiler" }, { - "rshares": 141004228310, - "voter": "schro" + "rshares": 58749309, + "voter": "chuckleberry" }, { - "rshares": 136510118400, - "voter": "thedashguy" + "rshares": 276606833, + "voter": "totosky" }, { - "rshares": 5827019645, - "voter": "mark-waser" + "rshares": 1738786210, + "voter": "baodog" }, { - "rshares": 234296653518, - "voter": "lukestokes" + "rshares": 50931848, + "voter": "analyzethis" }, { - "rshares": 4543981642, - "voter": "ben99" + "rshares": 55070504, + "voter": "diytutorials" }, { - "rshares": 5753790444, - "voter": "magnebit" + "rshares": 50639382, + "voter": "doggnostic" }, { - "rshares": 62464802399, - "voter": "razvanelulmarin" + "rshares": 512115897, + "voter": "lifeworship" }, { - "rshares": 1919856958, - "voter": "superfreek" + "rshares": 50377764, + "voter": "jenny-talls" }, { - "rshares": 1057194488, - "voter": "wisehammer" + "rshares": 263264205430, + "voter": "charlieshrem" }, { - "rshares": 35894808596, - "voter": "cryptoiskey" + "rshares": 62148882232, + "voter": "tracemayer" }, { - "rshares": 28328356527, - "voter": "acassity" + "rshares": 54399810, + "voter": "jessicajames" }, { - "rshares": 4144765674, - "voter": "azaan" + "rshares": 1589397584, + "voter": "bitcoinparadise" }, { - "rshares": 5474192369, - "voter": "arcaneinfo" + "rshares": 206212756, + "voter": "ballinconscious" }, { - "rshares": 250229854, - "voter": "ladyclair" + "rshares": 68240341, + "voter": "whatsup" }, { - "rshares": 48422672327, - "voter": "bacchist" + "rshares": 200354566825, + "voter": "robinhoodwhale" }, { - "rshares": 7509515373, - "voter": "cannav" + "rshares": 1876382808, + "voter": "steemsquad" }, { - "rshares": 9249115921, - "voter": "romait" + "rshares": 1073068069, + "voter": "anomaly" }, { - "rshares": 4975536259, - "voter": "expanse" + "rshares": 168547788, + "voter": "ola1" }, { - "rshares": 2649803356, - "voter": "soupernerd" + "rshares": 322592441, + "voter": "robotev2" }, { - "rshares": 44780842484, - "voter": "menta" + "rshares": 2533381837, + "voter": "terrano" }, { - "rshares": 14079754966, - "voter": "yogi.artist" + "rshares": 50233449, + "voter": "teemsteem" }, { - "rshares": 20041232983, - "voter": "mindover" + "rshares": 785820775, + "voter": "robotev" }, { - "rshares": 66070094, - "voter": "steemswede" + "rshares": 50975390, + "voter": "steemprincess" }, { - "rshares": 226147199, - "voter": "adamgud" + "rshares": 168390720, + "voter": "crimson" }, { - "rshares": 56445584042, - "voter": "derekareith" + "rshares": 162089082, + "voter": "simbafire" }, { - "rshares": 536360473, - "voter": "rxhector" + "rshares": 67905483, + "voter": "destroyer3000" + } + ], + "author": "masonmiler", + "author_payout_value": "0.000 HBD", + "author_reputation": 54.62, + "beneficiaries": [], + "blacklists": [], + "body": "\n

https://i.ytimg.com/vi/JilYBVrFiLA/maxresdefault.jpg

\n

source

\n

Human society is extremely complicated and fragile, built upon numerous pillars. One of them is the honey bees. one out of three meals eaten through humans is made possible by honeybees. They're so important that if all the honey bees were to die out, lots of plant would follow, which could lead to millions of  human beings starving in the following years. On top of that honey bees have a massive economic impact. The dollar value of plants pollinated by them each year is around 256 billion dollar. Food we take for granted could just stop existing without them, or there might be a huge decrease in productivity. Food including apples, onions, pumpkins and plant used for feeding farm animals and for that extremely important for our milk and meat. 

\n

http://i.imgur.com/QcrUANL.jpg

\n

( This picture is created with the help of an online tool)

\n

Einstein is  quoted as having said 

\n
\"if honey bees die out, humans will follow a few years later.\" 
\n

Without a doubt he possibly didn't say that, But there might be some truth within the statement. It is unsettling but honey bees have started to disappear.Millions of hives have died within the past few years. Beekeepers all over the world have seen an annual loss of 30-90% in their colonies. In the US  bees are steadily declining. From 5 million hives in 1988 > 2.5 million hives these days. Since 2006, a phenomenon called \"colony collapse disorder\" has affected honey bees in many countries. And we're not entirely sure what is causing it. All we know is that it is pretty serious. 

\n

http://articles.extension.org/sites/default/files/pupavarroa.jpg

\n

source

\n

Over the last few decades bees have seen an invasion of very risky foes. Microscopic mites that infect the respiration tubes of bees. They lay their eggs and feed from the fluids of their victims, weakening them considerably and spending their whole life inside the bees. Or varroa destructor, a fitting name due to the fact they can only reproduce in honey bees hives and are one of the bees biggest enemies. The female mite enters a honey bee brood cell and lays eggs on the Bee larva earlier than it is about to pupate and before than the hive bees cover the cell with a wax capping. The eggs hatch and the young mites and their mom feed on the growing bee in the protection of the capped cell. The Bee is no normally  killed at this stage, just weekend, so it still has enough strength to chew its way through the Wax capping and release itself from the cell. As it does it releases the mite and her new offspring from the cell, and these are free to spread across the hive, beginning the process once more in a cycle of approximately 10 days. Their numbers grow exponentially, and after a few months, this may cause the collapse of the whole beehive. Once outside of the cell, adult mites also suck the body fluids of bees and weaken them extensively. To make Things worse, they transmit viruses that harm the bees even more and can lead to birth defects like useless wings. 

\n

http://cdn.inquisitr.com/wp-content/uploads/2015/01/neonicotinoids-ban-665x385.jpg

\n

source

\n

But,there are other threats too which include viruses and fungi. Beneath normal circumstances, those phenomena should be manageable and are now not enough to explain the horrendous amount of dying occurring in bees. Over recent years new insecticides have been introduced that are deadly to bees. Neonicotinoids a chemical family similar to nicotine, Was authorized in the early 1990s as an alternative to chemical compounds like DDT. They assault insects through harming their nervous systems. Today they're the most broadly used pesticides in the world. Globally, they saw sales of 1.5 billion euros in 2008, Representing 24% of the worldwide market for pesticides. In 2013, neonicotinoids is had been used in the u.s.on about 95%  of corn and canola crops, and additionally on the vast majority of fruit and vegetables, like apples, cherries, peaches, oranges, berries, leafy greens, tomatoes, potatoes, cereal grains, rice, nuts, grapes and plenty of mores. 

\n

https://4.bp.blogspot.com/-QiS0_-ByVKA/VN6TrsTtg6I/AAAAAAAAAec/RjOWwJfnalc/s1600/Bee-drinking-water.jpg

\n

source

\n

Bees come into touch with the toxin while collecting pollen or through infected water, often bringing material into the hive, wherein it can accumulate and slowly kill the whole colony. The toxins harm bees in a variety of terrible ways. In excessive sufficient doses, it quickly leads  to convulsions, paralysis and death. But even in small doses it can be fatal. It may lead to bees forgetting how to navigate the world, so bees fly into the wild, wander off and die alone separated from their hives. If this occurs often enough, a hive can lose its capability to maintain itself. we know that neonicotinoids are harmful to bees and that we urgently want an alternative to it, But there are billions of dollars to be made in delaying this. Studies sponsored by the chemical industry magically appear to prove a much lower toxicity to bees, compared to the ones produced by way of independent scientists.

\n

http://www.activistpost.com/wp-content/uploads/2013/06/bee__says_help1.jpg

\n

source

\n

There are even more factors contributing to the dying of bees, like an excessive amount of genetic uniformity, Crop monocultures, Low nutrition due to overcrowding, stress due to human activities and other insecticides. Each of those factors on its own is a problem for bees, but together they probably account for colony collapse disease. With parasites upping their game in last years. The honeybees are now fighting for survival. it would be a catastrophe if they lost this fight. This is a conundrum we have to solve, if we want to continue living with a relative abundance and variety of food. Humanity is deeply interconnected with earth and the other existence life forms on it, even if we we pretend we are now not. We have to take care of our environment, if not to preserve the beauty of nature, Than at least to ensure our own survival. 

\n


\n

Follow Me- @masonmiler

\n", + "category": "writing", + "children": 18, + "created": "2016-09-02T07:42:36", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://i.ytimg.com/vi/JilYBVrFiLA/maxresdefault.jpg", + "http://i.imgur.com/QcrUANL.jpg", + "http://articles.extension.org/sites/default/files/pupavarroa.jpg", + "http://cdn.inquisitr.com/wp-content/uploads/2015/01/neonicotinoids-ban-665x385.jpg", + "https://4.bp.blogspot.com/-QiS0_-ByVKA/VN6TrsTtg6I/AAAAAAAAAec/RjOWwJfnalc/s1600/Bee-drinking-water.jpg", + "http://www.activistpost.com/wp-content/uploads/2013/06/bee__says_help1.jpg" + ], + "links": [ + "https://i.ytimg.com/vi/JilYBVrFiLA/maxresdefault.jpg", + "http://articles.extension.org/sites/default/files/pupavarroa.jpg", + "http://cdn.inquisitr.com/wp-content/uploads/2015/01/neonicotinoids-ban-665x385.jpg", + "https://4.bp.blogspot.com/-QiS0_-ByVKA/VN6TrsTtg6I/AAAAAAAAAec/RjOWwJfnalc/s1600/Bee-drinking-water.jpg", + "http://www.activistpost.com/wp-content/uploads/2013/06/bee__says_help1.jpg" + ], + "tags": [ + "writing", + "life", + "nature", + "food", + "steemsquad" + ], + "users": [ + "masonmiler" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 22715823146514, + "payout": 61.503, + "payout_at": "2016-09-09T07:42:36", + "pending_payout_value": "61.503 HBD", + "percent_hbd": 10000, + "permlink": "can-we-survive-without-bees-and-what-s-behind-the-problem-of-disappearing-bees", + "post_id": 1095611, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 146 + }, + "title": "Can we survive without bees? And What's Behind the Problem of Disappearing Bees?", + "updated": "2016-09-02T08:53:06", + "url": "/writing/@masonmiler/can-we-survive-without-bees-and-what-s-behind-the-problem-of-disappearing-bees" + }, + { + "active_votes": [ + { + "rshares": 56815342, + "voter": "madodel" + } + ], + "author": "madodel", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "Think Beek Urban Beekeeping in the Tropics\n\nTop Bar Hive V.S. Langstroth Hive Inspection\n\nMADE in the Philippines\n\nhttps://www.youtube.com/watch?v=LMu6WxqksdA", + "category": "food", + "children": 0, + "created": "2016-08-09T14:19:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://www.youtube.com/watch?v=LMu6WxqksdA" + ], + "tags": [ + "food" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 56815342, + "payout": 0.0, + "payout_at": "2016-09-09T02:19:30", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "top-bar-hive-v-s-langstroth-hive-beekeeping", + "post_id": 703905, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 1 + }, + "title": "Top Bar Hive V.S. Langstroth Hive, Beekeeping", + "updated": "2016-08-09T14:19:30", + "url": "/food/@madodel/top-bar-hive-v-s-langstroth-hive-beekeeping" + }, + { + "active_votes": [ + { + "rshares": 1056265538670, + "voter": "tuck-fheman" }, { - "rshares": 63143114580, - "voter": "furion" + "rshares": 3729417523, + "voter": "sunjata" }, { - "rshares": 24615091776, - "voter": "strangerarray" + "rshares": 32224457249, + "voter": "vadimberkut8" }, { - "rshares": 10433095430, - "voter": "spiz0r" + "rshares": 2443935843, + "voter": "murh" }, { - "rshares": 10365174465, - "voter": "ausbitbank" + "rshares": 76661728273, + "voter": "bravenewcoin" }, { - "rshares": 670273570, - "voter": "steem1653" + "rshares": 7932202644, + "voter": "dasha" }, { - "rshares": 168947762452, - "voter": "anyx" + "rshares": 12920688979, + "voter": "firepower" }, { - "rshares": 142215696802, - "voter": "repholder" + "rshares": 537759089, + "voter": "barbara2" }, { - "rshares": 189544385979, - "voter": "jesta" + "rshares": 600727533, + "voter": "ch0c0latechip" }, { - "rshares": 5276685276, - "voter": "karen13" + "rshares": 551033865, + "voter": "doge4lyf" }, { - "rshares": 34452081459, - "voter": "diana.catherine" + "rshares": 3967348272, + "voter": "thegoodguy" }, { - "rshares": 13663044222, - "voter": "dwinblood" + "rshares": 6149029907, + "voter": "senseiteekay" }, { - "rshares": 8969098809, + "rshares": 5089054341, "voter": "meesterboom" }, { - "rshares": 14274121007, - "voter": "jaycobbell" + "rshares": 263500965, + "voter": "karenmckersie" }, { - "rshares": 8828405906, - "voter": "allmonitors" + "rshares": 489430854, + "voter": "symbot" }, { - "rshares": 70065210728, - "voter": "inertia" + "rshares": 178144118, + "voter": "susie4ka" }, { - "rshares": 6919066301, - "voter": "lichtblick" + "rshares": 177941416, + "voter": "jennifersteel807" }, { - "rshares": 120162058, - "voter": "wildchild" + "rshares": 12857437214, + "voter": "shredlord" }, { - "rshares": 12387394181, - "voter": "nippel66" + "rshares": 16091771323, + "voter": "positive" }, { - "rshares": 2939478253, - "voter": "imp3" + "rshares": 556365025, + "voter": "fnait" }, { - "rshares": 1487880898, - "voter": "iamwne" + "rshares": 555905022, + "voter": "keepcalmand" }, { - "rshares": 220031099851, - "voter": "calaber24p" + "rshares": 227723209, + "voter": "kaykunoichi" }, { - "rshares": 56921332898, - "voter": "thylbom" + "rshares": 8118024739, + "voter": "williambanks" }, { - "rshares": 28777395361, - "voter": "royaltiffany" + "rshares": 985092527, + "voter": "gaitan" }, { - "rshares": 3227397574, - "voter": "bones" + "rshares": 5366588611, + "voter": "mabiturm" }, { - "rshares": 17691606618, - "voter": "bendjmiller222" + "rshares": 54117601, + "voter": "fungusmonk" }, { - "rshares": 7778747906, - "voter": "tarindel" + "rshares": 57218984, + "voter": "renamac48" }, { - "rshares": 19633543541, - "voter": "celsius100" - }, + "rshares": 1142556, + "voter": "sharonekelly" + } + ], + "author": "shredlord", + "author_payout_value": "1.198 HBD", + "author_reputation": 53.92, + "beneficiaries": [], + "blacklists": [], + "body": "

Bees are some of humanity's most vital little creatures. Their work enables one third of our food supply world-wide. These fuzzy air-borne insects are currently experiencing a great tragedy, which has caused a great extinction or drop in a large number of their species. I found out that I'm allergic to them after stepping on one and being stung at an early age, yet they're another one of the creatures I'm largely fond of.

\n

For The Queen!
\n

\n

http://i.imgur.com/NcV9b4q.gif

\n

They're organised into 3 classes

\n

Queen -\u00a0
\nThe queen is an adult, mated female and is the largest bee in the colony. She lays 2000 eggs a day - roughly 400,000 a year. She is born when conditions are favourable for swarming and the old queen decides to lay an egg in a 'queen cup.' The workers then pack the egg cell with beeswax and leave the young queen larva to grow. When she's ready to come out, the new-born virgin queen simply chews her way out of the cell. By this time, the old queen has packed up and left to colonise another place with the prime swarm at her side. Born into a life of royalty, the new virgin queen grows up being specially fed by worker bees in order to make her sexually mature. Queen honey bees don't mate with drones from their home colony. There is normally only one adult, mated queen in a hive, in which case the bees will usually protect her with their lives. If the queen suddenly dies, the entire (up to 60,000-strong) worker population starts producing drone eggs. The drones then start consuming the hives resources without replenishing them and the colony soon begins to die from starvation.\u00a0
\nIn the case of a Brazilian bee called ' Schwarziana quadripunctata' though, a nest can have multiple queens or even dwarf queens, ready to replace a dominant queen in a case of sudden death. The workers bees of this colony can even force undeveloped dwarf queen larvae and queen larvae to be converted into worker bees, or be erased due to limits on their food supply.

\n

Worker Bee -\u00a0
\nThe majority of a hives population are worker bees. They collect the pollen, make the nest and honey, and care for the young and the queen. They do almost all of the work really, but they do it with a dance. It's called the 'bee dance' or 'waggle dance' and they use it to communicate information regarding food and resources with each other. This dance style varies from species to species as well. Similar to how rockers might dance to heavy music (Head-bangin') in comparison to people dancing to hip-hip (... Swangin')
\nThey create honey by flying to different blossoms and collecting a sugary juice called nectar.
\nWhen they have a full load, they take it back to their nest. There they pass the nectar to other worker bees who chew it, until it gradually turns into honey. The bees then place it in their walls made of beeswax and fan the honey with their wings until it's dry. When it's ready, they plug the cell with a beeswax lid to store it and keep it clean. They'll use this honey as food and will distribute it throughout their colony.
\nAll Worker bees are female and are the smallest bees in a colony. Some will take up the job of laying eggs, but are only capable of producing unfertilized eggs, which turn into males, also known as 'drones' - a process of the haplodiploid sex-determination system.
\nAn exception to this rule - laying worker bees in some subspecies of honey bees may also produce diploid (and therefore female) fertile offspring in a process called thelytoky.\u00a0

\n

Warning: Worker bees can sting you, but only once \u2013 They have a barbed sting in their tale which once lodged into your skin, doesn\u2019t retract. When this happens the sting and the poison gland breaks free, and the worker bee dies soon after, releasing an alarm pheromone which alerts other workers that a threat is nearby. Some people are particularly allergic to bees and medical treatment should be sorted, never the less. The poison can contain parasites and other nasty things. In other cases where the species doesn't have a sting, it uses its mandibles - the paired teeth that can be opened and closed to chew wood, manipulate wax, clean other bees and bite other workers or pests.
\nMost worker bees only live for a month due to the strenuous activities they undertake in order to keep the colony thriving. The wear and tear simply becomes too much.\u00a0

\n

Drone -\u00a0
\nLike the ant drones in my previous article, bee drones are the only male bees in the colony and are the product of an unfertilized egg. Unlike the female worker bee, drones don't have stingers and don't participate in nectar, pollen gathering or battle. The drones life purpose is to catch up with a fertile queen bee from another colony and mate. They're a bit bigger than worker bees and have eyes that are twice the size of those of worker bees and queens. Drones die off or are ejected from the hive by the worker bees in late autumn, and do not reappear in the bee hive until late spring. Such is life.

\n

http://www.coolkidfacts.com/wp-content/uploads/2014/11/bumble.bee_.jpg

\n

Cool facts about bees
\n
\n1) Bees have been around for millions of years!

\n

2) \u00a0Honey is the only food that includes all the necessities to sustain life, including enzymes, vitamins, minerals, and water; and it's the only food that contains "pinocembrin", an antioxidant associated with improved brain functioning. There are rumours that a person can live off just honey.

\n

3) \u00a0A honey bee can fly at about 15 miles per hour, and can do this for 6 miles.

\n

4) \u00a0The average worker bee produces about 1/12th a teaspoon of honey in her lifetime.

\n

5) \u00a0A hive of bees will fly 90,000 miles (the equivalent of three orbits around the earth) to collect nectar equivalent to 1 kilogram worth of honey.

\n

6) Bee's can recognise & learn human faces! The image in THIS article depicts what it would be like to see a person through the eyes of a bee.\u00a0

\n

7) They're dying off!

\n

That's right. Sad but true. If we didn't have bee's most of us would die.
\nThey need your help!\u00a0

\n

Pesticide and the climate change has been a proven cause of their rapidly falling numbers. You can read more about that HERE (note: I'm not one to discuss whether climate change is natural or is caused by mankind, but this is a current discussion and debate being held between people all over the world.)
\n

\n

Don't mess with bees or you might end up like this guy!
\nhttp://a.abcnews.com/images/International/AP_bee_record_01_jef_150526_12x5_1600.jpg
\n
\nI'm actually pretty amazed at how closely bees and ants resemble the complex structures of even our human civilisations. When I think of queen bees laying 'royal' eggs, then 'getting the heck' out of there, it reminds me of a human medieval power structure. Those in line to the throne might have personal reasoning to assassinate any standing in their way to it, including the king or queen themselves for example. As I said, a bee colony can only have one mated queen, and so this issue is sorted out through a fight to the death involving the two queens and the workers bees. In most disputes and battles in amongst themselves and with other colonies, drones (the male bees) sit on their arses and eat honey, as shown belown.\u00a0

\n

http://www.richmondhoneybee.com/wp-content/uploads/2011/07/drone.jpg
\n
\nBees come in many different shapes and sizes, but generally have the same structure. Their colour varies widely between species and showcases some very fascinating patterns.
\n

\n

Pic's of the day
\n

\n

https://upload.wikimedia.org/wikipedia/commons/a/a8/Bees_Collecting_Pollen_2004-08-14.jpg

\n

A honey bee working the fields, collecting pollen.

\n

http://images.huffingtonpost.com/2016-01-05-1451958281-3718611-i305c496a582a75bfe431df6b50622a4aBee_polinator_Osmia_ribifloris.jpg

\n

A blue wild bee\u00a0

\n

http://www.wildflowermix.com/images/larger-image/green-sweat-bee.jpg

\n

\u00a0A 'Green Sweat Bee' on a yellow flower.

\n

https://s-media-cache-ak0.pinimg.com/736x/3c/9e/6e/3c9e6e282e7e936abb78e7c4cacd5ec4.jpg

\n

Three solitary male bee's taking a nap on a branch.

\n

http://phenomena.nationalgeographic.com/files/2013/02/Bumblebee-660x440.jpg

\n

A bumble bee, covered in the treasures of her work.
\n
\n
\n
\nThanks for Reading :) Hope you liked the article.

\n


\n
\n

", + "category": "nature", + "children": 3, + "created": "2016-08-06T08:25:12", + "curator_payout_value": "0.359 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i.imgur.com/NcV9b4q.gif", + "http://www.coolkidfacts.com/wp-content/uploads/2014/11/bumble.bee_.jpg", + "http://a.abcnews.com/images/International/AP_bee_record_01_jef_150526_12x5_1600.jpg", + "http://www.richmondhoneybee.com/wp-content/uploads/2011/07/drone.jpg", + "https://upload.wikimedia.org/wikipedia/commons/a/a8/Bees_Collecting_Pollen_2004-08-14.jpg", + "http://images.huffingtonpost.com/2016-01-05-1451958281-3718611-i305c496a582a75bfe431df6b50622a4aBee_polinator_Osmia_ribifloris.jpg", + "http://www.wildflowermix.com/images/larger-image/green-sweat-bee.jpg", + "https://s-media-cache-ak0.pinimg.com/736x/3c/9e/6e/3c9e6e282e7e936abb78e7c4cacd5ec4.jpg", + "http://phenomena.nationalgeographic.com/files/2013/02/Bumblebee-660x440.jpg" + ], + "links": [ + "https://en.wikipedia.org/wiki/Swarming_(honey_bee)", + "http://www.scientificamerican.com/article/face-recognition-honeybees/", + "http://ec.europa.eu/food/animals/live_animals/bees/health/index_en.htm" + ], + "tags": [ + "nature", + "writing", + "insects", + "animals", + "news" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 1255053326352, + "payout": 1.557, + "payout_at": "2016-09-06T03:23:15", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "for-the-queen-a-buzzy-day", + "post_id": 641720, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 28 + }, + "title": "For The Queen - A Buzzy Day!", + "updated": "2016-08-06T08:25:12", + "url": "/nature/@shredlord/for-the-queen-a-buzzy-day" + }, + { + "active_votes": [ { - "rshares": 43607525276, - "voter": "sauravrungta" + "rshares": 7884259156, + "voter": "chris-bates" }, { - "rshares": 246045180632, - "voter": "jl777" + "rshares": 27510133359, + "voter": "paradigm-lives" }, { - "rshares": 1139144177, - "voter": "politicasan2" + "rshares": 245433423, + "voter": "timotron" }, { - "rshares": 114213797, - "voter": "grin" - }, + "rshares": 700552219, + "voter": "johnnydollar" + } + ], + "author": "chris-bates", + "author_payout_value": "0.032 HBD", + "author_reputation": 55.96, + "beneficiaries": [], + "blacklists": [], + "body": "http://i156.photobucket.com/albums/t5/tabalitigi/bluepill.jpg\n\n\n\nWhen it comes to deciphering the origin of civilization, or the \"origins of consciousness\", we still only have conjecture and trivial theories because of lack of resources via various causes: i.e. oral history traditions, book burning, natural disasters, etc...\n\nOn top of the historical disconnect, we also have ancient cultures capable of building structures that could last for multiple epochs, while with modern technology we can't build structures that last for a 100 years. These engineers, while capable of scientific/technological feats that we cannot match today also seemed to believe in some stupid/crazy/fantastical nonsense that either we have completely taken out of context, misinterpreted, COULD have possibly existed in some form, it could have been done to mislead the uneducated, propaganda, OR they could have just actually been crazy...\n\nI have a very difficult time believing that the people that created geometry, chemistry, and mastered engineering believed that some \"magic dude in the sky\" used his magic powers to \"turn planets\", or \"create stars\", as they seemed very intent on understanding anything they possibly could, so to attribute some things to \"gods\" because they \"couldn't explain them\", when the gods seemed to have VERY specific directions or clear interactions when it happened, it's not a consistent argument. Especially when you have things like the identification of Sirius B thousands of years before telescopes capable of seeing it would have been invented.\n\nhttp://en.wikipedia.org/wiki/Dogon_people\nhttp://arcturi.com/AncientAliens/DogonPeopleAndAliens.html\n\nWhile I don't ascribe to the ancient alien theory, there might be a biological explanation as to why people used to believe in \"supernatural/superhuman\" beings.\n\nhttp://en.wikipedia.org/wiki/Bee_hives\nhttp://en.wikipedia.org/wiki/Ant_Hive\n\nhttp://i156.photobucket.com/albums/t5/tabalitigi/neo2.jpg\n\nIn the natural world, we have bee hives, ant colonies, and many other \"hive minded\" species. This entails a \"collective consciousness\" so to speak, and in turn, it would mean that there is likely little ego, or \"individuals\" within the colony. I believe that at some point, humans existed in a \"hive mind\" state, and the collective consciousness would have naturally preceded the formation of the \"individual\".\n\nWhat this would imply, is that during the evolution of humans, if at some point in time, we were all tapped into a \"collective consciousness\", there would be NO NEED for written language, no NEED for written history traditions, and NO NEED for an economic system, as the information and resources had not yet reached a point that exceeded the \"collective consciousness's\" capacity to either process information, or distribute available resources.\n\nhttp://en.wikipedia.org/wiki/Homer\n\n\"The formative influence played by the Homeric epics in shaping Greek culture was widely recognized, and Homer was described as the teacher of Greece.[3] Homer's works, which are about fifty percent speeches, provided models in persuasive speaking and writing that were emulated throughout the ancient and medieval Greek worlds. Fragments of Homer account for nearly half of all identifiable Greek literary papyrus finds.[4]\"\n\nIf you are not familiar with \"Homer\" he is often misattributed as the \"writer\" of the Iliad and the Odyssey, when he was just supposedly the person who \"wrote them down\"...You have epics like the iliad and the odyssey being committed to memory by ONE person who is just ONE teacher amongst many scholars. I believe when you see THIS period of transition into \"writing\" things down, it's not because they reached the \"pinnacle\" of society necessarily, but they were breaking the processing limits of the collective consciousness, so it was necessary to begin using more methods of \"collecting information\" to record \"the important things\"...\nIf we use the \"computer\" as a metaphor for the collective consciousness since the computer was modeled after the brain, we can assume that the collective consciousness will hit a \"processing limit\". In computing, when we hit a processing limit, the solution is usually to take two equally fast processors, and divide the work load. This would be tantamount to a \"split\" in the collective consciousness: the formation of \"individuals\" able to process information outside of the \"processing limit\" of the \"collective consciousness\"...\n\nIt would be like an \"intranet\" vs. an \"Internet\"...\n\nthe collective conscious=Internet, and the individual = intranet...\n\nboth can be linked to each other, but the \"intranet\" has been \"disconnected\" from the \"Internet\" so it's functionally a \"private network\" at this point...\n\nNow, if this were the case, the \"hardware\" for the Internet, or collective consciousness would be \"vestigial brain tissue\" in SOME people but OTHER people might still be able to \"hack\" the Internet, and access the \"collective consciousness\", making them appear to have \"supernatural or godlike\" abilities. This is when you hear lore like that of \"alexander the great\" being able to stand on the shoulders of two of his men, and all three of them function as one warrior in battle...\n\nhttp://i156.photobucket.com/albums/t5/tabalitigi/smith2.jpg\n\nAlso, the idea of \"god kings\" or \"divine pharoahs\" where people completely devoted their lives and existence to one person, much like an ant colony or bee hive, and were able to accomplish things that a force under duress has NEVER been able to match. The reason I believe that there MIGHT have been some sort of different capacity of processing information is that you have these people who built the pyramids with VERY few people, VERY few resources, and didn't need to leave very much instruction on HOW to do it, for whatever reason.\n\nThey OBVIOUSLY weren't stupid, and although by this point they had definitely started keeping records, and were writing things down, they didn't much feel the need to record EVERY detail...I don't see these people being \"lazy\", or \"lax\" about their decision making, and on top of that, the idea that the \"information\" that this culture had amassed was SO dangerous that the religion that came to DOMINATE the world for the next 1200 years needed to completely wipe it off the face of the earth to rule the masses makes me think the christian church found something a long time ago that would explain why there are pyramids ALL over the planet, and whatever they found was something that allowed them to \"make everyone forget\"...\n\nI thought this might explain why we are moving TOWARDS a collective consciousness to a degree in the \"Internet\", as it's possible our neural network might be wired to \"be plugged in\"...\n\n\nhttp://en.wikipedia.org/wiki/Collective_consciousness\nhttp://en.wikipedia.org/wiki/Abilene_paradox\nhttp://en.wikipedia.org/wiki/Groupthink\n\nhttp://farm7.static.flickr.com/6172/6138348999_f8bba5c918_m.jpg", + "category": "revolution", + "children": 3, + "created": "2016-07-15T14:38:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "image": [ + "http://i156.photobucket.com/albums/t5/tabalitigi/bluepill.jpg" + ], + "tags": [ + "revolution", + "origins", + "of", + "man", + "hive", + "mind" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 36340378157, + "payout": 0.032, + "payout_at": "2016-08-24T01:28:42", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "origin-of-man-hive-mind-theory", + "post_id": 119967, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "Origin of Man: Hive Mind Theory", + "updated": "2016-07-15T14:46:18", + "url": "/revolution/@chris-bates/origin-of-man-hive-mind-theory" + }, + { + "active_votes": [ { - "rshares": 24393303610, - "voter": "team-leibniz" + "rshares": 17100215770, + "voter": "proctologic" }, { - "rshares": 35567732014, - "voter": "fatboy" + "rshares": 22671641722, + "voter": "himalayanguru" }, { - "rshares": 7289374494, - "voter": "webdeals" + "rshares": 16330046997, + "voter": "glib" }, { - "rshares": 22100599535, - "voter": "proto" + "rshares": 3255839429, + "voter": "btcturbo" }, { - "rshares": 598459575, - "voter": "curator" + "rshares": 0, + "voter": "applecrisp" }, { - "rshares": 31223582636, - "voter": "brianphobos" + "rshares": 477051640, + "voter": "icocountdown" }, { - "rshares": 9379809106, - "voter": "michaeldodridge" + "rshares": 245503290110, + "voter": "fyrstikken" }, { - "rshares": 1945721967, - "voter": "tygergamer" + "rshares": 16732319744, + "voter": "grey580" }, { - "rshares": 719753883, - "voter": "steemuwe" + "rshares": 198194750, + "voter": "diego24" }, { - "rshares": 77368907, - "voter": "nicoleta" + "rshares": 86924063, + "voter": "riscadox" }, { - "rshares": 34353610364, - "voter": "jasonstaggers" + "rshares": 3172445112, + "voter": "robertleal" }, { - "rshares": 2601777531, - "voter": "weenis" + "rshares": 62429719, + "voter": "ardina" }, { - "rshares": 103656599962, - "voter": "steemdrive" + "rshares": 11852519, + "voter": "surf4life" }, { - "rshares": 11048161290, - "voter": "taker" + "rshares": 123893453, + "voter": "vkoreshkoff" }, { - "rshares": 1884834922, - "voter": "sykochica" + "rshares": 1608643576, + "voter": "niquebs" }, { - "rshares": 2640573956, - "voter": "timcliff" + "rshares": 226334510, + "voter": "creationlayer" }, { - "rshares": 20204434115, - "voter": "yng-entrepreneur" + "rshares": 230958873, + "voter": "ethan850" }, { - "rshares": 25934610459, - "voter": "laonie1" + "rshares": 22179845357, + "voter": "solidgold" }, { - "rshares": 26492606089, - "voter": "laonie2" - }, + "rshares": 43091605, + "voter": "jesus2" + } + ], + "author": "creationlayer", + "author_payout_value": "0.060 HBD", + "author_reputation": 60.55, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Bitcoin Primer (original material)

\n

The Bitcoin wiki is a great resource for anything from basic to highly technical questions. If you find yourself confused with a term in the guide or want more clarification start by checking here, as the accuracy is of a much higher standard than community resources like reddit, or Bitcointalk. There\u2019s a lot of noise out there, but the community has taken care to preserve the accuracy on this wiki.

\n

Bitcoin Wiki: https://en.bitcoin.it/wiki/Main_Page

\n

Introduction to Bitcoin

\n

Bitcoin is an electronic peer-to-peer cash system. Electronic meaning it only exists on the internet, and peer-to-peer meaning you can send Bitcoins to anyone on the network with an address. There is no traditional oversight or censorship of transfers, so if you want to send $10,000 worth of Bitcoin to someone across the globe you can in a matter of minutes, with almost no fee. Like cash you can spend it anywhere it\u2019s accepted and it can not be censored. However, it shares another property of cash, it needs to be protected securely. Just like if someone gets your wallet from your back pocket if someone gets access to the keys to your Bitcoin, they can take the value. In the past years security has drastically improved, and service providers have taken advanced security measures with some holding insurance for the value of all the assets they hold. We\u2019ll make sure to only suggest products and companies we personally would trust with our Bitcoin.

\n

Bitcoin was invented by a pseudonym, or alias called Satoshi Nakamoto. It was likely a group of programmers, that collaborated and released the system anonymously. There have been many theories as to the identity and rationale of releasing the system anonymously. For instance, the creator(s) could have feared government censorship or simply did not want recognition and preferred to leave the upkeep of the network to the community. Whoever it was, the code base has significantly changed under the leadership of Gavin Andreesen who currently coordinates changes to Bitcoins code. Major changes are few and far between, giving Bitcoin amazing stability, and security, but there are consistently minor improvements and rewriting of code by collaborators.

\n

Why does Bitcoin have value?

\n

It comes down to what people describe as the network effect. Bitcoin is accepted at a large number of locations on and off-line, and has the most active users, and developers of any of the new payment systems. While you may hear the argument that Bitcoin has limitations which could keep it from maintaining dominance, keep in mind that new developments are planned that can extend Bitcoin to reach a broader audience. Rather than limitations Bitcoin has technical hurdles. Currently the core development is backed by MIT, Massachusetts Institute of Technology, and the startup community has been growing more rapid than the beginning of the internet boom. These factors show long-term positive growth for the technology, and underlying value of the asset.

\n

Why Trade Bitcoin?

\n

Well by now you\u2019ve already at least committed the effort to get to know Bitcoin. We consider Bitcoin closest to an asset class, like Gold. There\u2019s a finite supply of 21 million total, and only so many can be produced daily. However, the market is volatile, and can shift quickly in either direction. We think that volatility is one of the great attributes for a Bitcoin trader. A knowledgeable trader, can make profit in a down or up market. While many large players have taken the stance of buying large chunks of Bitcoin and holding them, we see room for profit, regardless of the valuation of the asset. You can either trust the market to go where you want, hold and wait, or become more active and knowledgeable and grow your portfolio. That\u2019s why we\u2019re here to guide you along the path of growing your portfolio.

\n

How does it work?

\n

To simplify what bitcoin is in a sentence. Bitcoin funds are under the complete control of the owner, and any amount can be sent at little or no cost to anyone on the network globally, and irreversibly, with minimal wait time as long as there is an internet connection.

\n

Brief Technical Overview

\n

Bitcoin is made up of a network of nodes and miners. Nodes are like servers, that connect together to broadcast when someone has sent Bitcoin. Miners are machines whose purpose is to compute a specific problem which secures the network. Keys are like a passphrase that unlock an address and it\u2019s funds. Some transactions may cost a small fee, which eventually goes to miners. The amount is minute, and many platforms cover them complimentary. Transactions are irreversible eliminating the need and possibility of individual oversight once funds are sent. The private key(s) of an address give full access to exchange value on the network, like a key to a safe. Once a transaction is broadcasted to the network, or sent to nodes, miners work to confirm the legitimacy of the transaction. Miners compete to find the solution to a complex problem, that comes from the SHA-256 algorithm. This algorithm, is a secure hashing algorithm, that can not be reverse engineered, and secures the value of each users funds. The miner that solves the problem is rewarded with Bitcoin. This process secures the network, by creating a decentralized network of computers which compete to earn a reward. 

\n

By finding the answer the transaction is proven valid and secure. This allows Bitcoin to operate freely without censorship or a central group which verifies transactions. Sometimes when depositing or sending Bitcoin you will have to wait for confirmations. Generally 3 confirmations, averaging about 10 minutes a piece, meaning miners have solved the problem and proven transactions valid are required to deposit funds. Transactions are actually sent near instantly and some services, like BitPay, do not wait for confirmations. Bitcoins are actually values in what\u2019s called the Blockchain. Instead of thinking of them as singular coins, or units, think of it as a database similar to what a bank has with it\u2019s accounting system. Your addresses are like the account numbers you have at a bank, and your specific balance is securely stored in the global network. This Blockchain database or ledger is distributed all across the network, and allows anyone to verify the amount of funds for a specific address. One simple way to do this is with a block explorer, like http://blockchain.info. Here you can specify an address or transaction number and see what took place on the network. The Blockchain itself does not store personal details about addresses, but when using exchanges or services to buy coins it\u2019s likely your transactions will be tracked on their platform separate from the Blockchain. We\u2019ll go into more depth about the technology in another guide but this is a quick recap of the technology.

\n

Here\u2019s a helpful visual explanation of how Bitcoin works:

\n

https://www.youtube.com/watch?v=Gc2en3nHxA4

\n

Buying Coins

\n

Choosing where to buy:

\n

First and foremost, you\u2019re looking for a trustworthy entity to purchase from. The bigger companies, like coinbase and circle are well known, and have great track records. The one drawback is the more established company you select likely the more information you will need to provide. Feel free to ask us any questions about companies, and you can generally contact their support at any time beforehand to clear up any confusion.

\n

coinbase - http://coinbase.com

\n

Is a U.S. based company, that has a great track record. Coins can be purchased via Bank Wire and if you link a credit card, funds can be deposited instantly.

\n

circle - http://circle.com

\n

Circle is a U.S. based company that allows purchase of Bitcoins with credit card and Bank Wire. It has a good track record, but has not been around as long as coinbase.

\n

localbitcoins.com - http://localbitcoins.com

\n

LocalBitcoins allows you to find vendors in your local area to purchase Bitcoin in person or other payment options. You should proceed with caution, as many scams have happened at the site, and when doing in person deals pick comfortable, public spaces like cafe\u2019s. It\u2019s best to check feedback for a user, and ensure those giving feedback are also trusted accounts.

\n

atm - http://coinatmradar.com

\n

You may find it convenient to buy coins from an ATM. You may still have to provide information, but the process is generally quick, and even large amounts can be handled.

\n

Here\u2019s a good resource for finding an ATM: http://coinatmradar.com/

\n

On exchange

\n

Most exchanges allow you to make a bank transfer to the exchange to purchase coins once you have submitted identity documentation.

\n

Other places to buy Bitcoin - http://howtobuybitcoins.info/

\n

Exchanges

\n

Choosing an exchange

\n

When choosing an exchange there are multiple important factors. One is trading instrument. Some offer leverage, lending and options style contracts and other have standard 1 to 1 or spot trading. Other factors include cost of fees, liquidity, security and quality of customer service. In our expert trading guides, we\u2019ll expand on these points but we\u2019ve highlighted key aspects in the exchange summaries below.

\n

bitfinex - http://bitfinex.com

\n

Bitfinex is a Hong Kong based exchange that caters to the english speaking world. It is the largest exchange used by United States customers. It offers spot trading, 3 to 1 leverage, and the ability to lend Bitcoins at interest. This is a good option if you have excess funds and want to earn small interest. Funds can be deposited via Bank Wire and identification only needs to be given for depositing or withdrawing funds. It also has pretty good liquidity. There are trading fees.

\n

coinbase - http://coinbase.com

\n

Is a U.S. based company, that has a great track record. Coins can be purchased via Bank Wire and if you link a credit card, funds can be deposited instantly. Coinbase has expanded to adding an exchange which currently only allows spot trading. Users are required to complete identification before using coinbase. There are trading fees.

\n

okcoin - http://okcoin.com

\n

okcoin.com is the international version of their chinese site. They offer spot trading, peer-to-peer lending, similar to the lending on Bitfinex, and futures trading. Futures are like options that expire after a set amount of time, one-week, two-weeks, or quarterly. Futures have to be traded at either ten and twenty times leverage.  There are trading fees.

\n

okcoin.cn - http://okcoin.cn

\n

The chinese version of okcoin.  It\u2019s one of if not the largest Bitcoin exchange meaning there is a lot of liquidity for traders. There is also zero fees permanently. Even if you don\u2019t plan to deposit or withdraw, Chinese Yuan, you may consider it as a platform for trade, because of the liquidity and zero fees, and withdraw your funds later for conversion back to desired currency..

\n

bitstamp - http://bitstamp.net

\n

Bitsamp used to be the leading Bitcoin exchange. They offer spot trade. They suffered a security breach, and lost a large amount of money, however all funds were covered and users did not suffer any loss. After that event, and temporary downtime users started switching platforms. Also their lack of alternate trading methods or lending makes it less desirable. There are trading fees.

\n

bitmex - http://bitmex.com

\n

Bitmex is a smaller exchange, but we mention it because it has what are called volatility contracts. You can trade against the volatility of Bitcoin not the specific price. There are trading fees.

\n

bitreserve  - http://bitreserve.org

\n

Bitreserve is not exactly an exchange, but more a storage for funds. It allows instant conversion from Bitcoin, to gold, other assets and fiat currencies generally for zero fees. For those interested in hedging against gold, or converting funds back and forth and holding various currencies it\u2019s a great option. Here\u2019s a list of their current offerings: https://bitreserve.org/en/status

\n

kraken - http://kraken.com

\n

Offers trading between cryptocurrencies, FIAT and margin trading, after verification. It\u2019s a long-term established exchange, but has low liquidity.

\n

Choosing a Wallet

\n

There are many options for wallets. We\u2019ve taken the time to select what we consider the most functional and secure solutions. Each has a trade off, as their individual implementations have advantages and disadvantages. The main difference is in order to make a wallet convenient and easy to use, there is some exchange in security. In some cases that means trusting the company that hosts the wallet, in others it\u2019s more technical in nature. In any case, for funds you\u2019re not actively trading or loaning on an exchange, it\u2019s a good idea to find a convenient and secure way to manage and store funds.

\n

In this section the term multi-signature is used. This means instead of one key or password there are multiples. These can be distributed so that one key is held on the server of the company, and one key is controlled by you for instance. For more information on multi-signature visit: https://en.bitcoin.it/wiki/Multisignature

\n

Recommended All around, iOS/Android/Desktop/Web wallets

\n

While these are not our favorite wallets, what they do have in common is they work on all your devices. This is great if you commonly switch between devices, and want to always have access to funds. For larger amounts we recommends using secure multisig storage on Bitgo or Coinbase, or using a fully featured desktop wallet like Electrum or Armory, although Green Address and Hive do have some native multi-signature support.

\n

Green Address -https://greenaddress.it/en/

\n

GreenAddress is a multi-signature multiplatform wallet. It\u2019s easy to use but not as advanced or configurable as some of the wallets specific to one platform, like electrum, or Breadwallet.

\n

Hive Wallet - https://www.hivewallet.com/

\n

Hive is a fast multiplatform wallet. It has social components where you can easily send to other users on the platform.

\n

Recommended Web Wallets

\n

Bitgo - http://bitgo.com

\n

Bitgo is a highly customizable web wallet, with support for multi-signature and other security options. It\u2019s typically used as a secure service provider for exchanges and platforms, but can also be used by individual users.

\n

Circle - http://circle.com

\n

Circle is an easy to use web wallet, but doesn\u2019t provide additional security like coinbase vault.

\n

Coinbase - http://coinbase.com

\n

Coinbase has a web wallet, and also offers multi-signature secure storage in what they call the coinbase vault. 

\n

Recommended Desktop Wallets

\n

Armory Wallet - https://bitcoinarmory.com/

\n

Armory is considered the most advanced full featured Bitcoin Wallet for Desktop. You will need to sync the Blockchain, but if you want the most extensive feature set and security Armory is a great option.

\n

Electrum Wallet - https://electrum.org/#home

\n

Electrum is a great desktop wallet, with many security features. It\u2019s an SPV client meaning it doesn\u2019t need to sync the blockchain and is ready to go right away. It encrypts keys and is an HD-Wallet, meaning Hierarchical Deterministic so with one passphrase and seed you can have many addresses.

\n

Recommended Mobile Wallets

\n

These wallets are specifically focused on mobile devices. That means they offer better security, and more options over wallets that share multiple services like green address, and Hive.

\n

iOS Only

\n

breadwallet - http://breadwallet.com/

\n

Breadwallet is an easy to use, full Bitcoin client iOS wallet. You control fully your funds, and don\u2019t have to trust any third party to store credentials. It also utilizes the underlying security architecture of iOS.

\n

Android Only

\n

Mycelium - https://mycelium.com/bitcoinwallet

\n

Mycelium is an open-source android wallet, that is fast and has options for offline storage/management of keys. It\u2019s not a full client so waiting for the blockchain to synchronize is not necessary.

\n

Hardware Wallets

\n

Trezor - https://www.bitcointrezor.com/

\n

rezor is a hardware device similar to a USB stick, that allows you to store funds in an encrypted manner. This can be useful for securely storing funds offline.

\n

Paper Wallets

\n

Both Armory and electrum support mnemonic codes, essentially a set of regular words, that can be easily written down to recover a wallet. You could utilize encryption to store the phrases in an encrypted fashion even on paper. With these phrases you can recover every address in your electrum or armory desktop wallet, except those that were imported. The seed itself can recover all addresses, as both employ technology called HD, or Hierarchical Deterministic Wallets. To make the paper wallet more secure you can split it into parts, or use a BIP-38 encrypted key both of which are options in Armory and Electrum when generating. More information can be found here: https://en.bitcoin.it/wiki/Paper_wallet

\n

Offline Wallets

\n

A wallet address can be generated while not connected to the internet. For secure storage of large funds it may be a good idea to create addresses offline. This way the information about the address has never touched the internet, and you can be certain the only threat is physical access. Remember to securely delete the generated files, before connecting or use a fresh operating system, or live operating system.

\n

Encrypted Storage

\n

https://bitcoin.org/en/secure-your-wallet

\n

Encryption basically makes the contents of something unreadable without a password or key. It\u2019s the same technology Bitcoin uses to secure transactions and we recommend you use it yourself to protect your important documents. Remember if you lose access to the password, or key for an encrypted file, just like Bitcoin is near impossible to recover.

\n

Veracrypt - https://veracrypt.codeplex.com/

\n

Veracrypt is a secure solution to encrypting a single file, creating an encrypted directory or encrypting a volume. This is important because when you store Bitcoin private keys or other private information, you may wish to encrypt it. Armory and Electrum already use password encryption for stored files, but if you wish to export a plain text key, or have an extra level of security, you can use veracrypt to create an encrypted storage environment.

\n

Keepassx - https://www.keepassx.org/downloads/

\n

Keepassx is a handy password wallet, which you can use to backup login credentials, private key and other text information in a database that is encrypted.

\n

Charting

\n

tradingview http://tradingview.com

\n

comprehensive online charting tool, with community features. This site will be essential to follow along with our analysis.

\n

cryptowatch - http://cryptowat.ch

\n

Fast, real-time price charting, with technical indicator overlays

\n

bitcoinwisdom - http://bitcoinwisdom.com

\n

Fast, real-time price charting, with technical indicator overlays

\n

News Resources

\n

http://news.bitcoin.com

\n

http://coindesk.com

\n

http://cointelegraph.com

\n

Spending Bitcoins

\n

http://usebitcoins.info/

\n

usebitcoins is a comprehensive list of places to spend Bitcoins online

\n

Educational Resources

\n

The Bitcoin wiki is probably the best place to dig deeper and learn about Bitcoin. https://en.bitcoin.it/wiki/Main_Pag

\n

Recommended Books

\n

If you prefer to learn in a book form, we definitely recommend these two books. Digital Gold is from a journalistic perspective, and more accessible whereas Mastering Bitcoin is an in-depth technical perspective. For the trader, Digital Gold is probably a better fit.

\n

Digital Gold: Bitcoin and the Inside Story of the Misfits and Millionaires Trying to Reinvent Money

\n

Description: Bitcoin, the landmark digital money and financial technology, has spawned a global social movement with utopian ambitions. The notion of a new currency, maintained by the computers of users around the world, has been the butt of many jokes, but that has not stopped it from growing into a technology worth billions of dollars, supported by the hordes of followers who have come to view it as the most important new idea since the creation of the internet. Believers from Beijing to Buenos Aires see the potential for a financial system free from banks and governments, and a new global money for the digital age. An unusual tale of group invention, Digital Gold tells the story of the colorful characters who have built Bitcoin, including a Finnish college student, an Argentinian millionaire, a Chinese entrepreneur, Tyler and Cameron Winklevoss, Bitcoin's elusive creator, Satoshi Nakamoto, and the founder of the Silk Road online drug market, Ross Ulbricht. With Digital Gold, New York Times reporter Nathaniel Popper offers a brilliant and engrossing account of this new technology\u2014one filled with dramatic booms and busts that have led to untold riches for some and prison terms for others. But at each step of the way, Bitcoin has provided one of the most fascinating tests of how money works, who benefits from it, and what it might look like in the future..

\n

Mastering Bitcoin: Unlocking Digital Cryptocurrencies

\n

Description: Want to join the technological revolution that\u2019s taking the world of finance by storm? Mastering Bitcoin is your guide through the seemingly complex world of bitcoin, providing the requisite knowledge to help you participate in the internet of money. Whether you\u2019re building the next killer app, investing in a startup, or simply curious about the technology, this practical book is essential reading. Bitcoin, the first successful decentralized digital currency, is still in its infancy and it\u2019s already spawned a multi-billion dollar global economy. This economy is open to anyone with the knowledge and passion to participate. Mastering Bitcoin provides you with the knowledge you need (passion not included). This book includes: A broad introduction to bitcoin\u2014ideal for non-technical users, investors, and business executives An explanation of the technical foundations of bitcoin and cryptographic currencies for developers, engineers, and software and systems architects Details of the bitcoin decentralized network, peer-to-peer architecture, transaction lifecycle, and security principles Offshoots of the bitcoin and blockchain inventions, including alternative chains, currencies, and applications User stories, analogies, examples, and code snippets illustrating key technical concepts

\n

Bitcoin Whitepaper: Bitcoin: A Peer-to-Peer Electronic Cash System

\n

For Advanced Users it\u2019s worth checking out the white paper. https://bitcoin.org/bitcoin.pdf

\n

Nakamoto Institute - http://nakamotoinstitute.org/

\n

Also for advanced Users this is a background of literature that led to Bitcoin http://nakamotoinstitute.org/literature/

\n

Community

\n

bitcointalk - http://bitcointalk.org

\n

the official forum of Bitcoin. News, announcements, and discussion of alternative cryptocurrencies.

\n

/r/bitcoin - http://reddit.com/r/bitcoin

\n

Great hub of popular articles, news and random facts about Bitcoin

\n

/r/btc - http://reddit.com/r/btc

\n

alternative to /r/bitcoin, less filtered discussion

\n

/r/bitcoinmarkets - http://reddit.com/r/bitcoinmarkets

\n

Bitcoin group specifically geared towards trading.

\n

zapchain - zapchain.com

\n

Bitcoin social community where interesting questions about Bitcoin from entrepreneurs and venture capitalists are posted.

\n


\n", + "category": "bitcoin", + "children": 1, + "created": "2016-07-13T02:35:48", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": true, + "json_metadata": { + "links": [ + "https://en.bitcoin.it/wiki/Main_Page", + "http://blockchain.info.", + "https://www.youtube.com/watch?v=Gc2en3nHxA4", + "http://coinbase.com", + "http://circle.com", + "http://localbitcoins.com", + "http://coinatmradar.com", + "http://coinatmradar.com/", + "http://howtobuybitcoins.info/", + "http://bitfinex.com", + "http://okcoin.com", + "http://okcoin.cn", + "http://bitstamp.net", + "http://bitmex.com", + "http://bitreserve.org", + "https://bitreserve.org/en/status", + "http://kraken.com", + "https://en.bitcoin.it/wiki/Multisignature", + "https://greenaddress.it/en/", + "https://www.hivewallet.com/", + "http://bitgo.com", + "https://bitcoinarmory.com/", + "https://electrum.org/#home", + "http://breadwallet.com/", + "https://mycelium.com/bitcoinwallet", + "https://www.bitcointrezor.com/", + "https://en.bitcoin.it/wiki/Paper_wallet", + "https://bitcoin.org/en/secure-your-wallet", + "https://veracrypt.codeplex.com/", + "https://www.keepassx.org/downloads/", + "http://tradingview.com", + "http://cryptowat.ch", + "http://bitcoinwisdom.com", + "http://news.bitcoin.com", + "http://coindesk.com", + "http://cointelegraph.com", + "http://usebitcoins.info/", + "https://en.bitcoin.it/wiki/Main_Pag", + "https://bitcoin.org/bitcoin.pdf", + "http://nakamotoinstitute.org/", + "http://nakamotoinstitute.org/literature/", + "http://bitcointalk.org", + "http://reddit.com/r/bitcoin", + "http://reddit.com/r/btc", + "http://reddit.com/r/bitcoinmarkets" + ], + "tags": [ + "bitcoin", + "trading", + "guide", + "beginners" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 350015018949, + "payout": 0.06, + "payout_at": "2016-08-25T00:40:06", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "beginners-guide-to-bitcoin-ecosystem", + "post_id": 90178, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 18 + }, + "title": "Beginners guide to Bitcoin Ecosystem", + "updated": "2016-07-13T02:35:48", + "url": "/bitcoin/@creationlayer/beginners-guide-to-bitcoin-ecosystem" + }, + { + "active_votes": [ { - "rshares": 26504067845, - "voter": "laonie3" + "rshares": 4390915287896, + "voter": "riverhead" }, { - "rshares": 1570153730, - "voter": "feelapi" + "rshares": 2383141982763, + "voter": "badassmother" }, { - "rshares": 9421789992, - "voter": "viktor.phuket" + "rshares": 150958809988, + "voter": "nextgenwitness" }, { - "rshares": 9009430361, - "voter": "aleksandraz" + "rshares": 3263897711176, + "voter": "pharesim" }, { - "rshares": 4888677510, - "voter": "minion" + "rshares": 3005342728266, + "voter": "lafona-miner" }, { - "rshares": 1163632772, - "voter": "andrew0" + "rshares": 477966017811, + "voter": "lafona" }, { - "rshares": 26500014017, - "voter": "laonie4" + "rshares": 289761263272, + "voter": "justin" }, { - "rshares": 26499037280, - "voter": "laonie5" + "rshares": 5550532381103, + "voter": "kushed" }, { - "rshares": 26496510008, - "voter": "laonie6" + "rshares": 1085676239713, + "voter": "rossco99" }, { - "rshares": 26493787766, - "voter": "laonie7" + "rshares": 1076924203378, + "voter": "delegate.lafona" }, { - "rshares": 26491146749, - "voter": "laonie8" + "rshares": 302577919311, + "voter": "lafona5" }, { - "rshares": 713974649, - "voter": "romancs" + "rshares": 2483533720, + "voter": "boy" }, { - "rshares": 26489725839, - "voter": "laonie9" + "rshares": 3015319191, + "voter": "bue-witness" }, { - "rshares": 136228051, - "voter": "luke490" + "rshares": 547231477, + "voter": "bunny" }, { - "rshares": 1315422750, - "voter": "dolov" + "rshares": 7154796914248, + "voter": "complexring" }, { - "rshares": 9568495848, - "voter": "jphamer1" + "rshares": 43930729626, + "voter": "bue" }, { - "rshares": 14240603277, - "voter": "velourex" + "rshares": 32997922108, + "voter": "danknugs" }, { - "rshares": 3423333937, - "voter": "oflyhigh" + "rshares": 336106572391, + "voter": "steemservices" }, { - "rshares": 238337441, - "voter": "sillygoon" + "rshares": 25777188152, + "voter": "steemservices1" }, { - "rshares": 42027599838, - "voter": "driv3n" + "rshares": 1330750993, + "voter": "mini" }, { - "rshares": 51172913, - "voter": "nano2nd" + "rshares": 171038238, + "voter": "moon" }, { - "rshares": 58602625, - "voter": "razberrijam" + "rshares": 3188526954582, + "voter": "au1nethyb1" }, { - "rshares": 1050437459, - "voter": "chinadaily" + "rshares": 11949455581, + "voter": "bentley" }, { - "rshares": 9971297203, - "voter": "kyriacos" + "rshares": 901974675983, + "voter": "benjojo" }, { - "rshares": 38460202037, - "voter": "anotherjoe" + "rshares": 436987613337, + "voter": "boatymcboatface" }, { - "rshares": 13618563581, - "voter": "kafkanarchy84" + "rshares": 61560739442, + "voter": "vip" }, { - "rshares": 7239535767, - "voter": "mrgrey" + "rshares": 32421474922, + "voter": "proctologic" }, { - "rshares": 3407540696, - "voter": "voltarius" + "rshares": 500017699, + "voter": "healthcare" }, { - "rshares": 26484168009, - "voter": "laonie10" + "rshares": 778546025, + "voter": "daniel.pan" }, { - "rshares": 898707871, - "voter": "emilyjane" + "rshares": 230687619, + "voter": "helen.tan" }, { - "rshares": 68950759267, - "voter": "barrycooper" + "rshares": 23787807387, + "voter": "yefet" }, { - "rshares": 12178373062, - "voter": "mikemacintire" + "rshares": 1131413330567, + "voter": "gavvet" }, { - "rshares": 14583243204, - "voter": "hilarski" + "rshares": 25181737864, + "voter": "james-show" }, { - "rshares": 3530186924, - "voter": "onetree" + "rshares": 9543864994, + "voter": "richman" }, { - "rshares": 25551061344, - "voter": "daut44" + "rshares": 59281413051, + "voter": "avarice" }, { - "rshares": 2592690795, - "voter": "newandold" + "rshares": 609077198, + "voter": "acidyo" }, { - "rshares": 193788098, - "voter": "jennsky" + "rshares": 151558698775, + "voter": "steve-walschot" }, { - "rshares": 1994156610, - "voter": "richardcrill" + "rshares": 1412755202, + "voter": "murh" }, { - "rshares": 26091209143, - "voter": "laonie11" + "rshares": 19742251344, + "voter": "samether" }, { - "rshares": 1649941704, - "voter": "davidjkelley" + "rshares": 24531687872, + "voter": "ratel" }, { - "rshares": 51718188, - "voter": "crion" + "rshares": 32980695821, + "voter": "michaelx" }, { - "rshares": 8124894843, - "voter": "digital-wisdom" + "rshares": 2745202699, + "voter": "gary-smith" }, { - "rshares": 5693943859, - "voter": "jwaser" + "rshares": 5848615804, + "voter": "fuck.off" }, { - "rshares": 261044004, - "voter": "maarnio" + "rshares": 5762172979, + "voter": "iloveporn" }, { - "rshares": 89563584, - "voter": "pjo" + "rshares": 4974092002, + "voter": "the.bot" }, { - "rshares": 2684999820, - "voter": "bwaser" + "rshares": 7008840087, + "voter": "johnbradshaw" }, { - "rshares": 52182445, - "voter": "alina1" + "rshares": 523590189, + "voter": "mrhankeh" }, { - "rshares": 304997419, - "voter": "bones261" + "rshares": 322238291112, + "voter": "roelandp" }, { - "rshares": 185518573247, - "voter": "charlieshrem" + "rshares": 4625645029, + "voter": "unicornfarts" }, { - "rshares": 69859252986, - "voter": "tracemayer" + "rshares": 5001473150, + "voter": "vote" }, { - "rshares": 59985601, - "voter": "jcvanleur" + "rshares": 3294083700, + "voter": "stranger27" }, { - "rshares": 581992317, - "voter": "bones555" + "rshares": 5145362269, + "voter": "kissmybutt" }, { - "rshares": 461844295, - "voter": "boxcarblue" + "rshares": 427726403899, + "voter": "juneaugoldbuyer" }, { - "rshares": 34265548518, - "voter": "robinhoodwhale" + "rshares": 515159530034, + "voter": "neoxian" }, { - "rshares": 57373974, - "voter": "steemrocket" + "rshares": 177813527539, + "voter": "knircky" }, { - "rshares": 1516067251, - "voter": "ellepdub" + "rshares": 1024215664, + "voter": "steem1653" }, { - "rshares": 1098737630, - "voter": "herpetologyguy" + "rshares": 4630947309, + "voter": "gikitiki" }, { - "rshares": 4811931106, - "voter": "morgan.waser" + "rshares": 518300203, + "voter": "murderistic" }, { - "rshares": 51238118, - "voter": "teemsteem" - } - ], - "author": "lukestokes", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.1, - "beneficiaries": [], - "blacklists": [], - "body": "
![](https://s22.postimg.org/3nc2dom01/steemwhale.jpg)
\n\nHave you seen @robinhoodwhale's teaser intro post?\n\nThe basic idea, as I understand it, is to build out a new whale whose voting tastes and curation habits are determined by a group of people, a hive mind, instead of a single individual. I find this idea fascinating and wanted to support it while also challenging myself to write my own bot in PHP. The bot monitors @robinhoodwhale's voting activity and, if there's a new vote, goes ahead and votes on that same post using piston. The idea being, as more people vote up what @robinhoodwhale votes on, the more curation rewards @robinhoodwhale will make and the more visibility those posts will get (making @robinhoodwhale even more valuable to the community).\n\nI worked on the CopyCatVoter bot yesterday and had it running all night. Here's the output from its first day of life:\n\n```\n\u279c Bots git:(master) \u2717 php CopyCatVoterTest.php\n2016-08-28T02:47:38+00:00\nStarting CopyCatVoter for lukestokes who wants to copy robinhoodwhale...\n\n\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-kateblack-a-rant-about-a-germ-obsessed-parent-and-outdoor-play-20160827t201239908z\n2016-08-27T20:13:54\n----------------------------------\nAlready voted.\n......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nkazumba/modern-day-edgar-cayce-nostradamus\n2016-08-28T07:12:00\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-kazumba-modern-day-edgar-cayce-nostradamus-20160828t071218005z\n2016-08-28T07:12:27\n----------------------------------\nVoting...\n.....................................................................................\n------------ NEW VOTE! -----------\nwebosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach\n2016-08-28T07:34:21\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-webosfritos-thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach-20160828t073446896z\n2016-08-28T07:35:03\n----------------------------------\nVoting...\n............................................\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-picokernel-alpha-squeek-io-twitter-alternative-for-the-steem-blockchain-20160828t074629039z\n2016-08-28T07:46:36\n----------------------------------\nVoting...\n...............................................\n------------ NEW VOTE! -----------\nnaquoya/sometimes-we-just-need-to-rage-against-the-machine\n2016-08-28T07:58:48\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-naquoya-sometimes-we-just-need-to-rage-against-the-machine-20160828t075914448z\n2016-08-28T07:59:36\n----------------------------------\nVoting...\n.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\ndorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli\n2016-08-28T13:11:21\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-dorit-israeli-experimental-learning-space-education-by-dr-dorit-israeli-20160828t131146396z\n2016-08-28T13:12:03\n----------------------------------\nVoting...\n.....................................\n------------ NEW VOTE! -----------\ntonypeacock/join-a-niche-online-community-here-s-10-reasons-why\n2016-08-28T13:21:48\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-tonypeacock-join-a-niche-online-community-here-s-10-reasons-why-20160828t132210398z\n2016-08-28T13:22:15\n----------------------------------\nVoting...\n.............................................................................................\n------------ NEW VOTE! -----------\njaytaylor/on-international-dog-day-be-more-dog\n2016-08-28T13:46:18\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-jaytaylor-on-international-dog-day-be-more-dog-20160828t134633948z\n2016-08-28T13:47:03\n----------------------------------\nVoting...\n..................................................................................................................\n------------ NEW VOTE! -----------\nsitaru/yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there\n2016-08-28T14:16:24\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-sitaru-yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there-20160828t141641424z\n2016-08-28T14:16:48\n----------------------------------\nVoting...\n...................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nanahilarski/graphic-design-and-social-media-pro-from-panama\n2016-08-28T15:23:42\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-anahilarski-graphic-design-and-social-media-pro-from-panama-20160828t151705067z\n2016-08-28T15:23:48\n----------------------------------\nVoting...\n.....................................................................................................................................\n------------ NEW VOTE! -----------\nowdy/color-for-the-color-blind-the-science-behind-the-enchroma-glasses\n2016-08-28T15:58:18\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-owdy-color-for-the-color-blind-the-science-behind-the-enchroma-glasses-20160828t155910607z\n2016-08-28T15:59:15\n----------------------------------\nVoting...\n.......................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nlukmarcus/wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday\n2016-08-28T17:11:18\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-lukmarcus-wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday-20160828t171141695z\n2016-08-28T17:11:48\n----------------------------------\nVoting...\n...............\n```\n\nI just changed the configuration settings this morning so now it will only vote up root posts and not vote on the comments @robinhoodwhale votes on. I'm doing this to conserve some voting power for people in my feed, but will probably change that up based on how active I plan to be on Steemit for a given time period.\n\nAll the code for this is on Github here: https://github.com/lukestokes/php-steem-tools. The CopyCatVoter code is here and the code to run it is currently in a test folder. This is basically my embarrassing prototype sandbox play code, but I'm putting it out there publicly in case anyone else wants to play with it also. You'll need to be able to run php and have piston configured with your posting key and have no password on your piston wallet (I hear from @xeroc some changes will be coming in the future to allow for ENV variable for this).\n\nSo why did I do this instead of just using my account at https://streemian.com/ and its curation trail feature? Well, mainly because I wanted to challenge myself. I really like the idea of having my own bot I can tweak and adjust, almost like a pet. I'm already thinking of improvements to make, such as ensuring it will unvote a post if @robinhoodwhale removes a vote.\n\nAlso, I like to have the output available for me to review. I'm not one to automate social media activities, so it took a while for me to warm up to the idea of trusting others to curate good content. I had to trust the hive mind to promote content which will benefit Steemit as a platform. With it running locally, I can easily review the posts and still use that 24 hour window to remove my vote if it's something I don't personally think is beneficial to the network or if it is contrary to my subjective opinion of what I \"like.\"\n\nIf you want to know more about @robinhoodwhale, give them a follow. You can review the list of posts they've already voted for in this spreadsheet which is updated in real time, as far as I understand. Shout out to @kyriacos for the awesome artwork and the robinhood / robinhood-links chat channels.\n\nI hope you're having a great weekend!\n**Steem On**\n[![LukeStokes01712.png](https://www.steemimg.com/images/2016/08/14/LukeStokes01712.png)](https://steemit.com/@lukestokes)", - "category": "robinhoodwhale", - "children": 45, - "created": "2016-08-28T18:33:15", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s22.postimg.org/3nc2dom01/steemwhale.jpg", - "https://www.steemimg.com/images/2016/08/14/LukeStokes01712.png" - ], - "links": [ - "https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore", - "https://github.com/lukestokes/php-steem-tools", - "https://github.com/lukestokes/php-steem-tools/blob/master/src/SteemTools/Bots/CopyCatVoter.php", - "https://github.com/lukestokes/php-steem-tools/blob/master/tests/Bots/CopyCatVoterTest.php", - "https://streemian.com/", - "https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0", - "https://steemit.com/@kyriacos", - "https://steemit.chat/channel/robinhood", - "https://steemit.chat/channel/robinhood-links" - ], - "tags": [ - "robinhoodwhale", - "bots", - "curation", - "automation", - "php" - ], - "users": [ - "robinhoodwhale", - "xeroc" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 12867959210625, - "payout": 24.069, - "payout_at": "2016-09-04T18:33:15", - "pending_payout_value": "24.069 HBD", - "percent_hbd": 10000, - "permlink": "trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale", - "post_id": 1030456, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 174 - }, - "title": "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale", - "updated": "2016-08-28T21:11:06", - "url": "/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale" - }, - { - "active_votes": [ + "rshares": 242148482, + "voter": "danielkt" + }, { - "rshares": 55364883125, - "voter": "asch" + "rshares": 16665907325, + "voter": "senseiteekay" }, { - "rshares": 5959943620, - "voter": "mark-waser" + "rshares": 3541737263, + "voter": "karen13" }, { - "rshares": 3543915433, - "voter": "svamiva" + "rshares": 20608956900, + "voter": "artific" }, { - "rshares": 1679610230, - "voter": "endgame" + "rshares": 33855564688, + "voter": "creemej" }, { - "rshares": 3789657417, - "voter": "sebastien" + "rshares": 94283196, + "voter": "wildchild" }, { - "rshares": 1022676513, - "voter": "doctorstrange" + "rshares": 12671877234, + "voter": "nippel66" }, { - "rshares": 2656059139, - "voter": "jedau" + "rshares": 23943153557, + "voter": "phenom" }, { - "rshares": 795975767, - "voter": "politicasan2" + "rshares": 4232895454, + "voter": "deadloop" }, { - "rshares": 11744468863, - "voter": "cryptocameo" + "rshares": 166457850344, + "voter": "blueorgy" }, { - "rshares": 65817108, - "voter": "reported" + "rshares": 3574148693, + "voter": "tarindel" }, { - "rshares": 85833311, - "voter": "jlwk0lb" + "rshares": 5353715248, + "voter": "sharker" }, { - "rshares": 51193516, - "voter": "krushing" + "rshares": 172171709956, + "voter": "jl777" }, { - "rshares": 52412795, - "voter": "southbaybits" + "rshares": 14672347402, + "voter": "proto" }, { - "rshares": 59746176, - "voter": "minnowsunited" + "rshares": 29800740328, + "voter": "smailer" }, { - "rshares": 51239701, - "voter": "whatyouganjado" + "rshares": 7347468780, + "voter": "taker" }, { - "rshares": 3619871973, - "voter": "veralynn" + "rshares": 3321239318, + "voter": "nekromarinist" }, { - "rshares": 62195746, - "voter": "makaveli" + "rshares": 26514154295, + "voter": "kental" }, { - "rshares": 51216467, - "voter": "alexbones" + "rshares": 1380342387, + "voter": "paynode" }, { - "rshares": 63300201, - "voter": "ozertayiz" + "rshares": 10773908902, + "voter": "gargon" }, { - "rshares": 51356966, - "voter": "salebored" + "rshares": 531416142, + "voter": "future24" }, { - "rshares": 51443990, - "voter": "smashalee" + "rshares": 9570090450, + "voter": "thebotkiller" }, { - "rshares": 64833741, - "voter": "kita" + "rshares": 61746903, + "voter": "kpine" }, { - "rshares": 55917888, - "voter": "bitdrone" + "rshares": 4982988321, + "voter": "theconnoisseur" }, { - "rshares": 50317967, - "voter": "sleepcult" + "rshares": 53688127, + "voter": "loli" }, { - "rshares": 3824018741, - "voter": "digital-wisdom" + "rshares": 305152688, + "voter": "natako" }, { - "rshares": 6039190252, - "voter": "jwaser" + "rshares": 728471697, + "voter": "alexma3x" }, { - "rshares": 50644082, - "voter": "kev7000" + "rshares": 249946232, + "voter": "jimmytwoshoes" }, { - "rshares": 1346840923, - "voter": "bwaser" - } - ], - "author": "jwaser", - "author_payout_value": "0.000 HBD", - "author_reputation": 51.05, - "beneficiaries": [], - "blacklists": [], - "body": "\n

As a traditional beekeeper, I find this very intriguing but I have my doubts that it's as easy as they say . . . .

\n

but their Indiegogo pitch page has got tons of bee pictures and bee videos and good bee advice (and ends August 22nd).

\n

\n

The campaign has some really cool T-shirts (with all profits through August 22nd going to The Rainforest Trust, to help preserve forest ecosystems around the world).

\n

\n

And they've certainly gotten a bunch of publicity from the Australian media

\n

\n

And I'm certainly all for anything that brings more people into beekeeping

\n

(again, I know nothing about this product other than it looks intriguing -- if someone has experience with it, *please* tell me about it in the comments or write a blog post and I'll link to it)

\n

\n

\n

Minnows UNITE! (use the keyword minnowsunite)

\n

If you're a beekeeper (or enjoy slapstick, the husband says), you should check out my introductory post
\nSIX SEXY HAIRY LEGS and I fell in LOVE!

\n

He also blogs on Steemit (and occasionally tries to be funny himself)
\n@DanTheMan\u2019s Power Down Countdown (X Days!)

\n

As a supporter of Minnows Unite, I would like to draw your attention to
\nhttps://steemit.com/bees/@kental/secrets-of-the-beekeeper-subtlety-beekeeping-bees
\nhttps://steemit.com/feminism/@veralynn/are-we-asking-for-it
\nhttps://steemit.com/steemit/@veralynn/women-of-steemit-vol-3

\n

My husband would like to call out
\nhttps://steemit.com/business/@felixxx/how-i-want-to-make-my-first-bot-for-steemit-normaluser-explained

\n


\n", - "category": "bees", - "children": 1, - "created": "2016-08-19T13:00:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/08/19/Untitled488e5d.md.png", - "https://www.steemimg.com/images/2016/08/19/Untitled52414d.png", - "https://www.steemimg.com/images/2016/08/19/Untitled55561.md.png", - "https://www.steemimg.com/images/2016/08/19/Untitled3a2f06.md.png", - "https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_c609e6e3b70444fd8b756f5880dfcffb~mv2_d_2941_2046_s_2.jpg?dn=Minnow+Strength+2.jpg" - ], - "links": [ - "https://www.indiegogo.com/projects/flow-hive-honey-on-tap-directly-from-your-beehive-environment--5#/", - "https://steemit.com/created/minnowsunite", - "https://steemit.com/introduceyourself/@jwaser/six-sexy-hairy-legs-and-i-fell-in-love", - "https://steemit.com/steemit/@mark-waser/dantheman-s-power-down-countdown-x-days", - "https://steemit.com/bees/@kental/secrets-of-the-beekeeper-subtlety-beekeeping-bees", - "https://steemit.com/feminism/@veralynn/are-we-asking-for-it", - "https://steemit.com/steemit/@veralynn/women-of-steemit-vol-3", - "https://steemit.com/business/@felixxx/how-i-want-to-make-my-first-bot-for-steemit-normaluser-explained" - ], - "tags": [ - "bees", - "minnowsunite", - "steemit", - "bee", - "beekeeper" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 102254581651, - "payout": 0.055, - "payout_at": "2016-08-26T13:00:03", - "pending_payout_value": "0.055 HBD", - "percent_hbd": 10000, - "permlink": "flow-hive-honey-on-tap-directly-from-your-beehive-and-awesome-bee-t-shirts", - "post_id": 888381, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 28 - }, - "title": "Flow Hive: Honey on Tap Directly From Your Beehive (& Awesome Bee T-Shirts)", - "updated": "2016-08-19T13:00:03", - "url": "/bees/@jwaser/flow-hive-honey-on-tap-directly-from-your-beehive-and-awesome-bee-t-shirts" - }, - { - "active_votes": [ + "rshares": 3037040993, + "voter": "macartem" + }, { - "rshares": 12827939224, - "voter": "boy" + "rshares": 1727408548, + "voter": "jsantana" }, { - "rshares": 3641609365, - "voter": "daniel.pan" + "rshares": 2576533802, + "voter": "rossenpavlov" }, { - "rshares": 624451197253, - "voter": "cryptogee" + "rshares": 13874760028, + "voter": "nastik" }, { - "rshares": 3776469461, - "voter": "cryptofunk" + "rshares": 8040569415, + "voter": "craigwilliamz" }, { - "rshares": 106436605641, - "voter": "kenny-crane" + "rshares": 56519848690, + "voter": "mandibil" }, { - "rshares": 4423941618, - "voter": "crok" + "rshares": 8590006797, + "voter": "daveks" }, { - "rshares": 1592646850, - "voter": "justoneartist" + "rshares": 1104783746, + "voter": "steemitguide" }, { - "rshares": 191044910, - "voter": "digi3d" + "rshares": 7214986817, + "voter": "einsteinpotsdam" }, { - "rshares": 6703684971, - "voter": "sillyfilthy" + "rshares": 2985934263, + "voter": "richardcrill" }, { - "rshares": 3402645468, - "voter": "autosmile13" + "rshares": 5554999718, + "voter": "nadin3" }, { - "rshares": 15590359, - "voter": "zhuvazhuva" + "rshares": 54565194, + "voter": "benaccept" }, { - "rshares": 242513880, - "voter": "irena-irena" + "rshares": 94567853693, + "voter": "thecyclist" }, { - "rshares": 984643717, - "voter": "opheliafu" + "rshares": 59227382665, + "voter": "tracemayer" }, { - "rshares": 661853836, - "voter": "moviefan" + "rshares": 1511270341, + "voter": "bitcoinparadise" }, { - "rshares": 555665223, - "voter": "amor" + "rshares": 101419874, + "voter": "inarix03" }, { - "rshares": 14226009, - "voter": "qonq99" + "rshares": 62038939, + "voter": "verbal-d" }, { - "rshares": 332757389, - "voter": "ladypenelope1" + "rshares": 330193907, + "voter": "robotev1" }, { - "rshares": 2467957, - "voter": "cire81" + "rshares": 54772835, + "voter": "lexikon082" }, { - "rshares": 1039528039, - "voter": "pixielolz" + "rshares": 416157082, + "voter": "iontom" }, { - "rshares": 9217347, - "voter": "taker" + "rshares": 139828351, + "voter": "insight2incite" } ], - "author": "opheliafu", - "author_payout_value": "0.681 HBD", - "author_reputation": 67.86, + "author": "kental", + "author_payout_value": "0.000 HBD", + "author_reputation": 63.52, "beneficiaries": [], "blacklists": [], - "body": "Steemit a hive of creativity! Do you like my new Steemit bees GIF? I've been busy at work tonight getting a few drawings down on paper based on my idea of Steemit being a hive of activity.\n\n\nLike the bees do we all have different roles within the hive? What do you think yours is? Worker, drone, or a queen?\n\nhttp://opheliafu.thefugroup.com/wp-content/uploads/2016/07/bee-individual-263x300.jpg\n\nBees are social insects that live together in large, organised family groups. For these social colonies to survive then communication is vital and no individual can survive without the support of the colony. \n\nSo let's make like busy bees and get to work at building a successful and creative Steemit hive!", - "category": "steemit", - "children": 9, - "created": "2016-07-23T23:21:36", - "curator_payout_value": "0.192 HBD", + "body": "![](https://i.imgur.com/MwWKmtB.jpg)\n\nPeople often don\u2019t understand the difference between two these pretty beautiful black and yellow color insects. I\u2019ll try to explain the main deference between them. For example, I\u2019ll tell you about their sizes, stings, behavior, vital activity, usefulness and so on. \nImage Source\n\nThe sizes\n===\n![](https://i.imgur.com/YA7yEng.jpg)\nImage Source\n\nYes, two these interesting insects have a pretty similar black and yellow color. However, the bees are much smaller than the wasps. Have you ever seen two these insects together? Wasps are really huge comparing with bees. Moreover, they make a little bit different sound. The buzzed \u00ablanguage\u00bb of these insects is a huge another topic. I\u2019ll just tell you that wasps are louder than bees. \nAdding to that, the shape of the bee\u2019s and swap\u2019s body is different too. Yes, they have similar black and yellow color but this color, actually, is different. Bee has a more rounded body shape. Its cover has villi; the color is muted. The \tswap has a smooth elongated body and very bright colors. \n\nVital activity and usefulness\n===\n![](https://i.imgur.com/jI0VAbJ.jpg)\nImage Source\n\nBees are toilers because of their nature. They are ready to work endless for the good of their hive. The food of bees is a flowers\u2019 nectar. They can\u2019t eat something else, the flowers\u2019 nectar is their just one their food. Bees plays a very important economical and agricultural role. Collecting nectar of flowers, bees produce a variety of useful and healthy products that people use in pharmaceuticals and human nutrition. The bees even use industrially in the open fields. Bees\u2019 honeycombs are erected by their own wax by people. \n\nThe wasps aren\u2019t able to produce any useful products. They make their hives from the different wastes. All these waste can be really different but in the most of cases aren\u2019t useful at all. The nutrition of wasps is diversely enough. They can eat both fruits and nectar. That\u2019s because we always can meet swaps near the fruit stalls at the trades. Moreover, swaps can even eat flies and other small insects. They can even eat the meat products in the towns and cities. \nHowever, wasps are not that useless. They are not useful for people but they\u2019re very useful for nature. For example, they play a very important ecological role: adult wasps visit the places of juice on the trunks of trees (in particular, elm and aspen) and inflorescences of various plants. \nBy the way, wasps are smart enough: wasps actively catch various small insects, including bees, but mostly small caterpillars, the flies-eristaly and various two-wing insects to feed the young workers. \n\nBehavior\n===\n![](https://i.imgur.com/m2HLpgk.jpg)\nImage Source\n\nThe bees sting just if they see a real dangerous, just in an emergence situation. Moreover, they do it just if someone attack them first and they must protect thir hive. The bee dies immediately after the sting and lost her sting in the body of its rival. \nThere\u2019s a certain hierarchy in the family of bees. The highest position always takes bee calls \u00abqueen\u00bb. All bees care about her well-being because just queen is able to multiply the hive. The bees create all conditions for her comfortable existence at winter. \nThe wasp is an aggressive insect enough. Molestation and ability to sting at any time are the main characteristics of wasp. Adding to that, wasps don\u2019t die after their sting. Moreover, the wasp use the jaw apparatus for protecting of rivals, what isn\u2019t characteristically for insects of this family. The queen spends the winter alone; it doesn\u2019t have helpers or securities. It leaves larvae and build a nest in the whole loneliness. \n\nThe sting\n===\n![](https://i.imgur.com/hzAJ5jw.jpg)\nImage Source\n\nMany sources indicate that bees unlike swaps have serrated sting. That\u2019s not exactly like that. Wasps have developed a more perfect weapon in the process of evolution \u2013 the sting of the predator that is also provided with notches, but the notch smaller than the bee\u2019s one. \nThe most important thing is that there\u2019s not a kind of assembly on the bee\u2019s tip of sting. That\u2019s because wasps can sting for many times and bees die after the first sting. \n\nIn conclusion, I want to say that the main difference is that bees make a great very healthy honey and many other different useful products and die from the first sting. Nowadays people haven\u2019t found any useful products from swaps, moreover, they can sting as many times as they want. \n\n###

Thank you for your attention!

\n###

@kental with you!

\n###

Let's learn beekeeping together!

\n###

Follow me If you want to learn more about beekeeping! 

\n\n### My previous articles:\n- What\u2019s Going on When The Bees Stings You?\n- How to Unite Bee Families.", + "category": "life", + "children": 5, + "created": "2016-09-09T18:11:24", + "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { "image": [ - "https://i.imgflip.com/17uzgd.gif", - "http://opheliafu.thefugroup.com/wp-content/uploads/2016/07/bee-individual-263x300.jpg" + "https://i.imgur.com/MwWKmtB.jpg", + "https://i.imgur.com/YA7yEng.jpg", + "https://i.imgur.com/jI0VAbJ.jpg", + "https://i.imgur.com/m2HLpgk.jpg", + "https://i.imgur.com/hzAJ5jw.jpg" ], "links": [ - "https://imgflip.com/gif/17uzgd" + "http://bezvrediteley.ru/wp-content/uploads/2015/09/192cfdf4c7cad6223ca60f5bdab203c6-600x256.jpg", + "http://receptymeda.ru/wp-content/uploads/2014/10/658799.jpg", + "http://www.veselinka.ru/uploads/posts/2012-05/1337606201_med01.jpg", + "http://img-fotki.yandex.ru/get/6614/137106206.1cd/0_9dad2_1aa89c0_orig.jpg", + "http://4.bp.blogspot.com/-IV-QmE9-I80/VEbH03_i7XI/AAAAAAAAHLQ/M5BoiJfA-i4/s1600/StingersComparison.jpg", + "https://steemit.com/@kental", + "https://steemit.com/bees/@kental/what-s-going-on-when-the-bees-stings-you", + "https://steemit.com/bees/@kental/how-to-unite-bee-families-beekeeping" ], "tags": [ - "steemit", - "steemart", - "motivation", - "art", - "gif", + "life", + "bees", + "wasps", + "steemsquad", "" + ], + "users": [ + "kental" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 771306248517, - "payout": 0.873, - "payout_at": "2016-08-24T00:07:57", - "pending_payout_value": "0.000 HBD", + "net_rshares": 38029265529764, + "payout": 111.985, + "payout_at": "2016-09-16T18:11:24", + "pending_payout_value": "111.985 HBD", "percent_hbd": 10000, - "permlink": "busy-bees-on-steemit", - "post_id": 308462, + "permlink": "the-impressive-difference-between-bees-and-wasps-bees-vs-wasps", + "post_id": 1187119, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 20 + "total_votes": 107 }, - "title": "Busy bees on steemit", - "updated": "2016-07-23T23:34:03", - "url": "/steemit/@opheliafu/busy-bees-on-steemit" + "title": "The Impressive Difference between Bees and Wasps. Bees VS Wasps!", + "updated": "2016-09-09T18:11:24", + "url": "/life/@kental/the-impressive-difference-between-bees-and-wasps-bees-vs-wasps" }, { "active_votes": [ { - "rshares": 109595483146, - "voter": "nextgenwitness" + "rshares": 6277897641261, + "voter": "riverhead" }, { - "rshares": 2853528223820, - "voter": "pharesim" + "rshares": 3096088916529, + "voter": "lafona-miner" }, { - "rshares": 3098953009, + "rshares": 443061006020, + "voter": "lafona" + }, + { + "rshares": 81873488798, + "voter": "friend5" + }, + { + "rshares": 5699914169116, + "voter": "kushed" + }, + { + "rshares": 1011914952516, + "voter": "silver" + }, + { + "rshares": 2492957496782, + "voter": "silversteem" + }, + { + "rshares": 1694519022060, + "voter": "rossco99" + }, + { + "rshares": 1051863194995, + "voter": "delegate.lafona" + }, + { + "rshares": 311697762128, + "voter": "lafona5" + }, + { + "rshares": 3102878448, "voter": "boy" }, { - "rshares": 3762157484, + "rshares": 3767168138, "voter": "bue-witness" }, { - "rshares": 697282365, + "rshares": 690887085, "voter": "bunny" }, { - "rshares": 53957148226, + "rshares": 7123578719402, + "voter": "complexring" + }, + { + "rshares": 54587279925, "voter": "bue" }, { - "rshares": 2821279392, - "voter": "thepresident" + "rshares": 1662733562, + "voter": "mini" }, { - "rshares": 16161664622, - "voter": "danknugs" + "rshares": 213775837, + "voter": "moon" }, { - "rshares": 1660795487, - "voter": "mini" + "rshares": 554561506946, + "voter": "boatymcboatface" }, { - "rshares": 213655207, - "voter": "moon" + "rshares": 3042886938633, + "voter": "onceuponatime" }, { - "rshares": 8070446640, - "voter": "bentley" + "rshares": 71086328147, + "voter": "vip" + }, + { + "rshares": 24036463791, + "voter": "proctologic" }, { - "rshares": 622693401, + "rshares": 624857579, "voter": "healthcare" }, { - "rshares": 967137774, + "rshares": 969715927, "voter": "daniel.pan" }, { - "rshares": 288133732, + "rshares": 288323465, "voter": "helen.tan" }, { - "rshares": 22084251149, - "voter": "nikolai" - }, - { - "rshares": 840869850, - "voter": "coar" - }, - { - "rshares": 1431534505, - "voter": "murh" + "rshares": 871155136035, + "voter": "cryptogee" }, { - "rshares": 12105765091, - "voter": "thecryptofiend" + "rshares": 13257895731, + "voter": "richman" }, { - "rshares": 12960638669, - "voter": "magnebit" + "rshares": 919351194, + "voter": "weenfan" }, { - "rshares": 19162728146, - "voter": "acassity" + "rshares": 58063139835, + "voter": "avarice" }, { - "rshares": 226931879895, - "voter": "tomkirkham" + "rshares": 12991261550, + "voter": "acidyo" }, { - "rshares": 7756918915, - "voter": "cmtzco" + "rshares": 77030801146, + "voter": "asch" }, { - "rshares": 164136412, - "voter": "steemswede" + "rshares": 311534424581, + "voter": "kevinwong" }, { - "rshares": 2016764833, - "voter": "endgame" + "rshares": 1425562516, + "voter": "murh" }, { - "rshares": 8168668850, - "voter": "noodhoog" + "rshares": 8497142870, + "voter": "gore84" }, { - "rshares": 506839773, - "voter": "luisucv34" + "rshares": 89616888726, + "voter": "theshell" }, { - "rshares": 262099822642, - "voter": "knozaki2015" + "rshares": 4685540713, + "voter": "zebbra2014" }, { - "rshares": 3982979378, - "voter": "cryptohustlin" + "rshares": 112494883007, + "voter": "kenny-crane" }, { - "rshares": 1556310339, - "voter": "tokyodude" + "rshares": 20432932724, + "voter": "ratel" }, { - "rshares": 17803537413, - "voter": "papa-pepper" + "rshares": 208759982510, + "voter": "will-zewe" }, { - "rshares": 1153114340, - "voter": "ace108" + "rshares": 323433867, + "voter": "johnchang" }, { - "rshares": 1553534620, - "voter": "leylar" + "rshares": 5199063182, + "voter": "iloveporn" }, { - "rshares": 56747133, - "voter": "reported" + "rshares": 2795314966, + "voter": "the.bot" }, { - "rshares": 5043425215, - "voter": "jed78" + "rshares": 6323838637, + "voter": "johnbradshaw" }, { - "rshares": 5387965254, - "voter": "theprophet0" + "rshares": 4406798975, + "voter": "the.whale" }, { - "rshares": 58887718, - "voter": "krushing" + "rshares": 4173773953, + "voter": "unicornfarts" }, { - "rshares": 47093177067, - "voter": "capitalism" + "rshares": 42955540324, + "voter": "ezzy" }, { - "rshares": 148152809, - "voter": "btctoken" + "rshares": 46989985219, + "voter": "menta" }, { - "rshares": 16569843788, - "voter": "timelapse" + "rshares": 4405378854, + "voter": "vote" }, { - "rshares": 776735447, - "voter": "minnowsunited" + "rshares": 4642671162, + "voter": "kissmybutt" }, { - "rshares": 60605656, - "voter": "whatyouganjado" + "rshares": 427434426399, + "voter": "juneaugoldbuyer" }, { - "rshares": 460272200, - "voter": "bitcoindon23" + "rshares": 803895825072, + "voter": "slowwalker" }, { - "rshares": 12506647483, - "voter": "jphamer1" + "rshares": 513771608239, + "voter": "neoxian" }, { - "rshares": 100450889, - "voter": "makaveli" + "rshares": 6883570188, + "voter": "anasya" }, { - "rshares": 562498382, - "voter": "future24" + "rshares": 209341257, + "voter": "ardina" }, { - "rshares": 1063686952, - "voter": "bledarus" + "rshares": 1683326700, + "voter": "steem1653" }, { - "rshares": 56109399, - "voter": "alexbones" + "rshares": 237243167, + "voter": "danielkt" }, { - "rshares": 45144402741, - "voter": "anotherjoe" + "rshares": 13577305546, + "voter": "senseiteekay" }, { - "rshares": 89407628671, - "voter": "creadordelfuturo" + "rshares": 11865545750, + "voter": "domavila" }, { - "rshares": 175623645, - "voter": "wuyueling" + "rshares": 7957511795, + "voter": "blinova" }, { - "rshares": 83237614, - "voter": "ozertayiz" + "rshares": 372652841123, + "voter": "knozaki2015" }, { - "rshares": 2039323978, - "voter": "eileenbeach" + "rshares": 13279652608, + "voter": "nippel66" }, { - "rshares": 52498231, - "voter": "salebored" + "rshares": 18531210016, + "voter": "phenom" }, { - "rshares": 6743523304, - "voter": "einsteinpotsdam" + "rshares": 8488410032, + "voter": "rpf" }, { - "rshares": 1734646723, - "voter": "funkywanderer" + "rshares": 7327096445, + "voter": "bitcoiner" }, { - "rshares": 51444457, - "voter": "bitdrone" + "rshares": 5599024621, + "voter": "tarindel" }, { - "rshares": 51436144, - "voter": "sleepcult" + "rshares": 40148010031, + "voter": "celsius100" }, { - "rshares": 55892382, - "voter": "mobios" + "rshares": 45876470752, + "voter": "sauravrungta" }, { - "rshares": 73940467, - "voter": "osame066" + "rshares": 529831361, + "voter": "qonq99" }, { - "rshares": 44725075650, - "voter": "zahnspange" + "rshares": 143386574, + "voter": "bitmap" }, { - "rshares": 185235623517, - "voter": "asksisk" + "rshares": 8173777674, + "voter": "michaeldodridge" }, { - "rshares": 1624291534, - "voter": "burnin" + "rshares": 7658403973, + "voter": "logic" }, { - "rshares": 51250382, - "voter": "rony" + "rshares": 30863432109, + "voter": "smailer" }, { - "rshares": 1366333355, - "voter": "robotev" + "rshares": 142706881, + "voter": "steemster1" }, { - "rshares": 59061931, - "voter": "steemdidge" - } - ], - "author": "jed78", - "author_payout_value": "0.000 HBD", - "author_reputation": 57.38, - "beneficiaries": [], - "blacklists": [], - "body": "\n

 SteemHouse Welcomes New Bees! 

\n

We got our shipment in of bees in today! Finally! Now we can stop with all the inefficient, fake hand pollinating. You can't beat mother nature when it comes to anything in nature! 

\n

 There is a saying about busy bees and let me tell you, these bees started faster than any other bees we have ever had.  Usually, when we get a shipment of bees, we set the out in the Steemhouse, and I run thru the steps to get the hive ready. The last step is to open the little slider that allows the bees out of the hive. 

\n

 I usually sit and watch for any bee movement, and in about four or five minutes they will start to emerge. This time, I walked away for less than a minute and bees were lined up to get out of the hive, granted we often get bees during the colder months so that may slow them down a bit. 

\n
\n

 Let's just hope they keep up the enthusiasm and start some round the clock pollination!

\n
\n

 This is the box that holds the hive inside, these bees do not make honey, but they earn their keep just the same.  The hole that you see right in the center of the lid is the entrance and exit holes, the plastic slider moves up and you can set it to where the bees can move in and out freely or just enter the hive and stay there. This comes in handy if you ever want to relocate the hive. If you were to move the hive while the bees are out, they would be lost. You would have a large swarm of bees hovering where the hive used to be. They have a great memory as far as the location of the hive, but no problem-solving skills to find the new location. 

\n


\n

I shot some video of me setting up the hive and it is awful, it's hard to shoot and work the box with only one hand, so please forgive me for the crap quality, but I think it covers most of it.

\n

https://youtu.be/dSXaLNzWJmM

\n

 And as I said earlier, a little video of the bees ready to get out and work! Hope you enjoy them!

\n

https://youtu.be/W-_rAde9hGw

\n

In Other News

\n

 Quick update on the tomatoes, last week I showed you a few new baby tomatoes. this week they have grown a little bit, getting close to golf ball size. So now with the bees in, we should see new tomatoes start to pack on the vines. Hold on tight folks, the fun is just starting!

\n
\n
\n

 

\n

Sorry for the lack of updates, but things are really moving right now, I'll try to get more updates in as we go.

\n

Thanks for stopping by and hope you come back!

\n


\n", - "category": "gardening", - "children": 9, - "created": "2016-08-31T00:06:57", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/08/30/8303ba16d.jpg", - "https://www.steemimg.com/images/2016/08/30/830297c53.jpg", - "https://img.youtube.com/vi/dSXaLNzWJmM/0.jpg", - "https://img.youtube.com/vi/W-_rAde9hGw/0.jpg", - "https://www.steemimg.com/images/2016/08/30/830c40bb.jpg", - "https://www.steemimg.com/images/2016/08/30/830188220.jpg" - ], - "links": [ - "https://youtu.be/dSXaLNzWJmM", - "https://youtu.be/W-_rAde9hGw" - ], - "tags": [ - "gardening", - "hydroponic", - "food", - "minnowsunite", - "greenhouse" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4126345789243, - "payout": 3.24, - "payout_at": "2016-09-07T00:06:57", - "pending_payout_value": "3.240 HBD", - "percent_hbd": 10000, - "permlink": "steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger", - "post_id": 1063882, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 65 - }, - "title": "SteemHouse Update: The Bees Have Arrived and Tomatoes Grow Larger", - "updated": "2016-08-31T00:06:57", - "url": "/gardening/@jed78/steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger" - }, - { - "active_votes": [ - { - "rshares": 212943674016, - "voter": "lukestokes" + "rshares": 7731559176, + "voter": "steve-mcclair" }, { - "rshares": 57189482, - "voter": "sofabear" + "rshares": 157991769, + "voter": "nickki" }, { - "rshares": 625412642, - "voter": "danstig" - } - ], - "author": "sofabear", - "author_payout_value": "0.146 HBD", - "author_reputation": 41.14, - "beneficiaries": [], - "blacklists": [], - "body": "https://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-3.png\n\nSo, Exactly What are these Important Bees? \nHoney bees are social insects like ants and other hymenoptera. (membrane winged insects) Do you know what being a social insect means? They are insects which live in large groups. These are called colonies and a single honey bee colony can have as many as 60,000 bees in it. With so many bees in each colony, it is important that different jobs are given to different bees, and that each bee knows what it should be doing.\nOrganization is Important for Bees\n\nOrganization is important because the success of the colony is dependent on how well the bees work their jobs. Team work among the colony is vital for the hive to function well. And so for the good of the hive, the entire colony must work as a team. In case you don\u2019t exactly know, a hive is the bee\u2019s home or nest, where eggs are laid and the bees store their ready made honey. Inside the hive, there are three types of bees: the queen, workers, and drones. Each bee has its own purpose within this hive.\n\nhttps://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-4.png\n\nThe Queen of The Hive\nThere is only one queen within a typical hive and \u2013 interesting fact \u2013 the male drones actually do not have stingers. The queen, as well as worker bees, have stings at the end of their abdomens, which they use in emergencies to defend their territory should the hive be attacked. The queen is the largest bee in the hive, with a longer abdomen, a non hairy shiny thorax (middle section). She maintains the colony\u2019s numbers by laying as many eggs as she possibly can, laying up to 2,000 eggs a day.\n\nWorker Bees\nThe worker bees outnumber the other bees in the hive, although they are the smallest members of the beehive. Did you know that, in fact, all worker bees are female? And as I previously mentioned, worker bees have stingers; however, they can only sting once and then they die because when they sting, parts of their internal organs are pulled out with the sting. Ouch.\n\nWhy are Honey Bees So Important\nHoney bees are very important. Why is this? They are the strongest link in the chain between the people who grow the food and the people who eat the food. Without bee pollination, the food we eat could decrease by up to a 3rd. Many fruits such as oranges, apples, peaches, pears, strawberries, cherries, vegetables, nuts and seeds are all pollinated by worker bees. As well as pollinating many crops, honey produced by honey bees is a very important source of energy especially in poorer nations.\n\nHow Can we Help Honey Bees? \nHumans have been harvesting honey for at least 6000 years, possibly longer. At this present time bees are suffering from many conditions which have plummeted their numbers to drastic levels and many hives have mysteriously disappeared. The causes aren\u2019t fully understood, but are usually blamed on the rising use of pesticides, and many diseases which colonies tend to suffer from like the deadly cripaviridae, and chronic bee paralysis virus. Everything in our absolute capability must be done to find the causes. We we must protect bee colonies.\n\nWe must also encourage wild bees by planting flowers, particularly flowers they like, which will help encourage their numbers. It\u2019s quite simple. Without bees, we will not be able to eat the necessary fruits and vegetable we need in our diets. No bees, no ecosystem. If the bees go, they will take us with them.\n\nhttps://savetheearth.coop/wp-content/uploads/2016/07/seeds-300x225.jpg?42a6f2\n\nJoin us here and be part of a movement to make change http://www.crowdfunder.co.uk/save-the-earth-the-peoples-cooperative", - "category": "bees", - "children": 0, - "created": "2016-08-06T16:14:48", - "curator_payout_value": "0.044 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://savetheearth.coop/wp-content/uploads/2016/07/05b9387d-ec48-42d4-bc69-1b4e4f8b8df5-3.png" - ], - "tags": [ - "bees", - "environment", - "selfsufficiancy", - "orgaincfood", - "ecovillages" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 213626276140, - "payout": 0.19, - "payout_at": "2016-09-06T04:43:30", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "what-are-honey-bees-and-why-are-they-important", - "post_id": 646369, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 3 - }, - "title": "What are Honey Bees And Why Are They Important?", - "updated": "2016-08-06T16:14:48", - "url": "/bees/@sofabear/what-are-honey-bees-and-why-are-they-important" - }, - { - "active_votes": [ - { - "rshares": 66341454434, - "voter": "charleshosk" + "rshares": 4547333651, + "voter": "glitterpig" }, { - "rshares": 64600998, - "voter": "avempace" + "rshares": 1783617238, + "voter": "nekromarinist" }, { - "rshares": 34463300251, - "voter": "roy2016" + "rshares": 59219358, + "voter": "sharon" }, { - "rshares": 77365443, - "voter": "prophetdaniel" + "rshares": 58958028, + "voter": "lillianjones" }, { - "rshares": 55343561, - "voter": "hanuk" - } - ], - "author": "prophetdaniel", - "author_payout_value": "0.000 HBD", - "author_reputation": 42.13, - "beneficiaries": [], - "blacklists": [], - "body": "# Ethereum Classic Community Dynamics Proposal\n
![](https://camo.githubusercontent.com/36638974277719d9808e2a5b02021904d0bbf7b1/68747470733a2f2f697066732e706963732f697066732f516d567a5777396b764b69514638594d774e696672315a58515a68624d485a79756433745558744459574d416969)
\n
Ethereum Classic pulsing community. Source Ethereum Classic Slack [#website-design channel](https://ethereumclassic.slack.com/archives/website-design)
\n## Nature Inspired Dynamics\nFor every opportunity presented to Ethereum Classic community I think it should not disencourage going to several random different approaches as a mutant evolving community. If an individual can grab some fruits in one direction awesome. If it starts to starve in another, that direction might be cancelled like in a [L\u00e9vy flight foraging hypothesis](https://en.wikipedia.org/wiki/L%C3%A9vy_flight_foraging_hypothesis) performed by a bee looking for pollen for example.\n\n
![](http://67.media.tumblr.com/771e949dc083a2cb3fb4448639722773/tumblr_nk7hftM19a1qzfsnio5_r1_1280.jpg)
\n
Hive and bees. Source [Geyser of Awesome](http://geyserofawesome.com/post/112481764846/bees-are-awesome-they-pollinate-the-crops-we-rely)
\n\n
![](https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/LevyFlight.svg/364px-LevyFlight.svg.png)
\n
Figure 1. An example of 1000 steps of a L\u00e9vy flight in two dimensions. The origin of the motion is at [0,0], the angular direction is uniformly distributed and the step size is distributed according to a L\u00e9vy (i.e. stable) distribution with \u03b1 = 1 and \u03b2 = 0 which is a Cauchy distribution. Source [wikipedia](https://en.wikipedia.org/wiki/L%C3%A9vy_flight).
\nThe analogy helps to understand a proposed dynamics for the community:\n
    \n
  • Each hive has limited resources depending upon the ecossytem where that hive is located among other factors.
  • \n
  • The species (analogous to the community) can be considered as a population of hives.
  • \n
  • Each bee's purpose is to make its hive and species grow stronger. A bee is a high valued asset for the hive. As each hive is a valued asset for the species.
  • \n
  • A regular bee can develop leadership skills becoming a leading bee.
  • \n
  • A leading bee can form a new hive and should be encouraged to do so.
  • \n
\nAccording to the resources requirement, the selection of the best looking path by a single bee has to somehow be performed. Going into one direction has a cost function related to the bee fatigue. If it doesn't find pollen after a long run, best to abort mission and return to the hive to rest and recover energy. When that happens the hive is encouraged to welcome that bee with proud, happiness and warming comfort.\n\n## Ethereum Classic community development\n
![](http://cdn.ethnews.com/images/1024x512/ETC-declaration-of-independence-1024x512-08-11-2016.jpg)
\n
Source [EthNews](http://www.ethnews.com/)
\nThe community behing Ethereum Classic is growing as time goes by in a healthy and pulsating way preserving its outstanding [values](http://www.ethnews.com/ethereum-classic-declares-their-independence-from-the-foundation) with determination.\n\nGood ideas that boost motivation and drive inspiration are key factors to reward the community with advances in the crypto space. The idea presented here (nature inspired community dynamics) is philosophical and brings people a good understanding of the sense of a true community. In the other hand, it also could raise questions about diverging development efforts.", - "category": "ethereum-classic", - "children": 2, - "created": "2016-08-16T15:44:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://67.media.tumblr.com/771e949dc083a2cb3fb4448639722773/tumblr_nk7hftM19a1qzfsnio5_r1_1280.jpg", - "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d0/LevyFlight.svg/364px-LevyFlight.svg.png", - "http://cdn.ethnews.com/images/1024x512/ETC-declaration-of-independence-1024x512-08-11-2016.jpg" - ], - "links": [ - "https://camo.githubusercontent.com/36638974277719d9808e2a5b02021904d0bbf7b1/68747470733a2f2f697066732e706963732f697066732f516d567a5777396b764b69514638594d774e696672315a58515a68624d485a79756433745558744459574d416969", - "https://ethereumclassic.slack.com/archives/website-design", - "https://en.wikipedia.org/wiki/L%C3%A9vy_flight_foraging_hypothesis", - "http://geyserofawesome.com/post/112481764846/bees-are-awesome-they-pollinate-the-crops-we-rely", - "https://en.wikipedia.org/wiki/L%C3%A9vy_flight", - "http://www.ethnews.com/", - "http://www.ethnews.com/ethereum-classic-declares-their-independence-from-the-foundation" - ], - "tags": [ - "ethereum-classic", - "blockchain", - "governance", - "anarchy", - "community" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 101002064687, - "payout": 0.053, - "payout_at": "2016-08-23T15:44:03", - "pending_payout_value": "0.053 HBD", - "percent_hbd": 10000, - "permlink": "ethereum-classic-community-dynamics-proposal", - "post_id": 835998, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 5 - }, - "title": "Nature Inspired Ethereum Classic Community Dynamics Proposal", - "updated": "2016-08-16T20:56:03", - "url": "/ethereum-classic/@prophetdaniel/ethereum-classic-community-dynamics-proposal" - }, - { - "active_votes": [ + "rshares": 20100667517, + "voter": "kental" + }, { - "rshares": 437649972, - "voter": "radium" + "rshares": 1849407727, + "voter": "t3ran13" }, { - "rshares": 581926584818, - "voter": "anwenbaumeister" + "rshares": 65700905298, + "voter": "krishtopa" }, { - "rshares": 257086014, - "voter": "ben99" + "rshares": 59410849, + "voter": "msjennifer" }, { - "rshares": 496565733, - "voter": "uniwhisp" + "rshares": 55911760, + "voter": "ciao" }, { - "rshares": 545196072, - "voter": "suchnewb" + "rshares": 94507255, + "voter": "moodledidoodledi" }, { - "rshares": 4595612490, - "voter": "dwinblood" + "rshares": 1442565857, + "voter": "villainblack" }, { - "rshares": 251855429, - "voter": "karenmckersie" + "rshares": 8633950551, + "voter": "thebotkiller" }, { - "rshares": 7495281, - "voter": "cire81" + "rshares": 62981842, + "voter": "kpine" }, { - "rshares": 40659190, - "voter": "culoemono" + "rshares": 55449983, + "voter": "steemo" }, { - "rshares": 118418205, - "voter": "kenj" + "rshares": 55306941, + "voter": "steema" }, { - "rshares": 31969416, - "voter": "olympics" + "rshares": 67990404, + "voter": "confucius" }, { - "rshares": 8853305754, - "voter": "escaua" + "rshares": 61099434, + "voter": "maztrix" }, { - "rshares": 65207235, - "voter": "d3nv3r" + "rshares": 56143792, + "voter": "jarvis" }, { - "rshares": 58054872, - "voter": "thomas.shirk" - } - ], - "author": "kenj", - "author_payout_value": "0.794 HBD", - "author_reputation": 38.22, - "beneficiaries": [], - "blacklists": [], - "body": "I managed to keep a hive from May, though the winter, and still going strong. Currently I have three hives and should work those into five or more next year. In my introduction post @smellz asked about pictures of my bees, so here goes that and then some. \n\nPictures from my experiences | .\n------------ | -------------\nhttps://lh3.googleusercontent.com/-S7U7WEaP1Nk/V5gmA_WxpmI/AAAAAAAASBU/JCW8kYWolsM8sdQaUX932sF7IGQvIjhbgCL0B/w426-h757/20160604_120338.jpg | https://lh4.googleusercontent.com/-PhxgA-2AgK4/V5gyfnqq-YI/AAAAAAAASDg/e3VgNPkRlg4e0Nh1Hi0-heYiiHNQhYz-gCL0B/w588-h331-no/20150614_083047.jpg\nlanding zone | curious pup checking out a feeder\nhttps://lh3.googleusercontent.com/-X6M2lLHKmK8/V5gvVsIY0kI/AAAAAAAASB8/vOt3Pbs7OKAaqYpIeKOjEu6RSzF9BfslwCL0B/w506-h285/20160515_084600.jpg | https://lh3.googleusercontent.com/-2B8sYOh7Clw/V5gyYdsV8kI/AAAAAAAASDg/aZ6lR1SXroQj62PB3qSNB7hpBORkZhjMgCL0B/w586-h781-no/24may2015d.JPG\nbasic stand | lotta bees\nhttps://lh6.googleusercontent.com/-8vcm79ZhIwQ/V5gyhphl6aI/AAAAAAAASDg/Lle8Vhjeeio9XJ6IVHFNk9XsHUwIQufoQCL0B/w589-h442-no/IMG_0285.JPG | https://lh6.googleusercontent.com/-TAyL_T1X3dA/V5gyaFz24CI/AAAAAAAASDg/C3izjhHCaAYitNmyJamaWoJ3nGr_iNddwCL0B/w588-h331-no/duoXxx.jpg\na frame with capped honey at top brood on the bottom | starter setup\n\n# BASICS\n1. There is only one queen\n2. Almost all bees are female, only drones are male\n3. Basically all drones do is mate (then die)\n4. Drones can't sting\n5. If you keep bees you will get stung once in a while\n6. Most people aren't endangered by a sting, it's just a pain and discomfort\n7. Bees are hairy looking. Wasps, yellow jackets and such are smooth. \n8. If all the honey bees in North America died tomorrow it wouldn't stop pollination from happening and thus we all would *not* starve. Honey bees were imported from Europe so native pollinators would still be around.\n9. A hive will have 10 - 40 thousand bees or more\n10. For each bee you may only get one drop of honey\n11. It is common to harvest forty pounds of honey or more from a good hive \n12. A good bee keeper can split one hive into two or three per year but will not get much honey \n13. You probably will lose a hive in your first year of learning\n\nIf you are interested in beekeeping the best thing you can do is find a group near you and start attending meetings. Local factors are important and you'll meet experienced keepers, they are your most valuable resource. Keep in mind that if you ask five bee keepers about a specific subject you could get six answers. So glean what you can, respect the source, compare how things work out for you, ask more questions and then gauge what methods prove out. \n\nShould you decide to take up this hobby you'll find many guides telling you what a starter kit should have. The obvious things are: \n### Hive parts\nBottom (base), Hive body (deep and medium sizes), frames (these go in the body), inner cover, outer cover (weather proof)\n### Tools & Gear\nVeil and hat, hive tool, smoker, gloves\n### Bees\nYou need to obtain live bees! It can be done via mail, believe it or not the post office will even call you on a Sunday to come pick them up. Or you can get them delivered via private carrier. Since you've met up with long time bee keeps months ahead of time you can expect one or more of them to be selling when the time is right. Order in advance and have all your equipment ready! Not only will you help support a possible mentor you save the girls all the stress of being boxed up and hauled hundreds of miles. \nA package of bees is the cheapest and consists of a three frames with brood (eggs, larva), nurse bees, worker bees and a queen.\nA nucleus (aka "nuc") will be five frames of bees. The more the merrier so this is most common for people to start with.\nOf course you can also find a complete hive for sale and if you have an experienced inspector check it out then it has the optimal chances to survive and provide you honey soonest.\nOne more thing; it's highly recommended that you begin with two hives so you can observe the differences in them and have a better success rate.\n\nAll said you can expect to spend close to a thousand dollars and wait months before you get that first jar of honey. This is not a hobby for impatient folks but it is a fascinating one.\n\nSince starting I have learned to feed bees, eaten honey from my own hive, what pests and diseases to check for, captured a swarm of bees from inside someone's wall, made new friends, been stunned by loss and learned to build basic parts. I've ditched the gloves and just let the bees walk on my hands while I inspect the hive for health and monitor honey and pollen stores.\n\nswarm capture pics | .\n------------ | -------------\nhttps://lh6.googleusercontent.com/-Kyb9C7gBuDY/V5gyadnMmTI/AAAAAAAASDg/m-iycBQZnY0-ngSe6p3dgP2hJ54zcsQTACL0B/w588-h331-no/swarmCapture1.jpg | https://lh4.googleusercontent.com/-Dd6sZVh1Z8w/V5gya25ajuI/AAAAAAAASDg/hKQS8USbcns3mXfMsQEqkR9QocK73zsZwCL0B/w588-h331-no/swarmCapture2.jpg \nI literally just scooped bees out of a wall cavity and dumped them into this box. And another box and another.| Then poured them into an empty hive! After closing it up I let all the stragglers find their way to the new home.\n\n\n\n\nIf you've made it this far then you're ready to get out to the nearest club to learn more. Best of luck!\n\n\nAsk Me Anything", - "category": "bees", - "children": 5, - "created": "2016-07-27T05:08:27", - "curator_payout_value": "0.108 HBD", - "depth": 0, - "is_paidout": true, - "json_metadata": { - "image": [ - "https://lh3.googleusercontent.com/-S7U7WEaP1Nk/V5gmA_WxpmI/AAAAAAAASBU/JCW8kYWolsM8sdQaUX932sF7IGQvIjhbgCL0B/w426-h757/20160604_120338.jpg" - ], - "links": [ - "https://steemit.com/introduceyourself/@kenj/hey-there-i-m-ken" - ], - "tags": [ - "bees", - "beekeeping", - "apiary", - "honey" - ], - "users": [ - "smellz" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 597685660481, - "payout": 0.902, - "payout_at": "2016-08-26T17:24:21", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "intro-to-bees-ama", - "post_id": 395175, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 14 - }, - "title": "Intro to bees (AMA)", - "updated": "2016-07-27T05:12:30", - "url": "/bees/@kenj/intro-to-bees-ama" - }, - { - "active_votes": [ + "rshares": 54313084, + "voter": "fortuner" + }, { - "rshares": 640801360232, - "voter": "barrie" + "rshares": 305152688, + "voter": "natako" }, { - "rshares": 2754029365198, - "voter": "proskynneo" + "rshares": 70914511285, + "voter": "serejandmyself" }, { - "rshares": 141389765592, - "voter": "highasfuck" + "rshares": 4288602139, + "voter": "almerri" }, { - "rshares": 2288951832086, - "voter": "hr1" + "rshares": 844753811, + "voter": "alexma3x" }, { - "rshares": 7420156892577, - "voter": "tombstone" + "rshares": 54220781, + "voter": "johnbyrd" }, { - "rshares": 3372913545514, - "voter": "wang" + "rshares": 54218223, + "voter": "thomasaustin" }, { - "rshares": 2471431703, - "voter": "boy" + "rshares": 54216305, + "voter": "thermor" }, { - "rshares": 2999681908, - "voter": "bue-witness" + "rshares": 54213405, + "voter": "ficholl" }, { - "rshares": 562186630, - "voter": "bunny" + "rshares": 54209199, + "voter": "widell" }, { - "rshares": 42099094227, - "voter": "bue" + "rshares": 9279806015, + "voter": "elissahawke" }, { - "rshares": 1324776194, - "voter": "mini" + "rshares": 86298855286, + "voter": "icfiedler" }, { - "rshares": 170731788, - "voter": "moon" + "rshares": 53821337, + "voter": "revelbrooks" }, { - "rshares": 113896982652, - "voter": "alex90342fastn1" + "rshares": 61333985, + "voter": "mrlogic" }, { - "rshares": 410772782927, - "voter": "recursive2" + "rshares": 12727274689, + "voter": "nastik" }, { - "rshares": 2727014063776, - "voter": "recursive" + "rshares": 6943033114, + "voter": "craigwilliamz" }, { - "rshares": 889536184075, - "voter": "boombastic" + "rshares": 22103026376, + "voter": "mandibil" }, { - "rshares": 124551070886, - "voter": "mrs.agsexplorer" + "rshares": 2491473721, + "voter": "shadowspub" }, { - "rshares": 9339107692, - "voter": "bingo-0" + "rshares": 53853911, + "voter": "curpose" }, { - "rshares": 2388248698, - "voter": "bingo-1" + "rshares": 711958265, + "voter": "dajohns1420" }, { - "rshares": 1207243588756, - "voter": "steempower" + "rshares": 64112233, + "voter": "iosif" }, { - "rshares": 497044136, - "voter": "healthcare" + "rshares": 57495309, + "voter": "dubloon135" }, { - "rshares": 734326610, - "voter": "daniel.pan" + "rshares": 1979620595, + "voter": "daveks" }, { - "rshares": 131666156835, - "voter": "team" + "rshares": 7313571812, + "voter": "einsteinpotsdam" }, { - "rshares": 980597524, - "voter": "relativelyboston" + "rshares": 2536071185, + "voter": "richardcrill" }, { - "rshares": 230193744, - "voter": "helen.tan" + "rshares": 53961187, + "voter": "troich" }, { - "rshares": 57633394586, - "voter": "noaommerrr" + "rshares": 3100045714, + "voter": "xanoxt" }, { - "rshares": 464536603135, - "voter": "dana-edwards" + "rshares": 33459164312, + "voter": "daxon" }, { - "rshares": 6087528729, - "voter": "full-measure" + "rshares": 52842496, + "voter": "crion" }, { - "rshares": 15810330031, - "voter": "fkn" + "rshares": 52505412, + "voter": "hitherise" }, { - "rshares": 411899413, - "voter": "paco-steem" + "rshares": 52496656, + "voter": "wiss" }, { - "rshares": 4718442924, - "voter": "spaninv" + "rshares": 52338043, + "voter": "benaccept" }, { - "rshares": 330793167340, - "voter": "teamsteem" + "rshares": 53252658, + "voter": "stroully" }, { - "rshares": 20759345572, - "voter": "elishagh1" + "rshares": 715921724, + "voter": "masonmiler" }, { - "rshares": 735181413, - "voter": "wolf" + "rshares": 52916909, + "voter": "thadm" }, { - "rshares": 588940977, - "voter": "n25052016" + "rshares": 52915101, + "voter": "prof" }, { - "rshares": 5031973733, - "voter": "cian.dafe" + "rshares": 51451058, + "voter": "yorsens" }, { - "rshares": 2146447798, - "voter": "coar" + "rshares": 148947065291, + "voter": "asksisk" }, { - "rshares": 406127350289, - "voter": "kevinwong" + "rshares": 52242652, + "voter": "bane" }, { - "rshares": 2159284677, - "voter": "murh" + "rshares": 52236265, + "voter": "vive" }, { - "rshares": 18708488245, - "voter": "vippero" + "rshares": 52230725, + "voter": "coad" }, { - "rshares": 431433572273, - "voter": "cyber" + "rshares": 52988378, + "voter": "sofa" }, { - "rshares": 141944533, - "voter": "irit" + "rshares": 55483558, + "voter": "plantbasedjunkie" }, { - "rshares": 188222890396, - "voter": "billbutler" + "rshares": 1103090289, + "voter": "jessicanicklos" }, { - "rshares": 44361054998, - "voter": "justtryme90" + "rshares": 51979174, + "voter": "ailo" }, { - "rshares": 4174428400, - "voter": "andre-ager" + "rshares": 50441122, + "voter": "eavy" }, { - "rshares": 322054367, - "voter": "stiletto" + "rshares": 51468937, + "voter": "roto" }, { - "rshares": 109489279946, - "voter": "kenny-crane" + "rshares": 61150802, + "voter": "mlialen" }, { - "rshares": 19541651162, - "voter": "samether" + "rshares": 2589651953, + "voter": "terrano" }, { - "rshares": 68065212431, - "voter": "ratel" + "rshares": 149431899, + "voter": "flowergirl" }, { - "rshares": 129372747086, - "voter": "schro" + "rshares": 50223099, + "voter": "battalar" }, { - "rshares": 6203206625, - "voter": "mark-waser" + "rshares": 51218466, + "voter": "weare" }, { - "rshares": 49829689749, - "voter": "geoffrey" + "rshares": 50938725, + "voter": "haved" }, { - "rshares": 40207437553, - "voter": "honeythief" + "rshares": 50873654, + "voter": "palladium" }, { - "rshares": 2458834239, - "voter": "fuck.off" + "rshares": 50794039, + "voter": "autodesk" }, { - "rshares": 3349447356, - "voter": "iloveporn" + "rshares": 50570250, + "voter": "ziggo" }, { - "rshares": 4073325651, - "voter": "johnbradshaw" + "rshares": 50532230, + "voter": "friends" }, { - "rshares": 9145245341, - "voter": "primus" + "rshares": 74402358, + "voter": "igtes" }, { - "rshares": 61099645784, - "voter": "norbu" + "rshares": 79925315, + "voter": "brainup" }, { - "rshares": 2840673122, - "voter": "the.whale" + "rshares": 157643687, + "voter": "buffett" + } + ], + "author": "kental", + "author_payout_value": "0.000 HBD", + "author_reputation": 63.52, + "beneficiaries": [], + "blacklists": [], + "body": "### Hi. Many people ask themselves the question of how bees make honey. Many people use Google to find out. And I will tell you simply and clearly. Read it carefully.\nhttp://img11.nnm.me/c/5/1/2/3/780b4e8a7df6f83e03267d90676.jpg\nImage Source\n\n## How bees make honey?\n\nHoney flow \u2013 the basic direction of activity of the bees. All the efforts of the nest, collecting and harvesting of honey products. Individual family members have different functions, however, their common goal is Honey.\n\n### The duties of the bees family: \n\n- search for new sources of pollen and nectar;\n\n- the production of honey and transport it to the hive;\n\n- production of wax and the construction of hundreds of reservoirs for honey mass;\n\n- the packaging of honey in the cells of the honeycomb;\n\n- create new members the Queen bee of the bees family to the future honey flow;\n\n- defence reserves of honey, brood and bee Queen.\nhttp://p4elovodam.ru/wp-content/uploads/2011/11/stroiat-sota.jpg\nImage Source\n\n## The collection of nectar\n\nThe whole process of making honey starts with the collection of nectar. Only the air warms up to 12 degrees, the insects Wake up from their slumber and begin the first cleansing flights, getting rid of cold outside fecal accumulation. How bees make honey only when the first honey plants bloom, have winged workers have enough time to prepare for the season of honey (cleaning the hive, honeycomb, and frame check).\n\nWhat flowers are in bloom, the colony learns from scouts that deal exclusively with those that patrol the area in search of lawns with flowers. Once they find them, using special signaling dance will tell the whole family. A swarm of miners excited and ready to fly to the object. Was headed by the scout bees fly to the honey-gathering place and begin production of nectar and pollen.\n\n## How bees collect nectar ?\nAbout it, you'll look in this video:\nhttps://youtu.be/3fCvkNuUBiQ\n\n## The process of honey production\n\nThe obtained from bees nectar are distributed working bees : one part of it goes to feed the larvae and the honey.\nhttp://www.kartinki24.ru/uploads/gallery/main/312/kartinki24_insects_bees_0019.jpg\nImage Source\n\nHow bees make honey, is a complex, unique process: \n\n- first, bees have long and carefully to chew the nectar. At this time it is actively fermented. Sugar breaks down into glucose and fructose, the substance becomes more digestible. In addition, the saliva of the bee has bactericidal action disinfects nectar and honey derived from it, the longer it is stored;\n\n- ready to chew and sweetness unfolds on a pre-prepared cell. The cells are filled about 2 thirds;\n\n- now the main task \u2013 to accelerate the evaporation of excess moisture. For this, insects flap their wings, raising the temperature in the hive. Gradually, the moisture evaporates and forms a viscous syrup, consisting of 75-80% glucose and fructose and 5% sucrose (the same percentage of Sugars in honey because of its easily digestible);\n\n- a cell of sealed honey wax tubes and left to Mature. In test tubes with wax, also contains enzymes in bee saliva that further disinfect the cells and prevents liquefaction and fermentation of the finished product.\n## How Do Bees Make Honey?\nThis video about it!\nhttps://youtu.be/nZlEjDLJCmg\n\nI like bees and honey. \n\nThank you for your attention!\n\n@kental with you!\n\nLet's learn beekeeping together!\n\nFollow me If you want to learn more about beekeeping! ", + "category": "bees", + "children": 8, + "created": "2016-09-06T05:42:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://img11.nnm.me/c/5/1/2/3/780b4e8a7df6f83e03267d90676.jpg", + "http://p4elovodam.ru/wp-content/uploads/2011/11/stroiat-sota.jpg", + "https://img.youtube.com/vi/3fCvkNuUBiQ/0.jpg", + "http://www.kartinki24.ru/uploads/gallery/main/312/kartinki24_insects_bees_0019.jpg", + "https://img.youtube.com/vi/nZlEjDLJCmg/0.jpg" + ], + "links": [ + "http://img11.nnm.me/c/5/1/2/3/780b4e8a7df6f83e03267d90676.jpg", + "http://p4elovodam.ru/wp-content/uploads/2011/11/stroiat-sota.jpg", + "https://youtu.be/3fCvkNuUBiQ", + "http://www.kartinki24.ru/uploads/gallery/main/312/kartinki24_insects_bees_0019.jpg", + "https://youtu.be/nZlEjDLJCmg", + "https://steemit.com/@kental" + ], + "tags": [ + "bees", + "beekeepering", + "honey", + "steemsquad" + ], + "users": [ + "kental" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 37837531019001, + "payout": 151.164, + "payout_at": "2016-09-13T05:42:09", + "pending_payout_value": "151.164 HBD", + "percent_hbd": 10000, + "permlink": "how-bees-make-honey-the-collection-of-nectar-how-bees-collect-nectar", + "post_id": 1143487, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 152 + }, + "title": "How Bees Make Honey. The collection of nectar. How bees collect nectar.", + "updated": "2016-09-06T05:42:09", + "url": "/bees/@kental/how-bees-make-honey-the-collection-of-nectar-how-bees-collect-nectar" + }, + { + "active_votes": [ + { + "rshares": 3370763019096, + "voter": "wang" }, { - "rshares": 8489838449, - "voter": "cannav" + "rshares": 3716393231, + "voter": "boy" }, { - "rshares": 245621205, - "voter": "russle" + "rshares": 2018736530061, + "voter": "xeroc" }, { - "rshares": 8433966392, - "voter": "dasha" + "rshares": 4511375320, + "voter": "bue-witness" }, { - "rshares": 2691550256, - "voter": "unicornfarts" + "rshares": 836372556, + "voter": "bunny" }, { - "rshares": 75707948920, - "voter": "rubybian" + "rshares": 491037814113, + "voter": "ajvest" }, { - "rshares": 2105090006, - "voter": "orly" + "rshares": 64458777800, + "voter": "bue" }, { - "rshares": 1048984163, - "voter": "bitcointop" + "rshares": 1991756697, + "voter": "mini" }, { - "rshares": 11075736394, - "voter": "konstantin" + "rshares": 256330811, + "voter": "moon" }, { - "rshares": 111265427, - "voter": "soupernerd" + "rshares": 623883875204, + "voter": "masteryoda" }, { - "rshares": 4899593083, - "voter": "cmtzco" + "rshares": 106091578017, + "voter": "bonapartist" }, { - "rshares": 11082944191, - "voter": "stealthtrader" + "rshares": 11442714264, + "voter": "proctologic" }, { - "rshares": 2840901076, - "voter": "vote" + "rshares": 746881679, + "voter": "healthcare" }, { - "rshares": 60687478640, - "voter": "jackkang" + "rshares": 855894993737, + "voter": "tuck-fheman" }, { - "rshares": 2991126117, - "voter": "kissmybutt" + "rshares": 1159981233, + "voter": "daniel.pan" }, { - "rshares": 31785851320, - "voter": "r4fken" + "rshares": 299893452698, + "voter": "chitty" }, { - "rshares": 512160635, - "voter": "endgame" + "rshares": 6646348234, + "voter": "patrice" + }, + { + "rshares": 345661496, + "voter": "helen.tan" + }, + { + "rshares": 13737465174, + "voter": "gregory-f" + }, + { + "rshares": 23532851956, + "voter": "instructor2121" + }, + { + "rshares": 1965487747, + "voter": "jerome-colley" }, { - "rshares": 203116499499, - "voter": "slowwalker" + "rshares": 20572124000, + "voter": "acidyo" }, { - "rshares": 33445136629, - "voter": "furion" + "rshares": 138094111002, + "voter": "steve-walschot" }, { - "rshares": 537097998, - "voter": "busser" + "rshares": 53914539744, + "voter": "oaldamster" }, { - "rshares": 1581202684, - "voter": "owdy" + "rshares": 1411861696, + "voter": "coar" }, { - "rshares": 376056431, - "voter": "barbara2" + "rshares": 73816010256, + "voter": "asch" }, { - "rshares": 416574219, - "voter": "ch0c0latechip" + "rshares": 2144715220, + "voter": "murh" }, { - "rshares": 385501453, - "voter": "doge4lyf" + "rshares": 41349153995, + "voter": "ranko-k" }, { - "rshares": 1311952491, - "voter": "marcgodard" + "rshares": 457365085, + "voter": "treeleaves" }, { - "rshares": 18986910263, - "voter": "akareyon" + "rshares": 373381756141, + "voter": "taoteh1221" }, { - "rshares": 4368657675, - "voter": "gikitiki" + "rshares": 364318019, + "voter": "applecrisp" }, { - "rshares": 10090049062, - "voter": "asim" + "rshares": 6961474454, + "voter": "givemeyoursteem" }, { - "rshares": 3852695264, - "voter": "thegoodguy" + "rshares": 13310507864, + "voter": "samether" }, { - "rshares": 348268157951, - "voter": "bobbylee" + "rshares": 49112341218, + "voter": "thecryptodrive" }, { - "rshares": 189619118, - "voter": "zoicneo" + "rshares": 120980010120, + "voter": "bravenewcoin" }, { - "rshares": 329672708, - "voter": "dr2073" + "rshares": 69685458255, + "voter": "herzmeister" }, { - "rshares": 570631386, - "voter": "pigatto" + "rshares": 28898266287, + "voter": "everythink" }, { - "rshares": 1670036281, - "voter": "screasey" + "rshares": 441273170513, + "voter": "infovore" }, { - "rshares": 52545625104, - "voter": "milestone" + "rshares": 438907956, + "voter": "magdalena" }, { - "rshares": 2163609626, - "voter": "dimon14" + "rshares": 141004228310, + "voter": "schro" }, { - "rshares": 7127093424, - "voter": "cryptojoy.com" + "rshares": 136510118400, + "voter": "thedashguy" }, { - "rshares": 2186090626, - "voter": "imp3" + "rshares": 5827019645, + "voter": "mark-waser" }, { - "rshares": 413811506, - "voter": "natalyt" + "rshares": 234296653518, + "voter": "lukestokes" }, { - "rshares": 163174319449, - "voter": "calaber24p" + "rshares": 4543981642, + "voter": "ben99" }, { - "rshares": 13484617970, - "voter": "mustafaomar" + "rshares": 5753790444, + "voter": "magnebit" }, { - "rshares": 5891987414, - "voter": "tarindel" + "rshares": 62464802399, + "voter": "razvanelulmarin" }, { - "rshares": 39535512113, - "voter": "sauravrungta" + "rshares": 1919856958, + "voter": "superfreek" }, { - "rshares": 12733320861, - "voter": "positive" + "rshares": 1057194488, + "voter": "wisehammer" }, { - "rshares": 1123625403, - "voter": "yarly" + "rshares": 35894808596, + "voter": "cryptoiskey" }, { - "rshares": 248358280, - "voter": "yarly2" + "rshares": 28328356527, + "voter": "acassity" }, { - "rshares": 248731455, - "voter": "yarly3" + "rshares": 4144765674, + "voter": "azaan" }, { - "rshares": 144087185, - "voter": "yarly4" + "rshares": 5474192369, + "voter": "arcaneinfo" }, { - "rshares": 144901897, - "voter": "yarly5" + "rshares": 250229854, + "voter": "ladyclair" }, { - "rshares": 82655604, - "voter": "yarly7" + "rshares": 48422672327, + "voter": "bacchist" }, { - "rshares": 7288499495, - "voter": "alsprinting" + "rshares": 7509515373, + "voter": "cannav" }, { - "rshares": 771047095, - "voter": "politicasan2" + "rshares": 9249115921, + "voter": "romait" }, { - "rshares": 12127833213, - "voter": "lemooljiang" + "rshares": 4975536259, + "voter": "expanse" }, { - "rshares": 447589203, - "voter": "kooshikoo" + "rshares": 2649803356, + "voter": "soupernerd" }, { - "rshares": 614207849, - "voter": "curator" + "rshares": 44780842484, + "voter": "menta" }, { - "rshares": 288622071, - "voter": "yarly10" + "rshares": 14079754966, + "voter": "yogi.artist" }, { - "rshares": 226031185, - "voter": "alex.chien" + "rshares": 20041232983, + "voter": "mindover" }, { - "rshares": 151532488, - "voter": "yarly11" + "rshares": 66070094, + "voter": "steemswede" }, { - "rshares": 74716626, - "voter": "yarly12" + "rshares": 226147199, + "voter": "adamgud" }, { - "rshares": 396551546, - "voter": "fnait" + "rshares": 56445584042, + "voter": "derekareith" }, { - "rshares": 389025700, - "voter": "keepcalmand" + "rshares": 536360473, + "voter": "rxhector" }, { - "rshares": 3033229074, - "voter": "bkkshadow" + "rshares": 63143114580, + "voter": "furion" }, { - "rshares": 81930668, - "voter": "elliottgodard" + "rshares": 24615091776, + "voter": "strangerarray" }, { - "rshares": 112996238, - "voter": "creatorgalaxy" + "rshares": 10433095430, + "voter": "spiz0r" }, { - "rshares": 179979763, - "voter": "taz" + "rshares": 10365174465, + "voter": "ausbitbank" }, { - "rshares": 8235792162, - "voter": "youngkim" + "rshares": 670273570, + "voter": "steem1653" }, { - "rshares": 101853977, - "voter": "steemster1" + "rshares": 168947762452, + "voter": "anyx" }, { - "rshares": 104226163, - "voter": "jlwk0lb" + "rshares": 142215696802, + "voter": "repholder" }, { - "rshares": 13303963198, - "voter": "williambanks" + "rshares": 189544385979, + "voter": "jesta" }, { - "rshares": 109235699, - "voter": "weenis" + "rshares": 5276685276, + "voter": "karen13" }, { - "rshares": 37360019593, - "voter": "shaka" + "rshares": 34452081459, + "voter": "diana.catherine" }, { - "rshares": 5417518397, - "voter": "mahekg" + "rshares": 13663044222, + "voter": "dwinblood" }, { - "rshares": 2035308569, - "voter": "theprophet0" + "rshares": 8969098809, + "voter": "meesterboom" }, { - "rshares": 51143991, - "voter": "sharon" + "rshares": 14274121007, + "voter": "jaycobbell" }, { - "rshares": 50234451, - "voter": "johnblow" + "rshares": 8828405906, + "voter": "allmonitors" }, { - "rshares": 784525289, - "voter": "merej99" + "rshares": 70065210728, + "voter": "inertia" }, { - "rshares": 50731326, - "voter": "lillianjones" + "rshares": 6919066301, + "voter": "lichtblick" }, { - "rshares": 470586608, - "voter": "minnowsunited" + "rshares": 120162058, + "voter": "wildchild" }, { - "rshares": 445770867255, - "voter": "glitterfart" + "rshares": 12387394181, + "voter": "nippel66" }, { - "rshares": 2138921260, - "voter": "darrenturetzky" + "rshares": 2939478253, + "voter": "imp3" }, { - "rshares": 37421781450, - "voter": "joele" + "rshares": 1487880898, + "voter": "iamwne" }, { - "rshares": 61374242, - "voter": "makaveli" + "rshares": 220031099851, + "voter": "calaber24p" }, { - "rshares": 51120963, - "voter": "msjennifer" + "rshares": 56921332898, + "voter": "thylbom" }, { - "rshares": 50828873, - "voter": "ciao" + "rshares": 28777395361, + "voter": "royaltiffany" }, { - "rshares": 5557329445, - "voter": "thebotkiller" + "rshares": 3227397574, + "voter": "bones" }, { - "rshares": 50521096, - "voter": "steemo" + "rshares": 17691606618, + "voter": "bendjmiller222" }, { - "rshares": 50390768, - "voter": "steema" + "rshares": 7778747906, + "voter": "tarindel" }, { - "rshares": 1585842664, - "voter": "erikclark13" + "rshares": 19633543541, + "voter": "celsius100" }, { - "rshares": 145150689, - "voter": "gamerate" + "rshares": 43607525276, + "voter": "sauravrungta" }, { - "rshares": 225506459, - "voter": "vootka" + "rshares": 246045180632, + "voter": "jl777" }, { - "rshares": 50183394, - "voter": "confucius" + "rshares": 1139144177, + "voter": "politicasan2" }, { - "rshares": 61696026, - "voter": "immortality" + "rshares": 114213797, + "voter": "grin" }, { - "rshares": 102038122954, - "voter": "miacats" + "rshares": 24393303610, + "voter": "team-leibniz" }, { - "rshares": 60886073, - "voter": "tomeraddady" + "rshares": 35567732014, + "voter": "fatboy" }, { - "rshares": 114975081, - "voter": "future-shock" + "rshares": 7289374494, + "voter": "webdeals" }, { - "rshares": 52952823, - "voter": "party1998" + "rshares": 22100599535, + "voter": "proto" }, { - "rshares": 61167862, - "voter": "immortal" + "rshares": 598459575, + "voter": "curator" }, { - "rshares": 51153233, - "voter": "jarvis" + "rshares": 31223582636, + "voter": "brianphobos" }, { - "rshares": 442742582, - "voter": "abc1621043211" + "rshares": 9379809106, + "voter": "michaeldodridge" }, { - "rshares": 50692212, - "voter": "fortuner" + "rshares": 1945721967, + "voter": "tygergamer" }, { - "rshares": 60661014, - "voter": "rashka" + "rshares": 719753883, + "voter": "steemuwe" }, { - "rshares": 139203837, - "voter": "jimmytwoshoes" + "rshares": 77368907, + "voter": "nicoleta" }, { - "rshares": 50684643, - "voter": "johnbyrd" + "rshares": 34353610364, + "voter": "jasonstaggers" }, { - "rshares": 50682252, - "voter": "thomasaustin" + "rshares": 2601777531, + "voter": "weenis" }, { - "rshares": 50680459, - "voter": "thermor" + "rshares": 103656599962, + "voter": "steemdrive" }, { - "rshares": 50677748, - "voter": "ficholl" + "rshares": 11048161290, + "voter": "taker" }, { - "rshares": 1643997345, - "voter": "shneakysquirrel" + "rshares": 1884834922, + "voter": "sykochica" }, { - "rshares": 57640568, - "voter": "longtech" + "rshares": 2640573956, + "voter": "timcliff" }, { - "rshares": 1502682115, - "voter": "movievertigo" + "rshares": 20204434115, + "voter": "yng-entrepreneur" }, { - "rshares": 50311250, - "voter": "revelbrooks" + "rshares": 25934610459, + "voter": "laonie1" }, { - "rshares": 890700319, - "voter": "levycore" + "rshares": 26492606089, + "voter": "laonie2" }, { - "rshares": 13792527351, - "voter": "yef99" + "rshares": 26504067845, + "voter": "laonie3" }, { - "rshares": 2860940315, - "voter": "netaterra" + "rshares": 1570153730, + "voter": "feelapi" }, { - "rshares": 59110838, - "voter": "metu2222" + "rshares": 9421789992, + "voter": "viktor.phuket" }, { - "rshares": 26094708892, - "voter": "andrewawerdna" + "rshares": 9009430361, + "voter": "aleksandraz" }, { - "rshares": 58064982, - "voter": "zite" + "rshares": 4888677510, + "voter": "minion" }, { - "rshares": 68588220, - "voter": "joelbow" + "rshares": 1163632772, + "voter": "andrew0" }, { - "rshares": 17336813419, - "voter": "hilarski" + "rshares": 26500014017, + "voter": "laonie4" }, { - "rshares": 54826818, - "voter": "shadowspub" + "rshares": 26499037280, + "voter": "laonie5" }, { - "rshares": 50416427, - "voter": "curpose" + "rshares": 26496510008, + "voter": "laonie6" }, { - "rshares": 57998423, - "voter": "feminism" + "rshares": 26493787766, + "voter": "laonie7" }, { - "rshares": 59034939, - "voter": "rwgunderson" + "rshares": 26491146749, + "voter": "laonie8" }, { - "rshares": 92828372, - "voter": "runridefly" + "rshares": 713974649, + "voter": "romancs" }, { - "rshares": 4573219528, - "voter": "io-io-io" + "rshares": 26489725839, + "voter": "laonie9" }, { - "rshares": 995495327, - "voter": "jeffreyahann" + "rshares": 136228051, + "voter": "luke490" }, { - "rshares": 2230532056, - "voter": "einsteinpotsdam" + "rshares": 1315422750, + "voter": "dolov" }, { - "rshares": 100188566, - "voter": "arnoldwish" + "rshares": 9568495848, + "voter": "jphamer1" }, { - "rshares": 34104959084, - "voter": "onesunbeingnow" + "rshares": 14240603277, + "voter": "velourex" }, { - "rshares": 778898361, - "voter": "xanoxt" + "rshares": 3423333937, + "voter": "oflyhigh" }, { - "rshares": 50593879, - "voter": "crion" + "rshares": 238337441, + "voter": "sillygoon" }, { - "rshares": 50262756, - "voter": "wiss" + "rshares": 42027599838, + "voter": "driv3n" }, { - "rshares": 58382726, - "voter": "vityass" + "rshares": 51172913, + "voter": "nano2nd" }, { - "rshares": 6792167711, - "voter": "sponge-bob" + "rshares": 58602625, + "voter": "razberrijam" }, { - "rshares": 3900499116, - "voter": "digital-wisdom" + "rshares": 1050437459, + "voter": "chinadaily" }, { - "rshares": 51033798, - "voter": "stroully" + "rshares": 9971297203, + "voter": "kyriacos" }, { - "rshares": 26833252891, - "voter": "zahnspange" + "rshares": 38460202037, + "voter": "anotherjoe" }, { - "rshares": 6159974057, - "voter": "jwaser" + "rshares": 13618563581, + "voter": "kafkanarchy84" }, { - "rshares": 10515019232, - "voter": "oldstone" + "rshares": 7239535767, + "voter": "mrgrey" }, { - "rshares": 50712038, - "voter": "thadm" + "rshares": 3407540696, + "voter": "voltarius" }, { - "rshares": 50710305, - "voter": "prof" + "rshares": 26484168009, + "voter": "laonie10" }, { - "rshares": 50356354, - "voter": "yorsens" + "rshares": 898707871, + "voter": "emilyjane" }, { - "rshares": 54632424, - "voter": "budda" + "rshares": 68950759267, + "voter": "barrycooper" }, { - "rshares": 50065875, - "voter": "bane" + "rshares": 12178373062, + "voter": "mikemacintire" }, { - "rshares": 50059754, - "voter": "vive" + "rshares": 14583243204, + "voter": "hilarski" }, { - "rshares": 50054445, - "voter": "coad" + "rshares": 3530186924, + "voter": "onetree" }, { - "rshares": 139222205, - "voter": "mindhunter" + "rshares": 25551061344, + "voter": "daut44" }, { - "rshares": 6566492665, - "voter": "goose" + "rshares": 2592690795, + "voter": "newandold" }, { - "rshares": 52015504, - "voter": "analyzethis" + "rshares": 193788098, + "voter": "jennsky" }, { - "rshares": 1373777742, - "voter": "bwaser" + "rshares": 1994156610, + "voter": "richardcrill" }, { - "rshares": 51797295, - "voter": "roadhog" + "rshares": 26091209143, + "voter": "laonie11" }, { - "rshares": 51699969, - "voter": "doggnostic" + "rshares": 1649941704, + "voter": "davidjkelley" }, { - "rshares": 52671889, - "voter": "dr-who" + "rshares": 51718188, + "voter": "crion" }, { - "rshares": 53930800, - "voter": "outchemy" + "rshares": 8124894843, + "voter": "digital-wisdom" }, { - "rshares": 87523682, - "voter": "dr-house" + "rshares": 5693943859, + "voter": "jwaser" }, { - "rshares": 51449632, - "voter": "jenny-talls" + "rshares": 261044004, + "voter": "maarnio" }, { - "rshares": 53478598, - "voter": "imc" + "rshares": 89563584, + "voter": "pjo" }, { - "rshares": 51247344, - "voter": "post-successful" + "rshares": 2684999820, + "voter": "bwaser" }, { - "rshares": 50162053, - "voter": "lynchiandream" + "rshares": 52182445, + "voter": "alina1" }, { - "rshares": 50918375, - "voter": "ailo" + "rshares": 304997419, + "voter": "bones261" }, { - "rshares": 51837159, - "voter": "thecentreofitall" + "rshares": 185518573247, + "voter": "charlieshrem" }, { - "rshares": 52865727, - "voter": "kinghabib786" - } - ], - "author": "dana-edwards", - "author_payout_value": "0.000 HBD", - "author_reputation": 69.47, - "beneficiaries": [], - "blacklists": [], - "body": "Holonic systems\n===============\n\n![enter image description here](https://upload.wikimedia.org/wikipedia/commons/2/2f/Fractal_Art_Swirl.JPG)\n\nWhat is a holon?\n----------------\n\nA holon is both a whole and a part. An example would be that an individual human is composed of cells which are composed of atoms. The individual human is considered to be a whole human but that individual human is also a part of the human society making the individual part of a bigger whole. So the human being would be a good example of a holon but so would a node in a complex adaptive system.\n\nWhat are holonic systems?\n-------------------------\n\nIf we remember take bees as an example this time instead of humans then the holonic system would be the bee hive. The bee hive would be a representation of the societal governance structure of the bees that belong to the hive. The bees would be holons because they would be part of the hive due to the fact that they follow the rules of the hive. They cooperate between each other but are all subordinates to the rules of the hive which represents the whole. The bee hive represents a holonic system, as do ant colonies, swarms of birds, schools of fish.\n\n\nThe difference between pathological hierarchies and holonic hierarchies\n=======================================================================\n\nIn a pathological hierarchy perhaps one individual or one node in the network assumes the role of the \u201cwhole\u201d. This individual might consider him or herself to be the ruler, the number 1, the head authority, who must coerce and control everyone below them. This structure typically takes the shape of a rigid pyramid where the decision making and thinking typically comes from the head authority, with limited room for individuality below.\n\n>Holacracy embeds a generative mix of autonomy and cooperation in a flexible fabric of holonic design constitutional rules. It constitutes a new operating system for organizations that regulate the individual/group dynamics to eliminate on one side the possibility of capture via power games, and on the other side, the inherent chaos characteristic of \u201cleaderless,\u201d decentralized organizations.\n\n \nIn a holonic system of governance there is a system for generating rules to provide order. So for instance in the case of virtual governance the nodes on the network can all run the same software, the same configurations, and each changing of the configurations of each node in the network the rules for the network can change in collaborative fashion. Roles and rules are set collectively and collaboratively.\n\n>Every participant in a holacracy is a sensor for what is going on, and each plays a role in identifying the tensions in a timely way while taking active steps to resolve them. Effectiveness and resistance to capture are achieved by enhancing the power of collective decision locally via procedures such as: \u201cAfter taking Individual Action, a Part-ner should tell any affected Role about it, and, on their request, initi-ate actions to resolve any Tension created by the Individual Action or refrain from taking this Individual Action again in the future.\u201d\n\nReference\n\nUlieru, M. Organic Governance Through the Logic of Holonic Systems.", - "category": "politics", - "children": 14, - "created": "2016-08-19T10:06:57", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://upload.wikimedia.org/wikipedia/commons/2/2f/Fractal_Art_Swirl.JPG" - ], - "tags": [ - "politics", - "philosophy", - "governance", - "holon" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 26814585667646, - "payout": 113.266, - "payout_at": "2016-08-26T10:06:57", - "pending_payout_value": "113.266 HBD", - "percent_hbd": 10000, - "permlink": "holonic-systems", - "post_id": 886614, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 219 - }, - "title": "Holonic systems", - "updated": "2016-08-19T10:08:21", - "url": "/politics/@dana-edwards/holonic-systems" - }, - { - "active_votes": [ - { - "rshares": 6878586295, - "voter": "manoami" + "rshares": 69859252986, + "voter": "tracemayer" }, { - "rshares": 32790372645, - "voter": "biophil" + "rshares": 59985601, + "voter": "jcvanleur" }, { - "rshares": 8177100479, - "voter": "shla-rafia" + "rshares": 581992317, + "voter": "bones555" }, { - "rshares": 792782029, - "voter": "jsteck" + "rshares": 461844295, + "voter": "boxcarblue" }, { - "rshares": 3837675045, - "voter": "joshglen" + "rshares": 34265548518, + "voter": "robinhoodwhale" }, { - "rshares": 165494691, - "voter": "pulpably" + "rshares": 57373974, + "voter": "steemrocket" }, { - "rshares": 2893714979, - "voter": "spetey" + "rshares": 1516067251, + "voter": "ellepdub" }, { - "rshares": 74072122, - "voter": "runridefly" + "rshares": 1098737630, + "voter": "herpetologyguy" }, { - "rshares": 8559062169, - "voter": "darrantrute" + "rshares": 4811931106, + "voter": "morgan.waser" }, { - "rshares": 303416346, - "voter": "funkywanderer" + "rshares": 51238118, + "voter": "teemsteem" } ], - "author": "joshglen", + "author": "lukestokes", "author_payout_value": "0.000 HBD", - "author_reputation": 55.38, + "author_reputation": 66.1, "beneficiaries": [], "blacklists": [], - "body": "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg\n\nBefore I start, let's talk about why we should raise bees. Honey is a great reason, as there is nothing that beats your own homemade honey, but there are other things the bees also produce. For example, they produce beeswax, which you can use to make your own candles and beauty products. Pollination is also a good reason to have bees, as if you have a small garden it can produce lots of products due to the large amount of bees that will pollinate it. A final reason to do some beekeeping is that bees are very independent, and do not require a lot of maintenance. However, there are a few cons to look into as well. The first, and most major one is probably the fact that bees can sting. Another issue is the cost of supplies, and sometimes when beekeeping, the first year does not go very well.\n\nhttps://pixabay.com/static/uploads/photo/2013/08/07/20/13/bee-170551_960_720.jpg\n\nSo, let's get started! But before we do that, make sure that you check the local laws. Some places do not allow beekeeping. Also, know that bees take the quickest path from one location to another, known as a beeline, and that they may defecate in midair. When choosing a place to put a hive, try to make it in an open space, and let it get a little bit of sunlight (not too much). The best place to put a hive is in a sheltered area, not a hilltop as those are too windy. As you may know, nectar comes from different kinds of flowers. In fact, honey may taste very different depending on which kinds of flowers are the main source for the nectar that the bees bring back to the hive. Be careful about pesticides, as they can kill bees, and if they don't initially and the bee brings it back it can kill other bees or even the queen bee.\n\nhttp://www.almanac.com/sites/default/files/d6/images/bee-clothing.jpeg\n\nThere is quite a bit of equipment that you will need to start beekeeping. The first major piece of equipment is beekeeping clothing. You need to have proper protection from the bees, or else you may get stung. Generally, for a beginner, a veil is important, along with sting proof gloves and sting proof clothing that covers your entire body. Other than the hive, which I will discuss later, you will need something called a smoker, which produces smoke and help the bees calm down. You will also need something called a hive tool, which is used to loosen the frames and the boxes that bees are in. One of the last tools you will need is something called the uncapping knife, which is used uncap wax cells where the honey is stored. There are plenty of places that you can go to to purchase beekeeping equipment.\n\nAnother thing to consider before buying the bees themselves is a hive. The most common hive for beginners is a hive that uses the Langstroth method.\nhttp://www.almanac.com/sites/default/files/d6/images/langstrothHiveIllus.gif\nYou don't really need to worry about how to exactly build it though, as there are many kits for sale that are under $150. There are a few things to consider about the exact location of the hive. One important one is that it can be warmed by the morning sun. It should also be sheltered from the wind. A beehive needs to be near a source of water, as bees also need to drink. The beehive should be painted white or black, depending on where you live, but never with a toxic paint. To prevent bees from being a nuisance, there should be a fence around nearby street locations so that the bees fly over it.\n\nhttps://pixabay.com/static/uploads/photo/2016/04/14/14/18/silk-bee-1328961_960_720.jpg\n\nAfter you have built a beehive, you will need to find some bees. Bees are very social creatures, and that is why it is important to know the basics of bee society. There are three main levels of bees: the worker, the drone, and the queen. Worker bees are females and are responsible for things like tending to the hive, its queen, guarding the hive's entrance, and collecting food. Drones are the males, and the only thing they need to do is mate with the queen. The queen herself is responsible for the genetic traits found withing a colony. To get bees, you can go through the wild and search for clusters of bees called swarms. If these swarms are on a tree limb, it is best to cut the entire limb and gently shake the bees into a container. Bees on a flat surface can be guided with a piece of cardboard, or some smoke behind them. However, by getting these bees for free, they may have certain diseases or have poor genetic material, resulting in weak bees. You should also be careful with regards to property laws, as taking a beehive on someone else's property may be considered stealing.\n\nhttps://i.ytimg.com/vi/eFqrbPdZuTA/maxresdefault.jpg\n\nThere are two main ways in which you can buy bees, which are in a package or a nucleus. The package method comes stocked with some worker bees, a queen bee, and some sweet syrup for the bees to eat out of. Here is where you make an important decision: How to introduce the bees to the queen. There are two main methods, the indirect method and the direct method. In the indirect method, the bees eat their way through food to get to the queen and slowly get used to her. This method is safer but may take longer. The direct method is to let out the queen bee directly into the hive, but the bees may attack her and destroy the hive. However, if the bees do not attack her, or the queen survives the attack, it may be faster than the indirect method, but it is also more risky. The other kind of thing that you can buy is a nucleus, which is already a small, fully functioning hive. You may, however, run into the fact that the queen is a weak or old queen, resulting in poor honey production and weak bees.\n\nhttps://www.farminguk.com/images/News/20600_1.jpg\n\nBefore you can start harvesting the liquid-gold that bees make, you need to know about some diseases that bees can catch. Here are the most common ones: Varroa Mites, which are parasites that attack both the larvae and adult bees. A medicine called Apistan appears to work well on them. Foulbrood is a virus that can deform and kill sealed broods of honeybees. CCD, or colony collapse disorder, is when bees just start leaving the hive. There is no cure for it, but some researchers have found that it is caused by both of fungus and a certain virus being present. When winter comes, you may want to wrap up your beehive, but make sure that the bees are not literally trapped in the hive.\n\nhttps://zeebeeman.files.wordpress.com/2012/09/honey-harvest.jpg\n\nSo, now you have the bees, which means that you have honey. Before you start harvesting honey by yourself, it is recommended that you go out with an expert for a few times to get the hang of it. Generally, there is a basic process of collecting honey. You need to make sure that you use small, gentle movement instead of large ones when collecting honey. The first step is get the bees off of the supers (a special layer in the bee hive). Try not to use smoke, as this may affect the taste of the honey. The next step is to remove the supers, and get the honey out of them. This can be done by uncapping the wax on the combs, or by purchasing a special extractor or centrifuge to make it easier. After this is done, you should strain the honey through cheesecloth to remove excess wax. Keep the honey in a settling tank to allow air bubbles to go up and bring foreign object with them, making those objects easier to remove. Then, you will need to skim off the foam. After you figure out which temperature you can store the honey at, you can start bottling it and then start selling it!\n\nI hope you guys enjoyed this tutorial. I would like to give a special thanks to almanac.com for providing some of the information here.", - "category": "tutorial", - "children": 7, - "created": "2016-08-16T16:34:09", + "body": "
![](https://s22.postimg.org/3nc2dom01/steemwhale.jpg)
\n\nHave you seen @robinhoodwhale's teaser intro post?\n\nThe basic idea, as I understand it, is to build out a new whale whose voting tastes and curation habits are determined by a group of people, a hive mind, instead of a single individual. I find this idea fascinating and wanted to support it while also challenging myself to write my own bot in PHP. The bot monitors @robinhoodwhale's voting activity and, if there's a new vote, goes ahead and votes on that same post using piston. The idea being, as more people vote up what @robinhoodwhale votes on, the more curation rewards @robinhoodwhale will make and the more visibility those posts will get (making @robinhoodwhale even more valuable to the community).\n\nI worked on the CopyCatVoter bot yesterday and had it running all night. Here's the output from its first day of life:\n\n```\n\u279c Bots git:(master) \u2717 php CopyCatVoterTest.php\n2016-08-28T02:47:38+00:00\nStarting CopyCatVoter for lukestokes who wants to copy robinhoodwhale...\n\n\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-kateblack-a-rant-about-a-germ-obsessed-parent-and-outdoor-play-20160827t201239908z\n2016-08-27T20:13:54\n----------------------------------\nAlready voted.\n......................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nkazumba/modern-day-edgar-cayce-nostradamus\n2016-08-28T07:12:00\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-kazumba-modern-day-edgar-cayce-nostradamus-20160828t071218005z\n2016-08-28T07:12:27\n----------------------------------\nVoting...\n.....................................................................................\n------------ NEW VOTE! -----------\nwebosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach\n2016-08-28T07:34:21\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-webosfritos-thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach-20160828t073446896z\n2016-08-28T07:35:03\n----------------------------------\nVoting...\n............................................\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-picokernel-alpha-squeek-io-twitter-alternative-for-the-steem-blockchain-20160828t074629039z\n2016-08-28T07:46:36\n----------------------------------\nVoting...\n...............................................\n------------ NEW VOTE! -----------\nnaquoya/sometimes-we-just-need-to-rage-against-the-machine\n2016-08-28T07:58:48\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-naquoya-sometimes-we-just-need-to-rage-against-the-machine-20160828t075914448z\n2016-08-28T07:59:36\n----------------------------------\nVoting...\n.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\ndorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli\n2016-08-28T13:11:21\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-dorit-israeli-experimental-learning-space-education-by-dr-dorit-israeli-20160828t131146396z\n2016-08-28T13:12:03\n----------------------------------\nVoting...\n.....................................\n------------ NEW VOTE! -----------\ntonypeacock/join-a-niche-online-community-here-s-10-reasons-why\n2016-08-28T13:21:48\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-tonypeacock-join-a-niche-online-community-here-s-10-reasons-why-20160828t132210398z\n2016-08-28T13:22:15\n----------------------------------\nVoting...\n.............................................................................................\n------------ NEW VOTE! -----------\njaytaylor/on-international-dog-day-be-more-dog\n2016-08-28T13:46:18\n----------------------------------\nVoting...\n..\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-jaytaylor-on-international-dog-day-be-more-dog-20160828t134633948z\n2016-08-28T13:47:03\n----------------------------------\nVoting...\n..................................................................................................................\n------------ NEW VOTE! -----------\nsitaru/yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there\n2016-08-28T14:16:24\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-sitaru-yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there-20160828t141641424z\n2016-08-28T14:16:48\n----------------------------------\nVoting...\n...................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nanahilarski/graphic-design-and-social-media-pro-from-panama\n2016-08-28T15:23:42\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-anahilarski-graphic-design-and-social-media-pro-from-panama-20160828t151705067z\n2016-08-28T15:23:48\n----------------------------------\nVoting...\n.....................................................................................................................................\n------------ NEW VOTE! -----------\nowdy/color-for-the-color-blind-the-science-behind-the-enchroma-glasses\n2016-08-28T15:58:18\n----------------------------------\nVoting...\n...\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-owdy-color-for-the-color-blind-the-science-behind-the-enchroma-glasses-20160828t155910607z\n2016-08-28T15:59:15\n----------------------------------\nVoting...\n.......................................................................................................................................................................................................................................................................................\n------------ NEW VOTE! -----------\nlukmarcus/wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday\n2016-08-28T17:11:18\n----------------------------------\nVoting...\n.\n------------ NEW VOTE! -----------\nrobinhoodwhale/re-lukmarcus-wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday-20160828t171141695z\n2016-08-28T17:11:48\n----------------------------------\nVoting...\n...............\n```\n\nI just changed the configuration settings this morning so now it will only vote up root posts and not vote on the comments @robinhoodwhale votes on. I'm doing this to conserve some voting power for people in my feed, but will probably change that up based on how active I plan to be on Steemit for a given time period.\n\nAll the code for this is on Github here: https://github.com/lukestokes/php-steem-tools. The CopyCatVoter code is here and the code to run it is currently in a test folder. This is basically my embarrassing prototype sandbox play code, but I'm putting it out there publicly in case anyone else wants to play with it also. You'll need to be able to run php and have piston configured with your posting key and have no password on your piston wallet (I hear from @xeroc some changes will be coming in the future to allow for ENV variable for this).\n\nSo why did I do this instead of just using my account at https://streemian.com/ and its curation trail feature? Well, mainly because I wanted to challenge myself. I really like the idea of having my own bot I can tweak and adjust, almost like a pet. I'm already thinking of improvements to make, such as ensuring it will unvote a post if @robinhoodwhale removes a vote.\n\nAlso, I like to have the output available for me to review. I'm not one to automate social media activities, so it took a while for me to warm up to the idea of trusting others to curate good content. I had to trust the hive mind to promote content which will benefit Steemit as a platform. With it running locally, I can easily review the posts and still use that 24 hour window to remove my vote if it's something I don't personally think is beneficial to the network or if it is contrary to my subjective opinion of what I \"like.\"\n\nIf you want to know more about @robinhoodwhale, give them a follow. You can review the list of posts they've already voted for in this spreadsheet which is updated in real time, as far as I understand. Shout out to @kyriacos for the awesome artwork and the robinhood / robinhood-links chat channels.\n\nI hope you're having a great weekend!\n**Steem On**\n[![LukeStokes01712.png](https://www.steemimg.com/images/2016/08/14/LukeStokes01712.png)](https://steemit.com/@lukestokes)", + "category": "robinhoodwhale", + "children": 45, + "created": "2016-08-28T18:33:15", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg" + "https://s22.postimg.org/3nc2dom01/steemwhale.jpg", + "https://www.steemimg.com/images/2016/08/14/LukeStokes01712.png" + ], + "links": [ + "https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore", + "https://github.com/lukestokes/php-steem-tools", + "https://github.com/lukestokes/php-steem-tools/blob/master/src/SteemTools/Bots/CopyCatVoter.php", + "https://github.com/lukestokes/php-steem-tools/blob/master/tests/Bots/CopyCatVoterTest.php", + "https://streemian.com/", + "https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0", + "https://steemit.com/@kyriacos", + "https://steemit.chat/channel/robinhood", + "https://steemit.chat/channel/robinhood-links" ], "tags": [ - "tutorial", - "steemit", - "steem" + "robinhoodwhale", + "bots", + "curation", + "automation", + "php" + ], + "users": [ + "robinhoodwhale", + "xeroc" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 64472276800, - "payout": 0.034, - "payout_at": "2016-08-23T16:34:09", - "pending_payout_value": "0.034 HBD", + "net_rshares": 12867959210625, + "payout": 24.069, + "payout_at": "2016-09-04T18:33:15", + "pending_payout_value": "24.069 HBD", "percent_hbd": 10000, - "permlink": "what-is-beekeeping-all-about", - "post_id": 836800, + "permlink": "trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale", + "post_id": 1030456, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 10 + "total_votes": 174 }, - "title": "What is Beekeeping All About?", - "updated": "2016-08-16T16:34:09", - "url": "/tutorial/@joshglen/what-is-beekeeping-all-about" + "title": "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale", + "updated": "2016-08-28T21:11:06", + "url": "/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_1.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_1.pat.json index be97d69cf969d30b715cc2ada53015ca35fdb1b6..048c3ce788a2fa1ce7fabf409b1aa7eca8dfaf8b 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_1.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_1.pat.json @@ -2,48 +2,86 @@ { "active_votes": [ { - "rshares": 56815342, - "voter": "madodel" + "rshares": 6878586295, + "voter": "manoami" + }, + { + "rshares": 32790372645, + "voter": "biophil" + }, + { + "rshares": 8177100479, + "voter": "shla-rafia" + }, + { + "rshares": 792782029, + "voter": "jsteck" + }, + { + "rshares": 3837675045, + "voter": "joshglen" + }, + { + "rshares": 165494691, + "voter": "pulpably" + }, + { + "rshares": 2893714979, + "voter": "spetey" + }, + { + "rshares": 74072122, + "voter": "runridefly" + }, + { + "rshares": 8559062169, + "voter": "darrantrute" + }, + { + "rshares": 303416346, + "voter": "funkywanderer" } ], - "author": "madodel", + "author": "joshglen", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 55.38, "beneficiaries": [], "blacklists": [], - "body": "Think Beek Urban Beekeeping in the Tropics\n\nTop Bar Hive V.S. Langstroth Hive Inspection\n\nMADE in the Philippines\n\nhttps://www.youtube.com/watch?v=LMu6WxqksdA", - "category": "food", - "children": 0, - "created": "2016-08-09T14:19:30", + "body": "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg\n\nBefore I start, let's talk about why we should raise bees. Honey is a great reason, as there is nothing that beats your own homemade honey, but there are other things the bees also produce. For example, they produce beeswax, which you can use to make your own candles and beauty products. Pollination is also a good reason to have bees, as if you have a small garden it can produce lots of products due to the large amount of bees that will pollinate it. A final reason to do some beekeeping is that bees are very independent, and do not require a lot of maintenance. However, there are a few cons to look into as well. The first, and most major one is probably the fact that bees can sting. Another issue is the cost of supplies, and sometimes when beekeeping, the first year does not go very well.\n\nhttps://pixabay.com/static/uploads/photo/2013/08/07/20/13/bee-170551_960_720.jpg\n\nSo, let's get started! But before we do that, make sure that you check the local laws. Some places do not allow beekeeping. Also, know that bees take the quickest path from one location to another, known as a beeline, and that they may defecate in midair. When choosing a place to put a hive, try to make it in an open space, and let it get a little bit of sunlight (not too much). The best place to put a hive is in a sheltered area, not a hilltop as those are too windy. As you may know, nectar comes from different kinds of flowers. In fact, honey may taste very different depending on which kinds of flowers are the main source for the nectar that the bees bring back to the hive. Be careful about pesticides, as they can kill bees, and if they don't initially and the bee brings it back it can kill other bees or even the queen bee.\n\nhttp://www.almanac.com/sites/default/files/d6/images/bee-clothing.jpeg\n\nThere is quite a bit of equipment that you will need to start beekeeping. The first major piece of equipment is beekeeping clothing. You need to have proper protection from the bees, or else you may get stung. Generally, for a beginner, a veil is important, along with sting proof gloves and sting proof clothing that covers your entire body. Other than the hive, which I will discuss later, you will need something called a smoker, which produces smoke and help the bees calm down. You will also need something called a hive tool, which is used to loosen the frames and the boxes that bees are in. One of the last tools you will need is something called the uncapping knife, which is used uncap wax cells where the honey is stored. There are plenty of places that you can go to to purchase beekeeping equipment.\n\nAnother thing to consider before buying the bees themselves is a hive. The most common hive for beginners is a hive that uses the Langstroth method.\nhttp://www.almanac.com/sites/default/files/d6/images/langstrothHiveIllus.gif\nYou don't really need to worry about how to exactly build it though, as there are many kits for sale that are under $150. There are a few things to consider about the exact location of the hive. One important one is that it can be warmed by the morning sun. It should also be sheltered from the wind. A beehive needs to be near a source of water, as bees also need to drink. The beehive should be painted white or black, depending on where you live, but never with a toxic paint. To prevent bees from being a nuisance, there should be a fence around nearby street locations so that the bees fly over it.\n\nhttps://pixabay.com/static/uploads/photo/2016/04/14/14/18/silk-bee-1328961_960_720.jpg\n\nAfter you have built a beehive, you will need to find some bees. Bees are very social creatures, and that is why it is important to know the basics of bee society. There are three main levels of bees: the worker, the drone, and the queen. Worker bees are females and are responsible for things like tending to the hive, its queen, guarding the hive's entrance, and collecting food. Drones are the males, and the only thing they need to do is mate with the queen. The queen herself is responsible for the genetic traits found withing a colony. To get bees, you can go through the wild and search for clusters of bees called swarms. If these swarms are on a tree limb, it is best to cut the entire limb and gently shake the bees into a container. Bees on a flat surface can be guided with a piece of cardboard, or some smoke behind them. However, by getting these bees for free, they may have certain diseases or have poor genetic material, resulting in weak bees. You should also be careful with regards to property laws, as taking a beehive on someone else's property may be considered stealing.\n\nhttps://i.ytimg.com/vi/eFqrbPdZuTA/maxresdefault.jpg\n\nThere are two main ways in which you can buy bees, which are in a package or a nucleus. The package method comes stocked with some worker bees, a queen bee, and some sweet syrup for the bees to eat out of. Here is where you make an important decision: How to introduce the bees to the queen. There are two main methods, the indirect method and the direct method. In the indirect method, the bees eat their way through food to get to the queen and slowly get used to her. This method is safer but may take longer. The direct method is to let out the queen bee directly into the hive, but the bees may attack her and destroy the hive. However, if the bees do not attack her, or the queen survives the attack, it may be faster than the indirect method, but it is also more risky. The other kind of thing that you can buy is a nucleus, which is already a small, fully functioning hive. You may, however, run into the fact that the queen is a weak or old queen, resulting in poor honey production and weak bees.\n\nhttps://www.farminguk.com/images/News/20600_1.jpg\n\nBefore you can start harvesting the liquid-gold that bees make, you need to know about some diseases that bees can catch. Here are the most common ones: Varroa Mites, which are parasites that attack both the larvae and adult bees. A medicine called Apistan appears to work well on them. Foulbrood is a virus that can deform and kill sealed broods of honeybees. CCD, or colony collapse disorder, is when bees just start leaving the hive. There is no cure for it, but some researchers have found that it is caused by both of fungus and a certain virus being present. When winter comes, you may want to wrap up your beehive, but make sure that the bees are not literally trapped in the hive.\n\nhttps://zeebeeman.files.wordpress.com/2012/09/honey-harvest.jpg\n\nSo, now you have the bees, which means that you have honey. Before you start harvesting honey by yourself, it is recommended that you go out with an expert for a few times to get the hang of it. Generally, there is a basic process of collecting honey. You need to make sure that you use small, gentle movement instead of large ones when collecting honey. The first step is get the bees off of the supers (a special layer in the bee hive). Try not to use smoke, as this may affect the taste of the honey. The next step is to remove the supers, and get the honey out of them. This can be done by uncapping the wax on the combs, or by purchasing a special extractor or centrifuge to make it easier. After this is done, you should strain the honey through cheesecloth to remove excess wax. Keep the honey in a settling tank to allow air bubbles to go up and bring foreign object with them, making those objects easier to remove. Then, you will need to skim off the foam. After you figure out which temperature you can store the honey at, you can start bottling it and then start selling it!\n\nI hope you guys enjoyed this tutorial. I would like to give a special thanks to almanac.com for providing some of the information here.", + "category": "tutorial", + "children": 7, + "created": "2016-08-16T16:34:09", "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { - "links": [ - "https://www.youtube.com/watch?v=LMu6WxqksdA" + "image": [ + "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg" ], "tags": [ - "food" + "tutorial", + "steemit", + "steem" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56815342, - "payout": 0.0, - "payout_at": "2016-09-09T02:19:30", - "pending_payout_value": "0.000 HBD", + "net_rshares": 64472276800, + "payout": 0.034, + "payout_at": "2016-08-23T16:34:09", + "pending_payout_value": "0.034 HBD", "percent_hbd": 10000, - "permlink": "top-bar-hive-v-s-langstroth-hive-beekeeping", - "post_id": 703905, + "permlink": "what-is-beekeeping-all-about", + "post_id": 836800, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 1 + "total_votes": 10 }, - "title": "Top Bar Hive V.S. Langstroth Hive, Beekeeping", - "updated": "2016-08-09T14:19:30", - "url": "/food/@madodel/top-bar-hive-v-s-langstroth-hive-beekeeping" + "title": "What is Beekeeping All About?", + "updated": "2016-08-16T16:34:09", + "url": "/tutorial/@joshglen/what-is-beekeeping-all-about" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2.pat.json index e9c11b9d5209cfe11b204c0053dfb01a27c64b5b..bbc5664f568672841483484ba68f0238696bf44f 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2.pat.json @@ -2,114 +2,258 @@ { "active_votes": [ { - "rshares": 56815342, - "voter": "madodel" + "rshares": 6878586295, + "voter": "manoami" + }, + { + "rshares": 32790372645, + "voter": "biophil" + }, + { + "rshares": 8177100479, + "voter": "shla-rafia" + }, + { + "rshares": 792782029, + "voter": "jsteck" + }, + { + "rshares": 3837675045, + "voter": "joshglen" + }, + { + "rshares": 165494691, + "voter": "pulpably" + }, + { + "rshares": 2893714979, + "voter": "spetey" + }, + { + "rshares": 74072122, + "voter": "runridefly" + }, + { + "rshares": 8559062169, + "voter": "darrantrute" + }, + { + "rshares": 303416346, + "voter": "funkywanderer" } ], - "author": "madodel", + "author": "joshglen", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 55.38, "beneficiaries": [], "blacklists": [], - "body": "Think Beek Urban Beekeeping in the Tropics\n\nTop Bar Hive V.S. Langstroth Hive Inspection\n\nMADE in the Philippines\n\nhttps://www.youtube.com/watch?v=LMu6WxqksdA", - "category": "food", - "children": 0, - "created": "2016-08-09T14:19:30", + "body": "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg\n\nBefore I start, let's talk about why we should raise bees. Honey is a great reason, as there is nothing that beats your own homemade honey, but there are other things the bees also produce. For example, they produce beeswax, which you can use to make your own candles and beauty products. Pollination is also a good reason to have bees, as if you have a small garden it can produce lots of products due to the large amount of bees that will pollinate it. A final reason to do some beekeeping is that bees are very independent, and do not require a lot of maintenance. However, there are a few cons to look into as well. The first, and most major one is probably the fact that bees can sting. Another issue is the cost of supplies, and sometimes when beekeeping, the first year does not go very well.\n\nhttps://pixabay.com/static/uploads/photo/2013/08/07/20/13/bee-170551_960_720.jpg\n\nSo, let's get started! But before we do that, make sure that you check the local laws. Some places do not allow beekeeping. Also, know that bees take the quickest path from one location to another, known as a beeline, and that they may defecate in midair. When choosing a place to put a hive, try to make it in an open space, and let it get a little bit of sunlight (not too much). The best place to put a hive is in a sheltered area, not a hilltop as those are too windy. As you may know, nectar comes from different kinds of flowers. In fact, honey may taste very different depending on which kinds of flowers are the main source for the nectar that the bees bring back to the hive. Be careful about pesticides, as they can kill bees, and if they don't initially and the bee brings it back it can kill other bees or even the queen bee.\n\nhttp://www.almanac.com/sites/default/files/d6/images/bee-clothing.jpeg\n\nThere is quite a bit of equipment that you will need to start beekeeping. The first major piece of equipment is beekeeping clothing. You need to have proper protection from the bees, or else you may get stung. Generally, for a beginner, a veil is important, along with sting proof gloves and sting proof clothing that covers your entire body. Other than the hive, which I will discuss later, you will need something called a smoker, which produces smoke and help the bees calm down. You will also need something called a hive tool, which is used to loosen the frames and the boxes that bees are in. One of the last tools you will need is something called the uncapping knife, which is used uncap wax cells where the honey is stored. There are plenty of places that you can go to to purchase beekeeping equipment.\n\nAnother thing to consider before buying the bees themselves is a hive. The most common hive for beginners is a hive that uses the Langstroth method.\nhttp://www.almanac.com/sites/default/files/d6/images/langstrothHiveIllus.gif\nYou don't really need to worry about how to exactly build it though, as there are many kits for sale that are under $150. There are a few things to consider about the exact location of the hive. One important one is that it can be warmed by the morning sun. It should also be sheltered from the wind. A beehive needs to be near a source of water, as bees also need to drink. The beehive should be painted white or black, depending on where you live, but never with a toxic paint. To prevent bees from being a nuisance, there should be a fence around nearby street locations so that the bees fly over it.\n\nhttps://pixabay.com/static/uploads/photo/2016/04/14/14/18/silk-bee-1328961_960_720.jpg\n\nAfter you have built a beehive, you will need to find some bees. Bees are very social creatures, and that is why it is important to know the basics of bee society. There are three main levels of bees: the worker, the drone, and the queen. Worker bees are females and are responsible for things like tending to the hive, its queen, guarding the hive's entrance, and collecting food. Drones are the males, and the only thing they need to do is mate with the queen. The queen herself is responsible for the genetic traits found withing a colony. To get bees, you can go through the wild and search for clusters of bees called swarms. If these swarms are on a tree limb, it is best to cut the entire limb and gently shake the bees into a container. Bees on a flat surface can be guided with a piece of cardboard, or some smoke behind them. However, by getting these bees for free, they may have certain diseases or have poor genetic material, resulting in weak bees. You should also be careful with regards to property laws, as taking a beehive on someone else's property may be considered stealing.\n\nhttps://i.ytimg.com/vi/eFqrbPdZuTA/maxresdefault.jpg\n\nThere are two main ways in which you can buy bees, which are in a package or a nucleus. The package method comes stocked with some worker bees, a queen bee, and some sweet syrup for the bees to eat out of. Here is where you make an important decision: How to introduce the bees to the queen. There are two main methods, the indirect method and the direct method. In the indirect method, the bees eat their way through food to get to the queen and slowly get used to her. This method is safer but may take longer. The direct method is to let out the queen bee directly into the hive, but the bees may attack her and destroy the hive. However, if the bees do not attack her, or the queen survives the attack, it may be faster than the indirect method, but it is also more risky. The other kind of thing that you can buy is a nucleus, which is already a small, fully functioning hive. You may, however, run into the fact that the queen is a weak or old queen, resulting in poor honey production and weak bees.\n\nhttps://www.farminguk.com/images/News/20600_1.jpg\n\nBefore you can start harvesting the liquid-gold that bees make, you need to know about some diseases that bees can catch. Here are the most common ones: Varroa Mites, which are parasites that attack both the larvae and adult bees. A medicine called Apistan appears to work well on them. Foulbrood is a virus that can deform and kill sealed broods of honeybees. CCD, or colony collapse disorder, is when bees just start leaving the hive. There is no cure for it, but some researchers have found that it is caused by both of fungus and a certain virus being present. When winter comes, you may want to wrap up your beehive, but make sure that the bees are not literally trapped in the hive.\n\nhttps://zeebeeman.files.wordpress.com/2012/09/honey-harvest.jpg\n\nSo, now you have the bees, which means that you have honey. Before you start harvesting honey by yourself, it is recommended that you go out with an expert for a few times to get the hang of it. Generally, there is a basic process of collecting honey. You need to make sure that you use small, gentle movement instead of large ones when collecting honey. The first step is get the bees off of the supers (a special layer in the bee hive). Try not to use smoke, as this may affect the taste of the honey. The next step is to remove the supers, and get the honey out of them. This can be done by uncapping the wax on the combs, or by purchasing a special extractor or centrifuge to make it easier. After this is done, you should strain the honey through cheesecloth to remove excess wax. Keep the honey in a settling tank to allow air bubbles to go up and bring foreign object with them, making those objects easier to remove. Then, you will need to skim off the foam. After you figure out which temperature you can store the honey at, you can start bottling it and then start selling it!\n\nI hope you guys enjoyed this tutorial. I would like to give a special thanks to almanac.com for providing some of the information here.", + "category": "tutorial", + "children": 7, + "created": "2016-08-16T16:34:09", "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { - "links": [ - "https://www.youtube.com/watch?v=LMu6WxqksdA" + "image": [ + "https://upload.wikimedia.org/wikipedia/commons/3/32/Bee-apis.jpg" ], "tags": [ - "food" + "tutorial", + "steemit", + "steem" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56815342, - "payout": 0.0, - "payout_at": "2016-09-09T02:19:30", - "pending_payout_value": "0.000 HBD", + "net_rshares": 64472276800, + "payout": 0.034, + "payout_at": "2016-08-23T16:34:09", + "pending_payout_value": "0.034 HBD", "percent_hbd": 10000, - "permlink": "top-bar-hive-v-s-langstroth-hive-beekeeping", - "post_id": 703905, + "permlink": "what-is-beekeeping-all-about", + "post_id": 836800, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 1 + "total_votes": 10 }, - "title": "Top Bar Hive V.S. Langstroth Hive, Beekeeping", - "updated": "2016-08-09T14:19:30", - "url": "/food/@madodel/top-bar-hive-v-s-langstroth-hive-beekeeping" + "title": "What is Beekeeping All About?", + "updated": "2016-08-16T16:34:09", + "url": "/tutorial/@joshglen/what-is-beekeeping-all-about" }, { "active_votes": [ { - "rshares": 36264946146, - "voter": "redpalestino" + "rshares": 21816618785, + "voter": "ossama-benjohn" + }, + { + "rshares": 6191155663, + "voter": "mark-waser" + }, + { + "rshares": 3632587828, + "voter": "svamiva" + }, + { + "rshares": 30806602935, + "voter": "acassity" + }, + { + "rshares": 6755232214, + "voter": "mtber" + }, + { + "rshares": 458525808, + "voter": "edrivegom" + }, + { + "rshares": 1279135617, + "voter": "doctorstrange" + }, + { + "rshares": 5949351326, + "voter": "inti" + }, + { + "rshares": 190058704038, + "voter": "blueorgy" + }, + { + "rshares": 3644108334, + "voter": "bristolchris72" + }, + { + "rshares": 1213221173, + "voter": "politicasan2" + }, + { + "rshares": 8588256056, + "voter": "michaeldodridge" + }, + { + "rshares": 2091538583, + "voter": "lukmarcus" + }, + { + "rshares": 42155830202, + "voter": "anotherjoe" + }, + { + "rshares": 74299708, + "voter": "august-newbie" + }, + { + "rshares": 267622891, + "voter": "levycore" + }, + { + "rshares": 8308915925, + "voter": "steemitpatina" + }, + { + "rshares": 8353239954, + "voter": "etcmike" + }, + { + "rshares": 198479777, + "voter": "kita" + }, + { + "rshares": 1753773543, + "voter": "davidjkelley" + }, + { + "rshares": 5992569234, + "voter": "digital-wisdom" + }, + { + "rshares": 56760954, + "voter": "ethical-ai" + }, + { + "rshares": 999749973, + "voter": "matthewtiii" + }, + { + "rshares": 6048950061, + "voter": "jwaser" + }, + { + "rshares": 2853258517, + "voter": "bwaser" }, { - "rshares": 70910846, - "voter": "zakharsmirnoff" + "rshares": 1611217127, + "voter": "ellepdub" }, { - "rshares": 502074408, - "voter": "lifeworship" + "rshares": 1157169630, + "voter": "herpetologyguy" }, { - "rshares": 80880272, - "voter": "motsna" + "rshares": 5114895425, + "voter": "morgan.waser" } ], - "author": "tanshin", + "author": "jwaser", "author_payout_value": "0.000 HBD", - "author_reputation": 43.7, + "author_reputation": 51.05, "beneficiaries": [], "blacklists": [], - "body": "This is the most well-designed hive I've seen to date, much easier to extract honey and less disturbance to the bees. \n\nBees are the world\u2019s most important pollinator of food crops. Let's stop the bee population decline!\n\nhttps://www.youtube.com/watch?v=WbMV9qYIXqM", + "body": "\n

Feeling stylish and always a little sexy in my beekeepers garb, I grab my smoker in one hand and my hive tool in the other and bounce like Tigger out into my beloved bee-yard.  The apiary is no longer the two original hives -- expansion was inevitable. On this day, we are sitting pretty at 7 hives.   Temperatures reaching into the 90's with some notable humidity, I feel simple pure joy as I remove the bricks from the top of the hive and pry off the first of the hive covers.  I'm immediately met with a whiff of a gentle sweet smell and hear the simple quiet buzz of the girls at work -- as a couple of crabby ladies pop out and ping off my veil, informing me that I'm in their space.  I tell myself \"it is ok, settle down, all is well\".  After a few gentle puffs of cool smoke we all seem to calm down a bit. 

\n

Today, I'm checking in on a brand new queen that I grafted (created) just six weeks ago.  Four weeks later, I noted eggs and larva in this hive, so I know the queen emerged and mated.  Today's work is simple... find this queen and mark her -- always assuming that she is still alive today!

\n

 That's the queen -- dead-center

\n

Now, the bee \"authorities\" all claim that you should gently hold the queen between thumb and finger and then very carefully place a small spot of paint on her thorax.  Let it dry and then release her back into the colony. The color is specific to the last 2 digits of the year.  Pretty simple!  What the experts don't seem to mention is that you must search among 50,000 bees buzzing about -- grumpy and stressed in the late summer heat during the dearth of late nectar.  Now that I have had the hive open for a few minutes, everything feels frantic.  Sweat is dripping from every pore in my body while I search frame by frame looking for that one special bug.  I find my mind racing.  Where the heck is that she?  As time passes, the open hive is defenseless to the other bees in the bee-yard and for miles around -- causing the girls to become more and more feisty and defensive as I become more impatient with the task at hand.

\n

\"Oh yippy skippy, I found her!\"  This is so much better than finding Waldo (although I rock at that too).  I move the frame she's crawling on into a special box to protect her (mostly from myself) for the moment.  Put the hive back together and toss on a cover.  That should keep the other bees from robbing the hive for a few moments.  With the paint pen readied, it is time to take on the task of placing a dot on her back.  I, once again, try to locate the queen.  Darn this lady has speed - moving all over the frame and ducking through holes in the comb arriving on the opposite side.  

\n

\n

I spend some time trying to corner and catch her but fail as she flies off the frame and runs (breaking my 100M dash pace) under the hive.  The \"experts\" don't mention that the fat plump mated queen can still fly!  Oh no, what have I done?! Tears well up. But realize my friends, this is no ordinary queen, she's one that I grafted from a colony with a queen who I had over-wintered not once but twice! She's the only queen to emerge and mate from the 36 cells I thought I successfully grafted back in late June (The other grafts were a complete fail after taking an unplanned dive off the deck -- but that too is another story.  My Bad!)

\n

Now, sadly, I must admit that this is not the first time I have had a queen who had a story to tell . . . but I digress... I carefully drop the frame, sputter a few less than positive words to myself and without a thought lean the entire hive to one side in hopes of finding my Queen. Now I know what you\u2019re thinking -- \"BAD IDEA!\", \"DON'T DO THAT!\".   Trust me, I thought that too, but I needed find that queen, as without her the colony would dwindle and die.  I had no replacement, no plan B.

\n

\n

Awesome sauce! I found her - a REAL RESCUE.  Scooping her up in my gloved hand and leaning the hive back down into its normal position, I commenced my attempt to mark her with a \"small\" white dot ... well it turned out she got herself a big fat splotch! (Serves her right!) Then acting like nothing unusual ever happened (which in some ways is was no different than any other bee-yard adventure), I released her into the hive, replaced the missing frame and put the inner & outer cover back in place. 

\n

Feeling fairly good with the overall final outcome (queen still alive, MARKED and in the hive), I collected my beekeeping stuff and snuffed the smoker.  Just another fun day of awesome skillfulness in the bee-yard.

\n

=========================================================================

\n

I love the Doolittle Method for grafting (combined with the use of a Cloake board)!  Don't get faked out, it is not \"do little\" but a name for the method of grafting/\u201ccreating\u201d queens.  

\n
    \n
  1. Choose carefully from a frame of eggs and larva, selecting the tiniest larva in hopes it is < 24 hours old AND floating it in a pool of delicious royal jelly.  
  2. \n
  3. Once the grafts are selected and delicately scooped up (careful not to flip the larva and block the sphericals/\"breathing tubes\" -- drowning them in the process), place them in plastic queen cells on a grafting bar fitted into a frame.  
  4. \n
  5. Inserted the frame into a queen-less hive that has been outfitted and manipulated for several days with the use of a Cloake Board.  
  6. \n
  7. With the proper planning and manipulation, tens of thousands of nurse bees fill the top hive box and will feed the grafts royal jelly while draw out the new queen cells, and care for the developing queens over the following 11 days.
  8. \n
\n

http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf

\n

http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/

\n

\n


\n

\n

Minnows UNITE! (use the keyword minnowsunite)

\n

Today, I'm trying to promote a starving herpetologist who joined Steemit just two days ago (his stuff really rocks!):

\n

Here with little to no clue!

\n

Hello everyone! My name is Thomas and like the title says, I have very little idea just what the heck I\u2019m doing here\u2026 

\n

 =============================

\n

FrogWatchUSA: Citizen Science as the Future of Environmental Research

\n

Citizen Science is an form of research collaboration between scientists and volunteers, allowing for a wider array of\u2026 

\n

==============================

\n

Copperhead Photos

\n

I was fooling around at work taking a few photos of our Northern Copperheads. Not the crispest quality, but definitely\u2026 

\n

==============================

\n

My Experience Training Alligators

\n

If that title doesn\u2019t draw people in, then I don\u2019t know how to please you folks!       As I\u2019ve said in previous posts\u2026 

\n", "category": "bee", - "children": 6, - "created": "2016-09-02T06:46:15", + "children": 5, + "created": "2016-08-26T11:36:09", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://img.youtube.com/vi/WbMV9qYIXqM/0.jpg" + "https://www.steemimg.com/images/2016/08/25/beautyqueen07982.md.jpg", + "http://redbricktown.com/wp-content/uploads/2015/07/608.png", + "https://www.steemimg.com/images/2016/08/25/DSCF0117bd6dd.jpg", + "https://www.steemimg.com/images/2016/08/25/May201205567d61.md.jpg", + "https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_c609e6e3b70444fd8b756f5880dfcffb~mv2_d_2941_2046_s_2.jpg?dn=Minnow+Strength+2.jpg" ], "links": [ - "https://www.youtube.com/watch?v=WbMV9qYIXqM" + "http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf", + "http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/", + "https://steemit.com/created/minnowsunite", + "https://steemit.com/minnowsunite/@herpetologyguy/here-with-little-to-no-clue", + "https://steemit.com/conservation/@herpetologyguy/frogwatchusa-citizen-science-as-the-future-of-environmental-research", + "https://steemit.com/photography/@herpetologyguy/copperhead-photos", + "https://steemit.com/science/@herpetologyguy/my-experience-training-alligators" ], "tags": [ "bee", - "food", - "life", - "gardening", - "nature" + "bees", + "story", + "nature", + "science" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 36918811672, - "payout": 0.015, - "payout_at": "2016-09-09T06:46:15", - "pending_payout_value": "0.015 HBD", + "net_rshares": 367431771281, + "payout": 0.21, + "payout_at": "2016-09-02T11:36:09", + "pending_payout_value": "0.210 HBD", "percent_hbd": 10000, - "permlink": "best-hive-for-beekeepers", - "post_id": 1095224, + "permlink": "bee-happy-crowning-of-a-queen", + "post_id": 996365, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 4 + "total_votes": 28 }, - "title": "Best Hive for Beekeepers", - "updated": "2016-09-02T06:46:15", - "url": "/bee/@tanshin/best-hive-for-beekeepers" + "title": "BEE Happy: Crowning of a QUEEN.", + "updated": "2016-08-26T11:36:09", + "url": "/bee/@jwaser/bee-happy-crowning-of-a-queen" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2_paging.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2_paging.pat.json index e9c11b9d5209cfe11b204c0053dfb01a27c64b5b..3dc502b55d04389cbba2622a1775fcbc183887ec 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2_paging.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/hive_relevance_2_paging.pat.json @@ -2,114 +2,489 @@ { "active_votes": [ { - "rshares": 56815342, - "voter": "madodel" + "rshares": 21816618785, + "voter": "ossama-benjohn" + }, + { + "rshares": 6191155663, + "voter": "mark-waser" + }, + { + "rshares": 3632587828, + "voter": "svamiva" + }, + { + "rshares": 30806602935, + "voter": "acassity" + }, + { + "rshares": 6755232214, + "voter": "mtber" + }, + { + "rshares": 458525808, + "voter": "edrivegom" + }, + { + "rshares": 1279135617, + "voter": "doctorstrange" + }, + { + "rshares": 5949351326, + "voter": "inti" + }, + { + "rshares": 190058704038, + "voter": "blueorgy" + }, + { + "rshares": 3644108334, + "voter": "bristolchris72" + }, + { + "rshares": 1213221173, + "voter": "politicasan2" + }, + { + "rshares": 8588256056, + "voter": "michaeldodridge" + }, + { + "rshares": 2091538583, + "voter": "lukmarcus" + }, + { + "rshares": 42155830202, + "voter": "anotherjoe" + }, + { + "rshares": 74299708, + "voter": "august-newbie" + }, + { + "rshares": 267622891, + "voter": "levycore" + }, + { + "rshares": 8308915925, + "voter": "steemitpatina" + }, + { + "rshares": 8353239954, + "voter": "etcmike" + }, + { + "rshares": 198479777, + "voter": "kita" + }, + { + "rshares": 1753773543, + "voter": "davidjkelley" + }, + { + "rshares": 5992569234, + "voter": "digital-wisdom" + }, + { + "rshares": 56760954, + "voter": "ethical-ai" + }, + { + "rshares": 999749973, + "voter": "matthewtiii" + }, + { + "rshares": 6048950061, + "voter": "jwaser" + }, + { + "rshares": 2853258517, + "voter": "bwaser" + }, + { + "rshares": 1611217127, + "voter": "ellepdub" + }, + { + "rshares": 1157169630, + "voter": "herpetologyguy" + }, + { + "rshares": 5114895425, + "voter": "morgan.waser" } ], - "author": "madodel", + "author": "jwaser", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 51.05, "beneficiaries": [], "blacklists": [], - "body": "Think Beek Urban Beekeeping in the Tropics\n\nTop Bar Hive V.S. Langstroth Hive Inspection\n\nMADE in the Philippines\n\nhttps://www.youtube.com/watch?v=LMu6WxqksdA", - "category": "food", - "children": 0, - "created": "2016-08-09T14:19:30", + "body": "\n

Feeling stylish and always a little sexy in my beekeepers garb, I grab my smoker in one hand and my hive tool in the other and bounce like Tigger out into my beloved bee-yard.  The apiary is no longer the two original hives -- expansion was inevitable. On this day, we are sitting pretty at 7 hives.   Temperatures reaching into the 90's with some notable humidity, I feel simple pure joy as I remove the bricks from the top of the hive and pry off the first of the hive covers.  I'm immediately met with a whiff of a gentle sweet smell and hear the simple quiet buzz of the girls at work -- as a couple of crabby ladies pop out and ping off my veil, informing me that I'm in their space.  I tell myself \"it is ok, settle down, all is well\".  After a few gentle puffs of cool smoke we all seem to calm down a bit. 

\n

Today, I'm checking in on a brand new queen that I grafted (created) just six weeks ago.  Four weeks later, I noted eggs and larva in this hive, so I know the queen emerged and mated.  Today's work is simple... find this queen and mark her -- always assuming that she is still alive today!

\n

 That's the queen -- dead-center

\n

Now, the bee \"authorities\" all claim that you should gently hold the queen between thumb and finger and then very carefully place a small spot of paint on her thorax.  Let it dry and then release her back into the colony. The color is specific to the last 2 digits of the year.  Pretty simple!  What the experts don't seem to mention is that you must search among 50,000 bees buzzing about -- grumpy and stressed in the late summer heat during the dearth of late nectar.  Now that I have had the hive open for a few minutes, everything feels frantic.  Sweat is dripping from every pore in my body while I search frame by frame looking for that one special bug.  I find my mind racing.  Where the heck is that she?  As time passes, the open hive is defenseless to the other bees in the bee-yard and for miles around -- causing the girls to become more and more feisty and defensive as I become more impatient with the task at hand.

\n

\"Oh yippy skippy, I found her!\"  This is so much better than finding Waldo (although I rock at that too).  I move the frame she's crawling on into a special box to protect her (mostly from myself) for the moment.  Put the hive back together and toss on a cover.  That should keep the other bees from robbing the hive for a few moments.  With the paint pen readied, it is time to take on the task of placing a dot on her back.  I, once again, try to locate the queen.  Darn this lady has speed - moving all over the frame and ducking through holes in the comb arriving on the opposite side.  

\n

\n

I spend some time trying to corner and catch her but fail as she flies off the frame and runs (breaking my 100M dash pace) under the hive.  The \"experts\" don't mention that the fat plump mated queen can still fly!  Oh no, what have I done?! Tears well up. But realize my friends, this is no ordinary queen, she's one that I grafted from a colony with a queen who I had over-wintered not once but twice! She's the only queen to emerge and mate from the 36 cells I thought I successfully grafted back in late June (The other grafts were a complete fail after taking an unplanned dive off the deck -- but that too is another story.  My Bad!)

\n

Now, sadly, I must admit that this is not the first time I have had a queen who had a story to tell . . . but I digress... I carefully drop the frame, sputter a few less than positive words to myself and without a thought lean the entire hive to one side in hopes of finding my Queen. Now I know what you\u2019re thinking -- \"BAD IDEA!\", \"DON'T DO THAT!\".   Trust me, I thought that too, but I needed find that queen, as without her the colony would dwindle and die.  I had no replacement, no plan B.

\n

\n

Awesome sauce! I found her - a REAL RESCUE.  Scooping her up in my gloved hand and leaning the hive back down into its normal position, I commenced my attempt to mark her with a \"small\" white dot ... well it turned out she got herself a big fat splotch! (Serves her right!) Then acting like nothing unusual ever happened (which in some ways is was no different than any other bee-yard adventure), I released her into the hive, replaced the missing frame and put the inner & outer cover back in place. 

\n

Feeling fairly good with the overall final outcome (queen still alive, MARKED and in the hive), I collected my beekeeping stuff and snuffed the smoker.  Just another fun day of awesome skillfulness in the bee-yard.

\n

=========================================================================

\n

I love the Doolittle Method for grafting (combined with the use of a Cloake board)!  Don't get faked out, it is not \"do little\" but a name for the method of grafting/\u201ccreating\u201d queens.  

\n
    \n
  1. Choose carefully from a frame of eggs and larva, selecting the tiniest larva in hopes it is < 24 hours old AND floating it in a pool of delicious royal jelly.  
  2. \n
  3. Once the grafts are selected and delicately scooped up (careful not to flip the larva and block the sphericals/\"breathing tubes\" -- drowning them in the process), place them in plastic queen cells on a grafting bar fitted into a frame.  
  4. \n
  5. Inserted the frame into a queen-less hive that has been outfitted and manipulated for several days with the use of a Cloake Board.  
  6. \n
  7. With the proper planning and manipulation, tens of thousands of nurse bees fill the top hive box and will feed the grafts royal jelly while draw out the new queen cells, and care for the developing queens over the following 11 days.
  8. \n
\n

http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf

\n

http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/

\n

\n


\n

\n

Minnows UNITE! (use the keyword minnowsunite)

\n

Today, I'm trying to promote a starving herpetologist who joined Steemit just two days ago (his stuff really rocks!):

\n

Here with little to no clue!

\n

Hello everyone! My name is Thomas and like the title says, I have very little idea just what the heck I\u2019m doing here\u2026 

\n

 =============================

\n

FrogWatchUSA: Citizen Science as the Future of Environmental Research

\n

Citizen Science is an form of research collaboration between scientists and volunteers, allowing for a wider array of\u2026 

\n

==============================

\n

Copperhead Photos

\n

I was fooling around at work taking a few photos of our Northern Copperheads. Not the crispest quality, but definitely\u2026 

\n

==============================

\n

My Experience Training Alligators

\n

If that title doesn\u2019t draw people in, then I don\u2019t know how to please you folks!       As I\u2019ve said in previous posts\u2026 

\n", + "category": "bee", + "children": 5, + "created": "2016-08-26T11:36:09", "curator_payout_value": "0.000 HBD", "depth": 0, - "is_paidout": true, + "is_paidout": false, "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/08/25/beautyqueen07982.md.jpg", + "http://redbricktown.com/wp-content/uploads/2015/07/608.png", + "https://www.steemimg.com/images/2016/08/25/DSCF0117bd6dd.jpg", + "https://www.steemimg.com/images/2016/08/25/May201205567d61.md.jpg", + "https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_c609e6e3b70444fd8b756f5880dfcffb~mv2_d_2941_2046_s_2.jpg?dn=Minnow+Strength+2.jpg" + ], "links": [ - "https://www.youtube.com/watch?v=LMu6WxqksdA" + "http://www.ohiostatebeekeepers.org/wp-content/pdf/books/Queen_Manual.pdf", + "http://www.thebeeyard.org/rearing-queens-via-the-cloake-board-method/", + "https://steemit.com/created/minnowsunite", + "https://steemit.com/minnowsunite/@herpetologyguy/here-with-little-to-no-clue", + "https://steemit.com/conservation/@herpetologyguy/frogwatchusa-citizen-science-as-the-future-of-environmental-research", + "https://steemit.com/photography/@herpetologyguy/copperhead-photos", + "https://steemit.com/science/@herpetologyguy/my-experience-training-alligators" ], "tags": [ - "food" + "bee", + "bees", + "story", + "nature", + "science" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 56815342, - "payout": 0.0, - "payout_at": "2016-09-09T02:19:30", - "pending_payout_value": "0.000 HBD", + "net_rshares": 367431771281, + "payout": 0.21, + "payout_at": "2016-09-02T11:36:09", + "pending_payout_value": "0.210 HBD", "percent_hbd": 10000, - "permlink": "top-bar-hive-v-s-langstroth-hive-beekeeping", - "post_id": 703905, + "permlink": "bee-happy-crowning-of-a-queen", + "post_id": 996365, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 1 + "total_votes": 28 }, - "title": "Top Bar Hive V.S. Langstroth Hive, Beekeeping", - "updated": "2016-08-09T14:19:30", - "url": "/food/@madodel/top-bar-hive-v-s-langstroth-hive-beekeeping" + "title": "BEE Happy: Crowning of a QUEEN.", + "updated": "2016-08-26T11:36:09", + "url": "/bee/@jwaser/bee-happy-crowning-of-a-queen" }, { "active_votes": [ { - "rshares": 36264946146, - "voter": "redpalestino" + "rshares": 109595483146, + "voter": "nextgenwitness" + }, + { + "rshares": 2853528223820, + "voter": "pharesim" + }, + { + "rshares": 3098953009, + "voter": "boy" + }, + { + "rshares": 3762157484, + "voter": "bue-witness" + }, + { + "rshares": 697282365, + "voter": "bunny" + }, + { + "rshares": 53957148226, + "voter": "bue" + }, + { + "rshares": 2821279392, + "voter": "thepresident" + }, + { + "rshares": 16161664622, + "voter": "danknugs" + }, + { + "rshares": 1660795487, + "voter": "mini" + }, + { + "rshares": 213655207, + "voter": "moon" + }, + { + "rshares": 8070446640, + "voter": "bentley" + }, + { + "rshares": 622693401, + "voter": "healthcare" + }, + { + "rshares": 967137774, + "voter": "daniel.pan" + }, + { + "rshares": 288133732, + "voter": "helen.tan" + }, + { + "rshares": 22084251149, + "voter": "nikolai" + }, + { + "rshares": 840869850, + "voter": "coar" + }, + { + "rshares": 1431534505, + "voter": "murh" + }, + { + "rshares": 12105765091, + "voter": "thecryptofiend" }, { - "rshares": 70910846, - "voter": "zakharsmirnoff" + "rshares": 12960638669, + "voter": "magnebit" }, { - "rshares": 502074408, - "voter": "lifeworship" + "rshares": 19162728146, + "voter": "acassity" }, { - "rshares": 80880272, - "voter": "motsna" + "rshares": 226931879895, + "voter": "tomkirkham" + }, + { + "rshares": 7756918915, + "voter": "cmtzco" + }, + { + "rshares": 164136412, + "voter": "steemswede" + }, + { + "rshares": 2016764833, + "voter": "endgame" + }, + { + "rshares": 8168668850, + "voter": "noodhoog" + }, + { + "rshares": 506839773, + "voter": "luisucv34" + }, + { + "rshares": 262099822642, + "voter": "knozaki2015" + }, + { + "rshares": 3982979378, + "voter": "cryptohustlin" + }, + { + "rshares": 1556310339, + "voter": "tokyodude" + }, + { + "rshares": 17803537413, + "voter": "papa-pepper" + }, + { + "rshares": 1153114340, + "voter": "ace108" + }, + { + "rshares": 1553534620, + "voter": "leylar" + }, + { + "rshares": 56747133, + "voter": "reported" + }, + { + "rshares": 5043425215, + "voter": "jed78" + }, + { + "rshares": 5387965254, + "voter": "theprophet0" + }, + { + "rshares": 58887718, + "voter": "krushing" + }, + { + "rshares": 47093177067, + "voter": "capitalism" + }, + { + "rshares": 148152809, + "voter": "btctoken" + }, + { + "rshares": 16569843788, + "voter": "timelapse" + }, + { + "rshares": 776735447, + "voter": "minnowsunited" + }, + { + "rshares": 60605656, + "voter": "whatyouganjado" + }, + { + "rshares": 460272200, + "voter": "bitcoindon23" + }, + { + "rshares": 12506647483, + "voter": "jphamer1" + }, + { + "rshares": 100450889, + "voter": "makaveli" + }, + { + "rshares": 562498382, + "voter": "future24" + }, + { + "rshares": 1063686952, + "voter": "bledarus" + }, + { + "rshares": 56109399, + "voter": "alexbones" + }, + { + "rshares": 45144402741, + "voter": "anotherjoe" + }, + { + "rshares": 89407628671, + "voter": "creadordelfuturo" + }, + { + "rshares": 175623645, + "voter": "wuyueling" + }, + { + "rshares": 83237614, + "voter": "ozertayiz" + }, + { + "rshares": 2039323978, + "voter": "eileenbeach" + }, + { + "rshares": 52498231, + "voter": "salebored" + }, + { + "rshares": 6743523304, + "voter": "einsteinpotsdam" + }, + { + "rshares": 1734646723, + "voter": "funkywanderer" + }, + { + "rshares": 51444457, + "voter": "bitdrone" + }, + { + "rshares": 51436144, + "voter": "sleepcult" + }, + { + "rshares": 55892382, + "voter": "mobios" + }, + { + "rshares": 73940467, + "voter": "osame066" + }, + { + "rshares": 44725075650, + "voter": "zahnspange" + }, + { + "rshares": 185235623517, + "voter": "asksisk" + }, + { + "rshares": 1624291534, + "voter": "burnin" + }, + { + "rshares": 51250382, + "voter": "rony" + }, + { + "rshares": 1366333355, + "voter": "robotev" + }, + { + "rshares": 59061931, + "voter": "steemdidge" } ], - "author": "tanshin", + "author": "jed78", "author_payout_value": "0.000 HBD", - "author_reputation": 43.7, + "author_reputation": 57.38, "beneficiaries": [], "blacklists": [], - "body": "This is the most well-designed hive I've seen to date, much easier to extract honey and less disturbance to the bees. \n\nBees are the world\u2019s most important pollinator of food crops. Let's stop the bee population decline!\n\nhttps://www.youtube.com/watch?v=WbMV9qYIXqM", - "category": "bee", - "children": 6, - "created": "2016-09-02T06:46:15", + "body": "\n

 SteemHouse Welcomes New Bees! 

\n

We got our shipment in of bees in today! Finally! Now we can stop with all the inefficient, fake hand pollinating. You can't beat mother nature when it comes to anything in nature! 

\n

 There is a saying about busy bees and let me tell you, these bees started faster than any other bees we have ever had.  Usually, when we get a shipment of bees, we set the out in the Steemhouse, and I run thru the steps to get the hive ready. The last step is to open the little slider that allows the bees out of the hive. 

\n

 I usually sit and watch for any bee movement, and in about four or five minutes they will start to emerge. This time, I walked away for less than a minute and bees were lined up to get out of the hive, granted we often get bees during the colder months so that may slow them down a bit. 

\n
\n

 Let's just hope they keep up the enthusiasm and start some round the clock pollination!

\n
\n

 This is the box that holds the hive inside, these bees do not make honey, but they earn their keep just the same.  The hole that you see right in the center of the lid is the entrance and exit holes, the plastic slider moves up and you can set it to where the bees can move in and out freely or just enter the hive and stay there. This comes in handy if you ever want to relocate the hive. If you were to move the hive while the bees are out, they would be lost. You would have a large swarm of bees hovering where the hive used to be. They have a great memory as far as the location of the hive, but no problem-solving skills to find the new location. 

\n


\n

I shot some video of me setting up the hive and it is awful, it's hard to shoot and work the box with only one hand, so please forgive me for the crap quality, but I think it covers most of it.

\n

https://youtu.be/dSXaLNzWJmM

\n

 And as I said earlier, a little video of the bees ready to get out and work! Hope you enjoy them!

\n

https://youtu.be/W-_rAde9hGw

\n

In Other News

\n

 Quick update on the tomatoes, last week I showed you a few new baby tomatoes. this week they have grown a little bit, getting close to golf ball size. So now with the bees in, we should see new tomatoes start to pack on the vines. Hold on tight folks, the fun is just starting!

\n
\n
\n

 

\n

Sorry for the lack of updates, but things are really moving right now, I'll try to get more updates in as we go.

\n

Thanks for stopping by and hope you come back!

\n


\n", + "category": "gardening", + "children": 9, + "created": "2016-08-31T00:06:57", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://img.youtube.com/vi/WbMV9qYIXqM/0.jpg" + "https://www.steemimg.com/images/2016/08/30/8303ba16d.jpg", + "https://www.steemimg.com/images/2016/08/30/830297c53.jpg", + "https://img.youtube.com/vi/dSXaLNzWJmM/0.jpg", + "https://img.youtube.com/vi/W-_rAde9hGw/0.jpg", + "https://www.steemimg.com/images/2016/08/30/830c40bb.jpg", + "https://www.steemimg.com/images/2016/08/30/830188220.jpg" ], "links": [ - "https://www.youtube.com/watch?v=WbMV9qYIXqM" + "https://youtu.be/dSXaLNzWJmM", + "https://youtu.be/W-_rAde9hGw" ], "tags": [ - "bee", - "food", - "life", "gardening", - "nature" + "hydroponic", + "food", + "minnowsunite", + "greenhouse" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 36918811672, - "payout": 0.015, - "payout_at": "2016-09-09T06:46:15", - "pending_payout_value": "0.015 HBD", + "net_rshares": 4126345789243, + "payout": 3.24, + "payout_at": "2016-09-07T00:06:57", + "pending_payout_value": "3.240 HBD", "percent_hbd": 10000, - "permlink": "best-hive-for-beekeepers", - "post_id": 1095224, + "permlink": "steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger", + "post_id": 1063882, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 4 + "total_votes": 65 }, - "title": "Best Hive for Beekeepers", - "updated": "2016-09-02T06:46:15", - "url": "/bee/@tanshin/best-hive-for-beekeepers" + "title": "SteemHouse Update: The Bees Have Arrived and Tomatoes Grow Larger", + "updated": "2016-08-31T00:06:57", + "url": "/gardening/@jed78/steemhouse-update-the-bees-have-arrived-and-tomatoes-grow-larger" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_beach_boat_relevance_1.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_beach_boat_relevance_1.pat.json index d0f075242c33caafa0935495fcfe7b2d7e96e183..648e785d3572a211399db11544144fd7ca7e6e20 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_beach_boat_relevance_1.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_beach_boat_relevance_1.pat.json @@ -2,96 +2,148 @@ { "active_votes": [ { - "rshares": 3293450717, - "voter": "andre-ager" + "rshares": 29023706432307, + "voter": "berniesanders" }, { - "rshares": 5730070018, - "voter": "saknan" + "rshares": 46820000000000, + "voter": "ned" }, { - "rshares": 219062380, - "voter": "lost" + "rshares": 5913435504863, + "voter": "pharesim" }, { - "rshares": 3094348003, - "voter": "emilhoch" + "rshares": 1020981962057, + "voter": "ihashfury" }, { - "rshares": 50537460, - "voter": "development" + "rshares": 3793880382960, + "voter": "nextgencrypto" }, { - "rshares": 64994429, - "voter": "myfirst" + "rshares": 644656032838, + "voter": "joseph" }, { - "rshares": 41757030, - "voter": "riosparada" + "rshares": 874323631422, + "voter": "bhuz" }, { - "rshares": 41250196, - "voter": "biggdogg" + "rshares": 639989115793, + "voter": "benjojo" }, { - "rshares": 57810669, - "voter": "josekmino" + "rshares": 9195622136, + "voter": "markopaasila" + }, + { + "rshares": 1212014038, + "voter": "steemrollin" + }, + { + "rshares": 700311181, + "voter": "konelectric" + }, + { + "rshares": 693389889, + "voter": "team" + }, + { + "rshares": 917009105, + "voter": "pstrident" + }, + { + "rshares": 540223785, + "voter": "nenad-ristic" + }, + { + "rshares": 125337974255, + "voter": "vato" + }, + { + "rshares": 518002152, + "voter": "officialbitcash" + }, + { + "rshares": 1230544765, + "voter": "cryptogee" + }, + { + "rshares": 4118598950, + "voter": "spaninv" + }, + { + "rshares": 442027708, + "voter": "william-noe" + }, + { + "rshares": 20005685226, + "voter": "hossary" + }, + { + "rshares": 9674245480, + "voter": "hannixx42" + }, + { + "rshares": 399508611, + "voter": "rok-fabiani" + }, + { + "rshares": 89085620, + "voter": "b4bb4r-5h3r" + }, + { + "rshares": 384636289, + "voter": "motivational" + }, + { + "rshares": 339178926, + "voter": "churdtzu" + }, + { + "rshares": 338882190251, + "voter": "sean-king" } ], - "author": "saknan", - "author_payout_value": "0.000 HBD", - "author_reputation": 54.16, + "author": "sandra", + "author_payout_value": "331.934 HBD", + "author_reputation": 62.0, "beneficiaries": [], "blacklists": [], - "body": "

http://www.krabiview.com/th/wp-content/uploads/2015/07/hong-lagoon-krabi-attraction-4.jpg

\n

Secret GEM of Thailand series : Hong Islands

\n

The Hong island was also known as \u00a0Koh Lao Bi Leh. \u00a0It has very beautiful scenery, surrounded by blue water and \u00a0coral reef barrier. The point of interest is "Bi Leh breach" famous for a the beach shape look like flying bird. What special of Hong islands is clean white sand, emerald green waters with healthy ecosytem.\u00a0

\n

http://www.krabiview.com/wp-content/uploads/2015/04/hong-island-krabi-attraction-1.jpg

\n


\n

http://www3.pantip.com/cafe/blueplanet/topic/E12797649/E12797649-3.jpg

\n

You can see a group of small fish swimming \u00a0everywhere.\u00a0

\n


\n

http://www.roughguides.com/wp-content/uploads/2012/07/ADA8DX-1680x1050.jpg

\n

The beach is suitable for swimming, kayaking, diving and snorkeling. It has been ranked as one of the top islands in the world that are worth visiting because of the clear and cleanest beach.\u00a0

\n


\n

https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8247/28339746592_dee8b591ec_b.jpg

\n

- The easiest way is buy the package tour online

\n


\n

- If you don't want to buy the tour you can use service of speed boat at Hat Noppharat Thara National Park which locate in Krabi province. See the price below

\n

http://f.ptcdn.info/219/001/000/1358171248-kohhong-o.jpg

\n

- Long-tailed boat : 2800bath , 6 person maximum, 60 minutes from Krabi province

\n

http://www.ilovekrabithailand.com/private_folder/transfer/speedboat3_tour_krabi.jpg

\n

- Speed boat \u00a0: 1000-1500bath, 20-35 person, \u00a030 minutes from Krabi province

\n


\n

http://www.krabiview.com/th/wp-content/uploads/2015/07/hong-island-krabi-attraction-6.jpg

\n


\n

https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8565/28339746622_2271a67d36_b.jpg

\n

\u00a0Photo and information by:\u00a0 \u00a0www.krabiview.com \u00a0\u00a0www.paiduaykan.com \u00a0www.aonangboat.com\u00a0

\n


\n

https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8801/28339481402_ef9a9873a2_h.jpg

", + "body": "![globe of world](http://i.imgsafe.org/ff5980b565.jpg)\n\n**Let me take you on a journey.** \n\nYou don't need: \n>your passport, \n>your credit card \n>or to check in at any airports.\n\nJust sit back, relax and enjoy the ride.\n\n![aeroplane take off](http://i.imgsafe.org/ff7195be93.jpg)\nHere we go.\n![tunisia - el jem - where gladiator was filmed](http://i.imgsafe.org/ff7dfe3e27.jpg)\nTunisia: El Jem where the film \"Gladiator\" was made.\n![goa - boat shipwrecked at candolim beach](http://i.imgsafe.org/ff8e705761.jpg)\nGoa, India: Shipwrecked boat at Candolim Beach.\n![goa - dancing cow](http://i.imgsafe.org/ff958db2f5.jpg)\nGoa, India: A dancing cow.\n![goa - the morning catch on benaulim beach](http://i.imgsafe.org/ff9e46d125.jpg)\nGoa, India: the morning catch on Benaulim Beach.\n![goa - two men and two pigs on a motorbike on a boat](http://i.imgsafe.org/ffa3a4eb3d.jpg)\nGoa, India: two men and two pigs on a motorbike on a boat\n\n![thailand - big standing buddha - bangkok](http://i.imgsafe.org/ffb3531cd5.jpg)\nThailand: Big Standing Buddha in Bangkok.\n![thailand - chiang mai district - bath time for elephant](http://i.imgsafe.org/ffd1b492fa.jpg)\nThailand: bath time for the elephants in Chiang Mai district.\n![thailand-james bond island](http://i.imgsafe.org/ffdbda26cb.jpg)\nThailand: James Bond Island.\n![thailand - phi phi leh island where the beach was filmed](http://i.imgsafe.org/ffedd9905d.jpg)\nThailand: Phi Phi Leh island where \"The Beach\" was filmed.\n\n![malaysia - petronas twin towers kuala lumpur](http://i.imgsafe.org/000ca2d6ac.jpg)\nMalaysia: Petronas Twin Towers in Kuala Lumpur.\n![malaysia - view from menara tower kl](http://i.imgsafe.org/001ce673e1.jpg)\nMalaysia: View from the Menara Tower in Kuala Lumpur.\n![malaysia - window cleaners at menara tower kl](http://i.imgsafe.org/0028bec131.jpg)\nMalaysia: Window cleaners at Menara Tower!\n![malaysia - f1 safety first](http://i.imgsafe.org/002ebb05e1.jpg)\nMalaysia: Safety first at the F1 race.\n![malaysia - chocolate f1 car](http://i.imgsafe.org/0034b1ecbe.jpg)\nMalaysia: No top speeds in this chocolate version.\n\n![hong kong by night](http://i.imgsafe.org/003a9aa64d.jpg)\nHong Kong: City by night.\n![hong kong- peak tram](http://i.imgsafe.org/00428a832c.jpg)\nHong Kong: Peak Tram.\n\n![bali- barong and keris dance](http://i.imgsafe.org/0052050770.jpg)\nBali: Barong and Keris dance.\n![bali-volcano and lake at mount batur](http://i.imgsafe.org/005a5d43cb.jpg)\nBali: Volcano and lake at Mount Batur.\n![bali-paddy fields](http://i.imgsafe.org/00618877e9.jpg)\nBali: Paddy fields.\n\n![australia-bush fire](http://i.imgsafe.org/00699eeeed.jpg)\nAustralia: bush fire.\n![australia-bungle bungle range from small plane](http://i.imgsafe.org/0076c3da6a.jpg)\nAustralia: Bungle Bungle Mountain Range.\n![australia - fruit bats katherine gorge](http://i.imgsafe.org/008211ee87.jpg)\nAustralia: large fruit bats at Katherine Gorge.\n![australia - ayers rock by sunset](http://i.imgsafe.org/0087a43117.jpg)\nAustralia: Ayers rock at sunset.\n![australia - ayers rock at close range](http://i.imgsafe.org/008f52e9ef.jpg)\nAustralia: Ayers rock up close.\n![australia - the twelve apostles](http://i.imgsafe.org/009a27b0b5.jpg)\nAustralia: The Twelve Apostles.\n\n![new zealand - north island](http://i.imgsafe.org/00a64b2a03.jpg)\nNew Zealand: the beauty of the North Island.\n![new zealand-queenstown](http://i.imgsafe.org/00ac08bf26.jpg)\nNew Zealand: Queenstown.\n![new zealand - view from bobs peak](http://i.imgsafe.org/00b2330bb9.jpg)\nNew Zealand: view from Bobs Peak.\n![new zealand - milford sound](http://i.imgsafe.org/00ba4389b2.jpg)\nNew Zealand: Milford Sound.\n\n![buenos aires- city tour](http://i.imgsafe.org/00c405f6e6.jpg)\nBuenos Aires: city tour.\n\n![rio de janeiro](http://i.imgsafe.org/00cb422e59.jpg)\nRio de Janeiro.\n![rio de janeiro - cable car to sugar loaf mountain](http://i.imgsafe.org/00d180654d.jpg)\nRio de Janeiro: cable car to Sugar Loaf Mountain.\n\n![aeroplane landing](http://i.imgsafe.org/00df458d6a.jpg)\nand we have landed back home on steemit. \nI hope you don't have too much jet lag.", "category": "travel", "children": 4, - "created": "2016-07-27T04:10:39", - "curator_payout_value": "0.000 HBD", + "created": "2016-06-02T11:38:03", + "curator_payout_value": "331.865 HBD", "depth": 0, "is_paidout": true, "json_metadata": { "image": [ - "http://www.krabiview.com/th/wp-content/uploads/2015/07/hong-lagoon-krabi-attraction-4.jpg", - "http://www.krabiview.com/wp-content/uploads/2015/04/hong-island-krabi-attraction-1.jpg", - "http://www3.pantip.com/cafe/blueplanet/topic/E12797649/E12797649-3.jpg", - "http://www.roughguides.com/wp-content/uploads/2012/07/ADA8DX-1680x1050.jpg", - "https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8247/28339746592_dee8b591ec_b.jpg", - "http://f.ptcdn.info/219/001/000/1358171248-kohhong-o.jpg", - "http://www.ilovekrabithailand.com/private_folder/transfer/speedboat3_tour_krabi.jpg", - "http://www.krabiview.com/th/wp-content/uploads/2015/07/hong-island-krabi-attraction-6.jpg", - "https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8565/28339746622_2271a67d36_b.jpg", - "https://img1.steemit.com/0x0/https://farm9.staticflickr.com/8801/28339481402_ef9a9873a2_h.jpg" - ], - "links": [ - "http://www.krabiview.com/krabi-tour-package/hong-island-tour.html" + "http://i.imgsafe.org/ff5980b565.jpg" ], "tags": [ - "travel", - "photography", - "thailand", - "nature", - "life" + "travel" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 12593280902, - "payout": 0.0, - "payout_at": "2016-08-26T16:18:54", + "net_rshares": 89245653310607, + "payout": 663.799, + "payout_at": "2016-08-08T11:23:12", "pending_payout_value": "0.000 HBD", "percent_hbd": 10000, - "permlink": "secret-gem-of-thailand-series-hong-islands", - "post_id": 394091, + "permlink": "around-the-world-in-80-seconds", + "post_id": 21548, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 9 + "total_votes": 26 }, - "title": "Secret GEM of Thailand series : Hong Islands", - "updated": "2016-07-27T04:13:30", - "url": "/travel/@saknan/secret-gem-of-thailand-series-hong-islands" + "title": "Around the World in 80 seconds", + "updated": "2016-06-02T11:38:03", + "url": "/travel/@sandra/around-the-world-in-80-seconds" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created.pat.json index 37917c5144a90353ed1fba115358216e04535c91..c59890fb402c9426aae73eabe800c3b34bc72400 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created.pat.json @@ -2,25 +2,29 @@ { "active_votes": [ { - "rshares": 4134640392195, - "voter": "riverhead" + "rshares": 58532670832, + "voter": "ezzy" }, { - "rshares": 2531219186, - "voter": "steem1653" + "rshares": 774734761, + "voter": "luisucv34" }, { - "rshares": 4597948653, - "voter": "gustavopasquini" + "rshares": 88369590246, + "voter": "rea" }, { - "rshares": 232757631, - "voter": "sergey44" + "rshares": 5005509624, + "voter": "gustavopasquini" }, { "rshares": 275446808, "voter": "cris.emilia" }, + { + "rshares": 12685919337, + "voter": "gargon" + }, { "rshares": 1335239332, "voter": "future24" @@ -29,25 +33,41 @@ "rshares": 191761463, "voter": "abnerpasquini" }, - { - "rshares": 83629379486, - "voter": "serejandmyself" - }, { "rshares": 163701239, "voter": "steemit-recipes" }, { - "rshares": 17024381094, - "voter": "bluehorseshoe" + "rshares": 1239881154, + "voter": "yzomri" + }, + { + "rshares": 1064809843, + "voter": "tatianka" + }, + { + "rshares": 52948298, + "voter": "alwayzgamez" }, { - "rshares": 98577200, + "rshares": 98524303, "voter": "ola1" }, { - "rshares": 6654826634, + "rshares": 51848960, + "voter": "audiphotography" + }, + { + "rshares": 154765535, + "voter": "mrsgreen" + }, + { + "rshares": 3649573685, "voter": "dresden" + }, + { + "rshares": 153768931, + "voter": "shortstories" } ], "author": "gustavopasquini", @@ -55,24 +75,24 @@ "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-24.png?w=1000\n\n> ### Traditional Brazilian Desserte to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n> 2 bananas\n\n> 1 tablespoon melted margarine soup\n\n> 1/2 teaspoon brown sugar soup\n\n> 1/2 teaspoon ground cinnamon tea\n\n> 8 sheets of pasta for pastel\n\n> frying oil\n\n\n# PREPARATION\n\n### 1. Cut the banana into slices .\n\n### 2. in a bowl, mix with margarine, sugar and cinnamon .\n\n### 3. divide that filling in pastel masses and close with a fork .\n\n### 4. fry in hot oil, drain on absorbent paper and serve .\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/pastel-of-banana-with-chocolate/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/1660-pastel-de-banana.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000\n\n> ### Traditional Brazilian Main Course to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n \n> 1 kg of pork Ribs\n\n> 1 lemon\n\n> salt to taste\n\n> 2 tablespoons oil soup\n\n> 1/2 onion, chopped\n\n> 1/2 cup brown sugar\n\n> 1/2 cup white vinegar\n\n> 2 tablespoons Worcestershire sauce\n\n> 2 cups ketchup\n\n> 1 bay leaf\n\n> 1/2 cup water\n\n> 1 teaspoon pepper sauce dessert\n\n> pepper to taste\n\n> salt to taste\n\n \n# PREPARATION\n\n### 1. Wash the ribs in water corrente.Esfregue lemon over the meat, and then season with salt to taste.\n\n### 2. Place the ribs in a pan and cover with paper aluminio.\n\n### 3. Leve the heated oven at 200 \u00b0 for about 40 minutes.\n\n### 4. In a saucepan, heat the oil and gently fry the onion. Want to be your brown sugar and vinegar, and let the sugar dissolve.\n\n### 5. Want to be your English sauce, catsup, bay leaf, pepper sauce, water, salt and let the sauce simmer until engrossar.\n\n### 6. Tourne off the oven and set aside.\n\n### 7. After 40 minutes, remove the aluminum foil and baste the ribs with barbecue sauce.\n\n### 8. bake again for another 10 minutes.\n\n### 9. Remove from oven and serve with sauce on the side.\n\n### 10. Serve with fried or stuffed potato.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/)\n\n> ### [Recipe Site ](http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", "category": "food", - "children": 4, - "created": "2016-09-15T18:52:15", + "children": 0, + "created": "2016-09-15T14:37:00", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-24.png?w=1000", + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000", "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" ], "links": [ "https://gustavopasquini.com", "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/15/pastel-of-banana-with-chocolate/", - "http://www.tudogostoso.com.br/receita/1660-pastel-de-banana.html" + "https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/", + "http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html" ], "tags": [ "food", @@ -83,3278 +103,3304 @@ ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4251375630921, - "payout": 1.927, - "payout_at": "2016-09-22T18:52:15", - "pending_payout_value": "1.927 HBD", + "net_rshares": 173800694351, + "payout": 0.039, + "payout_at": "2016-09-22T14:37:00", + "pending_payout_value": "0.039 HBD", "percent_hbd": 10000, - "permlink": "pastel-of-banana-with-chocolate", - "post_id": 1257493, + "permlink": "pork-rib-with-barbucue-sauce", + "post_id": 1254587, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 12 + "total_votes": 17 }, - "title": "Pastel of Banana with Chocolate", - "updated": "2016-09-15T18:52:57", - "url": "/food/@gustavopasquini/pastel-of-banana-with-chocolate" + "title": "Pork Rib with Barbucue Sauce", + "updated": "2016-09-15T14:37:00", + "url": "/food/@gustavopasquini/pork-rib-with-barbucue-sauce" }, { "active_votes": [ { - "rshares": 164690897, - "voter": "flowmetheus" + "rshares": 231804941120, + "voter": "anonymous" }, { - "rshares": 154843377, - "voter": "squadron" - } - ], - "author": "squadron", - "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, - "beneficiaries": [], - "blacklists": [], - "body": "\n

Technology could be used to differentiate fish caught sustainably to those caught illegally, or linked to human rights abuses 

\n

\n

Blockchain is a digital ledger or record of information that is accessible to everyone. The technology is being trialled in the fishing industry. Photograph: Maria-Ines Fuenmayor/Provenance 

\n

A new digital technology has been trialled to track fish from trawler to the supermarket in a breakthrough that could help stop human rights abuses and illegal fishing.The technology \u2013 called blockchain and first used to power the currency Bitcoin \u2013 is expected to revolutionise the finance, property and food sectors replacing traditional contracts, paperwork and identification methods.Blockchain is a digital ledger or record of information that is accessible to everyone. In this case it details the origins of fish and allows anyone to see where the fish was caught, processed and sold on. It does not stop illegal fishing on its own but it opens up the supply chain for anyone to scrutinise.With the seafood industry notorious for human rights abuses and illegal fishing, campaigners hope the technology, piloted by a UK-based company Provenance, could help retailers, manufacturers and restaurants prove the origins of their fish.\u201cBuilding in mechanisms to deliver transparency from net to plate is central to eradicating illegal, unsustainable fishing and the human rights abuses that have plagued parts of the seafood production sector,\u201d said Steve Trent, executive director at the Environmental Justice Foundation (EJF). 

\n

\n

Smartphones could be used to scan fish products used in the trial to access information on their origins and journey to the supermarket shelf. Photograph: Provenance 

\n

At present the buying and selling of seafood is tracked by paper records and tags on the fish. The new blockchain approach sees local fishermen send SMS messages to register their catch on the blockchain. This identification is then transferred to a supplier along with the catch, with any subsequent move, for example processing or tinning, also recorded.
\nThe information on the origin and supply chain journey of the fish can then be accessed and verified by end buyers and consumers in shops or restaurants using their smartphones, replacing the current printed communication and labels. 

\n

The technology has already sparked interest from food companies, with the Co-op Food group currently conducting its own trial with Provenance on fresh food products - expected to conclude later this year.Provenance founder Jessi Baker said that the technology currently adds a \u201cfew pence\u201d to the price of the final product so is likely to be used first on premium fish products, or even wine or olive oil. The cost will need to come down to \u201cpoints of a pence\u201d to be viable for canned and processed fish produce, she said. 

\n

\u201cWe are desperately in need of a solution,\u201d said Baker. \u201cWe want to help support fish that is caught sustainably and verify these claims down the chain to help drive the market for slavery-free fish. This pilot shows that complex, global supply chains can be made transparent by using blockchain technology.\u201dThe fish trial has been welcomed by Thai Union, the world\u2019s biggest tuna exporter, that has faced its own sustainability criticisms. Tesco stopped stocking its John West brand in July this year, citing the need for the fish company to ensure it was using sustainable sources of tuna.\u201cTraceability \u2013 which allows us to prove that our fish is caught legally and sustainably and that safe labour conditions are met throughout the supply chain - is vital if we are to interest consumers in the source of their tuna,\u201d said Dr Darian McBain, director of sustainability at Thai Union. 

\n

\u201cThe next challenges are building scalability so that traceability systems can operate across borders and certifying authorities, and educating consumers that it is worth paying more for sustainably-caught traceable fish where workers are paid a fair and decent wage,\u201d she said.Trent from EJF, cautioned that on its own the technology would not end abuses in the seafood sector. \u201cIt is also essential to understand and support the other actions and mechanisms that are needed to combat these abuses, including the role of effective enforcement actions and the application of strong, fair and transparent action in the courts to impose robust penalties,\u201d he said. 

\n", - "category": "blockchain", - "children": 0, - "created": "2016-09-15T15:18:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemitup.eu/i/5A9FC4C0EFB3A4846D134CA765923913.jpg", - "https://www.steemitup.eu/i/161238D8BA707784C33382E6E658E98E.jpg" - ], - "links": [ - "https://www.theguardian.com/world/2016/jul/07/blockchain-answer-life-universe-everything-bitcoin-technology", - "https://www.theguardian.com/global-development/2014/jun/10/supermarket-prawns-thailand-produced-slave-labour", - "https://www.theguardian.com/fashion/fashion-blog/2014/apr/25/jessi-baker-clothes-slaves-fashion-provenance-website-revolution-consumer", - "https://www.theguardian.com/environment/food", - "https://www.tescoplc.com/news/blog/topics/tough-sustainability-standards-for-our-affordable-quality-fish/" - ], - "tags": [ - "blockchain", - "conservation", - "story", - "fishing", - "fish" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 319534274, - "payout": 0.0, - "payout_at": "2016-09-22T15:18:03", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 10000, - "permlink": "blockchain-technology-trialled-to-tackle-slavery-in-the-fishing-industry", - "post_id": 1255086, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 2 - }, - "title": "Blockchain technology trialled to tackle slavery in the fishing industry", - "updated": "2016-09-15T15:18:03", - "url": "/blockchain/@squadron/blockchain-technology-trialled-to-tackle-slavery-in-the-fishing-industry" - }, - { - "active_votes": [ - { - "rshares": 27814176695531, - "voter": "dantheman" + "rshares": 9864946405427, + "voter": "berniesanders" }, { - "rshares": 7145643497594, - "voter": "skywalker" + "rshares": 73217648724, + "voter": "nextgenwitness" }, { - "rshares": 1968124814276, - "voter": "badassmother" + "rshares": 244108524320, + "voter": "justin" }, { - "rshares": 2052934239988, - "voter": "hr1" + "rshares": 670052746417, + "voter": "silver" }, { - "rshares": 6596087814836, - "voter": "fuzzyvest" + "rshares": 1626328757302, + "voter": "silversteem" }, { - "rshares": 1337025448249, - "voter": "rossco99" + "rshares": 1918321990604, + "voter": "nextgencrypto" }, { - "rshares": 22864938197, - "voter": "jaewoocho" + "rshares": 2352812686160, + "voter": "wang" }, { - "rshares": 1576018783851, - "voter": "joseph" + "rshares": 12940564755, + "voter": "danknugs" }, { - "rshares": 466052314352, - "voter": "recursive2" + "rshares": 168108666389, + "voter": "steemservices" }, { - "rshares": 636514783207, - "voter": "masteryoda" + "rshares": 1061234076, + "voter": "murh" }, { - "rshares": 3120252422964, - "voter": "recursive" + "rshares": 57111543784, + "voter": "ezzy" }, { - "rshares": 681020986865, - "voter": "boombastic" + "rshares": 5325010239, + "voter": "gustavopasquini" }, { - "rshares": 91328598326, - "voter": "mrs.agsexplorer" + "rshares": 360603550, + "voter": "sergey44" }, { - "rshares": 6959124583, - "voter": "bingo-0" + "rshares": 2300746982, + "voter": "leylar" }, { - "rshares": 1330868635495, - "voter": "steempower" + "rshares": 2444628756, + "voter": "bookworm" }, { - "rshares": 445757361586, - "voter": "boatymcboatface" + "rshares": 275446808, + "voter": "cris.emilia" }, { - "rshares": 443132842669, - "voter": "officialfuzzy" + "rshares": 191761463, + "voter": "abnerpasquini" }, { - "rshares": 9167255683, - "voter": "idol" + "rshares": 14497903981, + "voter": "thecurator" }, { - "rshares": 18955732033, - "voter": "chitty" + "rshares": 2649789126, + "voter": "levycore" }, { - "rshares": 8232133931, - "voter": "unosuke" + "rshares": 163701239, + "voter": "steemit-recipes" }, { - "rshares": 139694054199, - "voter": "chris4210" + "rshares": 23137850346, + "voter": "andrewawerdna" }, { - "rshares": 14501486968, - "voter": "valtr" + "rshares": 3011471807, + "voter": "imag1ne" }, { - "rshares": 1577916417, - "voter": "jocelyn" + "rshares": 109225703, + "voter": "rusla" }, { - "rshares": 9604795718, - "voter": "gregory60" + "rshares": 517900727, + "voter": "mohamedmashaal" }, { - "rshares": 89897248149, - "voter": "eeks" + "rshares": 172352271, + "voter": "ola1" }, { - "rshares": 24694558802, - "voter": "fkn" + "rshares": 53227552, + "voter": "drac59" }, { - "rshares": 468281676, - "voter": "paco-steem" + "rshares": 733720697, + "voter": "alienbutt" + } + ], + "author": "gustavopasquini", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.39, + "beneficiaries": [], + "blacklists": [], + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000\n\n> ### Traditional Brazilian Appetizer to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n## The Ragu Dry Meat\n\n> 400g of dried meat or desalted salt;\n\n> 1/2 medium onion chopped in the smallest possible size (brunoise);\n\n> 2 cloves garlic, minced in the smallest possible size (brunoise);\n\n> 3 tablespoons olive oil;\n\n> 0,3l of white or red wine;\n\n> 500ml of water;\n\n> Pelati 1 can of tomatoes into cubes or 3 Italian tomatoes, seeded and peeled;\n\n> Salt to taste, if necessary after completion of Ragu\n\n# The polenta\n\n> 200g of fine corn flour for polenta;\n\n> 700ml of water (to dilute the polenta);\n\n> \u00bd teaspoon salt tea;\n\n\n# PREPARATION\n\n\n## Ragu Dry Meat\n\n### 1. Before any procedure, dessalgue their dried meat, which usually comes to us consumers with too much salt to your saves. Cut the meat into large cubes of edge 5cm +/- each. Dip these cubes of dried meat in a container with water to the surface of the meat, covering the cubes. Keep this container in the refrigerator and replace your water every 2 hours, 3 to 4 times depending on how their meat is salty.\n\n### 2. To find out if your meat is too much or too little salt, just testing the water at the last and penultimate exchanges; if it is too salty, require more exchanges of cold water, if the water is only brackish, will be ready the meat to be manipulated.\n\n### 3. In a pressure cooker and over medium heat, saute onion and garlic in olive oil, leaving them brown. Add to this mixture the meat without water dessalgue, in order to seal (browning meat outside), while stirring occasionally.\n\n### 4. Add the wine, water and cover the pressure cooker, sealing it well. Lower the heat to the lowest setting and cook in pressure for about 30 minutes.\n\n### 5. Turn off the heat, allow the pressure out completely. Open the pot and see if the meat is well tender, otherwise return it to the fire, with the covered pot for a few minutes (10minutes, depending on how the meat in question is still hard).\n\n### 6. Once cooked meat and tender, remove all the liquid that came off the meat into another container and set aside.\n\n### 7. Close the pressure cooker with the meat cooked inside, and shake several times and vigorously. When you open the pressure cooker meat should be shredded completely. If not, close the pot again and repeat the procedure until the desired result.\n\n### 8. Transfer the meat with its broth to a small saucepan and deep, add pelati tomatoes, mix well, correct the salt if necessary, and leave on medium heat until the broth begins to reduce and refine. About 20 minutes. The more reduce broth, the flavor will be determined.\n\n\n\n## Polenta\n\n### Boil water in a deep pan and add low-temperature salt and fine corn flour gradually, stirring until it is full-bodied and creamy. Preferably, follow the \"proportion\" of water and cornmeal, and the \"method of preparation\" of the flour manufacturer to polenta to buy, after all there are differences in the composition of each of these industrialized corn mixtures! Porcione container or format you want to serve.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/)\n\n> ### [Recipe Site ](https://play.google.com/music/listen?u=0#/wmp)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 2, + "created": "2016-09-15T12:27:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/", + "https://play.google.com/music/listen?u=0#/wmp" + ], + "tags": [ + "food", + "health", + "recipes", + "curie", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17276761050325, + "payout": 20.228, + "payout_at": "2016-09-22T12:27:30", + "pending_payout_value": "20.228 HBD", + "percent_hbd": 10000, + "permlink": "polenta-with-ragu-meat-dry", + "post_id": 1253260, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 28 + }, + "title": "Polenta with Ragu Meat Dry", + "updated": "2016-09-15T16:21:24", + "url": "/food/@gustavopasquini/polenta-with-ragu-meat-dry" + }, + { + "active_votes": [ + { + "rshares": 115875646943, + "voter": "anonymous" }, { - "rshares": 5641144936, - "voter": "spaninv" + "rshares": 20416330653141, + "voter": "blocktrades" }, { - "rshares": 32459455171, - "voter": "elishagh1" + "rshares": 7095296222198, + "voter": "xeldal" }, { - "rshares": 8669787638, - "voter": "richman" + "rshares": 3306677308899, + "voter": "pharesim" }, { - "rshares": 584162335269, - "voter": "nanzo-scoop" + "rshares": 5763379001974, + "voter": "enki" }, { - "rshares": 469184158, - "voter": "jeffanthonyfds" + "rshares": 28968653731, + "voter": "interteem" }, { - "rshares": 10461841838, - "voter": "acidyo" + "rshares": 644261084628, + "voter": "boombastic" }, { - "rshares": 36656769992, - "voter": "dan-atstarlite" + "rshares": 6558399783, + "voter": "bingo-0" }, { - "rshares": 177393957447, - "voter": "mummyimperfect" + "rshares": 131761872479, + "voter": "team" }, { - "rshares": 313687341, - "voter": "coar" + "rshares": 94049519439, + "voter": "jchch" }, { - "rshares": 106629500909, - "voter": "asch" + "rshares": 83523204254, + "voter": "acidsun" }, { - "rshares": 1061210624, - "voter": "murh" + "rshares": 13612259491, + "voter": "fact" }, { - "rshares": 6230682263, - "voter": "cryptofunk" - }, - { - "rshares": 579494558, - "voter": "kodi" - }, - { - "rshares": 2111403468, - "voter": "error" - }, - { - "rshares": 985518335179, - "voter": "cyber" - }, - { - "rshares": 61711048609, - "voter": "theshell" - }, - { - "rshares": 50879221096, - "voter": "ak2020" - }, - { - "rshares": 63100175656, - "voter": "justtryme90" - }, - { - "rshares": 400866642793, - "voter": "taoteh1221" - }, - { - "rshares": 410502622, - "voter": "applecrisp" - }, - { - "rshares": 365370465, - "voter": "stiletto" + "rshares": 10435646449, + "voter": "cian.dafe" }, { - "rshares": 15787116636, - "voter": "zakharya" + "rshares": 268842348, + "voter": "coar" }, { - "rshares": 280678620376, - "voter": "trogdor" + "rshares": 1060926034, + "voter": "murh" }, { - "rshares": 121380113922, - "voter": "geoffrey" + "rshares": 10263839321, + "voter": "andu" }, { - "rshares": 208331842756, - "voter": "kimziv" + "rshares": 202560983569, + "voter": "dragonslayer109" }, { - "rshares": 76009124707, - "voter": "emily-cook" + "rshares": 75027817954, + "voter": "thecryptofiend" }, { - "rshares": 12064022115, - "voter": "primus" + "rshares": 6652497229, + "voter": "grandpere" }, { - "rshares": 29635215678, - "voter": "acassity" + "rshares": 6553223997, + "voter": "keithwillshine" }, { - "rshares": 280916636, - "voter": "ladyclair" + "rshares": 783400875, + "voter": "mammasitta" }, { - "rshares": 19099829330, - "voter": "venuspcs" + "rshares": 81716838174, + "voter": "razvanelulmarin" }, { - "rshares": 813595892, - "voter": "poias" + "rshares": 2187218324, + "voter": "superfreek" }, { - "rshares": 7418976078, - "voter": "dasha" + "rshares": 4941216517, + "voter": "skapaneas" }, { - "rshares": 153697599394, + "rshares": 174543034217, "voter": "asmolokalo" }, { - "rshares": 1642983170, - "voter": "gidlark" + "rshares": 61322628143, + "voter": "lehard" }, { - "rshares": 73849034695, + "rshares": 69475262319, "voter": "rubybian" }, { - "rshares": 3058898852, - "voter": "getssidetracked" + "rshares": 8567907568, + "voter": "cmtzco" }, { - "rshares": 17903672525, - "voter": "konstantin" + "rshares": 16313784115, + "voter": "yogi.artist" }, { - "rshares": 572413932, - "voter": "trees" + "rshares": 20904678488, + "voter": "elyaque" }, { - "rshares": 83801390, - "voter": "strawhat" + "rshares": 910779619, + "voter": "steemswede" }, { - "rshares": 2597453094, - "voter": "romel" + "rshares": 823059320858, + "voter": "slowwalker" }, { - "rshares": 276570042, - "voter": "cryptochannel" + "rshares": 10594872684, + "voter": "seanmchughart" }, { - "rshares": 120546538382, - "voter": "furion" + "rshares": 14879287331, + "voter": "ausbitbank" }, { - "rshares": 6462652657, - "voter": "owdy" + "rshares": 45733145544, + "voter": "mrwang" }, { - "rshares": 590190776, - "voter": "barbara2" + "rshares": 23662387370, + "voter": "akareyon" }, { - "rshares": 642869652, - "voter": "ch0c0latechip" + "rshares": 85512692, + "voter": "snowden" }, { - "rshares": 607124531, - "voter": "doge4lyf" + "rshares": 40151194718, + "voter": "diana.catherine" }, { - "rshares": 18371164995, - "voter": "sebastien" + "rshares": 10418219772, + "voter": "deviedev" }, { - "rshares": 13516878845, - "voter": "sitaru" + "rshares": 151952973903, + "voter": "gbert" }, { - "rshares": 14487855165, - "voter": "aaseb" + "rshares": 451014793670, + "voter": "knozaki2015" }, { - "rshares": 4209499465, - "voter": "karen13" + "rshares": 7055915472, + "voter": "arcange" }, { - "rshares": 10646413479, - "voter": "deviedev" + "rshares": 2650671514, + "voter": "the-future" }, { - "rshares": 258981906731, - "voter": "nabilov" + "rshares": 4979465938, + "voter": "konti" }, { - "rshares": 117757790207, - "voter": "pkattera" + "rshares": 39270485141, + "voter": "royaltiffany" }, { - "rshares": 274155883, - "voter": "tinyhomeliving" + "rshares": 10902999570, + "voter": "rpf" }, { - "rshares": 55698224169, - "voter": "streetstyle" + "rshares": 3847926858, + "voter": "bitcoiner" }, { - "rshares": 7313749376, - "voter": "lichtblick" + "rshares": 14848958749, + "voter": "beowulfoflegend" }, { - "rshares": 35782652880, - "voter": "creemej" + "rshares": 33395564589, + "voter": "sauravrungta" }, { - "rshares": 5726411049, - "voter": "btcbtcbtc20155" + "rshares": 13069930577, + "voter": "shredlord" }, { - "rshares": 167298234999, - "voter": "blueorgy" + "rshares": 125433315, + "voter": "aish" }, { - "rshares": 4544488912, - "voter": "poseidon" + "rshares": 50619397, + "voter": "steemchain" }, { - "rshares": 7946556816, - "voter": "smolalit" + "rshares": 50619397, + "voter": "whalepool" }, { - "rshares": 3506024506, - "voter": "simon.braki.love" + "rshares": 904575538, + "voter": "happyphoenix" }, { - "rshares": 82781233416, - "voter": "thylbom" + "rshares": 4140959784, + "voter": "ace108" }, { - "rshares": 86528557116, - "voter": "rea" + "rshares": 1365664469, + "voter": "alex.chien" }, { - "rshares": 204615586375, - "voter": "jl777" + "rshares": 10469586987, + "voter": "logic" }, { - "rshares": 20026634941, - "voter": "positive" + "rshares": 3361197115, + "voter": "sulev" }, { - "rshares": 35105434017, - "voter": "paquito" + "rshares": 139386030811, + "voter": "shaka" }, { - "rshares": 8507360175, - "voter": "fishborne" + "rshares": 9125799205, + "voter": "sykochica" }, { - "rshares": 309088757, - "voter": "sergey44" + "rshares": 2236674222, + "voter": "merej99" }, { - "rshares": 17267159012, - "voter": "proto" + "rshares": 71563049, + "voter": "always1success" }, { - "rshares": 34304658614, - "voter": "sisterholics" + "rshares": 4119640503, + "voter": "timcliff" }, { - "rshares": 674282213, - "voter": "fnait" + "rshares": 148152809, + "voter": "btctoken" }, { - "rshares": 611258547, - "voter": "keepcalmand" + "rshares": 2375230655, + "voter": "kalimor" }, { - "rshares": 42379649186, - "voter": "smailer" + "rshares": 13640797900, + "voter": "stephen.king989" }, { - "rshares": 25636155654, - "voter": "pixielolz" + "rshares": 50565616, + "voter": "michellek" }, { - "rshares": 149624601, - "voter": "steemster1" + "rshares": 3489192001, + "voter": "kurtbeil" }, { - "rshares": 1033757233, - "voter": "neowenyuan27" + "rshares": 2440657034, + "voter": "steemleak" }, { - "rshares": 3353832611, - "voter": "glitterpig" + "rshares": 88179884, + "voter": "bigsambucca" }, { - "rshares": 121680301, - "voter": "picker" + "rshares": 1148932075, + "voter": "boddhisattva" }, { - "rshares": 896285424, - "voter": "metaflute" + "rshares": 91269448383, + "voter": "krishtopa" }, { - "rshares": 8734048037, - "voter": "taker" + "rshares": 13512480655, + "voter": "gargon" }, { - "rshares": 59219358, - "voter": "sharon" + "rshares": 14081076281, + "voter": "cristi" }, { - "rshares": 60342922, - "voter": "lillianjones" + "rshares": 3767193262, + "voter": "alchemage" }, { - "rshares": 1213074787308, - "voter": "laonie" + "rshares": 25744468323, + "voter": "hanshotfirst" }, { - "rshares": 157504637007, - "voter": "twinner" + "rshares": 62624816, + "voter": "nevermind" }, { - "rshares": 4890234271, - "voter": "satoshifpv" + "rshares": 2949708530, + "voter": "unrealisback" }, { - "rshares": 11693771864, - "voter": "thebluepanda" + "rshares": 44290701459, + "voter": "bitcalm" }, { - "rshares": 42635136908, - "voter": "myfirst" + "rshares": 92892046204, + "voter": "serejandmyself" }, { - "rshares": 252723433247, - "voter": "somebody" + "rshares": 24058008360, + "voter": "mihaiart" }, { - "rshares": 16251975438, - "voter": "sunshine" + "rshares": 8791068705, + "voter": "gvargas123" }, { - "rshares": 9691515710, - "voter": "flysaga" + "rshares": 14514235832, + "voter": "nastik" }, { - "rshares": 2501627790, - "voter": "gmurph" + "rshares": 50816343, + "voter": "bitchplease" }, { - "rshares": 55828810753, - "voter": "midnightoil" + "rshares": 8773812221, + "voter": "craigwilliamz" }, { - "rshares": 84246848, - "voter": "coderg" + "rshares": 2184427180, + "voter": "shadowspub" }, { - "rshares": 4281232336, - "voter": "ullikume" + "rshares": 88019548, + "voter": "uziriel" }, { - "rshares": 139631233866, - "voter": "xiaohui" + "rshares": 7471182625, + "voter": "einsteinpotsdam" }, { - "rshares": 6952769870, - "voter": "elfkitchen" + "rshares": 50784892, + "voter": "freesteem" }, { - "rshares": 103387869456, - "voter": "joele" + "rshares": 1742183706, + "voter": "rachelsvparry" }, { - "rshares": 4365575224, - "voter": "xiaokongcom" + "rshares": 51729228, + "voter": "jeff-kubitz" }, { - "rshares": 1405383530, - "voter": "hms818" + "rshares": 89354006295, + "voter": "cnfund" }, { - "rshares": 42833125455, - "voter": "nonlinearone" + "rshares": 1771984046, + "voter": "alwayzgame" }, { - "rshares": 60819615, - "voter": "msjennifer" + "rshares": 4003016084, + "voter": "funnyman" }, { - "rshares": 55925537, - "voter": "ciao" + "rshares": 3674734012, + "voter": "slayer" }, { - "rshares": 3033050865, - "voter": "jrcornel" + "rshares": 219004308, + "voter": "anomaly" }, { - "rshares": 55449983, - "voter": "steemo" + "rshares": 180118177, + "voter": "natord" }, { - "rshares": 9025821447, - "voter": "xianjun" + "rshares": 87018470283, + "voter": "btshuang" }, { - "rshares": 55306941, - "voter": "steema" + "rshares": 1571586148, + "voter": "yanik" }, { - "rshares": 71282219, - "voter": "confucius" + "rshares": 152866755, + "voter": "chocolatoso" }, { - "rshares": 9729857687, - "voter": "mione" + "rshares": 74838700, + "voter": "dealzgal" }, { - "rshares": 56157882, - "voter": "jarvis" + "rshares": 153178035, + "voter": "royfft" }, { - "rshares": 591097626, - "voter": "microluck" + "rshares": 132877786, + "voter": "sawgunner13" }, { - "rshares": 75676352, - "voter": "razberrijam" - }, - { - "rshares": 54313084, - "voter": "fortuner" - }, - { - "rshares": 3286864056, - "voter": "macartem" - }, - { - "rshares": 9827647000, - "voter": "gvargas123" - }, - { - "rshares": 53056158, - "voter": "johnbyrd" - }, - { - "rshares": 53039566, - "voter": "thomasaustin" - }, - { - "rshares": 53037689, - "voter": "thermor" - }, - { - "rshares": 53048942, - "voter": "ficholl" - }, - { - "rshares": 53030738, - "voter": "widell" - }, - { - "rshares": 3635091595, - "voter": "movievertigo" - }, - { - "rshares": 52651308, - "voter": "revelbrooks" - }, - { - "rshares": 332237822, - "voter": "mrlogic" - }, - { - "rshares": 56654664918, - "voter": "mandibil" - }, - { - "rshares": 51562255, - "voter": "curpose" - }, - { - "rshares": 69986345, - "voter": "steembriefing" + "rshares": 108601105, + "voter": "dirlei.sdias" }, { - "rshares": 54612436, - "voter": "riv" - }, + "rshares": 150753854, + "voter": "shortstories" + } + ], + "author": "sauravrungta", + "author_payout_value": "0.000 HBD", + "author_reputation": 61.54, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Most of us believe that the laws of any country are a result of the pinnacle of rational thinking. Of course, since laws are what keep everybody in \u201corder\u201d and they are quite literally what makes a country, a country. But laws are made by people and people do stupid things all the time. Even while making said laws! There are some laws that make you want to go like this:

\n

\n

In this post, I\u2019m going to list some of the craziest, stupidest and the dumbest laws that are either still in effect or were in effect up till recently. And I am going to do this country wise. So, sit back, relax and get ready for a chuckle or two!

\n

Australia

\n

1. In Victoria, Australia, it is illegal to change a light bulb unless you\u2019re a licensed electrician.

\n

2. Men in the country are free to cross-dress, just as long as their dresses are not strapless.

\n

3. Children may not purchase cigarettes, but they may smoke them.

\n

4. It is illegal to wear hot pink pants after midday Sunday.

\n

\n

Image Credits

\n

Bangladesh

\n

1. Bangladeshi children of age 15 and older can be sent to jail for cheating on their final exams.

\n

Britain

\n

1. It is illegal to handle a salmon in suspicious circumstances.

\n

2. It is illegal to import potatoes into England or Wales if you have reasonable cause to believe that they are Polish.

\n

3. In Britain, you are not allowed to let your pet, mate with any pet from the royal house.

\n

4. It is illegal to operate a cow while intoxicated.

\n

5. It is illegal to die in parliament. (This law has been removed recently)

\n

Canada

\n

1. In Canada, by law, one out of every five songs on the radio must be sung by a Canadian.

\n

\n

Image Credits

\n

2. It is illegal to show public affection on Sunday.

\n

3. It is illegal to kill a sick person by frightening them.

\n

China

\n

1. In July 2013 a law was passed in China that states it is illegal for adult children to not visit their parents \u201coften\u201d in China. They are also required to attend to their parent\u2019s spiritual needs.

\n

2. To go to college you must be intelligent.

\n

Denmark

\n

1. In Danish restaurants, you don\u2019t have to pay for your food unless, you are \u2018full\u2019 at the end of your meal.

\n

2. It is illegal to start your car without first checking to see if there are any children sleeping under the car.

\n

3. In Denmark it is not illegal for a convicted prisoner to escape from prison. If the escapee is caught he only serves the rest of his sentence.

\n

France

\n

1. In France, it is stated as illegal to marry a dead person.

\n

2. From 1799 to 2013, it was illegal for women to wear pants.

\n

3. It is illegal to kiss on railways in France.

\n

4. It is illegal to take photos of police officers or police vehicles, even if they are just in the background.

\n

Hong Kong

\n

1. In Hong Kong, there\u2019s a law that allows a wife to kill her husband if she finds him cheating. However, she must kill him with her bare hands.

\n

\n

Image Credits

\n

Indonesia

\n

1. In Indonesia, the penalty for masturbation is decapitation.

\n

Israel

\n

1. If you have been maintaining an illegal radio station for five or more years, the station becomes legal.

\n

2. Picking one\u2019s nose on the Sabbath is illegal.

\n

3. It is forbidden to bring bears to the beach.

\n

Japan

\n

1. Being overweight is illegal in Japan.

\n

Saudi Arabia

\n

1. In Saudi Arabia, women are not allowed to drive a car.

\n

2. Also, there is no minimum age for marriage.

\n

Singapore

\n

1. In Singapore it is illegal for a person to walk around the house naked.

\n

2. It is illegal to pee in an elevator.

\n

3. Chewing gum is illegal in Singapore.

\n

\n

Image Credits

\n

Switzerland

\n

1. In Switzerland, it is illegal to flush a toilet after 10pm.

\n

2. Clothes may not be hung to dry on Sunday.

\n

3. You may not wash your car on a Sunday.

\n

Thailand

\n

1. In Thailand, it is illegal to step on money.

\n

2. It is also illegal to leave your house without wearing underwear.

\n

3. Also, all cinema patrons must stand up during the National Anthem before a film starts.

\n

USA

\n

1. It is illegal to stab oneself and gain the pity of others. (Alabama)

\n

2. A man is allowed to beat his wife, but only once a month. (Arizona)

\n

3. A person who detonates a nuclear device within city limits is fined up to $500. (California)

\n

4. Car dealers cannot show cars to customers on Sundays. (Colorado) 

\n

5. It is against the law to educate dogs. (Connecticut)

\n

6. It is illegal to give whiskey to a dog, in Chicago.

\n

7. It is illegal to indulge in 'spiteful gossip' and 'talking behind a person's back'. (Indiana)

\n

8. A person needs a license to walk around nude in his/her property. (Kentucky)

\n

9. It is illegal to take a lion to the movies in Baltimore. (Maryland)

\n

10. A man is not allowed to run around with a shaved chest. (Nabraska)

\n

11. Jumping off the Empire State Building is illegal.

\n

12. It is illegal to lie down and fall asleep with your shoes on. (North Dakota)

\n
\n
\n

Sources: Buzzle, Thought Catalogue, Wonderlist, DailyMail, Lifedaily

\n
\n

Follow me for more awesome content @sauravrungta. :)
\nCheck out my Instagram - LINK

\n", + "category": "facts", + "children": 21, + "created": "2016-09-14T22:53:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s15.postimg.org/slf9zpw8r/bab_copy.jpg", + "https://s10.postimg.org/xv139out5/Victoria_Australia_is_forbidden_to_wear_pink_hot.jpg", + "https://s10.postimg.org/kcjea0bft/justin_canada.jpg", + "https://s14.postimg.org/wes6vcich/woman_throttles_man.jpg", + "https://s11.postimg.org/7jhole5fn/i_Stock_000028475756_Medium.jpg" + ], + "links": [ + "http://www.lifedaily.com/26-of-the-craziest-laws-from-around-the-world/", + "http://www.vanyaland.com/2014/04/30/toronto-throwdown-justin-bieber-asks-mayor-rob-ford-crack-canadian-nightclub/", + "http://www.theregister.co.uk/2015/06/02/big_brains_help_birds_not_blokes_fish_study/", + "http://www.berkeleywellness.com/healthy-eating/diet-weight-loss/slideshow/chew-gum-health", + "http://www.buzzle.com/articles/crazy-laws.html", + "http://thoughtcatalog.com/rachel-hodin/2013/10/67-ridiculous-laws-from-around-the-world-that-still-actually-exist/", + "http://www.wonderslist.com/10-craziest-laws-in-world/", + "http://www.dailymail.co.uk/travel/travel_news/article-2856346/It-illegal-not-smile-Milan-no-donkeys-sleep-bath-Oklahoma-strangest-laws-word.html", + "https://www.instagram.com/sauravrungta45/" + ], + "tags": [ + "facts", + "funny", + "laws", + "" + ], + "users": [ + "sauravrungta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40900060103077, + "payout": 102.69, + "payout_at": "2016-09-21T22:53:15", + "pending_payout_value": "102.690 HBD", + "percent_hbd": 10000, + "permlink": "craziest-laws-from-around-the-world", + "post_id": 1248311, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 105 + }, + "title": "Craziest Laws From Around The World", + "updated": "2016-09-14T22:53:15", + "url": "/facts/@sauravrungta/craziest-laws-from-around-the-world" + }, + { + "active_votes": [ { - "rshares": 56405368, - "voter": "stephenkendal" + "rshares": 289667649267, + "voter": "anonymous" }, { - "rshares": 115288656029, - "voter": "shenanigator" + "rshares": 2937224224055, + "voter": "wang" }, { - "rshares": 2163490459, - "voter": "jeffreyahann" + "rshares": 4166302700353, + "voter": "au1nethyb1" }, { - "rshares": 1857811307, - "voter": "funkywanderer" + "rshares": 475419579220, + "voter": "recursive2" }, { - "rshares": 5053551216, - "voter": "richardcrill" + "rshares": 462210569737, + "voter": "recursive3" }, { - "rshares": 51712804, - "voter": "troich" + "rshares": 80038741431, + "voter": "acidsun" }, { - "rshares": 180241566, - "voter": "team101" + "rshares": 44935589376, + "voter": "eeks" }, { - "rshares": 51718188, - "voter": "crion" + "rshares": 7253805196, + "voter": "james-show" }, { - "rshares": 51388276, - "voter": "hitherise" + "rshares": 8667563285, + "voter": "richman" }, { - "rshares": 51379706, - "voter": "wiss" + "rshares": 268816966, + "voter": "coar" }, { - "rshares": 54241809836, - "voter": "sponge-bob" + "rshares": 1414337223, + "voter": "murh" }, { - "rshares": 52143228, - "voter": "stroully" + "rshares": 3186224752, + "voter": "cryptofunk" }, { - "rshares": 53070013, - "voter": "apparat" + "rshares": 427180952, + "voter": "applecrisp" }, { - "rshares": 51814474, - "voter": "thadm" + "rshares": 391104883356, + "voter": "hedge-x" }, { - "rshares": 51812703, - "voter": "prof" + "rshares": 321880763, + "voter": "bitcoinnational" }, { - "rshares": 1655277599, - "voter": "smisi" + "rshares": 4065712107, + "voter": "crok" }, { - "rshares": 51465774, - "voter": "yorsens" + "rshares": 286504221, + "voter": "ladyclair" }, { - "rshares": 3068760608, - "voter": "michaelmatthews" + "rshares": 189899541322, + "voter": "asmolokalo" }, { - "rshares": 184881039384, - "voter": "asksisk" + "rshares": 16242543792, + "voter": "r4fken" }, { - "rshares": 51154263, - "voter": "bane" + "rshares": 1871594265, + "voter": "pipertomcat" }, { - "rshares": 51148009, - "voter": "vive" + "rshares": 806054013255, + "voter": "slowwalker" }, { - "rshares": 51142585, - "voter": "coad" + "rshares": 170832932539, + "voter": "knircky" }, { - "rshares": 232386397, - "voter": "pjo" + "rshares": 238902017, + "voter": "ardina" }, { - "rshares": 51922012, - "voter": "sofa" + "rshares": 15258084279, + "voter": "aaseb" }, { - "rshares": 330365849, - "voter": "panther" + "rshares": 1107680109, + "voter": "karen13" }, { - "rshares": 201122420257, - "voter": "doudou252666" + "rshares": 73113542919, + "voter": "jpiper20" }, { - "rshares": 59422248, - "voter": "plantbasedjunkie" + "rshares": 476658067, + "voter": "karenmckersie" }, { - "rshares": 55335930229, - "voter": "brains" + "rshares": 35770229729, + "voter": "creemej" }, { - "rshares": 51994517, - "voter": "ailo" + "rshares": 9439855364, + "voter": "benjiberigan" }, { - "rshares": 1369339863, - "voter": "steemafon" + "rshares": 31918786269, + "voter": "deanliu" }, { - "rshares": 339273477, - "voter": "anomaly" + "rshares": 5021608055, + "voter": "sharker" }, { - "rshares": 123155378, - "voter": "ola1" + "rshares": 53840787374, + "voter": "jl777" }, { - "rshares": 4647741844, - "voter": "michelle.gent" + "rshares": 4543607802, + "voter": "proto" }, { - "rshares": 50441122, - "voter": "eavy" + "rshares": 15998386074, + "voter": "michaeldodridge" }, { - "rshares": 50454901, - "voter": "roto" + "rshares": 350459078, + "voter": "bullionstackers" }, { - "rshares": 70282046, - "voter": "mari5555na" + "rshares": 2030334594, + "voter": "jillstein2016" }, { - "rshares": 50225780, - "voter": "steemq" + "rshares": 2298213587, + "voter": "taker" }, { - "rshares": 50223099, - "voter": "battalar" + "rshares": 24550456510, + "voter": "laoyao" }, { - "rshares": 51215236, - "voter": "deli" + "rshares": 17202727615, + "voter": "sunshine" }, { - "rshares": 50875769, - "voter": "cyan" + "rshares": 1249568472, + "voter": "gmurph" }, { - "rshares": 50540827, - "voter": "amstel" + "rshares": 5440195109, + "voter": "cjclaro" }, { - "rshares": 2216805889, - "voter": "bapparabi" + "rshares": 2868848889, + "voter": "darrenturetzky" }, { - "rshares": 247235040, - "voter": "darkminded153" + "rshares": 2058071733, + "voter": "chinadaily" }, { - "rshares": 72826233, - "voter": "igtes" + "rshares": 9443470643, + "voter": "pjheinz" }, { - "rshares": 144899746, - "voter": "buffett" + "rshares": 11375408076, + "voter": "gvargas123" }, { - "rshares": 2650993895, - "voter": "senseye" + "rshares": 778484681, + "voter": "dajohns1420" }, { - "rshares": 162911190, - "voter": "front" + "rshares": 1776216063, + "voter": "runridefly" }, { - "rshares": 158676075, - "voter": "iberia" + "rshares": 55683468, + "voter": "lindasteel" }, { - "rshares": 161218747, - "voter": "sdc" + "rshares": 659423594, + "voter": "kev7000" }, { - "rshares": 304461322, - "voter": "james1987" + "rshares": 212837202380, + "voter": "asksisk" }, { - "rshares": 157745750, - "voter": "digitalillusions" + "rshares": 2235069600, + "voter": "rigaronib" }, { - "rshares": 160880639, - "voter": "illusions" + "rshares": 474509334, + "voter": "anomaly" }, { - "rshares": 160870736, - "voter": "electronicarts" + "rshares": 286973890, + "voter": "ola1" }, { - "rshares": 3795712999, + "rshares": 2160706385, "voter": "dresden" - }, - { - "rshares": 159950870, - "voter": "haribo" - }, - { - "rshares": 159352476, - "voter": "panic" - }, - { - "rshares": 156043541, - "voter": "disneypixar" - }, - { - "rshares": 1534731729, - "voter": "modernbukowski" - }, - { - "rshares": 155452864, - "voter": "jyriygo" - }, - { - "rshares": 31683945302, - "voter": "goldmatters" - }, - { - "rshares": 155180811, - "voter": "majes" - }, - { - "rshares": 153284499, - "voter": "daniel1974" } ], - "author": "steempower", + "author": "jpiper20", "author_payout_value": "0.000 HBD", - "author_reputation": 70.85, + "author_reputation": 66.53, "beneficiaries": [], "blacklists": [], - "body": "![](https://s18.postimg.org/fcl7ffx1l/ripple.png)\n## Ripple has raised another 55 Million in its latest round of funding bringing it total raised to 93 Million.\n\nThe news has reached mainstream news services such as CNBC, WSJ, Reuters and the like. News seems to be first released 2 hours ago 12:35 pm; Thursday, 15 September 2016.\n\n### News Articles:\n[CoinDesk](http://www.coindesk.com/ripple-blockchain-55-million-series-b/)\n[CNBC](http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html)\n[WSJ](http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401)\n[Reuters ](http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z)\n\nAccording to the article linked above (CNBC) 'The start-up is currently working with 15 of the top 50 global banks including UBS and Santander.'\n\nNew and existing investors were involved in the new Ripple funding round. New investors included Accenture Ventures, SBI Holdings, SCB Digital Ventures, Standard Chartered PLC, and the investment arm of Thailand\u2019s Siam Commercial Bank. Existing investors that joined in this round included a Banco Santander SA venture fund, the venture arms of CME Group Inc. and Seagate Technology, and Venture 51.\n\nObviously this is good news for ripple with 55 Million accounting for 20-25% of their market cap before today's rally, the current price of XRP is 0.00001760 BTC and 2 hours ago it was trading for below 0.00001000 BTC, it has seen a large move already price wise although volume is still relatively small at this time, we could be in for an interesting time while this initial excitement settles in\n![](https://www.coinigy.com/assets/img/charts/57dab3f3.png)", - "category": "ripple", - "children": 10, - "created": "2016-09-15T14:58:21", + "body": "https://i.imgur.com/kkQjc0k.jpg\n\nWith Heroin addiction and death at its highest rates ever.. Why would the DEA ban an all natural plant that helps people who get off of Heroin? I had to SHARE this article because of hour bogus our fucked up country is.\n\n45 years AFTER the drug war was declared by President Richard Nixon, the United States leads the world in both recreational drug usage and incarceration rates. Heroin abuse rates continue to soar. Drug-related violence in our nation\u2019s cities and cartel wars in Latin America exact horrific tolls.\n\nAnd then there is the ever-present bully on the block, prescription drug abuse. More than two million Americans have become hooked on the pharmaceuticals that doctors prescribe to ease their pain. Opioids\u2014both legal and illicit\u2014killed a mind-boggling 28,647 people in 2014.\n\nBut not to worry: The Drug Enforcement Administration is on the case. \u201cTo avoid an imminent hazard to public safety,\u201d the agency said in a press release, it will be adding kratom, a medicinal herb that has been used safely in Southeast Asia for centuries, to its list of Schedule 1 substances, placing the popular botanical in a class with killers like heroin and cocaine at the end of September.\n\nWhy ban the mild-mannered tree leaf? Well, because the DEA claims it\u2019s an opioid with \u201cno currently accepted medical use.\u201d Wrong on both counts. Pharmacologists label kratom as an alkaloid, not an opioid. True, kratom stimulates certain opioid receptors in the brain. But then, so does drinking a glass of wine, or running a marathon.\n\nKratom is less habit-forming than classic opioids like heroin and the pharmaceutical oxycodone, and its impact on the brain is weaker and more selective. Nevertheless, the herb\u2019s ability to bind loosely with certain opioid receptors makes it a godsend for addicts who want to kick their habits. Kratom is currently helping wean thousands of Americans off illegal drugs and prescription pain relievers, without creating any dangerous long term dependency.\n\nThe powdered leaves are readily available from scores of herb sellers on the Internet. Since the ban was announced in late August, websites and social media have exploded with accounts from people who credit the plant with saving them from lives of addiction and chronic pain.\n\nTake, for example, Virginia native Susan Ash. She was using Suboxone to help cope with severe joint pain resulting from Lyme disease. \u201cMy life was ruled by the clock\u2014all I could think was, \u2018when do I take my next dose,'\u201d Ash says. Then someone suggested she try kratom to help kick her addiction to the prescription pain killer. \u201cIn two weeks time, I went from being a bed-bound invalid to a productive member of society again.\n\nShe founded the American Kratom Society in 2014 to help keep this herbal lifeline legal. Ash says that tens of thousands of people use kratom not just to help with chronic pain, but also to alleviate depression and to provide relief from PTSD. She strongly disputes that users like herself are simply exchanging one addictive drug for another.\n\n\u201cI have never had a craving for kratom,\u201d Ash says. \u201cYou can\u2019t compare it to even the mildest opiate. It simply won\u2019t get you high.\u201d\n\nWhat it might do, users say, is slightly tweak your mood. The leaves of the Mitragyna speciosa tree, a biological relative of coffee, have been chewed for centuries in Southeast Asia by farmers to increase their stamina. Kratom is gently euphoric and also relaxing\u2014think coffee without the jitters and sleeplessness. It is hard to take toxic levels of the herb, since larger doses induce nausea and vomiting.\n\nBut does it provide medical benefits? Dr. Walter Prozialeck, chair of the Department of Pharmacology at Midwestern University in Downers Grove, Illinois, who conducted a survey of the scant medical literature on kratom, says the herb did indeed help to relieve pain in animal studies.\n\nWhile no clinical trials have yet been done with humans, addicts in Thailand and Malaysia have used kratom for decades to detox from heroin and alcohol. It was so successful in getting people off opium that Thailand banned kratom in 1943 to stem the loss of the opium taxes that funded the government.\n\nNobody knows how many are using kratom here in the US. \u201cThere are so many testimonials out there [from kratom users] on the Internet that I personally found quite compelling,\u201d Dr. Prozialeck says. \u201cThis merits further study.\u201d\n\nBut study has proven difficult. Dr. Edward Boyer, director of toxicology at the University of Massachusetts Medical School, says that when he tried to conduct research on kratom, potential partners told him, \u201cwe don\u2019t fund drugs of abuse.\u201d Drug companies have shown sporadic interest in isolating the active constituents in kratom since the 1960s, he says, but no pharmaceuticals have yet been developed from them.\n\nGiven the current opioid crisis, Boyer hopes researchers will dive deeper into the plant\u2019s pharmacology. \u201cWouldn\u2019t it be great to have an analgesic that will relieve your pain and not kill you?\u201d Boyer notes that kratom is free from the potentially deadly side effects like respiratory failure that have bedeviled prescription opioids.\n\nHowever, drug companies have shown little interest in a plant remedy that cannot be patented. While some of kratom\u2019s active ingredients have indeed been patented by researchers who hope one day to market them to pharmaceutical firms, Boyer said that these compounds have failed to exhibit as powerful pain-killing effects as the whole plant. \u201cThere is something in there that we don\u2019t yet understand,\u201d he added.\n\nAnd if the DEA\u2019s ban goes into effect, we may never understand kratom\u2019s remarkable potential. That\u2019s because the federal action would have a chilling effect on research, according to Boyer.\n\nThe DEA claims that kratom is addictive. Since you can get hooked on most anything\u2014 even coffee or chocolate, as Dr. Boyer pointed out, this claim is both relatively meaningless and also hard to dispute. Users report that withdrawal symptoms from kratom are comparable to giving up coffee\u2014a few days of irritability, perhaps a headache.\n\nIn issuing its scheduling notice, the DEA said that the Centers for Disease Control received 660 complaints about kratom (including reports of constipation and vomiting) between 2010 to 2015, out of 3 million calls annually reporting adverse reactions to assorted other foods and drugs. To put this number in perspective, the National Poison Data System registers more than 3,700 calls about caffeine annually, every year leading to multiple overdoses that result in death.\n\n\u201cThis hardly constitutes a public health emergency,\u201d says Susan Ash. \u201cThey definitely get more calls about energy drinks.\u201d\n\nIn banning kratom, the DEA dispensed with the usual public comment period. Advocates, however, refuse to be silenced. They plan to challenge the DEA\u2019s action in court and are marching on the White House on September 13. A petition urging President Barack Obama to reverse the ban has surpassed the 100,000 signature mark which, by law, requires a personal response from the president.\n\n\u201cThere is a cheap plant out there that\u2019s helping people getting off opioids,\u201d Ash says, \u201cand now so many are going to be forced back into active addiction, or made a prey to black market drug dealers.\u201d\n\nWhat if, instead of turning tens of thousands of law-abiding Americans into either addicts or felons, the DEA listened to those who have used kratom successfully to kick their addictions and manage chronic pain? Instead of banning the herb, why not draft some sensible regulation to establish dosage and labelling requirements and to protect consumers from adulterated product?\n\nAnd while they are at it, America\u2019s drug agency should sponsor some long overdue scientific research into a substance that may be the best thing going to combat our runaway epidemic of opioid addiction.\n\nSource: https://www.wired.com/2016/09/dea-wrong-ban-cure-opioid-addiction/\n#news\n#story\n#drugs\n#addiction", + "category": "life", + "children": 6, + "created": "2016-09-14T13:50:09", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://s18.postimg.org/fcl7ffx1l/ripple.png", - "https://www.coinigy.com/assets/img/charts/57dab3f3.png" + "https://i.imgur.com/kkQjc0k.jpg" ], "links": [ - "http://www.coindesk.com/ripple-blockchain-55-million-series-b/", - "http://www.cnbc.com/2016/09/15/google-backed-blockchain-start-up-ripple-raises-55-million-from-big-banks.html", - "http://www.wsj.com/articles/bitcoin-firm-ripple-gets-55-million-in-funding-1473944401", - "http://in.reuters.com/article/tech-blockchain-ripple-idINL8N1BR24Z" + "https://www.wired.com/2016/09/dea-wrong-ban-cure-opioid-addiction/" ], "tags": [ - "ripple", - "crypto-news", - "beyondbitcoin", - "money", - "trading" + "life", + "news", + "story", + "drugs", + "addiction" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 63885038592928, - "payout": 238.227, - "payout_at": "2016-09-22T14:58:21", - "pending_payout_value": "238.227 HBD", + "net_rshares": 10604556739192, + "payout": 8.768, + "payout_at": "2016-09-21T13:50:09", + "pending_payout_value": "8.768 HBD", "percent_hbd": 10000, - "permlink": "ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour", - "post_id": 1254841, + "permlink": "why-would-we-ban-a-promising-cure-for-opioid-addiction", + "post_id": 1243247, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 216 + "total_votes": 54 }, - "title": "Ripple raises $55 million from big banks - Series B - XRP Prices jumped 60% to 0.0001600 within 1 hour", - "updated": "2016-09-15T14:58:21", - "url": "/ripple/@steempower/ripple-raises-usd55-million-from-big-banks-series-b-xrp-prices-jumped-60-to-0-0001600-within-1-hour" + "title": "WHY Would We BAN A Promising CURE for Opioid Addiction???", + "updated": "2016-09-14T13:50:09", + "url": "/life/@jpiper20/why-would-we-ban-a-promising-cure-for-opioid-addiction" }, { "active_votes": [ { - "rshares": 58532670832, - "voter": "ezzy" + "rshares": 494632487901, + "voter": "barrie" }, { - "rshares": 774734761, - "voter": "luisucv34" + "rshares": 31615036594147, + "voter": "smooth" }, { - "rshares": 88369590246, - "voter": "rea" + "rshares": 2160925860071, + "voter": "badassmother" }, { - "rshares": 5005509624, - "voter": "gustavopasquini" + "rshares": 2050996398887, + "voter": "hr1" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 5339100755934, + "voter": "kushed" }, { - "rshares": 12685919337, - "voter": "gargon" + "rshares": 23332152248, + "voter": "jaewoocho" }, { - "rshares": 1335239332, - "voter": "future24" + "rshares": 5869068247003, + "voter": "steemit200" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 7573847300816, + "voter": "complexring" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 1731469415199, + "voter": "joseph" }, { - "rshares": 1239881154, - "voter": "yzomri" + "rshares": 4260896150921, + "voter": "au1nethyb1" }, { - "rshares": 1064809843, - "voter": "tatianka" + "rshares": 462210569737, + "voter": "recursive3" }, { - "rshares": 52948298, - "voter": "alwayzgamez" + "rshares": 651673983804, + "voter": "masteryoda" }, { - "rshares": 98524303, - "voter": "ola1" + "rshares": 3254899228205, + "voter": "recursive" }, { - "rshares": 51848960, - "voter": "audiphotography" + "rshares": 1209033907, + "voter": "mineralwasser" }, { - "rshares": 154765535, - "voter": "mrsgreen" + "rshares": 687075799427, + "voter": "boombastic" }, { - "rshares": 3649573685, - "voter": "dresden" + "rshares": 91239679568, + "voter": "mrs.agsexplorer" }, { - "rshares": 153768931, - "voter": "shortstories" - } - ], - "author": "gustavopasquini", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000\n\n> ### Traditional Brazilian Main Course to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n \n> 1 kg of pork Ribs\n\n> 1 lemon\n\n> salt to taste\n\n> 2 tablespoons oil soup\n\n> 1/2 onion, chopped\n\n> 1/2 cup brown sugar\n\n> 1/2 cup white vinegar\n\n> 2 tablespoons Worcestershire sauce\n\n> 2 cups ketchup\n\n> 1 bay leaf\n\n> 1/2 cup water\n\n> 1 teaspoon pepper sauce dessert\n\n> pepper to taste\n\n> salt to taste\n\n \n# PREPARATION\n\n### 1. Wash the ribs in water corrente.Esfregue lemon over the meat, and then season with salt to taste.\n\n### 2. Place the ribs in a pan and cover with paper aluminio.\n\n### 3. Leve the heated oven at 200 \u00b0 for about 40 minutes.\n\n### 4. In a saucepan, heat the oil and gently fry the onion. Want to be your brown sugar and vinegar, and let the sugar dissolve.\n\n### 5. Want to be your English sauce, catsup, bay leaf, pepper sauce, water, salt and let the sauce simmer until engrossar.\n\n### 6. Tourne off the oven and set aside.\n\n### 7. After 40 minutes, remove the aluminum foil and baste the ribs with barbecue sauce.\n\n### 8. bake again for another 10 minutes.\n\n### 9. Remove from oven and serve with sauce on the side.\n\n### 10. Serve with fried or stuffed potato.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/)\n\n> ### [Recipe Site ](http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", - "category": "food", - "children": 0, - "created": "2016-09-15T14:37:00", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" - ], - "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/", - "http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html" - ], - "tags": [ - "food", - "health", - "recipes", - "curie", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 173800694351, - "payout": 0.039, - "payout_at": "2016-09-22T14:37:00", - "pending_payout_value": "0.039 HBD", - "percent_hbd": 10000, - "permlink": "pork-rib-with-barbucue-sauce", - "post_id": 1254587, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 17 - }, - "title": "Pork Rib with Barbucue Sauce", - "updated": "2016-09-15T14:37:00", - "url": "/food/@gustavopasquini/pork-rib-with-barbucue-sauce" - }, - { - "active_votes": [ - { - "rshares": 7557379000151, - "voter": "steempty" + "rshares": 1718220661, + "voter": "bingo-1" }, { - "rshares": 57522418578, - "voter": "oaldamster" + "rshares": 5915109368459, + "voter": "smooth.witness" }, { - "rshares": 3856359272, - "voter": "incomemonthly" + "rshares": 10365249221, + "voter": "idol" }, { - "rshares": 1659338531, - "voter": "tokyodude" + "rshares": 5043750251, + "voter": "sakr" }, { - "rshares": 3266602711, - "voter": "ace108" + "rshares": 1784473143, + "voter": "jocelyn" }, { - "rshares": 5767859209, - "voter": "beanz" + "rshares": 86992875240, + "voter": "acidsun" }, { - "rshares": 2649789126, - "voter": "levycore" + "rshares": 14793702576, + "voter": "gregory-f" }, { - "rshares": 6203417678, - "voter": "englishtchrivy" + "rshares": 1181352145582, + "voter": "gavvet" }, { - "rshares": 113365614, - "voter": "edgarsart" + "rshares": 59913984920, + "voter": "eeks" }, { - "rshares": 2650729275, - "voter": "senseye" - } - ], - "author": "englishtchrivy", - "author_payout_value": "0.000 HBD", - "author_reputation": 58.6, - "beneficiaries": [], - "blacklists": [], - "body": "

Have you ever had a monkey sit on your shoulder? \nHow would you feel if one does?\nhttp://i67.tinypic.com/2akab6a.jpg\n\n\n

I have always feared monkeys, they seem mischievous, out of control and pretty wild. Our encounter with some wild Barbary Macaques in the Monkey Temple in Huahin, Thailand years ago made that fear worsen when I saw them grab a bunch of bananas from a boy and started fighting with each other. The noise they made was unbearable it send shivers to your spine. \nhttp://i63.tinypic.com/zwgcuc.jpg\n\n

Hub knows how much I love animals and he has always asked me to go with him to the monkey reserve half an hour away from home. For years, I've refused but this year, for him I gave in. He took me to Apenheul Primate Park the week I got almost stressed out from doing too many things to get me relaxed. \n\n

I didn't know what to expect just monkeys -they're just monkeys I thought. We bought our ticket online so we won't have to fall in line and just scan it. When we got there the staff gave us a map of the place and asked us to put our bags in a \"monkey-free\" bag (that's what they call it). Confused, I asked why - and she just told me some monkeys are walking loose in the reserve and could sometimes stick their fingers in visitor's bags and grab whatever they could find there. So we did.\n\n

We decided to go to where the stray Bolivian Squirrel Monkeys are and found a crowd of visitors gathered together around a stroller with a kid on it scanning everything they could maybe find in it. Hub said they could work in the customs - for checking every stroller there. \nhttp://i66.tinypic.com/24pvtsn.jpg\n\n

I just stood next to them watching when one of them jumped and sat on my shoulder. He stared at me and I dared not stared back, worried he might see his reflection on my \"mirror\" -like sunglasses, I looked away and smiled when I saw hub taking our pics. He then looked away seemingly looking for a plant to jump on to and did just that.\nhttp://i67.tinypic.com/10p0oly.jpg\n\n

We walked along following the path in the map and saw more of them gnawing on strips of carrots and some on cabbages. We followed the trail on the map that was given to us by one of the staff in the entrance that has all the do's and don'ts on it and we heard a very loud noise of monkeys that seem to be fighting with each other. We asked one of the staff what that was all about and she said that's just how they communicate with each other. Curious, we checked them out and bumped into a male Ring Tailed Lemur from Madagascar walking towards me being followed by a bunch of children. \nhttp://i67.tinypic.com/107sydw.jpg\n\n

We went on and found a few hanging out on what look a hammock.\nhttp://i67.tinypic.com/24eclll.jpg\n\n\n\n

On the other side were two moms breastfeeding their young who fled when we stayed and watched. I've managed to take these though.\nhttp://i64.tinypic.com/15whua9.jpg\n\nhttp://i68.tinypic.com/23rq1vs.jpg\n\n

We made a wrong turn and found ourselves in the Bonobo's abode. Some of them were having a siesta and we could just see them through a glass wall. One was in a hammock just staring at me yawning every now and then. Bonobo apes are actually endangered because of poaching so it's nice to see them just having a safe life in this reserve. \nhttp://i66.tinypic.com/14udgl4.jpg\n\nhttp://i65.tinypic.com/351ty81.jpg\n\n

What a life - they are having, every thing is taken care of, food, water, dwelling even a playground. We went around and stumbled in what seem to be a gallery and got confronted with these. \nMeet our forefathers http://i67.tinypic.com/14t6e09.jpg\n\nhttp://i65.tinypic.com/xmsavo.jpg\n\nhttp://i66.tinypic.com/ejx4qp.jpg\n\n

We went through the other door and found a trail overlooking a trail and what seem to be a monkey's playground in the middle. There we found more Bonobos or chimpanzees playing with their Mom. \nhttp://i63.tinypic.com/2dlyf4.jpg\n\n

Mommy Bonobo http://i67.tinypic.com/2n7idl1.jpg\n\n

We followed the trail and found more monkeys in the glass cage. One was just basking in the sun and the others just seemingly picking lice out of each other.\nhttp://i64.tinypic.com/2e6bmgx.jpg\n\nhttp://i67.tinypic.com/or8kfc.jpg\n\n

They're the Crowned Sifakas from Madagascar. Like the Bonobos they are one of those African monkeys that are endangered. In Apenheul, they're a star - adored and gushed by children and adults alike. A happy sight to see. The trio suddenly leaped on a tree and started chewing on leaves. One was licking the bark after each swallow. I wonder why.\nhttp://i63.tinypic.com/16kny9s.jpg\n\nhttp://i65.tinypic.com/fpa61d.jpg\n\n

Onward we went and found ourselves in the Orangutan's dwelling. A few of them were in the glass cage like these siblings just sitting on straws playing with each other while Mom was staring at everyone staring back at them through the glass cage. \nhttp://i68.tinypic.com/125jokp.jpg\n\n

We went outside and saw two of them basking in the sun, too. We stopped to watch and another visitor said; \" He'd trade his life to theirs - everything's so easy, just basking in the sun, food's on the ground -for the grab and most of all - no taxes to pay. I grinned - not because I agree with him but because of the naughty thought that hit me ...\"Okay, you may have such a life but then ... looking like an Orangutan, I'm okay with paying taxes, besides here in Holland, I see where they go.\nhttp://i67.tinypic.com/2npr4p.jpg \n\n\n

This is Radia, on August 31, Wednesday she died in the evening. She's the oldest among the Orangutans in the Apenheul Primate Park. That's sad to hear but at least at 53 ... she died a peaceful death - not from poaching.\nhttp://i66.tinypic.com/28bbecl.jpg\n\n

We walked further and found the entrance of a restaurant / playground for kids / smoking area / habitat for loris on the loose - where we decided to have an apple pie and some cappuccino since we look like we'll be needing the energy to stroll such a huge place. I like the cup with the ape and thought of buying one for a souvenir.\nhttp://i65.tinypic.com/2d7ynw7.jpg\n\n

After our pie break we headed for the Gorilla show and found out that we just missed it. It finishes at 4 and the lady who takes care of Bongo told us to just go to the gorilla's gallery to see them. There, we found them having turnips and some leaves for a snack. A few more minutes the same lady we spoke with turned up with an ice cream and fed Bongo. He then turned his massive back against us all. The other gorillas licked up the rest of the ice cream oozing on the cage while Bongo hid in the corner eating a whole broccoli. One kid exclaimed; \"Hey, that's not fair! How come Bongo gets and ice cream and a broccoli and the others just get to have his left over ice cream, some turnips and leaves.\" This is what a child sees, of course he's just a child, he hasn't realized, Bongo has provided for the other gorillas. Most children go visit the Apenheul to see him perform and do stunts other gorilla adults can't. Bongo is a celebrity that makes Apeheul money. \nhttp://i64.tinypic.com/2dw4y38.jpg\n\nhttp://i64.tinypic.com/2ziriaf.jpg\n\n

How the other gorillas reacted while he was being fed ice cream was a spectacle to watch - I don't think it's because they understood that what he's having is actually crap and poison. They just stared at Bongo being fed... didn't make a fuzz and licked up what's drooling on the metal cage. No wrestling nor any struggle took place.\nhttp://i68.tinypic.com/i5xibk.jpg\n\nhttp://i68.tinypic.com/2m3nztt.jpg\n\n

We moved on and stumbled with a few Barbary Macaques who were fighting and making so much noises. They're loose but far away from the crowd. These two caught my eyes, they were just there on one of those pretend rock walls in the Barbary Macaques' dwelling. These are Gundis or comb rats. They can be found in rocky desserts in Africa - no wonder the Barbary Macaque's habitat is built this way. They were just there, one lying on top of the other - both seemingly drowsy.\nhttp://i65.tinypic.com/sct10i.jpg\n\n

One of the Barbary Macaques was away from the others who at that time were fighting over food. This guy was just doing his monkey business - seemingly fishing grains out of this man made pond. \nhttp://i66.tinypic.com/2z7iqhk.jpg\n\n

Further more, we bumped into photo booths, exhibit rooms, a bunch of Ibis and more monkeys. The Lion Tail Macaque caught our attention. The Lion Tail Macaque is named as such because of the white mane on his face. He's also called the \"bearded ape\" for having such a mane on his face. In the wild, they could live for 20 years but in captivity and if properly taken care of they could live for 30 years. One of them was given an apple because it has a diabetes. The primates in the Apenheul gets free medical check up, too. It's not just taxes they don't have to pay but also medical insurance. What a life!\nhttp://i67.tinypic.com/25ivy28.jpg\n\nhttp://i66.tinypic.com/i1fypz.jpg\n\n

It's a very good climber, this one has managed to climb up one of the trees in the habitat, jumped to another tree on the other side of the water around their playground, picked up a bottle of coca cola and went back to the group trying to open it. \nhttp://i63.tinypic.com/r1hhyx.jpg\n\n\n

We moved on and saw more monkeys we couldn't take a clear pic of because they were just going back and forth what seem to be rope monkey bars. They were very fun to watch. Then we bumped along this long bearded monkeys going back and forth this hanging monkey bridges attached to tall trees. One of them stopped and looked down. I extended my arms, tip-toed to take a shot but it still isn't clear for that Emperor Tamarin was way above me. They seem pretty restless and I saw one munch on an apple and disappeared in the door like opening to their artificial habitat.\nhttp://i67.tinypic.com/v5v6ev.jpg\n\n

We climbed up a trail and found more restless monkeys, sloths, poisonous frogs and tropical insects all kept separately in terrariums in a quite - dim room. When we went out of it , we bumped into the smallest monkey in the world - the very shy Pygmea Oeistiti.\nhttp://i65.tinypic.com/2hrzymd.jpg\n\nhttp://i67.tinypic.com/3462vcy.jpg\n\n

We headed back to the door since it was already closing time and saw a bunch of monkeys just by the door restlessly waiting for their caretaker to open the door for them. It's their feeding time for dinner and so these guys couldn't wait to grab a meal. We took quick shots and headed for the entrance.\n

Red Tit Monkey http://i66.tinypic.com/1z1y0pw.jpg\n\nhttp://i65.tinypic.com/bdqoep.jpg\n\n

This Mantel Tamarin has a face of a bat. \n http://i68.tinypic.com/33v2hyb.jpg\n\n

Golden Lion Monkey http://i67.tinypic.com/2iig3lc.jpg\n\n

Black Ear Oeistiti http://i64.tinypic.com/2mq7n5v.jpg\n\n

On the way out, we gave back the bags that were given to us and headed for the souvenir shop. The cup is nowhere to be seen so I thought of buying this.\nhttp://i66.tinypic.com/inaoaa.jpg\n\n

Until I saw this.\n\n\n

It was quite a long relaxing stroll that day despite the heat. It felt like I was walking in a forest because of the tall trees in there that provided the shade we needed and the presence of the animals that were there - healthy and safe. That day, I had a different view about monkeys - specially about the Barbary Macaques. That night, I dreamt that I cuddled one of those Bolivian Squirrel Monkeys and he just lazed in my arms. I had such a fun day, I brought it in my sleep. What can I say, yes - they're indeed my kind'a monkeys. Would I go back to Apenheul? Definitely, perhaps next year, sometime in July or August where the tickets are much cheaper than the normal days and hopefully, I get to see the monkeys I didn't get to see then and if not.. I'll just enjoy the serenity the place offers despite the presence of other visitors.

\nhttp://i68.tinypic.com/nprnyx.jpg\n\n

Curious about what else is happening nearby Arnhem, the Bitcoin city? Follow me @englishtchrivy ;)

\n\n>all of the pics were made by either Samsung Galaxy A5 (2016 edition), A3 (2016 edition) and with SAMSUNG ES65, ES67 / VLUU ES65, ES67 / SAMSUNG SL50 camera.", - "category": "photography", - "children": 3, - "created": "2016-09-15T13:00:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i67.tinypic.com/2akab6a.jpg", - "http://i63.tinypic.com/zwgcuc.jpg", - "http://i66.tinypic.com/24pvtsn.jpg", - "http://i67.tinypic.com/10p0oly.jpg", - "http://i67.tinypic.com/107sydw.jpg", - "http://i67.tinypic.com/24eclll.jpg", - "http://i64.tinypic.com/15whua9.jpg", - "http://i68.tinypic.com/23rq1vs.jpg", - "http://i66.tinypic.com/14udgl4.jpg", - "http://i65.tinypic.com/351ty81.jpg", - "http://i67.tinypic.com/14t6e09.jpg", - "http://i65.tinypic.com/xmsavo.jpg", - "http://i66.tinypic.com/ejx4qp.jpg", - "http://i63.tinypic.com/2dlyf4.jpg", - "http://i67.tinypic.com/2n7idl1.jpg", - "http://i64.tinypic.com/2e6bmgx.jpg", - "http://i67.tinypic.com/or8kfc.jpg", - "http://i63.tinypic.com/16kny9s.jpg", - "http://i65.tinypic.com/fpa61d.jpg", - "http://i68.tinypic.com/125jokp.jpg", - "http://i67.tinypic.com/2npr4p.jpg", - "http://i66.tinypic.com/28bbecl.jpg", - "http://i65.tinypic.com/2d7ynw7.jpg", - "http://i64.tinypic.com/2dw4y38.jpg", - "http://i64.tinypic.com/2ziriaf.jpg", - "http://i68.tinypic.com/i5xibk.jpg", - "http://i68.tinypic.com/2m3nztt.jpg", - "http://i65.tinypic.com/sct10i.jpg", - "http://i66.tinypic.com/2z7iqhk.jpg", - "http://i67.tinypic.com/25ivy28.jpg", - "http://i66.tinypic.com/i1fypz.jpg", - "http://i63.tinypic.com/r1hhyx.jpg", - "http://i67.tinypic.com/v5v6ev.jpg", - "http://i65.tinypic.com/2hrzymd.jpg", - "http://i67.tinypic.com/3462vcy.jpg", - "http://i66.tinypic.com/1z1y0pw.jpg", - "http://i65.tinypic.com/bdqoep.jpg", - "http://i68.tinypic.com/33v2hyb.jpg", - "http://i67.tinypic.com/2iig3lc.jpg", - "http://i64.tinypic.com/2mq7n5v.jpg", - "http://i66.tinypic.com/inaoaa.jpg", - "http://i68.tinypic.com/nprnyx.jpg" - ], - "tags": [ - "travel", - "photography", - "dayout", - "story", - "minnowsunite" - ], - "users": [ - "englishtchrivy" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 7641068880145, - "payout": 4.922, - "payout_at": "2016-09-22T13:00:09", - "pending_payout_value": "4.922 HBD", - "percent_hbd": 10000, - "permlink": "my-monkeys-my-business-d-with-videos", - "post_id": 1253533, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 10 - }, - "title": "How Well Do You Know Them Monkeys? (with videos)", - "updated": "2016-09-15T15:59:12", - "url": "/photography/@englishtchrivy/my-monkeys-my-business-d-with-videos" - }, - { - "active_votes": [ + "rshares": 8668864101, + "voter": "richman" + }, { - "rshares": 231804941120, - "voter": "anonymous" + "rshares": 581790581089, + "voter": "nanzo-scoop" }, { - "rshares": 9864946405427, - "voter": "berniesanders" + "rshares": 178473515654, + "voter": "mummyimperfect" }, { - "rshares": 73217648724, - "voter": "nextgenwitness" + "rshares": 103793788310, + "voter": "asch" }, { - "rshares": 244108524320, - "voter": "justin" + "rshares": 1414323919, + "voter": "murh" }, { - "rshares": 670052746417, - "voter": "silver" + "rshares": 6372449504, + "voter": "cryptofunk" }, { - "rshares": 1626328757302, - "voter": "silversteem" + "rshares": 16733609471, + "voter": "b4bb4r-5h3r" }, { - "rshares": 1918321990604, - "voter": "nextgencrypto" + "rshares": 2326284185, + "voter": "error" }, { - "rshares": 2352812686160, - "voter": "wang" + "rshares": 1088234191355, + "voter": "cyber" }, { - "rshares": 12940564755, - "voter": "danknugs" + "rshares": 18449074024, + "voter": "btcturbo" }, { - "rshares": 168108666389, - "voter": "steemservices" + "rshares": 61678758152, + "voter": "theshell" }, { - "rshares": 1061234076, - "voter": "murh" + "rshares": 49529062216, + "voter": "ak2020" }, { - "rshares": 57111543784, - "voter": "ezzy" + "rshares": 260089147904, + "voter": "billbutler" }, { - "rshares": 5325010239, - "voter": "gustavopasquini" + "rshares": 417450790012, + "voter": "taoteh1221" }, { - "rshares": 360603550, - "voter": "sergey44" + "rshares": 383446211481, + "voter": "hedge-x" }, { - "rshares": 2300746982, - "voter": "leylar" + "rshares": 33768116045, + "voter": "ratel" }, { - "rshares": 2444628756, - "voter": "bookworm" + "rshares": 362601754635, + "voter": "kaylinart" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 5946864970, + "voter": "mark-waser" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 202862565851, + "voter": "kimziv" }, { - "rshares": 14497903981, - "voter": "thecurator" + "rshares": 81140450926, + "voter": "emily-cook" }, { - "rshares": 2649789126, - "voter": "levycore" + "rshares": 2251008720, + "voter": "superfreek" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 17556851512, + "voter": "grey580" }, { - "rshares": 23137850346, - "voter": "andrewawerdna" + "rshares": 362176333, + "voter": "chetlanin" }, { - "rshares": 3011471807, - "voter": "imag1ne" + "rshares": 20376891718, + "voter": "thebatchman" }, { - "rshares": 109225703, - "voter": "rusla" + "rshares": 63985625179, + "voter": "lehard" }, { - "rshares": 517900727, - "voter": "mohamedmashaal" + "rshares": 1676271680, + "voter": "gidlark" }, { - "rshares": 172352271, - "voter": "ola1" + "rshares": 5373866831, + "voter": "riscadox" }, { - "rshares": 53227552, - "voter": "drac59" + "rshares": 17257692501, + "voter": "r4fken" }, { - "rshares": 733720697, - "voter": "alienbutt" - } - ], - "author": "gustavopasquini", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000\n\n> ### Traditional Brazilian Appetizer to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n## The Ragu Dry Meat\n\n> 400g of dried meat or desalted salt;\n\n> 1/2 medium onion chopped in the smallest possible size (brunoise);\n\n> 2 cloves garlic, minced in the smallest possible size (brunoise);\n\n> 3 tablespoons olive oil;\n\n> 0,3l of white or red wine;\n\n> 500ml of water;\n\n> Pelati 1 can of tomatoes into cubes or 3 Italian tomatoes, seeded and peeled;\n\n> Salt to taste, if necessary after completion of Ragu\n\n# The polenta\n\n> 200g of fine corn flour for polenta;\n\n> 700ml of water (to dilute the polenta);\n\n> \u00bd teaspoon salt tea;\n\n\n# PREPARATION\n\n\n## Ragu Dry Meat\n\n### 1. Before any procedure, dessalgue their dried meat, which usually comes to us consumers with too much salt to your saves. Cut the meat into large cubes of edge 5cm +/- each. Dip these cubes of dried meat in a container with water to the surface of the meat, covering the cubes. Keep this container in the refrigerator and replace your water every 2 hours, 3 to 4 times depending on how their meat is salty.\n\n### 2. To find out if your meat is too much or too little salt, just testing the water at the last and penultimate exchanges; if it is too salty, require more exchanges of cold water, if the water is only brackish, will be ready the meat to be manipulated.\n\n### 3. In a pressure cooker and over medium heat, saute onion and garlic in olive oil, leaving them brown. Add to this mixture the meat without water dessalgue, in order to seal (browning meat outside), while stirring occasionally.\n\n### 4. Add the wine, water and cover the pressure cooker, sealing it well. Lower the heat to the lowest setting and cook in pressure for about 30 minutes.\n\n### 5. Turn off the heat, allow the pressure out completely. Open the pot and see if the meat is well tender, otherwise return it to the fire, with the covered pot for a few minutes (10minutes, depending on how the meat in question is still hard).\n\n### 6. Once cooked meat and tender, remove all the liquid that came off the meat into another container and set aside.\n\n### 7. Close the pressure cooker with the meat cooked inside, and shake several times and vigorously. When you open the pressure cooker meat should be shredded completely. If not, close the pot again and repeat the procedure until the desired result.\n\n### 8. Transfer the meat with its broth to a small saucepan and deep, add pelati tomatoes, mix well, correct the salt if necessary, and leave on medium heat until the broth begins to reduce and refine. About 20 minutes. The more reduce broth, the flavor will be determined.\n\n\n\n## Polenta\n\n### Boil water in a deep pan and add low-temperature salt and fine corn flour gradually, stirring until it is full-bodied and creamy. Preferably, follow the \"proportion\" of water and cornmeal, and the \"method of preparation\" of the flour manufacturer to polenta to buy, after all there are differences in the composition of each of these industrialized corn mixtures! Porcione container or format you want to serve.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/)\n\n> ### [Recipe Site ](https://play.google.com/music/listen?u=0#/wmp)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", - "category": "food", - "children": 2, - "created": "2016-09-15T12:27:30", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" - ], - "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/", - "https://play.google.com/music/listen?u=0#/wmp" - ], - "tags": [ - "food", - "health", - "recipes", - "curie", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 17276761050325, - "payout": 20.228, - "payout_at": "2016-09-22T12:27:30", - "pending_payout_value": "20.228 HBD", - "percent_hbd": 10000, - "permlink": "polenta-with-ragu-meat-dry", - "post_id": 1253260, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 28 - }, - "title": "Polenta with Ragu Meat Dry", - "updated": "2016-09-15T16:21:24", - "url": "/food/@gustavopasquini/polenta-with-ragu-meat-dry" - }, - { - "active_votes": [ - { - "rshares": 52026601, - "voter": "fredbullot" - } - ], - "author": "fredbullot", - "author_payout_value": "0.000 HBD", - "author_reputation": 31.54, - "beneficiaries": [], - "blacklists": [], - "body": "http://i58.servimg.com/u/f58/13/71/78/59/19046410.jpg\n22 Sept 1985\nFred BULLOT @ \" Le Marathon International de Montr\u00e9al \" \u00a9\nRanked # 65 (20 000 participants !!)\nBest career time > 2h36 '49\"\nhttp://en.wikipedia.org/wiki/Marathon_Oasis_de_Montreal\n\nhttp://i86.servimg.com/u/f86/13/71/78/59/z2715.jpg\n\nFred BULLOT DIGEST \u00a9\n\n\" GLOBAL FREE-MARKET ANARCHIST ACTIVIST & PROMOTER \" * / PRIVATE BASKETBALL, TENNIS, SWIMMING, FITNESS COACH & # 1 ELITE AMERICAN BASKETBALL ACADEMIES SCOUT in EUROPE & ASIA \u00a9\n* (Austrian School of Economics / \u00c9cole Autrichienne d'Economie https://youtu.be/8WT41oWaqog)\nSince 1992 THE Pioneer in Europe for the Placement of French Student-Athletes in Elite Prep Schools & # 1 American High Schools/Universities Expert in Europe !\n\n\" MY GOAL : Promote Basketball around the World and enable/inspire French, Belgian, Swiss, Indian .. Student-Athletes to achieve Excellence in Sport & Life \" !\n\nFounder of Top Training USA a Non-Profit Organization created in 1992 in order to Promote the Best World Class American Sports Camps; as well as to encourage Cultural and Sporting Exchanges in between France, India & the USA !\n\nWorld Class French Expert of the American Student-Athlete Culture, Concept & Network !\n\nIn the last 30 years I did more than 80 trips (15 days to 2 months/300 000$ invested in 30 years !!!) to the USA and have visited the 300 best world class institutions > NCAA / JuCo / Boarding / Prep Schools & Private High Schools (Harvard, Yale, Princeton, Stanford, UCLA, USC, Florida, Miami, UNC, Duke, Ravenscroft, St Andrews School, Exeter, Andover ..).\n\nFormer Agent in France, Belgium & Switzerland of :\n\nFive-Star Basketball Camp, Inc.\nEastern Invitational Basketball Clinic, Inc.\nNick Bollettieri Tennis Academy / IMG Academies, Inc.\nInternational Tennis Academy, Inc.\nBucky Dent's Basketball School, Inc.\n\nBackground :\n\nBorn in Paris France, 29th Dec 1958 : Ex Semi-Pro Triathlete (# 29 in France in 85), National level Marathon (2h36') & Semi-Marathon (1h09') Runner of the World Famous Racing Club de France (http://www.racingclubdefrance.net/fr/), Ex Regional level Swimmer (1'01'' > 100 m freestyle/Club des Nageurs de Paris), Ex Regional level Tennis Player (15/1 > RCF), Ex Regional level Volleyball Player (R2 > La Fran\u00e7aise AC).\n\nPartly Educated in the USA [4 Years of Primary Shool at Brooktondale Primary School / NY and 2 years @ UCLA].\n\nPRESENT & FORMER ASSOCIATES :\nhttp://i38.servimg.com/u/f38/13/71/78/59/0013.jpg\n\u2022 Howard GARFINKEL, Will & Leigh KLEIN Founders of Five-Star Basketball Camp \u2022\n\u2022 Rob KENNEDY Founder of Eastern Invitational Basketball Clinic & The Hoop group \u2022\n\u2022 Chris CIACCIO Director of Evert Tennis Academy \u2022\n\u2022 Greg BREUNICH GM of IMG Academies \u2022\n\u2022 Steve SHULLA GM of Nick Bollettieri Tennis Academy \u2022\n\u2022 Larry HOSKIN Vice-President and GM of Bucky Dent's Baseball School \u2022\n\u2022 Tom KONCHALSKI # 1 Basketball Talent Evaluator in the USA of HSBI Report \u2022\n\u2022 Dave HOPLA # 1 Shooting Instructor in the World \u2022\n\u2022 Kevin O'CONNOR AD & Men's Head Basketball Coach of North Platte Community College \u2022\n\u2022 Steve SPURLIN Men's Head Basketball Coach of Blinn College \u2022\n\u2022 Jeff BRUSTAD Men's Head Basketball Coach of Monroe College \u2022\n\u2022 John O'CONNELL Boy\u2019s Head Varsity Basketball Coach of St Andrews School \u2022\n\u2022 Marc HSU Men's Asst Basketball Coach of New Mexico State University \u2022\n\u2022 Mark SODERBERG Boy\u2019s Head Basketball Coach of Fontana High School \u2022\n\u2022 Tony William PARKER Dad of Tony Parker / All Star NBA Player \u2022\n\u2022 Joe KELLER Founder & CEO of Phenom Basketball Inc. \u2022\n\u2022 Scott WILLIAMS Men's Head Tennis Coach of St Andrews School \u2022\n\u2022 Rolando DELABARRERA Men's Head Basketball Coach of Western Oklahoma State College \u2022\n\u2022 Craig IRWIN Men's Head Basketball Coach of North Dakota State College of Science \u2022\n\u2022 Mike MORLEY Men's Head Basketball Coach of Highland Community College \u2022\n\u2022 Ken WILCOX Men's Head Basketball Coach of Globe Institute of Technology \u2022\n\u2022 Douglas STEWART Men's Head Basketball Coach of Casper College \u2022\n\u2022 Lewis ORR Men's Head Basketball Coach of Navarro College \u2022\n\u2022 Janice HARDWICK Women's Head Basketball Coach of Western Oklahoma State College \u2022\n\u2022 Rick MACCI Founder & Head Coach of Rick Macci Tennis Academy \u2022\n\u2022 Rob WILLIAMS Boy's Head Varsity Basketball Coach of Ware County High School \u2022\n\u2022 Mathew KAMMRATH Boy\u2019s Head Varsity Basketball Coach of The Masters School \u2022\n\u2022 Toby WAGONER Boy\u2019s Head Varsity Basketball Coach of Bishop McNamara High School \u2022\n\u2022 Kurt WEIGT Girl\u2019s Head Varsity Basketball Coach of Bishop McNamara High School \u2022\n\u2022 Tony COLE Founder & CEO of Indiana Prep Basketball Academy \u2022\n\u2022 Ian TURNBULL Founder & Head Basketball Coach of C.J.E.O.T.O Basketball Academy \u2022\n\u2022 Kyle LINDSTED AD & Boy's Head Varsity Basketball Coach of Sunrise Christian Academy \u2022\n\u2022 Wilson ARROYO Boy\u2019s Head Varsity Basketball Coach of Life Center Academy \u2022\n\u2022 Tom PIOTROWSKI Principal & Head Varsity Basketball Coach of Atlantic Christian School \u2022\n\u2022 Ernest SCOTT Boy\u2019s Head Varsity Basketball Coach of Southland Academy \u2022\n\u2022 Casey AUTENRIETH AD & Head Varsity Basketball Coach of St Louis Christian Academy \u2022\n\u2022 Rick ZYCH Boy\u2019s Head Varsity Basketball Coach of Bishop Miege High School \u2022\n\u2022 Richard RODRIGUEZ Founder & CEO of Christian Life Center Academy \u2022\n\u2022 Steven WRIGHT Men's Head Basketball Coach of South Georgia Technical College \u2022\n\u2022 Johnathan JORDAN Men's & Women's Head Swimming of Iowa Lakes Community College \u2022\n\u2022 Rafael FRANCO Founder & CEO of Score Sports Academy \u2022\n\u2022 Ben MATIVAL Founder & President of OverBoarder LLC, Inc. \u2022\n\u2022 Todd KOZINKA Founder & President of Planet Hoops-Basketball Overseas \u2022\n\u2022 Dermot RUSSELL Founder / CEO of Players1st Sports Management & North Atlantic Basketball academy (N.A.B.A) \u2022\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0012.jpg\n\n\u2022 Claude GAUTHIER Pr\u00e9sident de la section Triathlon du Racing Club de France \u2022\n\u2022 Maurice BIERON Pr\u00e9sident de La Fran\u00e7aise Athletic Club \u2022\n\u2022 Jacky CHAZALON Pr\u00e9sidente de Sports Elite Jeunes \u2022\n\u2022 Bruno GASPERIN GM de France Basket Organisation / F\u00e9d\u00e9ration Fran\u00e7aise de Basketball \u2022\n\u2022 Franck LE GOFF Asst Coach de Basketball \u00e0 la Jsf Nanterre \u2022\n\u2022 Jacques LAURENT Directeur Technique de la Section Tennis du Stade Fran\u00e7ais \u2022\n\u2022 Yann LEMEUR Directeur Technique de la Section Tennis du Paris Universite Club \u2022\n\u2022 Sylvain LAUTIE Head Coach de Levallois Sporting Club Basket \u2022\n\u2022 Philippe MORIN GM du D\u00e9partement Basketball de Nike France \u2022\n\u2022 Jean Jacques VOISIN Directeur de la R\u00e9daction de Mondial Basket \u2022\n\u2022 Fred LESMAYOUX R\u00e9dacteur en Chef de Mondial Basket \u2022\n\u2022 Armel Le BESCON Journaliste \u00e0 Mondial Basket \u2022\n\u2022 Olivier PHEULPIN R\u00e9dacteur en Chef de FIBA Basketball Monthly \u2022\n\u2022 Pascal LEGENDRE R\u00e9dacteur en Chef de Maxi Basket \u2022\n\u2022 Vincent LORIOT Journaliste \u00e0 Maxi Basket \u2022\n\u2022 Parick HASAJ Directeur de Publication de La Gazette du Basket \u2022\n\u2022 Laurent HERAUD Directeur Technique de la Section Basketball du Stade Fran\u00e7ais \u2022\n\u2022 Jean Jacques MERIC Pr\u00e9sident de la Section Basketball de Palaiseau \u2022\n\u2022 Philippe RUQUET Agent Sportif Basketball \u2022\n\u2022 Bouna N'DIAYE Founder & CEO of Comsport, Inc / Agent Sportif Basketball \u2022\n\u2022 Jeremy MEDJANA Founder & CEO of Comsport, Inc / Agent Sportif Basketball \u2022\n\u2022 Pascal LEVY Agent Sportif Basketball \u2022\n\u2022 Bruno & Olivier RUIZ Agents Sportif Basketball \u2022\n\u2022 Mamadou CISSE Coach de Basketball et GM de la Marque Gooms \u2022\n\u2022 Bah-Pna DAHANE GM de Bp Consulting, Ltd \u2022\n\u2022 Georges EDDY Journaliste Sp\u00e9cialiste du Basketball \u00e0 Canal + \u2022\n\u2022 Lionel SARTORIS Directeur de Energy Tennis Academy \u2022\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/cached11.png\n\n\u2022 Prabhnoor SINGH Combo-Guard of Indiana Elite Prep Basketball Academy / U-18 Team India Basketball \u2022\n\u2022 Ravjot SINGH KAHLON Point Guard of St Louis Basketball Academy \u2022\n\u2022 Jasneet SINGH Combo-Guard @ St Louis Basketball Academy / Men's Team India Basketball \u2022\n\u2022 Subhash MAHAJAN Basketball Coach / Founder & CEO of S.A.B.A.L. Basketball \u2022\n\u2022 Vinod MUTHUKUMAR Founder & CEO of Elevate Sports Academy \u2022\n\u2022 Rajeshver RAO KALVA Head Basketball Coach & Administrative Officer of Sports Authority of India \u2022\n\u2022 Ashwin PATEL Managing Director of Kumar Direct & Green Direct World Wide, Ltd \u2022\n\nContact Fred BULLOT @\n\nE-mail : fredbullot@hotmail.com\nE-mail : fredbullot@yahoo.com\nBlog : http://fredbullot.over-blog.com/#\nSkype : \" fredbullot \"\nFacebook \" fred bullot \" : http://www.facebook.com/fredbullot\nFacebook \" Indian Basketball Student-Athletes in the USA \" (50 000 members / The \" # 1 Basketball Group on Facebook \") !! : https://www.facebook.com/groups/181895578687549/\nTwitter : https://twitter.com/fredbullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nBourse Sport-Etudes Aux USA : BASKETBALL / FOOTBALL / TENNIS / GOLF / FOOT US / NATATION / BASEBALL / VOLLEY / RUGBY / HANDBALL / .. \u00a9\nhttp://fredbullot.over-blog.com/\n\n(y) 8-) (y) B| (y) 8-) (y)\nELITE AMERICAN '' PREP / BASKETBALL ACADEMIES '' are RECRUITING PLAYERS from INDIA / ASIA (China, Japan, Korea, Philippines, Thailand, ..), EUROPE (France, Germany, GB, Belgium, Switzerland, ..) & MIDDLE EAST (Maghreb, Saudi Arabia, United Arab Emirates, Qatar, Israel, ..) \u00a9\nhttp://fredbullot.over-blog.com/\n\n(y) 8-) (y) B| (y) 8-) (y)\nLe GUIDE MONDIAL des VIDEOS de BASKETBALL by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t13-le-guide-mondial-des-videos-de-basketball-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nAPPRENDRE A JOUER AU \" LUCKY LUKE \" BASKET by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t4-apprendre-a-jouer-au-lucky-luke-basketball-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nThe AMERICAN BASKETBALL GLOSSARY by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t6-the-american-basketball-glossary-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nLe GLOSSAIRE du BASKETBALL AMERICAIN by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t12-le-glossaire-du-basket-americain-english-french-glossary-of-american-basketball-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nCONSEILS pour \" DEBUTER LE BASKET en FRANCE et OU LE PRATIQUER ? LISTE DES CLUBS \" \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t8-conseils-pour-debuter-le-basketball-en-france-et-ou-le-pratiquer-liste-des-clubs-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nLe TOP 10 MONDIAL des Sports-Etudes UNIVERSITAIRES \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t11-le-top-10-mondial-des-sports-etudes-universitaires-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nPROPER BASKETBALL SHOOTING TECHNIQUE, FUNDAMENTALS & FORM \u00a9\nhttps://www.facebook.com/photo.php?fbid=10153060852090645&set=a.10152178310040645.1073741830.632605644&type=3&theater\n\n(y) 8-) (y) B| (y) 8-) (y)\nSWIMMING is THE MOST HEALTHY SPORT in the WORLD by Fred BULLOT \u00a9\nhttps://www.facebook.com/notes/fred-bullot/swimming-is-the-most-healthy-sport-in-the-world-/510303185699886\n\n(y) 8-) (y) B| (y) 8-) (y)\nTOP 5 PUBLIC SPEAKING TICS & SPEACH VIRUSES by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t7-the-top-5-public-speaking-tics-speach-viruses-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\n\" PUBLIC COMMUNIST SCHOOLS ARE PRISONS & INDOCTRINATION CAMPS \" by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t16-public-communist-schools-are-prisons-indoctrination-camps-by-fred-bullot\n\n(y) 8-) (y) 8-) (y) 8-) (y) \nTHE BEST FREE-MARKET ANARCHIST VIDEOS & PODCASTS \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t5-the-best-free-market-anarchist-videos-podcasts-by-fred-bullot\n\n(y) 8-) (y) 8-) (y) 8-) (y) \nTOUT SAVOIR sur L'\u00c9COLE AUTRICHIENNE d'ECONOMIE \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t2-tout-savoir-sur-l-ecole-autrichienne-d-economie-la-philosophie-anti-marxiste-1-dans-le-monde-by-fred-bullot\nla Philosophie Anti-Marxiste # 1 dans le Monde (Censur\u00e9 par les \" Merdias \" et Education Nationale Socialo-Fasciste) ! \nPartout sur la plan\u00e8te, de nombreux \u00e9tudiants d\u00e9couvrent les principes de l'\u00e9cole autrichienne. La technologie de l'information avec le succ\u00e8s d'internet accro\u00eet cette tendance !!\n\n(y) 8-) (y) B| (y) 8-) (y)\n\" L'EDUCATION NATIONALE SOCIALO-FASCISTE est une PRISON & UN CAMP D'ENDOCTRINEMENT \" by Fred BULLOT \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t17-l-education-nationale-socialo-fasciste-est-une-prison-un-camp-d-endoctrinement-by-fred-bullot\n\n(y) 8-) (y) B| (y) 8-) (y)\nFred BULLOT DIGEST \u00a9\nhttp://58-rue-de-longchamp.forumactif.org/t15-fred-bullot-digest\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0017.jpg\n\n1000 PHOTOS on MY FACEBOOK PAGE @ https://www.facebook.com/fredbullot/photos\n\nThe Best PHOTOS ALBUM on The UNIVERSITY of FLORIDA \" Gators \" \u00a9\nWelcome to World Famous \" GATORLAND \" Home of Ryan LOCHTE (2nd Best SWIMMER of ALL TIME) & French NBA Star Joakim NOAH !! \nhttps://www.facebook.com/fredbullot/media_set?set=a.10152315471495645.632605644&type=3\n\nThe Best PHOTOS ALBUM on SUNRISE BASKETBALL ACADEMY \u00a9\nThe # 1 Basketball Program for International Players in the World !!\nhttps://www.facebook.com/fredbullot/media_set?set=a.10152315481885645.1073741833.632605644&type=3\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0016.jpg\n20 June 1986\nFred BULLOT With the Racing Club de France Triathlon Team @ Les championnats de France de Triathlon > RCF ranked 3rd \u00a9\nFront row (l-r) : Marc TOESCA, Pascal BILDSTEIN\nBack row (l-r) : Herve NIQUET, Jean LAMBERT, Frederic ZIZINE, Fred BULLOT, Olivier BILDSTEIN \nhttp://www.racingclubdefrance.net/fr/\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0015.jpg\n25 Aug 1985\nFred BULLOT @ 25 years old running in the wild (Stroudsburg, PA) \u00a9\nJust 26 days before competing in Le Marathon International de Montr\u00e9al !!\nhttp://en.wikipedia.org/wiki/Marathon_Oasis_de_Montreal\n\nhttp://i19.servimg.com/u/f19/13/71/78/59/fred_b10.jpg\n10 July 1986\nFred BULLOT Competing for the Racing Club de France (RCF) in the Triathlon of Beaumont s/Oise \u00a9\nRanked # 7 (Best career ranking / 300 Triathletes) !! \nhttp://www.racingclubdefrance.net/fr/\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0018.jpg\n10 June 1985\nFred BULLOT with the Racing Club de France Triathlon Team @ World Famous '' La Croix Catelan '' \u00a9\nWith Jean Claude MOSCONI, Fr\u00e9d\u00e9ric ZIZINE, Eric BENELLI, Jean Claude SACLEUX, Pascal BILDSTEIN, Claudie DUPOUY ..\nhttp://www.racingclubdefrance.net/fr/\nhttp://www.lagardereparisracing.com/site-sportif/la-croix-catelan-50020.html\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0021.jpg\n14 August 1992\nFred BULLOT @ World Class UCLA with \" THE LEGEND \" MISTER Mark SPITZ \u00a9\nTHE BEST SWIMMER of the 20th CENTURY & 3rd BEST of ALL TIME !!\nhttp://en.wikipedia.org/wiki/Mark_Spitz\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0020.jpg\n25 August 1992\nFred BULLOT with famous Vitas GERULAITIS \u00a9\nVytautas Kevin Gerulaitis (July 26 1954 \u2013 Sept 17 1994) was a Lithuanian\u2013American professional tennis player. \nhttp://en.wikipedia.org/wiki/Vitas_Gerulaitis\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0014.jpg\n21 Oct 2011\nFred BULLOT & Ryan LOCHTE Best SWIMMER in the WORLD & 2nd Best of ALL TIME !! \u00a9\nhttp://en.wikipedia.org/wiki/Ryan_Lochte\n\nhttp://i58.servimg.com/u/f58/13/71/78/59/37749611.jpg\n14 Feb 2013\nFred BULLOT & Ryan LOCHTE Best SWIMMER in the WORLD & 2nd Best of ALL TIME !! \u00a9\nGo Gators !!!!!!\nhttps://www.facebook.com/fredbullot/media_set?set=a.10152315471495645.632605644&type=3\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/42992410.jpg\n21 Oct 2011\nFred BULLOT & Ryan LOCHTE Best SWIMMER in the WORLD & 2nd Best of ALL TIME !! \u00a9\nhttp://en.wikipedia.org/wiki/Ryan_Lochte\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/010110.jpg\n24 Oct 2011\nGregg TROY (Top 3 Best Coach in the World \" THE coach that made Ryan LOCHTE !! \") Fred BULLOT & Anthony NESTY (Associate Head Swimming Coach / Famous for winning a GOLD medal @ the 1988 Summer Olympics in Seoul (Korea) by edging American favorite Matt BIONDI by one one-hundredth of a second to win the 100 m butterfly; he finished the event in 53 \" and Biondi in 53 \"01) !!! \u00a9\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/0a10.jpg\nJustin GATLIN (The 6th Fastest Athlete of ALL TIME !!) [b]& Fred BULLOT @ The NATIONAL TRAINING CENTER-(NTC / The Best \" Elite Training Camp \" in the WORLD !) \u00a9\nhttp://gatlin100m.com/\nhttp://en.wikipedia.org/wiki/Justin_Gatlin\nhttps://www.facebook.com/fredbullot/media_set?set=a.10151570926155645.1073741827.632605644&type=3\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/0a12.jpg\n16 March 2012\nFred BULLOT & Tyson GAY (The 2nd Fastest Athlete of ALL TIME !!) @ The NATIONAL TRAINING CENTER-(NTC / The Best \" Elite Training Camp \" in the WORLD !) \u00a9\nhttp://www.tysongay.net/\nhttps://en.wikipedia.org/wiki/Tyson_Gay\nhttps://www.facebook.com/fredbullot/media_set?set=a.10151570926155645.1073741827.632605644&type=3\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/0a11.jpg\n16 March 2012\nFred BULLOT & Tyson GAY[/b] (The 2nd Fastest Athlete of ALL TIME !!) @ The NATIONAL TRAINING CENTER-(NTC / The Best \" Elite Training Camp \" in the WORLD !) \u00a9\nhttp://www.tysongay.net/\nhttps://en.wikipedia.org/wiki/Tyson_Gay\nhttps://www.facebook.com/fredbullot/media_set?set=a.10151570926155645.1073741827.632605644&type=3\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/10154410.jpg\n14 May 2014\nFred BULLOT & Lance BRAUMAN (Best Track & Field Coach in the World) Coach of Tyson GAY (Best time 9\"69) THE 2nd FASTEST HUMAN of ALL TIME !! @ NTC - The Best \" ELITE TRAINING CAMP \" in the WORLD ! \u00a9\nhttp://speedendurance.com/2012/07/16/interview-with-lance-brauman-coach-of-tyson-gay/\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/42992413.jpg\n21 Dec 2012\nFred BULLOT & UNIVERSITY of FLORIDA \" Gators \" High-Major NCAA DI Student-Athlete Gabby MALLETTE \u00a9\nhttp://www.gatorzone.com/volleyball/bios.php?year=2012&player_id=40\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0022.jpg\n16 March 2014\nFred BULLOT & Ron BAKER (NBA Prospect) @ Famous WICHITA STATE UNIVERSITY \" SHOCKERLAND \" Home of DI NCAA Star Ron BAKER (Best Shooting-Guard in NCAA) !! \u00a9\nhttp://en.wikipedia.org/wiki/Ron_Baker_%28basketball%29\nhttp://en.wikipedia.org/wiki/Wichita_State_Shockers_men%27s_basketball\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0001113.jpg\n19 April 2014\nThe ST LOUIS BASKETBALL ACADEMY GLOBAL CONNECTION \u00a9\nImad (France), Ismael (France), Fred, Achref (Egypt), Ravjot (India)\n\nhttp://i18.servimg.com/u/f18/13/71/78/59/010111.jpg\nOct 29 2011\nFred BULLOT @ DARTON STATE COLLEGE \u00a9\nHome of the Cavaliers Basketball Team !\nhttp://en.wikipedia.org/wiki/Darton_State_College\nJUST A \" STANDARD AMERICAN NJCAA COLLEGE \" (A top 30 NCAA DI University is 20 times bigger) !!\n\nhttp://i21.servimg.com/u/f21/13/71/78/59/12038010.jpg\n06 March 2014\nFred BULLOT @ SUNRISE BASKETBALL ACADEMY \u00a9\nBASKETBALL is THE # 1 SPORT for GIRLS in THE WORLD !!!\nGo Girls Power ! Girls Basketball Rocksssssss !!\n\nhttp://i21.servimg.com/u/f21/13/71/78/59/12038012.jpg\n22 March 2014\nSUNRISE BASKETBALL ACADEMY \u00a9\nFred BULLOT & High Major NCAA DI Players / NBA Prospects :\nBakary KONATE (Mali) 2m08\nRuben GUERRERO (Spain) 2m11 \n\nhttp://i21.servimg.com/u/f21/13/71/78/59/12038013.jpg\n22 March 2014\nSUNRISE BASKETBALL ACADEMY \u00a9\nFred BULLOT & High Major NCAA DI Players / NBA Prospects :\nBakary KONATE (Mali) 2m08\nRuben GUERRERO (Spain) 2m11 \n\nhttp://i21.servimg.com/u/f21/13/71/78/59/12038014.jpg\n02 March 2014\nSUNRISE BASKETBALL ACADEMY \u00a9\nTHE # 1 BASKETBALL PROGRAM for INTERNATIONAL PLAYERS in THE WORLD ! \nFred BULLOT & High Major NCAA DI Players / NBA Prospects : Dusan RISTIC (Serbia), Motaz HOSNY (Egypt) & Ruben GUERRERO (Spain) .. !!\n\nhttp://i21.servimg.com/u/f21/13/71/78/59/12038015.jpg\nFred BULLOT & Shania FEATHERS (Top NCAA D III Player) of EARLHAM COLLEGE (The \" Harvard of the Midwest \" !!) \u00a9\nhttp://www.goearlham.com/index.aspx?path=wbball&tab=basketball2\n\nhttp://i86.servimg.com/u/f86/13/71/78/59/11834810.jpg\n8 May 2016\nEvent Founded, Created & Runed by Fred BULLOT (# 1 International Elite Prep Schools Basketball Scout in Europe/ASIA), Rajeshver RAO KALVA (Head Basketball Coach & Administrative Officer of Sports Authority of India) & Dermot RUSSELL (FIBA Agent / Founder / CEO of Players1st Sports Management & North Atlantic Basketball academy - N.A.B.A) \u00a9 \n\nhttp://i86.servimg.com/u/f86/13/71/78/59/11834811.jpg\n11 May 2016\nRajeshver RAO KALVA (Head Basketball Coach & Administrative Officer of Sports Authority of India) & Dermot RUSSELL (FIBA Agent / Founder / CEO of Players1st Sports Management & North Atlantic Basketball academy - N.A.B.A) with 2 MVPs of the day \u00a9 \n\nhttp://i86.servimg.com/u/f86/13/71/78/59/11834812.jpg\n12 May 2016\nDermot RUSSELL with 6'5 (1m95) / 14 years old WNBA Prospect \u00a9 \n\nhttp://i86.servimg.com/u/f86/13/71/78/59/11834813.jpg\n12 May 2016\nDermot RUSSELL shaking hand of 6'5 (1m95) / 14 years old WNBA Prospect \u00a9 \n\nhttp://i86.servimg.com/u/f86/13/71/78/59/11834814.jpg\n21 March 2015\nPrabhnoor SINGH of \u00a0NEBRASKA ELITE BASKETBALL ACADEMY is THE BEST 17 years old INDIAN / ASIAN \" DUNKER & COMBO-GUARD \" (high-major NCAA DI prospect) in ASIA \u00a9\n\nhttp://i39.servimg.com/u/f39/13/71/78/59/11746810.jpg\n\nThe SPORT of The 21st CENTURY \n\nThe # 1 SPORT on INTERNET\n\nThe # 1 SPORT on FACEBOOK\n\nThe # 1 SPORT on TWITTER\n\nThe # 1 SPORT on VINE\n\nThe # 1 SPORT in USA\n\nThe # 1 SPORT in ASIA\n\nThe # 1 SPORT in CHINA\n\nThe # 1 SPORT in PHILIPPINES\n\nThe # 1 SPORT in TAIWAN\n\nThe # 1 SPORT in LITHUANIA\n\nThe # 1 INDOOR SPORT in THE WORLD\n\nThe # 1 SPORT for GIRLS in THE WORLD\n\nThe # 1 Paralympics SPORT in THE WORLD\n\nThe # 1 UNIVERSITY SPORT in THE WORLD\n\nNBA # 1 SPORT COMPANY in THE WORLD\n\nNBA # 1 PAYING SPORTS LEAGUE in THE WORLD\n\nNBA # 1 SPORTS LEAGUE on INTERNET\n\nNBA # 1 SPORTS LEAGUE on YOUTUBE \n\nThe # 1 TEAM SPORT @ THE OLYMPIC GAMES\n\nThe # 2 SPORT in The WORLD\n\nThe # 2 SPORT in SOUTH AMERICA\n\nThe # 2 SPORT in RUSSIA\n\nThe # 2 SPORT in INDIA\n\nThe # 2 SPORT in SPAIN\n\nThe # 2 SPORT in ITALY\n\nThe # 2 SPORT in SERBIA\n\nThe # 2 SPORT in ARGENTINA\n\nThe # 2 SPORT in PORTUGAL\n\nThe # 2 SPORT in TURKEY\n\nThe # 2 SPORT in CANADA\n\nThe # 2 SPORT in QATAR ..\n\nTony PARKER # 5 BEST FOREIGN NBA PLAYER of ALL TIME\n\nTony PARKER # 1 FRENCH ATHLETE of ALL TIME\n\nTony PARKER RICHEST FRENCH ATHLETE of ALL TIME *\n\nFRANCE # 1 FOREIGN COUNTRY in THE NBA\n\nNBA is THE HIGHEST-PAYING SPORTS LEAGUE in THE WORLD\n\nMichael JORDAN # 1 ATHLETE of ALL TIME\n\nMichael JORDAN RICHEST ATHLETE of ALL TIME **\n\nThe FASTEST GROWING SPORT in THE WORLD\n\nThe MOST ATHLETIC SPORT in THE WORLD\n\nThe MOST SPECTACULAR SPORT\n\n* (200 000 000 $)\n** (1 000 000 000 $)\n\nhttp://i38.servimg.com/u/f38/13/71/78/59/0001114.jpg\n2014 FIBA BASKETBALL WORLD CUP \u00a9\nEvan FOURNIER (France) scores over Serge IBAKA (Spain)\nhttp://www.fiba.com/basketballworldcup/2014", - "category": "fred", - "children": 0, - "created": "2016-09-15T10:40:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "http://i58.servimg.com/u/f58/13/71/78/59/19046410.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/z2715.jpg", - "https://img.youtube.com/vi/8WT41oWaqog/0.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0013.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0012.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/cached11.png", - "http://i38.servimg.com/u/f38/13/71/78/59/0017.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0016.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0015.jpg", - "http://i19.servimg.com/u/f19/13/71/78/59/fred_b10.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0018.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0021.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0020.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0014.jpg", - "http://i58.servimg.com/u/f58/13/71/78/59/37749611.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/42992410.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/010110.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/0a10.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/0a12.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/0a11.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/10154410.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/42992413.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0022.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0001113.jpg", - "http://i18.servimg.com/u/f18/13/71/78/59/010111.jpg", - "http://i21.servimg.com/u/f21/13/71/78/59/12038010.jpg", - "http://i21.servimg.com/u/f21/13/71/78/59/12038012.jpg", - "http://i21.servimg.com/u/f21/13/71/78/59/12038013.jpg", - "http://i21.servimg.com/u/f21/13/71/78/59/12038014.jpg", - "http://i21.servimg.com/u/f21/13/71/78/59/12038015.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/11834810.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/11834811.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/11834812.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/11834813.jpg", - "http://i86.servimg.com/u/f86/13/71/78/59/11834814.jpg", - "http://i39.servimg.com/u/f39/13/71/78/59/11746810.jpg", - "http://i38.servimg.com/u/f38/13/71/78/59/0001114.jpg" - ], - "links": [ - "https://youtu.be/8WT41oWaqog", - "http://www.racingclubdefrance.net/fr/", - "http://fredbullot.over-blog.com/#", - "http://fredbullot.over-blog.com/", - "http://58-rue-de-longchamp.forumactif.org/t13-le-guide-mondial-des-videos-de-basketball-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t4-apprendre-a-jouer-au-lucky-luke-basketball-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t6-the-american-basketball-glossary-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t12-le-glossaire-du-basket-americain-english-french-glossary-of-american-basketball-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t8-conseils-pour-debuter-le-basketball-en-france-et-ou-le-pratiquer-liste-des-clubs-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t11-le-top-10-mondial-des-sports-etudes-universitaires-by-fred-bullot", - "https://www.facebook.com/photo.php?fbid=10153060852090645&set=a.10152178310040645.1073741830.632605644&type=3&theater", - "https://www.facebook.com/notes/fred-bullot/swimming-is-the-most-healthy-sport-in-the-world-/510303185699886", - "http://58-rue-de-longchamp.forumactif.org/t7-the-top-5-public-speaking-tics-speach-viruses-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t16-public-communist-schools-are-prisons-indoctrination-camps-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t5-the-best-free-market-anarchist-videos-podcasts-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t2-tout-savoir-sur-l-ecole-autrichienne-d-economie-la-philosophie-anti-marxiste-1-dans-le-monde-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t17-l-education-nationale-socialo-fasciste-est-une-prison-un-camp-d-endoctrinement-by-fred-bullot", - "http://58-rue-de-longchamp.forumactif.org/t15-fred-bullot-digest", - "https://www.facebook.com/fredbullot/photos", - "https://www.facebook.com/fredbullot/media_set?set=a.10152315471495645.632605644&type=3", - "https://www.facebook.com/fredbullot/media_set?set=a.10152315481885645.1073741833.632605644&type=3" - ], - "tags": [ - "fred", - "bullot", - "digest" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 52026601, - "payout": 0.0, - "payout_at": "2016-09-22T10:40:09", - "pending_payout_value": "0.000 HBD", - "percent_hbd": 0, - "permlink": "fred-bullot-digest-c", - "post_id": 1252514, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 1 - }, - "title": "Fred BULLOT DIGEST \u00a9", - "updated": "2016-09-15T18:07:21", - "url": "/fred/@fredbullot/fred-bullot-digest-c" - }, - { - "active_votes": [ + "rshares": 1631435904, + "voter": "sergei" + }, { - "rshares": 115875646943, - "voter": "anonymous" + "rshares": 806054013255, + "voter": "slowwalker" }, { - "rshares": 20416330653141, - "voter": "blocktrades" + "rshares": 223504213048, + "voter": "domino" }, { - "rshares": 7095296222198, - "voter": "xeldal" + "rshares": 1238860937811, + "voter": "renohq" }, { - "rshares": 3306677308899, - "voter": "pharesim" + "rshares": 174391951967, + "voter": "knircky" }, { - "rshares": 5763379001974, - "voter": "enki" + "rshares": 5642091570, + "voter": "on0tole" }, { - "rshares": 28968653731, - "voter": "interteem" + "rshares": 82971664794, + "voter": "ethereums1" }, { - "rshares": 644261084628, - "voter": "boombastic" + "rshares": 234026465, + "voter": "ardina" }, { - "rshares": 6558399783, - "voter": "bingo-0" + "rshares": 1422705803, + "voter": "mixa" }, { - "rshares": 131761872479, - "voter": "team" + "rshares": 11694691059, + "voter": "asim" }, { - "rshares": 94049519439, - "voter": "jchch" + "rshares": 34326995533, + "voter": "toxonaut" }, { - "rshares": 83523204254, - "voter": "acidsun" + "rshares": 15258084279, + "voter": "aaseb" }, { - "rshares": 13612259491, - "voter": "fact" + "rshares": 1107680109, + "voter": "karen13" }, { - "rshares": 10435646449, - "voter": "cian.dafe" + "rshares": 1398305308, + "voter": "jrd8526" }, { - "rshares": 268842348, - "voter": "coar" + "rshares": 10469874652, + "voter": "blinova" }, { - "rshares": 1060926034, - "voter": "murh" + "rshares": 448130169012, + "voter": "knozaki2015" }, { - "rshares": 10263839321, - "voter": "andu" + "rshares": 1570700841, + "voter": "dimon14" }, { - "rshares": 202560983569, - "voter": "dragonslayer109" + "rshares": 3715709207, + "voter": "maximkichev" }, { - "rshares": 75027817954, - "voter": "thecryptofiend" + "rshares": 4881829351, + "voter": "konti" }, { - "rshares": 6652497229, - "voter": "grandpere" + "rshares": 175156042246, + "voter": "blueorgy" }, { - "rshares": 6553223997, - "voter": "keithwillshine" + "rshares": 4542807775, + "voter": "poseidon" }, { - "rshares": 783400875, - "voter": "mammasitta" + "rshares": 7623214100, + "voter": "smolalit" }, { - "rshares": 81716838174, - "voter": "razvanelulmarin" + "rshares": 339103696418, + "voter": "calaber24p" }, { - "rshares": 2187218324, - "voter": "superfreek" + "rshares": 2851597631, + "voter": "vlad" }, { - "rshares": 4941216517, - "voter": "skapaneas" + "rshares": 3585322192, + "voter": "tarindel" }, { - "rshares": 174543034217, - "voter": "asmolokalo" + "rshares": 31918967693, + "voter": "deanliu" }, { - "rshares": 61322628143, - "voter": "lehard" + "rshares": 5133199346, + "voter": "sharker" }, { - "rshares": 69475262319, - "voter": "rubybian" + "rshares": 192767998, + "voter": "alexbraun" }, { - "rshares": 8567907568, - "voter": "cmtzco" + "rshares": 53840787374, + "voter": "jl777" }, { - "rshares": 16313784115, - "voter": "yogi.artist" + "rshares": 7646574749, + "voter": "lostnuggett" }, { - "rshares": 20904678488, - "voter": "elyaque" + "rshares": 30792303570, + "voter": "zaebars" }, { - "rshares": 910779619, - "voter": "steemswede" + "rshares": 35821540654, + "voter": "paquito" }, { - "rshares": 823059320858, - "voter": "slowwalker" + "rshares": 19217003586, + "voter": "carlidos" }, { - "rshares": 10594872684, - "voter": "seanmchughart" + "rshares": 560545873, + "voter": "jasonpay1" }, { - "rshares": 14879287331, - "voter": "ausbitbank" + "rshares": 226719741, + "voter": "alexbezimeni" }, { - "rshares": 45733145544, - "voter": "mrwang" + "rshares": 4543607802, + "voter": "proto" }, { - "rshares": 23662387370, - "voter": "akareyon" + "rshares": 634042636, + "voter": "curator" }, { - "rshares": 85512692, - "voter": "snowden" + "rshares": 33381476108, + "voter": "sisterholics" }, { - "rshares": 40151194718, - "voter": "diana.catherine" + "rshares": 8444032663, + "voter": "royalmacro" }, { - "rshares": 10418219772, - "voter": "deviedev" + "rshares": 2829197560, + "voter": "nelu.ceban" }, { - "rshares": 151952973903, - "voter": "gbert" + "rshares": 3627608984, + "voter": "bkkshadow" }, { - "rshares": 451014793670, - "voter": "knozaki2015" + "rshares": 817422571, + "voter": "bullionstackers" }, { - "rshares": 7055915472, - "voter": "arcange" + "rshares": 1907284013, + "voter": "jillstein2016" }, { - "rshares": 2650671514, - "voter": "the-future" + "rshares": 2420737768, + "voter": "belkins" }, { - "rshares": 4979465938, - "voter": "konti" + "rshares": 55155632583, + "voter": "gomeravibz" }, { - "rshares": 39270485141, - "voter": "royaltiffany" + "rshares": 2298213587, + "voter": "taker" }, { - "rshares": 10902999570, - "voter": "rpf" + "rshares": 7496773915, + "voter": "nekromarinist" }, { - "rshares": 3847926858, - "voter": "bitcoiner" + "rshares": 1943832207, + "voter": "brownsgreens" }, { - "rshares": 14848958749, - "voter": "beowulfoflegend" + "rshares": 1180033725213, + "voter": "laonie" }, { - "rshares": 33395564589, - "voter": "sauravrungta" + "rshares": 23390997891, + "voter": "rawnetics" }, { - "rshares": 13069930577, - "voter": "shredlord" + "rshares": 24550456510, + "voter": "laoyao" }, { - "rshares": 125433315, - "voter": "aish" + "rshares": 38492150367, + "voter": "myfirst" }, { - "rshares": 50619397, - "voter": "steemchain" + "rshares": 239613973655, + "voter": "somebody" }, { - "rshares": 50619397, - "voter": "whalepool" + "rshares": 16245468786, + "voter": "sunshine" }, { - "rshares": 904575538, - "voter": "happyphoenix" + "rshares": 9201783483, + "voter": "flysaga" }, { - "rshares": 4140959784, - "voter": "ace108" + "rshares": 1666087667, + "voter": "gmurph" }, { - "rshares": 1365664469, - "voter": "alex.chien" + "rshares": 77413968, + "voter": "kurzer42" }, { - "rshares": 10469586987, - "voter": "logic" + "rshares": 54363923845, + "voter": "midnightoil" }, { - "rshares": 3361197115, - "voter": "sulev" + "rshares": 2327652192, + "voter": "kalimor" }, { - "rshares": 139386030811, - "voter": "shaka" + "rshares": 132362516716, + "voter": "xiaohui" }, { - "rshares": 9125799205, - "voter": "sykochica" + "rshares": 64380620, + "voter": "bolchek" }, { - "rshares": 2236674222, - "voter": "merej99" + "rshares": 177510302511, + "voter": "terrycraft" }, { - "rshares": 71563049, - "voter": "always1success" + "rshares": 61495409, + "voter": "locolote" }, { - "rshares": 4119640503, - "voter": "timcliff" + "rshares": 368648608, + "voter": "riosparada" }, { - "rshares": 148152809, - "voter": "btctoken" + "rshares": 6515122069, + "voter": "elfkitchen" }, { - "rshares": 2375230655, - "voter": "kalimor" + "rshares": 93214491315, + "voter": "joele" }, { - "rshares": 13640797900, - "voter": "stephen.king989" + "rshares": 5833542913, + "voter": "oflyhigh" }, { - "rshares": 50565616, - "voter": "michellek" + "rshares": 1246621147, + "voter": "boddhisattva" }, { - "rshares": 3489192001, - "voter": "kurtbeil" + "rshares": 4251276841, + "voter": "xiaokongcom" }, { - "rshares": 2440657034, - "voter": "steemleak" + "rshares": 8569614654, + "voter": "xianjun" }, { - "rshares": 88179884, - "voter": "bigsambucca" + "rshares": 74615731, + "voter": "evgenyche" }, { - "rshares": 1148932075, - "voter": "boddhisattva" + "rshares": 3851639124, + "voter": "bledarus" }, { - "rshares": 91269448383, - "voter": "krishtopa" + "rshares": 2249406646, + "voter": "njall" }, { - "rshares": 13512480655, - "voter": "gargon" + "rshares": 561462512, + "voter": "microluck" }, { - "rshares": 14081076281, - "voter": "cristi" + "rshares": 587265371, + "voter": "ashwim" }, { - "rshares": 3767193262, - "voter": "alchemage" + "rshares": 6335028236, + "voter": "userlogin" }, { - "rshares": 25744468323, - "voter": "hanshotfirst" + "rshares": 2005300662, + "voter": "chinadaily" }, { - "rshares": 62624816, - "voter": "nevermind" + "rshares": 3054149279, + "voter": "virtualgrowth" }, { - "rshares": 2949708530, - "voter": "unrealisback" + "rshares": 93967126680, + "voter": "serejandmyself" }, { - "rshares": 44290701459, - "voter": "bitcalm" + "rshares": 11375408076, + "voter": "gvargas123" }, { - "rshares": 92892046204, - "voter": "serejandmyself" + "rshares": 59171026, + "voter": "piezolit" }, { - "rshares": 24058008360, - "voter": "mihaiart" + "rshares": 59693834, + "voter": "suprepachyderm" }, { - "rshares": 8791068705, - "voter": "gvargas123" + "rshares": 59461347, + "voter": "bonapetit" }, { - "rshares": 14514235832, - "voter": "nastik" + "rshares": 1853399306, + "voter": "runridefly" }, { - "rshares": 50816343, - "voter": "bitchplease" + "rshares": 79831683, + "voter": "uziriel" }, { - "rshares": 8773812221, - "voter": "craigwilliamz" + "rshares": 54185367333, + "voter": "luminousvisions" }, { - "rshares": 2184427180, - "voter": "shadowspub" + "rshares": 1660674892, + "voter": "davidjkelley" }, { - "rshares": 88019548, - "voter": "uziriel" + "rshares": 187911420, + "voter": "team101" }, { - "rshares": 7471182625, - "voter": "einsteinpotsdam" + "rshares": 2934938337, + "voter": "victoriart" }, { - "rshares": 50784892, - "voter": "freesteem" + "rshares": 42587238948, + "voter": "sponge-bob" }, { - "rshares": 1742183706, - "voter": "rachelsvparry" + "rshares": 15560653946, + "voter": "digital-wisdom" }, { - "rshares": 51729228, - "voter": "jeff-kubitz" + "rshares": 3708740392, + "voter": "ethical-ai" }, { - "rshares": 89354006295, - "voter": "cnfund" + "rshares": 52171620, + "voter": "jamespro" }, { - "rshares": 1771984046, - "voter": "alwayzgame" + "rshares": 6827311951, + "voter": "jwaser" }, { - "rshares": 4003016084, - "voter": "funnyman" + "rshares": 212837202380, + "voter": "asksisk" }, { - "rshares": 3674734012, - "voter": "slayer" + "rshares": 25849035338, + "voter": "dubi" }, { - "rshares": 219004308, + "rshares": 2673994994, + "voter": "bwaser" + }, + { + "rshares": 344116052, + "voter": "panther" + }, + { + "rshares": 43440598050, + "voter": "brains" + }, + { + "rshares": 531027825, + "voter": "nelyp" + }, + { + "rshares": 474509334, "voter": "anomaly" }, { - "rshares": 180118177, - "voter": "natord" + "rshares": 2399995426, + "voter": "ellepdub" }, { - "rshares": 87018470283, - "voter": "btshuang" + "rshares": 310864796, + "voter": "ola1" }, { - "rshares": 1571586148, - "voter": "yanik" + "rshares": 12084249437, + "voter": "herpetologyguy" }, { - "rshares": 152866755, - "voter": "chocolatoso" + "rshares": 51659688, + "voter": "drac59" }, { - "rshares": 74838700, - "voter": "dealzgal" + "rshares": 4814022329, + "voter": "morgan.waser" }, { - "rshares": 153178035, - "voter": "royfft" + "rshares": 50228382, + "voter": "dragonice" }, { - "rshares": 132877786, - "voter": "sawgunner13" + "rshares": 50225780, + "voter": "steemq" }, { - "rshares": 108601105, - "voter": "dirlei.sdias" + "rshares": 51225440, + "voter": "sergsea" }, { - "rshares": 150753854, - "voter": "shortstories" + "rshares": 50139069, + "voter": "slow" + }, + { + "rshares": 50873654, + "voter": "palladium" + }, + { + "rshares": 3687674747, + "voter": "strong-ai" + }, + { + "rshares": 197326430, + "voter": "sjamayee" + }, + { + "rshares": 159710416, + "voter": "allianz" + }, + { + "rshares": 1354011808, + "voter": "rusteemitblog" + }, + { + "rshares": 158666175, + "voter": "durex" + }, + { + "rshares": 161815656, + "voter": "ranger" + }, + { + "rshares": 158529766, + "voter": "shadowcash" + }, + { + "rshares": 426281596, + "voter": "witchcraftblog" + }, + { + "rshares": 161218747, + "voter": "sdc" + }, + { + "rshares": 158018960, + "voter": "bethesda" + }, + { + "rshares": 157937685, + "voter": "bethsoft" + }, + { + "rshares": 2216109112, + "voter": "dresden" + }, + { + "rshares": 157176058, + "voter": "cybergirls" + }, + { + "rshares": 160260561, + "voter": "rage" + }, + { + "rshares": 159963865, + "voter": "sledgehammer" + }, + { + "rshares": 156262128, + "voter": "bosch" + }, + { + "rshares": 158486055, + "voter": "zendesk" + }, + { + "rshares": 157482864, + "voter": "kostach" + }, + { + "rshares": 79990132, + "voter": "gifts" + }, + { + "rshares": 103328828, + "voter": "paulocouto" + }, + { + "rshares": 132935425, + "voter": "newsfeed" } ], - "author": "sauravrungta", + "author": "terrycraft", "author_payout_value": "0.000 HBD", - "author_reputation": 61.54, + "author_reputation": 68.42, "beneficiaries": [], "blacklists": [], - "body": "\n

Most of us believe that the laws of any country are a result of the pinnacle of rational thinking. Of course, since laws are what keep everybody in \u201corder\u201d and they are quite literally what makes a country, a country. But laws are made by people and people do stupid things all the time. Even while making said laws! There are some laws that make you want to go like this:

\n

\n

In this post, I\u2019m going to list some of the craziest, stupidest and the dumbest laws that are either still in effect or were in effect up till recently. And I am going to do this country wise. So, sit back, relax and get ready for a chuckle or two!

\n

Australia

\n

1. In Victoria, Australia, it is illegal to change a light bulb unless you\u2019re a licensed electrician.

\n

2. Men in the country are free to cross-dress, just as long as their dresses are not strapless.

\n

3. Children may not purchase cigarettes, but they may smoke them.

\n

4. It is illegal to wear hot pink pants after midday Sunday.

\n

\n

Image Credits

\n

Bangladesh

\n

1. Bangladeshi children of age 15 and older can be sent to jail for cheating on their final exams.

\n

Britain

\n

1. It is illegal to handle a salmon in suspicious circumstances.

\n

2. It is illegal to import potatoes into England or Wales if you have reasonable cause to believe that they are Polish.

\n

3. In Britain, you are not allowed to let your pet, mate with any pet from the royal house.

\n

4. It is illegal to operate a cow while intoxicated.

\n

5. It is illegal to die in parliament. (This law has been removed recently)

\n

Canada

\n

1. In Canada, by law, one out of every five songs on the radio must be sung by a Canadian.

\n

\n

Image Credits

\n

2. It is illegal to show public affection on Sunday.

\n

3. It is illegal to kill a sick person by frightening them.

\n

China

\n

1. In July 2013 a law was passed in China that states it is illegal for adult children to not visit their parents \u201coften\u201d in China. They are also required to attend to their parent\u2019s spiritual needs.

\n

2. To go to college you must be intelligent.

\n

Denmark

\n

1. In Danish restaurants, you don\u2019t have to pay for your food unless, you are \u2018full\u2019 at the end of your meal.

\n

2. It is illegal to start your car without first checking to see if there are any children sleeping under the car.

\n

3. In Denmark it is not illegal for a convicted prisoner to escape from prison. If the escapee is caught he only serves the rest of his sentence.

\n

France

\n

1. In France, it is stated as illegal to marry a dead person.

\n

2. From 1799 to 2013, it was illegal for women to wear pants.

\n

3. It is illegal to kiss on railways in France.

\n

4. It is illegal to take photos of police officers or police vehicles, even if they are just in the background.

\n

Hong Kong

\n

1. In Hong Kong, there\u2019s a law that allows a wife to kill her husband if she finds him cheating. However, she must kill him with her bare hands.

\n

\n

Image Credits

\n

Indonesia

\n

1. In Indonesia, the penalty for masturbation is decapitation.

\n

Israel

\n

1. If you have been maintaining an illegal radio station for five or more years, the station becomes legal.

\n

2. Picking one\u2019s nose on the Sabbath is illegal.

\n

3. It is forbidden to bring bears to the beach.

\n

Japan

\n

1. Being overweight is illegal in Japan.

\n

Saudi Arabia

\n

1. In Saudi Arabia, women are not allowed to drive a car.

\n

2. Also, there is no minimum age for marriage.

\n

Singapore

\n

1. In Singapore it is illegal for a person to walk around the house naked.

\n

2. It is illegal to pee in an elevator.

\n

3. Chewing gum is illegal in Singapore.

\n

\n

Image Credits

\n

Switzerland

\n

1. In Switzerland, it is illegal to flush a toilet after 10pm.

\n

2. Clothes may not be hung to dry on Sunday.

\n

3. You may not wash your car on a Sunday.

\n

Thailand

\n

1. In Thailand, it is illegal to step on money.

\n

2. It is also illegal to leave your house without wearing underwear.

\n

3. Also, all cinema patrons must stand up during the National Anthem before a film starts.

\n

USA

\n

1. It is illegal to stab oneself and gain the pity of others. (Alabama)

\n

2. A man is allowed to beat his wife, but only once a month. (Arizona)

\n

3. A person who detonates a nuclear device within city limits is fined up to $500. (California)

\n

4. Car dealers cannot show cars to customers on Sundays. (Colorado) 

\n

5. It is against the law to educate dogs. (Connecticut)

\n

6. It is illegal to give whiskey to a dog, in Chicago.

\n

7. It is illegal to indulge in 'spiteful gossip' and 'talking behind a person's back'. (Indiana)

\n

8. A person needs a license to walk around nude in his/her property. (Kentucky)

\n

9. It is illegal to take a lion to the movies in Baltimore. (Maryland)

\n

10. A man is not allowed to run around with a shaved chest. (Nabraska)

\n

11. Jumping off the Empire State Building is illegal.

\n

12. It is illegal to lie down and fall asleep with your shoes on. (North Dakota)

\n
\n
\n

Sources: Buzzle, Thought Catalogue, Wonderlist, DailyMail, Lifedaily

\n
\n

Follow me for more awesome content @sauravrungta. :)
\nCheck out my Instagram - LINK

\n", - "category": "facts", - "children": 21, - "created": "2016-09-14T22:53:15", + "body": "\n

 Hello friends!  Today, I'm writing my second article about how to move to live on the paradise island. I am talking about the Koh Phangan Island in Thailand. In my first article I wrote about how to get there. Now I want to tell you what to do next. 

\n
 \u041f\u0440\u0438\u0432\u0435\u0442 \u0434\u0440\u0443\u0437\u044c\u044f! \u0421\u0435\u0433\u043e\u0434\u043d\u044f \u044f \u043f\u0438\u0448\u0443 \u0441\u0432\u043e\u044e \u0432\u0442\u043e\u0440\u0443\u044e \u0441\u0442\u0430\u0442\u044c\u044e \u043f\u0440\u043e \u0442\u043e, \u043a\u0430\u043a \u043f\u0435\u0440\u0435\u0435\u0445\u0430\u0442\u044c \u0436\u0438\u0442\u044c \u043d\u0430 \u0440\u0430\u0439\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430, \u0430 \u0438\u043c\u0435\u043d\u043d\u043e \u0432 \u0422\u0430\u0438\u043b\u0430\u043d\u0434 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432 Koh Phangan. \u0412 \u0441\u0432\u043e\u0435\u0439 \u043f\u0435\u0440\u0432\u043e\u0439 \u0441\u0442\u0430\u0442\u044c\u0435 \u044f \u043f\u0438\u0441\u0430\u043b \u043f\u0440\u043e \u0442\u043e, \u043a\u0430\u043a \u0434\u043e\u0431\u0440\u0430\u0442\u044c\u0441\u044f \u0434\u043e \u043e\u0441\u0442\u0440\u043e\u0432\u0430. \u0414\u0430\u043b\u0435\u0435 \u044f \u0445\u043e\u0447\u0443 \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u0442\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0434\u0430\u043b\u044c\u0448\u0435. 
\n

  Since you arrive to the Island - you have to solve 2 main tasks as fast as you can. There is onl\u0443 thing you should pay attention to. If you come in the high season that is from the 15th of December to 15th of January you may have some problems when searching a house to stay. At this time the Island is full of people, everybody comes to celebrate the New Year, and that is why almost all the houses are occupied. So if you arrive around this time, I advise you to book in your accommodation in advance. Here you can see some reliable Realtors, who will not trick you and do everything very quickly and nicely.  But if you do not plan to come in the high season, you can easily find a suitable accommodation for yourself. As soon as you step out to the dock you get immediately surrounded by a bunch of taxi drivers who want to take you somewhere. It\u2019s better not to use their services, and do everything on your own.  

\n
\u0412 \u043f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043a\u0430\u043a \u0432\u044b \u0441\u043e\u0448\u043b\u0438 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432 - \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c 2 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0440\u0435\u0448\u0438\u0442\u044c \u0432 \u0441\u0430\u043c\u043e\u0435 \u0431\u044b\u0441\u0442\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0417\u0434\u0435\u0441\u044c \u0435\u0441\u0442\u044c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043d\u044e\u0430\u043d\u0441 - \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438 \u0432 \u0441\u0430\u043c\u044b\u0439 \u043f\u0438\u043a \u0441\u0435\u0437\u043e\u043d\u0430 - \u0430 \u044d\u0442\u043e \u0441 15 \u0434\u0435\u043a\u0430\u0431\u0440\u044f \u043f\u043e 15 \u044f\u043d\u0432\u0430\u0440\u044f \u0441 \u043f\u043e\u0438\u0441\u043a\u043e\u043c \u0436\u0438\u043b\u044c\u044f \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b, \u0442\u0430\u043a \u043a\u0430\u043a \u0432 \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e \u043b\u044e\u0434\u0435\u0439 - \u0432\u0441\u0435 \u043f\u0440\u0438\u0435\u0437\u0436\u0430\u044e\u0442 \u043d\u0430 \u043d\u043e\u0432\u044b\u0439 \u0433\u043e\u0434 \u0438 \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0435 \u0434\u043e\u043c\u0430 \u0437\u0430\u043d\u044f\u0442\u044b. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u0435\u0441\u043b\u0438 \u0432\u044b \u0435\u0434\u0438\u0442\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0432 \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f - \u0442\u043e \u0441\u043e\u0432\u0435\u0442\u0443\u044e \u0432\u0430\u043c \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0437\u0430\u0431\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0436\u0438\u043b\u044c\u0435. \u0412\u043e\u0442 \u043f\u0440\u0438\u043c\u0435\u0440\u044b \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0445 \u0440\u0438\u044d\u043b\u0442\u043e\u0440\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0442\u043e\u0447\u043d\u043e \u043d\u0435 \u043e\u0431\u043c\u0430\u043d\u0443\u0442 \u0438 \u0441\u0434\u0435\u043b\u0430\u044e\u0442 \u0432\u0441\u0435 \u043e\u0447\u0435\u043d\u044c \u0431\u044b\u0441\u0442\u0440\u043e \u0438 \u043a\u0440\u0430\u0441\u0438\u0432\u043e. 
\n
 \u041d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438 \u043d\u0435 \u0432 \u043f\u0438\u043a\u043e\u0432\u044b\u0439 \u0441\u0435\u0437\u043e\u043d \u0442\u043e \u0441\u043c\u0435\u043b\u043e \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0439\u0442\u0438 \u0441\u0435\u0431\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0436\u0438\u043b\u044c\u0435 \u0441\u0430\u043c\u0438. \u0412\u044b \u0441\u043e\u0448\u043b\u0438 \u043d\u0430 \u043f\u0440\u0438\u0447\u0430\u043b \u0438 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043d\u0430 \u0432\u0430\u0441 \u043d\u0430\u043b\u0435\u0442\u0430\u0435\u0442 \u043a\u0443\u0447\u0430 \u0442\u0430\u043a\u0441\u0438\u0441\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0445\u043e\u0442\u044f\u0442 \u0432\u0430\u0441 \u043a\u0443\u0434\u0430 \u043d\u0438\u0431\u0443\u0434\u044c \u043e\u0442\u0432\u0435\u0437\u0442\u0438. \u042f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e \u0432\u0430\u043c \u043d\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0445 \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438, \u0430 \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0432\u0441\u0435 \u0441\u0430\u043c\u0438\u043c. 
\n


\n

 Your 1st task is to rent a bike by yourself. You can rent it for absolutely any term from 1 day to several months. If you want to stay here for a few months, it is much more profitable to buy it. There are a lot of offers for renting bikes, you can find absolutely any bike for any budget. The average monthly rent varies from 3000 baht  to 7000 baht .(1000 baht=29$)   In my opinion, the best option is to immediately rent a good bike yourself. My choice is

\n

 Honda Pcx 150

\n
1 \u0432\u0430\u0448\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 - \u044d\u0442\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0431\u0430\u0439\u043a. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0437\u044f\u0442\u044c \u0435\u0433\u043e \u043d\u0430 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0441\u0440\u043e\u043a \u043e\u0442 1 \u0434\u043d\u044f \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432. \u0415\u0441\u043b\u0438 \u0436\u0435 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0441\u0442\u0430\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c \u043d\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0442\u043e \u043d\u0430\u043c\u043d\u043e\u0433\u043e \u0432\u044b\u0433\u043e\u0434\u043d\u0435\u0435 \u043a\u0443\u043f\u0438\u0442\u044c \u0441\u0435\u0431\u0435 \u0435\u0433\u043e. \u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u043e\u0431 \u0430\u0440\u0435\u043d\u0434\u0435 \u0431\u0430\u0439\u043a\u043e\u0432 \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e, \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0431\u0430\u0439\u043a \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0431\u044e\u0434\u0436\u0435\u0442. \u0412 \u0441\u0440\u0435\u0434\u043d\u0435\u043c \u043c\u0435\u0441\u044f\u0447\u043d\u0430\u044f \u0430\u0440\u0435\u043d\u0434\u0430 \u0431\u0430\u0439\u043a\u0430 \u0441\u0442\u043e\u0438\u0442 \u043e\u0442 3000 \u0431\u0430\u0442 ( 90$) \u0434\u043e 7000 \u0431\u0430\u0442 . \u0412\u043e\u043e\u0431\u0449\u0435 \u044f \u0432\u0430\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0441\u0440\u0430\u0437\u0443 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0431\u0430\u0439\u043a - \u0441\u0430\u043c\u044b\u043c \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u043c \u0438 \u043b\u0443\u0447\u0448\u0438\u043c \u043f\u043e \u0446\u0435\u043d\u0435 \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0443 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f 
\n

honda pcx 150.

\n


\n


\n


\n

\n

\n

it\u2019s the most popular one and it has the best combination of price and quality. It will cost you 5000 baht in average. It is very comfortable, fast and efficient. You can rent it not far from the arrival pier. After you left the pier, you have to go to the left at the first junction towards the roundabout. After that to choose a bike suiting you taste and in the color you need, you should come to every office and bargain. When renting you a bike Thais always take your passport. And if you leave even a tiny scratch on the bike, they will get really angry. They seem to have a national Thai sport \u2013 fooling a foreigner. So a friend of mine paid 3000 for a small scratch, Thais did not want to give him his passport back, and the ferry was already set to sail, so my friend had to pay. Do not forget that you are a guest here and locals dictate the rules of the game here. That's their business. So be careful with a rented bike and protect it as your own. And finally you have found a transport - then the most difficult, but exciting time comes \u2013 you should search for a house.

\n
 \u0415\u0433\u043e \u0441\u0440\u0435\u0434\u043d\u044f\u044f \u0446\u0435\u043d\u0430 - 5000 \u0431\u0430\u0442. \u041e\u043d \u043e\u0447\u0435\u043d\u044c \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043d\u044b\u0439, \u0431\u044b\u0441\u0442\u0440\u044b\u0439 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0438 \u043e\u0434\u0438\u043d \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u0445 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435. \u0415\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435\u0434\u0430\u043b\u0435\u043a\u043e \u043e\u0442 \u043f\u0440\u0438\u0447\u0430\u043b\u0430 \u043a\u0443\u0434\u0430 \u0432\u044b \u043f\u0440\u0438\u0431\u044b\u043b\u0438. \u0412\u044b \u0441\u043e\u0448\u043b\u0438 \u0441 \u043f\u0440\u0438\u0447\u0430\u043b\u0430 \u0438 \u0432\u0430\u043c \u043d\u0430\u0434\u043e \u0438\u0434\u0442\u0438 \u0432 \u043b\u0435\u0432\u0443\u044e \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u043c \u043f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043a\u0435 \u0434\u043e \u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0433\u043e \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f. \u0414\u0430\u043b\u0435\u0435 \u0437\u0430\u0445\u043e\u0434\u044f \u0432 \u043a\u0430\u0436\u0434\u0443\u044e \u043a\u043e\u043d\u0442\u043e\u0440\u0443 - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0431\u0430\u0439\u043a \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0446\u0432\u0435\u0442. \u0422\u0430\u0439\u0446\u044b \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u0438 \u0430\u0440\u0435\u043d\u0434\u0435 \u0438\u0445 \u0431\u0430\u0439\u043a\u0430 \u0437\u0430\u0431\u0438\u0440\u0430\u044e\u0442 \u0432\u0430\u0448 \u043f\u0430\u0441\u043f\u043e\u0440\u0442. \u0418 \u0435\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u044f \u0431\u044b \u0447\u0443\u0442\u044c \u0447\u0443\u0442\u044c \u043f\u043e\u0446\u0430\u0440\u0430\u043f\u0430\u0435\u0442\u0435 \u0438\u0445 \u0431\u0430\u0439\u043a \u043f\u0440\u0438 \u0430\u0440\u0435\u043d\u0434\u0435 - \u0442\u0443\u0442 \u043e\u043d\u0438 \u0443\u0436\u0435 \u0440\u0430\u0437\u043e\u0439\u0434\u0443\u0442\u0441\u044f \u043d\u0435 \u043d\u0430 \u0448\u0443\u0442\u043a\u0443. \u0423 \u043d\u0438\u0445 \u043a\u0430\u0436\u0435\u0442\u0441\u044f \u0435\u0441\u0442\u044c \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0441\u043f\u043e\u0440\u0442 - \u043e\u0431\u043c\u0430\u043d\u0438 \u0442\u0443\u0436\u0435\u0437\u0435\u043c\u0446\u0430. \u0422\u0430\u043a \u043e\u0434\u0438\u043d \u043c\u043e\u0439 \u0434\u0440\u0443\u0433 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b 3000 \u0437\u0430 \u043c\u0435\u043b\u043a\u0443\u044e \u0446\u0430\u0440\u0430\u043f\u0438\u043d\u043a\u0443, \u0442\u0430\u0439\u0446\u044b \u043d\u0435 \u043e\u0442\u0434\u0430\u0432\u0430\u043b\u0438 \u043f\u0430\u0441\u043f\u043e\u0440\u0442, \u0430 \u043f\u0430\u0440\u043e\u043c \u0431\u044b\u043b \u0443\u0436\u0435 \u043d\u0430 \u043e\u0442\u043f\u043b\u044b\u0442\u0438\u0438 \u0438 \u043f\u0440\u0438\u0448\u043b\u043e\u0441\u044c \u043f\u043b\u0430\u0442\u0438\u0442\u044c. \u041d\u0435 \u0437\u0430\u0431\u044b\u0432\u0430\u0439\u0442\u0435 \u0447\u0442\u043e \u0432\u044b \u0442\u0443\u0442 \u0433\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0438\u0433\u0440\u044b \u0442\u0443\u0442 \u0434\u0438\u043a\u0442\u0443\u044e\u0442 \u043c\u0435\u0441\u0442\u043d\u044b\u0435. \u042d\u0442\u043e \u0438\u0445 \u0431\u0438\u0437\u043d\u0435\u0441. \u0422\u0430\u043a \u0447\u0442\u043e \u0431\u0443\u0434\u044c\u0442\u0435 \u0430\u043a\u043a\u0443\u0440\u0430\u0442\u043d\u0435\u0435 \u0441 \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u043d\u043d\u044b\u043c \u0431\u0430\u0439\u043a\u043e\u043c, \u0435\u0433\u043e \u043d\u0430\u0434\u043e \u043e\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043a\u0430\u043a \u0441\u0432\u043e\u0439. 
\n
 \u0418 \u0432\u043e\u0442 \u043d\u0430\u043a\u043e\u043d\u0435\u0446 \u0432\u044b \u043d\u0430\u0448\u043b\u0438 \u0441\u0435\u0431\u0435 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442 - \u0434\u0430\u043b\u0435\u0435 \u043d\u0430\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u0441\u0430\u043c\u044b\u0439 \u0441\u043b\u043e\u0436\u043d\u044b\u0439, \u043d\u043e \u0443\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 - \u044d\u0442\u043e \u043f\u043e\u0438\u0441\u043a \u0436\u0438\u043b\u044c\u044f.
\n


\n

 At the first day, I recommend you to find any house that you like for a week. You will have a week to drive around the Island and find the place to stay that you really like. In future articles, I will tell you how and where to go that week, and now I'll tell you where you need to go to find a budget place for the first time.  Here you can see the marks of the villages where you can almost always find available and very good accommodation with very good hosts. These houses are not expensive.  For example, such a house can be rented for 13000 baht. For a week the owner asks 4000 baht.

\n
\u042f \u0432\u0430\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u0432 \u043f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043d\u0430\u0439\u0442\u0438 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0434\u043e\u043c\u0438\u043a \u043d\u0430 \u043d\u0435\u0434\u0435\u043b\u044e, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u0430\u043c \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u0438 \u0434\u0430\u043b\u0435\u0435 \u0443\u0436\u0435 \u0437\u0430 \u044d\u0442\u0443 \u043d\u0435\u0434\u0435\u043b\u044e \u043e\u0431\u044c\u0435\u0445\u0430\u0442\u044c \u0432\u0435\u0441\u044c \u043e\u0441\u0442\u0440\u043e\u0432 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0442\u043e \u0447\u0435\u0433\u043e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435. \u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u0442\u0430\u0442\u044c\u044f\u0445 \u044f \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u0432\u0430\u043c \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u0438 \u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c \u0432 \u044d\u0442\u0443 \u043d\u0435\u0434\u0435\u043b\u044e, \u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u044f \u0432\u0430\u043c \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u043a\u0443\u0434\u0430 \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0435\u0445\u0430\u0442\u044c \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0439\u0442\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u043d\u043e\u0435 \u0436\u0438\u043b\u044c\u0435 \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0412\u043e\u0442 \u043c\u0435\u0442\u043a\u0438 \u0434\u0435\u0440\u0435\u0432\u043d\u044c \u0433\u0434\u0435 \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u0435\u0441\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0435 \u0438 \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0435\u0435 \u0436\u0438\u043b\u044c\u0435 \u0441 \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0438\u043c\u0438 \u0445\u043e\u0437\u044f\u0435\u0432\u0430\u043c\u0438. \u0422\u0430\u043a\u0438\u0435 \u0434\u043e\u043c\u0430 \u0441\u0442\u043e\u044f\u0442 \u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435 \u0434\u043e\u0440\u043e\u0433\u043e. \u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c \u0432\u043e\u0442 \u0442\u0430\u043a\u043e\u0439 \u0434\u043e\u043c\u0438\u043a \u043c\u043e\u0436\u043d\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0437\u0430 13000 \u0431\u0430\u0442. \u0417\u0430 \u043d\u0435\u0434\u0435\u043b\u044e \u0445\u043e\u0437\u044f\u0438\u043d \u043f\u0440\u043e\u0441\u0438\u0442 4000 \u0431\u0430\u0442
\n

\n

\n

\n

 But you should always bargain with Thais.

\n

 In recent years I myself have lived with the most wonderful hosts, I would recommend you to stay with them too. They became really close to us during our stay. Here is the mark of the house, and the owner\u2019s contacts. You can write to him and he can meet you directly at the pier and help carry you stuff. This amazing guy has even bikes for rent. 

\n
\u0421 \u0442\u0430\u0439\u0446\u0430\u043c\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u041d\u0415\u041e\u0411\u0425\u041e\u0414\u0418\u041c\u041e \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u0442\u044c\u0441\u044f.
\n
\u0421\u0430\u043c \u044f \u0436\u0438\u043b \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0443 \u0441\u0430\u043c\u044b\u0445 \u0437\u0430\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0445\u043e\u0437\u044f\u0435\u0432 \u0432\u0441\u0435\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f \u0443 \u043d\u0438\u0445. \u0417\u0430 \u0432\u0440\u0435\u043c\u044f \u0436\u0438\u0437\u043d\u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u043d\u0430\u043c \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u043e\u0434\u043d\u044b\u043c\u0438. \u0412\u043e\u0442 \u043c\u0435\u0442\u043a\u0430 \u044d\u0442\u043e\u0433\u043e \u0434\u043e\u043c\u0430, \u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b \u0445\u043e\u0437\u044f\u0438\u043d\u0430. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0435\u043c\u0443 \u0438 \u043e\u043d \u0432\u0430\u0441 \u043c\u043e\u0436\u0435\u0442 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0441 \u043f\u0430\u0440\u043e\u043c\u0430 \u0438 \u043f\u043e\u043c\u043e\u0447\u044c \u0434\u043e\u0432\u0435\u0441\u0442\u0438 \u0432\u0435\u0449\u0438. \u0423 \u044d\u0442\u043e\u0433\u043e \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0434\u0430\u0436\u0435 \u0435\u0441\u0442\u044c \u0431\u0430\u0439\u043a\u0438 \u0432 \u0430\u0440\u0435\u043d\u0434\u0443. 
\n


\n

\n

\n

When you find a house and get some rest, it's time to go eat something. The most important meeting point of all the people living on the Island is the food court.

\n

\n

 Anyone can find food for him here. I'll give you more details about it in the following articles. Another very important tip - if it\u2019s your first time on the island, download the map Maps.me and mark there all the important places. Because as soon as it gets dark on the island - everything is changing, and it\u2019s very easy to get lost. Thank you for reading my article. I hope it will be useful to you. See you soon! 

\n
\u041a\u043e\u0433\u0434\u0430 \u0432\u044b \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438\u0441\u044c \u0432 \u0434\u043e\u043c\u0435, \u043e\u0442\u0434\u043e\u0445\u043d\u0443\u043b\u0438 - \u0441\u0430\u043c\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u044a\u0435\u0437\u0434\u0438\u0442\u044c \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c. \u0421\u0430\u043c\u043e\u0435 \u0433\u043b\u0430\u0432\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0441\u0431\u043e\u0440\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u0443\u0449\u0438\u0445 \u043b\u044e\u0434\u0435\u0439 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 - \u044d\u0442\u043e \u0444\u0443\u0434\u043a\u043e\u0440\u0442. \u0417\u0434\u0435\u0441\u044c \u0435\u0441\u0442\u044c \u0435\u0434\u0430 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u044b\u0431\u043e\u0440 \u0438 \u043e \u043d\u0435\u043c \u044f \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u0442\u0430\u0442\u044c\u044f\u0445. \u0415\u0449\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u0430\u0436\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0435\u0440\u0432\u044b\u0439 \u0440\u0430\u0437 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 - \u0441\u043a\u0430\u0447\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u043a\u0430\u0440\u0442\u0443 maps me \u0438 \u043e\u0442\u043c\u0435\u0447\u0430\u0442\u044c \u0432\u0441\u0435 \u0437\u043d\u0430\u0447\u0438\u043c\u044b\u0435 \u043c\u0435\u0441\u0442\u0430 \u043c\u0435\u0442\u043a\u0430\u043c\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0435. \u041f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u0442\u0435\u043c\u043d\u0435\u0435\u0442 - \u0432\u0441\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043e\u0447\u0435\u043d\u044c \u043b\u0435\u0433\u043a\u043e \u0437\u0430\u0431\u043b\u0443\u0434\u0438\u0442\u0441\u044f. \u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0432\u0430\u043c \u0437\u0430 \u0442\u043e, \u0447\u0442\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b\u0438 \u043c\u043e\u044e \u0441\u0442\u0430\u0442\u044c\u044e. \u042f \u0434\u0443\u043c\u0430\u044e \u0447\u0442\u043e \u0431\u044b\u043b \u043a\u043e\u043c\u0443 \u0442\u043e \u043f\u043e\u043b\u0435\u0437\u0435\u043d. \u0414\u043e \u0441\u043a\u043e\u0440\u043e\u0439 \u0432\u0441\u0442\u0440\u0435\u0447\u0438!
\n\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @maximkichev\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", + "category": "travel", + "children": 6, + "created": "2016-09-14T13:41:51", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://s15.postimg.org/slf9zpw8r/bab_copy.jpg", - "https://s10.postimg.org/xv139out5/Victoria_Australia_is_forbidden_to_wear_pink_hot.jpg", - "https://s10.postimg.org/kcjea0bft/justin_canada.jpg", - "https://s14.postimg.org/wes6vcich/woman_throttles_man.jpg", - "https://s11.postimg.org/7jhole5fn/i_Stock_000028475756_Medium.jpg" + "https://www.steemimg.com/images/2016/09/06/12728528_1058985940831903_2136328517_n410d0.jpg", + "https://www.steemimg.com/images/2016/09/06/12224592_122832371412947_1363648931_nf668a.jpg", + "https://www.steemimg.com/images/2016/09/06/IMG_8474e1580.jpg", + "https://www.steemimg.com/images/2016/09/06/IMG_84828dc26.jpg", + "https://www.steemimg.com/images/2016/09/06/IMG_260880143.jpg", + "https://www.steemimg.com/images/2016/09/06/12797606_198129123884007_684911603_ne9572.jpg", + "https://www.steemimg.com/images/2016/09/06/12725187_232914270382388_1084474976_n46bf5.jpg", + "https://www.steemimg.com/images/2016/09/06/IMG_91694a457.jpg" ], "links": [ - "http://www.lifedaily.com/26-of-the-craziest-laws-from-around-the-world/", - "http://www.vanyaland.com/2014/04/30/toronto-throwdown-justin-bieber-asks-mayor-rob-ford-crack-canadian-nightclub/", - "http://www.theregister.co.uk/2015/06/02/big_brains_help_birds_not_blokes_fish_study/", - "http://www.berkeleywellness.com/healthy-eating/diet-weight-loss/slideshow/chew-gum-health", - "http://www.buzzle.com/articles/crazy-laws.html", - "http://thoughtcatalog.com/rachel-hodin/2013/10/67-ridiculous-laws-from-around-the-world-that-still-actually-exist/", - "http://www.wonderslist.com/10-craziest-laws-in-world/", - "http://www.dailymail.co.uk/travel/travel_news/article-2856346/It-illegal-not-smile-Milan-no-donkeys-sleep-bath-Oklahoma-strangest-laws-word.html", - "https://www.instagram.com/sauravrungta45/" + "https://steemit.com/travel/@terrycraft/koh-phangan-is-modern-tortuga-part-1-ko-pkhangan-eto-sovremennaya-tortuga-chast-1-featuring-maximkichev-as-author", + "https://www.facebook.com/arkady.volk?fref=ts", + "https://www.google.com/maps/place/Tw+Travel+2,+Unnamed+Rd,,+Ko+Pha-ngan,+Ko+Pha-ngan+District,+Surat+Thani+84280,+%D0%A2%D0%B0%D0%B8%D0%BB%D0%B0%D0%BD%D0%B4/@9.711781,99.985466,19z/data=!3m1!1e3!4m6!1m3!3m2!1s0x3054fe7de41200f9:0xd0041a7b8adc197c!2zVW5uYW1lZCBSb2FkLCBUYW1ib24gS28gUGhhLW5nYW4sIEFtcGhvZSBLbyBQaGEtbmdhbiwgQ2hhbmcgV2F0IFN1cmF0IFRoYW5pIDg0MjgwLCDQotCw0LjQu9Cw0L3QtA!3m1!1s0x3054fe7de19dc325:0x16481455c28a49d7?hl=ru-ID", + "https://www.google.ru/maps/dir/9.7224811,100.0070475/9.7225217,100.0070279/@9.7224499,100.0052736,631m/data=!3m1!1e3!4m2!4m1!3e2", + "https://www.facebook.com/stormand?fref=ts", + "http://maps.me/" ], "tags": [ - "facts", - "funny", - "laws", - "" + "travel", + "story", + "thailand", + "ru" ], "users": [ - "sauravrungta" + "maximkichev" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 40900060103077, - "payout": 102.69, - "payout_at": "2016-09-21T22:53:15", - "pending_payout_value": "102.690 HBD", + "net_rshares": 84039445019137, + "payout": 415.525, + "payout_at": "2016-09-21T13:41:51", + "pending_payout_value": "415.525 HBD", "percent_hbd": 10000, - "permlink": "craziest-laws-from-around-the-world", - "post_id": 1248311, + "permlink": "the-first-day-on-the-koh-phangan-island-what-you-should-do-and-where-you-should-go-pervyi-den-na-ostrove-ko-pkhangan-chto-delat", + "post_id": 1243180, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 105 + "total_votes": 185 }, - "title": "Craziest Laws From Around The World", - "updated": "2016-09-14T22:53:15", - "url": "/facts/@sauravrungta/craziest-laws-from-around-the-world" + "title": "The first day on the Koh Phangan Island. What you should do and where you should go / \u041f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u041a\u043e-\u041f\u0445\u0430\u043d\u0433\u0430\u043d. \u0427\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0438 \u043a\u0443\u0434\u0430 \u0441\u0445\u043e\u0434\u0438\u0442\u044c. (featuring @maximkichev as author)", + "updated": "2016-09-14T13:41:51", + "url": "/travel/@terrycraft/the-first-day-on-the-koh-phangan-island-what-you-should-do-and-where-you-should-go-pervyi-den-na-ostrove-ko-pkhangan-chto-delat" }, { "active_votes": [ { - "rshares": 14788669223, - "voter": "valtr" + "rshares": 260705259869, + "voter": "anonymous" + }, + { + "rshares": 10520740297326, + "voter": "berniesanders" }, { - "rshares": 81384599473, - "voter": "me-tarzan" + "rshares": 73213646352, + "voter": "nextgenwitness" }, { - "rshares": 764874009, - "voter": "edgarsart" + "rshares": 244092270479, + "voter": "justin" }, { - "rshares": 689172743, - "voter": "jessicanicklos" + "rshares": 669240019892, + "voter": "silver" + }, + { + "rshares": 1625172792145, + "voter": "silversteem" + }, + { + "rshares": 1917401685068, + "voter": "nextgencrypto" + }, + { + "rshares": 2496772623482, + "voter": "wang" + }, + { + "rshares": 168099094309, + "voter": "steemservices" + }, + { + "rshares": 31813217918, + "voter": "thedarkestplum" + }, + { + "rshares": 1414367459, + "voter": "murh" + }, + { + "rshares": 23805646075, + "voter": "thecryptofiend" + }, + { + "rshares": 36918468476, + "voter": "redpalestino" + }, + { + "rshares": 4776598885, + "voter": "gustavopasquini" + }, + { + "rshares": 118330689, + "voter": "bullionstackers" + }, + { + "rshares": 1845758722, + "voter": "jillstein2016" + }, + { + "rshares": 275446808, + "voter": "cris.emilia" + }, + { + "rshares": 191761463, + "voter": "abnerpasquini" + }, + { + "rshares": 50545877, + "voter": "party1998" + }, + { + "rshares": 163701239, + "voter": "steemit-recipes" + }, + { + "rshares": 5676810763, + "voter": "leavemealone" + }, + { + "rshares": 1737088264, + "voter": "alwayzgame" }, { - "rshares": 167418362, + "rshares": 401507898, + "voter": "anomaly" + }, + { + "rshares": 334777472, "voter": "ola1" }, { - "rshares": 1772984022, + "rshares": 151471183, + "voter": "crimson" + }, + { + "rshares": 426281596, + "voter": "witchcraftblog" + }, + { + "rshares": 2105303657, "voter": "dresden" + }, + { + "rshares": 763354661, + "voter": "alienbutt" } ], - "author": "bitland", + "author": "gustavopasquini", "author_payout_value": "0.000 HBD", - "author_reputation": 53.61, + "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "Some strange, some amazing, animals which is not easy to meet. Part 2 :)\n\nGeosesarama (crab Vampire)\nhttp://x3.cdn03.imgwykop.pl/c3201142/comment_p305G42EDKB5cXJkNlYDBQiuD8mdMDup,w400.jpg\nhttp://www.zoo-mar.pl/wp-content/uploads/2015/03/krab-wampir.jpg\nThe origin of crabs, is Southeast Asia, namely Thailand, Indonesia, etc.\n\nOgcocephalus Darwin\nhttp://cdn4.se.smcloud.net/t/photos/t/331387/ogcocephalus-darwini_20325437.jpg\n\n\n\n\n\n\n\nUroplatus fimbriatus\nhttp://cdn18.se.smcloud.net/t/photos/t/331383/gekonliscioogonowy_20325300.jpg\nhttp://szokblog.pl/ShareImages/1407091902353.jpg\nLizard family of geckos, live in the tropical forests of Madagascar.\n\nBlue dragon\nhttp://cdn14.se.smcloud.net/t/photos/t/331386/niebieski-smok_20325434.jpg\nhttp://bi.gazeta.pl/im/be/f3/12/z19870654Q,Niebieski-smok-morski.jpg\nVenomous species of sea snail, found in temperate and tropical waters.\n\nBlobfish\nhttp://cdn18.se.smcloud.net/t/photos/t/331390/psychrolutes-marcidus_20325448.jpg\nhttp://static1.hln.be/static/photo/2013/0/14/13/20130912195411/media_xl_6124213.jpg\nUgliest and saddest fish on the world\n\nShark imp, Mitsukurina\nhttp://cdn27.se.smcloud.net/t/photos/t/331391/rekin-chochlik_20325453.jpg\nhttps://lh3.googleusercontent.com/-eQGrwbGHtDI/Ucya3xv18AI/AAAAAAABllo/JEqOc0dVasQ/w506-h380/tumblr_mp2d7stSz21r8x2ybo1_1280.jpg\nThe fish found in the deep sea and live below a depth of 200 m. As it is rarely observed in the wild - the first specimen was discovered in 1898 - knowledge of the shark is minuscule.", - "category": "travel", - "children": 0, - "created": "2016-09-14T16:58:45", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-21.png?w=1000\n\n> ## Traditional Brazilian Main Course to bring exquisite recipes to your fine dining table for special ocacsions.\n\n\n# INGREDIENTS\n\n> 1 kg of dry flesh\n\n> 1 kg of ripe pumpkin\n\n> 2 chopped tomatoes\n\n> 1 chopped onion\n\n> 2 cloves garlic, minced\n\n> Pepper and spices to taste\n\n> Oil or oil for saut\u00e9ing\n\n> Parsley and chive\n\n\n \n# PREPARATION\n\n### 1. Let dry meat soaked in water the day before, changing the water several times\n\n### 2. The next day all of the water drain\n\n### 3. Cook in a pressure cooker as few with a little water until soft\n\n### 4. Saute in olive oil garlic, onion and tomato\n\n### 5. Add the dried meat, the pumpkin into pieces and pepper to taste\n\n### 6. If necessary add salt\n\n### 7. Cook until the pumpkin is tender\n\n### 8. Turn off the heat and add parsley and chives\n\n### 9. Serve with white rice\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/14/pumpkin-with-jerked-beef/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/75748-carne-seca-com-abobora.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 3, + "created": "2016-09-14T13:34:51", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "http://x3.cdn03.imgwykop.pl/c3201142/comment_p305G42EDKB5cXJkNlYDBQiuD8mdMDup,w400.jpg", - "http://cdn4.se.smcloud.net/t/photos/t/331387/ogcocephalus-darwini_20325437.jpg", - "http://cdn18.se.smcloud.net/t/photos/t/331383/gekonliscioogonowy_20325300.jpg", - "http://cdn14.se.smcloud.net/t/photos/t/331386/niebieski-smok_20325434.jpg", - "http://cdn18.se.smcloud.net/t/photos/t/331390/psychrolutes-marcidus_20325448.jpg", - "http://cdn27.se.smcloud.net/t/photos/t/331391/rekin-chochlik_20325453.jpg" + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-21.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/14/pumpkin-with-jerked-beef/", + "http://www.tudogostoso.com.br/receita/75748-carne-seca-com-abobora.html" ], "tags": [ - "travel", - "life", - "animals", - "photography", - "" + "food", + "health", + "recipes", + "cooking", + "life" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 99567717832, - "payout": 0.021, - "payout_at": "2016-09-21T16:58:45", - "pending_payout_value": "0.021 HBD", + "net_rshares": 18088408128027, + "payout": 22.459, + "payout_at": "2016-09-21T13:34:51", + "pending_payout_value": "22.459 HBD", "percent_hbd": 10000, - "permlink": "weirdest-animals-i-ve-ever-seen-2", - "post_id": 1244867, + "permlink": "pumpkin-with-jerked-beef", + "post_id": 1243137, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 6 + "total_votes": 28 }, - "title": "Weirdest animals I've ever seen # 2", - "updated": "2016-09-14T17:07:27", - "url": "/travel/@bitland/weirdest-animals-i-ve-ever-seen-2" + "title": "Pumpkin with jerk beef", + "updated": "2016-09-15T10:18:21", + "url": "/food/@gustavopasquini/pumpkin-with-jerked-beef" }, { "active_votes": [ { - "rshares": 289667649267, + "rshares": 260702481730, "voter": "anonymous" }, { - "rshares": 2937224224055, - "voter": "wang" - }, - { - "rshares": 4166302700353, - "voter": "au1nethyb1" - }, - { - "rshares": 475419579220, - "voter": "recursive2" - }, - { - "rshares": 462210569737, - "voter": "recursive3" - }, - { - "rshares": 80038741431, - "voter": "acidsun" - }, - { - "rshares": 44935589376, - "voter": "eeks" - }, - { - "rshares": 7253805196, - "voter": "james-show" - }, - { - "rshares": 8667563285, - "voter": "richman" - }, - { - "rshares": 268816966, - "voter": "coar" - }, - { - "rshares": 1414337223, - "voter": "murh" - }, - { - "rshares": 3186224752, - "voter": "cryptofunk" - }, - { - "rshares": 427180952, - "voter": "applecrisp" + "rshares": 16524460338694, + "voter": "rainman" }, { - "rshares": 391104883356, - "voter": "hedge-x" + "rshares": 37958613597847, + "voter": "ned" }, { - "rshares": 321880763, - "voter": "bitcoinnational" + "rshares": 3302851909671, + "voter": "pharesim" }, { - "rshares": 4065712107, - "voter": "crok" + "rshares": 183319367322, + "voter": "svk" }, { - "rshares": 286504221, - "voter": "ladyclair" + "rshares": 1910032397363, + "voter": "xeroc" }, { - "rshares": 189899541322, - "voter": "asmolokalo" + "rshares": 6017419272738, + "voter": "witness.svk" }, { - "rshares": 16242543792, - "voter": "r4fken" + "rshares": 8668864101, + "voter": "richman" }, { - "rshares": 1871594265, - "voter": "pipertomcat" + "rshares": 165883357441, + "voter": "steve-walschot" }, { - "rshares": 806054013255, - "voter": "slowwalker" + "rshares": 16733609471, + "voter": "b4bb4r-5h3r" }, { - "rshares": 170832932539, - "voter": "knircky" + "rshares": 39650275501, + "voter": "ranko-k" }, { - "rshares": 238902017, - "voter": "ardina" + "rshares": 56501687416, + "voter": "kus-knee" }, { - "rshares": 15258084279, - "voter": "aaseb" + "rshares": 76741877365, + "voter": "lizik" }, { - "rshares": 1107680109, - "voter": "karen13" + "rshares": 5286973601, + "voter": "tee-em" }, { - "rshares": 73113542919, - "voter": "jpiper20" + "rshares": 30495878334, + "voter": "michaelx" }, { - "rshares": 476658067, - "voter": "karenmckersie" + "rshares": 17023109715, + "voter": "albertogm" }, { - "rshares": 35770229729, - "voter": "creemej" + "rshares": 783296766, + "voter": "mammasitta" }, { - "rshares": 9439855364, - "voter": "benjiberigan" + "rshares": 471516850, + "voter": "mrhankeh" }, { - "rshares": 31918786269, - "voter": "deanliu" + "rshares": 68200380711, + "voter": "bacchist" }, { - "rshares": 5021608055, - "voter": "sharker" + "rshares": 1210050218327, + "voter": "renohq" }, { - "rshares": 53840787374, - "voter": "jl777" + "rshares": 14880181090, + "voter": "ausbitbank" }, { - "rshares": 4543607802, - "voter": "proto" + "rshares": 33653917190, + "voter": "toxonaut" }, { - "rshares": 15998386074, - "voter": "michaeldodridge" + "rshares": 85512692, + "voter": "snowden" }, { - "rshares": 350459078, - "voter": "bullionstackers" + "rshares": 38758863864, + "voter": "biophil" }, { - "rshares": 2030334594, - "voter": "jillstein2016" + "rshares": 1817255932, + "voter": "kendewitt" }, { - "rshares": 2298213587, - "voter": "taker" + "rshares": 87223247, + "voter": "wildchild" }, { - "rshares": 24550456510, - "voter": "laoyao" + "rshares": 2434921863, + "voter": "the-future" }, { - "rshares": 17202727615, - "voter": "sunshine" + "rshares": 3848107418, + "voter": "bitcoiner" }, { - "rshares": 1249568472, - "voter": "gmurph" + "rshares": 7646574749, + "voter": "lostnuggett" }, { - "rshares": 5440195109, - "voter": "cjclaro" + "rshares": 30988207740, + "voter": "zaebars" }, { - "rshares": 2868848889, - "voter": "darrenturetzky" + "rshares": 35821540654, + "voter": "paquito" }, { - "rshares": 2058071733, - "voter": "chinadaily" + "rshares": 799591046, + "voter": "raymonjohnstone" }, { - "rshares": 9443470643, - "voter": "pjheinz" + "rshares": 50619397, + "voter": "steemchain" }, { - "rshares": 11375408076, - "voter": "gvargas123" + "rshares": 50619397, + "voter": "whalepool" }, { - "rshares": 778484681, - "voter": "dajohns1420" + "rshares": 67493227330, + "voter": "susanne" }, { - "rshares": 1776216063, - "voter": "runridefly" + "rshares": 477106677, + "voter": "hermes7" }, { - "rshares": 55683468, - "voter": "lindasteel" + "rshares": 3555027172, + "voter": "bkkshadow" }, { - "rshares": 659423594, - "voter": "kev7000" + "rshares": 817422571, + "voter": "bullionstackers" }, { - "rshares": 212837202380, - "voter": "asksisk" + "rshares": 1722708140, + "voter": "jillstein2016" }, { - "rshares": 2235069600, - "voter": "rigaronib" + "rshares": 114064883, + "voter": "andrew-charles" }, { - "rshares": 474509334, - "voter": "anomaly" + "rshares": 50575705298, + "voter": "gomeravibz" }, { - "rshares": 286973890, - "voter": "ola1" + "rshares": 2316686351, + "voter": "merej99" }, { - "rshares": 2160706385, - "voter": "dresden" - } - ], - "author": "jpiper20", - "author_payout_value": "0.000 HBD", - "author_reputation": 66.53, - "beneficiaries": [], - "blacklists": [], - "body": "https://i.imgur.com/kkQjc0k.jpg\n\nWith Heroin addiction and death at its highest rates ever.. Why would the DEA ban an all natural plant that helps people who get off of Heroin? I had to SHARE this article because of hour bogus our fucked up country is.\n\n45 years AFTER the drug war was declared by President Richard Nixon, the United States leads the world in both recreational drug usage and incarceration rates. Heroin abuse rates continue to soar. Drug-related violence in our nation\u2019s cities and cartel wars in Latin America exact horrific tolls.\n\nAnd then there is the ever-present bully on the block, prescription drug abuse. More than two million Americans have become hooked on the pharmaceuticals that doctors prescribe to ease their pain. Opioids\u2014both legal and illicit\u2014killed a mind-boggling 28,647 people in 2014.\n\nBut not to worry: The Drug Enforcement Administration is on the case. \u201cTo avoid an imminent hazard to public safety,\u201d the agency said in a press release, it will be adding kratom, a medicinal herb that has been used safely in Southeast Asia for centuries, to its list of Schedule 1 substances, placing the popular botanical in a class with killers like heroin and cocaine at the end of September.\n\nWhy ban the mild-mannered tree leaf? Well, because the DEA claims it\u2019s an opioid with \u201cno currently accepted medical use.\u201d Wrong on both counts. Pharmacologists label kratom as an alkaloid, not an opioid. True, kratom stimulates certain opioid receptors in the brain. But then, so does drinking a glass of wine, or running a marathon.\n\nKratom is less habit-forming than classic opioids like heroin and the pharmaceutical oxycodone, and its impact on the brain is weaker and more selective. Nevertheless, the herb\u2019s ability to bind loosely with certain opioid receptors makes it a godsend for addicts who want to kick their habits. Kratom is currently helping wean thousands of Americans off illegal drugs and prescription pain relievers, without creating any dangerous long term dependency.\n\nThe powdered leaves are readily available from scores of herb sellers on the Internet. Since the ban was announced in late August, websites and social media have exploded with accounts from people who credit the plant with saving them from lives of addiction and chronic pain.\n\nTake, for example, Virginia native Susan Ash. She was using Suboxone to help cope with severe joint pain resulting from Lyme disease. \u201cMy life was ruled by the clock\u2014all I could think was, \u2018when do I take my next dose,'\u201d Ash says. Then someone suggested she try kratom to help kick her addiction to the prescription pain killer. \u201cIn two weeks time, I went from being a bed-bound invalid to a productive member of society again.\n\nShe founded the American Kratom Society in 2014 to help keep this herbal lifeline legal. Ash says that tens of thousands of people use kratom not just to help with chronic pain, but also to alleviate depression and to provide relief from PTSD. She strongly disputes that users like herself are simply exchanging one addictive drug for another.\n\n\u201cI have never had a craving for kratom,\u201d Ash says. \u201cYou can\u2019t compare it to even the mildest opiate. It simply won\u2019t get you high.\u201d\n\nWhat it might do, users say, is slightly tweak your mood. The leaves of the Mitragyna speciosa tree, a biological relative of coffee, have been chewed for centuries in Southeast Asia by farmers to increase their stamina. Kratom is gently euphoric and also relaxing\u2014think coffee without the jitters and sleeplessness. It is hard to take toxic levels of the herb, since larger doses induce nausea and vomiting.\n\nBut does it provide medical benefits? Dr. Walter Prozialeck, chair of the Department of Pharmacology at Midwestern University in Downers Grove, Illinois, who conducted a survey of the scant medical literature on kratom, says the herb did indeed help to relieve pain in animal studies.\n\nWhile no clinical trials have yet been done with humans, addicts in Thailand and Malaysia have used kratom for decades to detox from heroin and alcohol. It was so successful in getting people off opium that Thailand banned kratom in 1943 to stem the loss of the opium taxes that funded the government.\n\nNobody knows how many are using kratom here in the US. \u201cThere are so many testimonials out there [from kratom users] on the Internet that I personally found quite compelling,\u201d Dr. Prozialeck says. \u201cThis merits further study.\u201d\n\nBut study has proven difficult. Dr. Edward Boyer, director of toxicology at the University of Massachusetts Medical School, says that when he tried to conduct research on kratom, potential partners told him, \u201cwe don\u2019t fund drugs of abuse.\u201d Drug companies have shown sporadic interest in isolating the active constituents in kratom since the 1960s, he says, but no pharmaceuticals have yet been developed from them.\n\nGiven the current opioid crisis, Boyer hopes researchers will dive deeper into the plant\u2019s pharmacology. \u201cWouldn\u2019t it be great to have an analgesic that will relieve your pain and not kill you?\u201d Boyer notes that kratom is free from the potentially deadly side effects like respiratory failure that have bedeviled prescription opioids.\n\nHowever, drug companies have shown little interest in a plant remedy that cannot be patented. While some of kratom\u2019s active ingredients have indeed been patented by researchers who hope one day to market them to pharmaceutical firms, Boyer said that these compounds have failed to exhibit as powerful pain-killing effects as the whole plant. \u201cThere is something in there that we don\u2019t yet understand,\u201d he added.\n\nAnd if the DEA\u2019s ban goes into effect, we may never understand kratom\u2019s remarkable potential. That\u2019s because the federal action would have a chilling effect on research, according to Boyer.\n\nThe DEA claims that kratom is addictive. Since you can get hooked on most anything\u2014 even coffee or chocolate, as Dr. Boyer pointed out, this claim is both relatively meaningless and also hard to dispute. Users report that withdrawal symptoms from kratom are comparable to giving up coffee\u2014a few days of irritability, perhaps a headache.\n\nIn issuing its scheduling notice, the DEA said that the Centers for Disease Control received 660 complaints about kratom (including reports of constipation and vomiting) between 2010 to 2015, out of 3 million calls annually reporting adverse reactions to assorted other foods and drugs. To put this number in perspective, the National Poison Data System registers more than 3,700 calls about caffeine annually, every year leading to multiple overdoses that result in death.\n\n\u201cThis hardly constitutes a public health emergency,\u201d says Susan Ash. \u201cThey definitely get more calls about energy drinks.\u201d\n\nIn banning kratom, the DEA dispensed with the usual public comment period. Advocates, however, refuse to be silenced. They plan to challenge the DEA\u2019s action in court and are marching on the White House on September 13. A petition urging President Barack Obama to reverse the ban has surpassed the 100,000 signature mark which, by law, requires a personal response from the president.\n\n\u201cThere is a cheap plant out there that\u2019s helping people getting off opioids,\u201d Ash says, \u201cand now so many are going to be forced back into active addiction, or made a prey to black market drug dealers.\u201d\n\nWhat if, instead of turning tens of thousands of law-abiding Americans into either addicts or felons, the DEA listened to those who have used kratom successfully to kick their addictions and manage chronic pain? Instead of banning the herb, why not draft some sensible regulation to establish dosage and labelling requirements and to protect consumers from adulterated product?\n\nAnd while they are at it, America\u2019s drug agency should sponsor some long overdue scientific research into a substance that may be the best thing going to combat our runaway epidemic of opioid addiction.\n\nSource: https://www.wired.com/2016/09/dea-wrong-ban-cure-opioid-addiction/\n#news\n#story\n#drugs\n#addiction", - "category": "life", - "children": 6, - "created": "2016-09-14T13:50:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://i.imgur.com/kkQjc0k.jpg" - ], - "links": [ - "https://www.wired.com/2016/09/dea-wrong-ban-cure-opioid-addiction/" - ], - "tags": [ - "life", - "news", - "story", - "drugs", - "addiction" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 10604556739192, - "payout": 8.768, - "payout_at": "2016-09-21T13:50:09", - "pending_payout_value": "8.768 HBD", - "percent_hbd": 10000, - "permlink": "why-would-we-ban-a-promising-cure-for-opioid-addiction", - "post_id": 1243247, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 54 - }, - "title": "WHY Would We BAN A Promising CURE for Opioid Addiction???", - "updated": "2016-09-14T13:50:09", - "url": "/life/@jpiper20/why-would-we-ban-a-promising-cure-for-opioid-addiction" - }, - { - "active_votes": [ + "rshares": 15542400563, + "voter": "magicmonk" + }, { - "rshares": 494632487901, - "voter": "barrie" + "rshares": 24019048233, + "voter": "laonie1" }, { - "rshares": 31615036594147, - "voter": "smooth" + "rshares": 24533689929, + "voter": "laonie2" }, { - "rshares": 2160925860071, - "voter": "badassmother" + "rshares": 24542292693, + "voter": "laonie3" }, { - "rshares": 2050996398887, - "voter": "hr1" + "rshares": 5465037533, + "voter": "brendio" }, { - "rshares": 5339100755934, - "voter": "kushed" + "rshares": 18126086550, + "voter": "timelapse" }, { - "rshares": 23332152248, - "voter": "jaewoocho" + "rshares": 50565616, + "voter": "michellek" }, { - "rshares": 5869068247003, - "voter": "steemit200" + "rshares": 24537787517, + "voter": "laonie4" }, { - "rshares": 7573847300816, - "voter": "complexring" + "rshares": 24535205557, + "voter": "laonie5" }, { - "rshares": 1731469415199, - "voter": "joseph" + "rshares": 24532286670, + "voter": "laonie6" }, { - "rshares": 4260896150921, - "voter": "au1nethyb1" + "rshares": 24528304864, + "voter": "laonie7" }, { - "rshares": 462210569737, - "voter": "recursive3" + "rshares": 5481045936, + "voter": "kurtbeil" }, { - "rshares": 651673983804, - "voter": "masteryoda" + "rshares": 24524741537, + "voter": "laonie8" }, { - "rshares": 3254899228205, - "voter": "recursive" + "rshares": 24522014629, + "voter": "laonie9" }, { - "rshares": 1209033907, - "voter": "mineralwasser" + "rshares": 2440800277, + "voter": "steemleak" }, { - "rshares": 687075799427, - "voter": "boombastic" + "rshares": 90985687, + "voter": "bigsambucca" }, { - "rshares": 91239679568, - "voter": "mrs.agsexplorer" + "rshares": 2229102304, + "voter": "paynode" }, { - "rshares": 1718220661, - "voter": "bingo-1" + "rshares": 72135954, + "voter": "stevescriber" }, { - "rshares": 5915109368459, - "voter": "smooth.witness" + "rshares": 123568597, + "voter": "sarita" }, { - "rshares": 10365249221, - "voter": "idol" + "rshares": 50027573, + "voter": "loli" }, { - "rshares": 5043750251, - "voter": "sakr" + "rshares": 52419023, + "voter": "nano2nd" }, { - "rshares": 1784473143, - "voter": "jocelyn" + "rshares": 11375408076, + "voter": "gvargas123" }, { - "rshares": 86992875240, - "voter": "acidsun" + "rshares": 13834252977, + "voter": "telos" }, { - "rshares": 14793702576, - "voter": "gregory-f" + "rshares": 24515733866, + "voter": "laonie10" }, { - "rshares": 1181352145582, - "voter": "gavvet" + "rshares": 215103953, + "voter": "lasseehlers" }, { - "rshares": 59913984920, - "voter": "eeks" + "rshares": 50816343, + "voter": "bitchplease" }, { - "rshares": 8668864101, - "voter": "richman" + "rshares": 9139334850, + "voter": "craigwilliamz" }, { - "rshares": 581790581089, - "voter": "nanzo-scoop" + "rshares": 3011280076, + "voter": "imag1ne" }, { - "rshares": 178473515654, - "voter": "mummyimperfect" + "rshares": 2184465097, + "voter": "shadowspub" }, { - "rshares": 103793788310, - "voter": "asch" + "rshares": 73690784, + "voter": "uziriel" }, { - "rshares": 1414323919, - "voter": "murh" + "rshares": 7622915570, + "voter": "einsteinpotsdam" }, { - "rshares": 6372449504, - "voter": "cryptofunk" + "rshares": 23655234577, + "voter": "laonie11" }, { - "rshares": 16733609471, - "voter": "b4bb4r-5h3r" + "rshares": 52648880881, + "voter": "luminousvisions" }, { - "rshares": 2326284185, - "voter": "error" + "rshares": 3411072843, + "voter": "xanoxt" }, { - "rshares": 1088234191355, - "voter": "cyber" + "rshares": 4379700279, + "voter": "l0k1" }, { - "rshares": 18449074024, - "voter": "btcturbo" + "rshares": 465069683, + "voter": "areynolds" }, { - "rshares": 61678758152, - "voter": "theshell" + "rshares": 50784892, + "voter": "freesteem" }, { - "rshares": 49529062216, - "voter": "ak2020" + "rshares": 51061585, + "voter": "jamespro" }, { - "rshares": 260089147904, - "voter": "billbutler" + "rshares": 201635244360, + "voter": "asksisk" }, { - "rshares": 417450790012, - "voter": "taoteh1221" + "rshares": 1701267958, + "voter": "kiwideb" }, { - "rshares": 383446211481, - "voter": "hedge-x" + "rshares": 25321504005, + "voter": "dubi" }, { - "rshares": 33768116045, - "voter": "ratel" + "rshares": 659649765, + "voter": "ct-gurus" }, { - "rshares": 362601754635, - "voter": "kaylinart" + "rshares": 403404632817, + "voter": "charlieshrem" }, { - "rshares": 5946864970, - "voter": "mark-waser" + "rshares": 61821059989, + "voter": "tracemayer" }, { - "rshares": 202862565851, - "voter": "kimziv" + "rshares": 3073603178, + "voter": "landofcrypto" }, { - "rshares": 81140450926, - "voter": "emily-cook" + "rshares": 474509334, + "voter": "anomaly" }, { - "rshares": 2251008720, - "voter": "superfreek" + "rshares": 232237691, + "voter": "dedi" }, { - "rshares": 17556851512, - "voter": "grey580" + "rshares": 61292139, + "voter": "inarix03" }, { - "rshares": 362176333, - "voter": "chetlanin" + "rshares": 382602825, + "voter": "ola1" }, { - "rshares": 20376891718, - "voter": "thebatchman" + "rshares": 1616265191, + "voter": "robotev" }, { - "rshares": 63985625179, - "voter": "lehard" + "rshares": 1288421610, + "voter": "aksinya" }, { - "rshares": 1676271680, - "voter": "gidlark" + "rshares": 53375937, + "voter": "ninjapainter" }, { - "rshares": 5373866831, - "voter": "riscadox" + "rshares": 1539512961, + "voter": "yanik" }, { - "rshares": 17257692501, - "voter": "r4fken" + "rshares": 1630327346, + "voter": "rusteemitblog" }, { - "rshares": 1631435904, - "voter": "sergei" + "rshares": 651666019, + "voter": "ysa" }, { - "rshares": 806054013255, - "voter": "slowwalker" + "rshares": 74838700, + "voter": "dealzgal" }, { - "rshares": 223504213048, - "voter": "domino" + "rshares": 68013381, + "voter": "storage" }, { - "rshares": 1238860937811, - "voter": "renohq" + "rshares": 58460105, + "voter": "blackmarket" }, { - "rshares": 174391951967, - "voter": "knircky" + "rshares": 61530871, + "voter": "gifts" }, { - "rshares": 5642091570, - "voter": "on0tole" + "rshares": 156881056, + "voter": "alexandrapop" }, { - "rshares": 82971664794, - "voter": "ethereums1" + "rshares": 96643251, + "voter": "expat" }, { - "rshares": 234026465, - "voter": "ardina" + "rshares": 1626865374, + "voter": "steemlift" }, { - "rshares": 1422705803, - "voter": "mixa" - }, + "rshares": 138651704, + "voter": "toddemaher1" + } + ], + "author": "bkkshadow", + "author_payout_value": "0.000 HBD", + "author_reputation": 54.39, + "beneficiaries": [], + "blacklists": [], + "body": "

Earlier this year I was married in a traditional Thai marriage ceremony in the north of Thailand and I thought some of you may be interested about what goes on. I can tell you it's lots of fun mixed with a healthy dose of traditions. If you have a short attention span then feel free to watch the 5 minute video. I've put it at the top, it has groovy music and captures the essence of the day. \n\nFor those of you who would like to know more, then keep scrolling as I go into pain-staking detail of each of the sections of the wedding along with some pictures. Anyway, I hope you enjoy it, it was certainly a day I will never forget.\n\nLet me tell you I posted this story in the early days of steemit and I think about 6 people saw it. So I have edited it a bit and formatted it to look better. So, I hope you are OK with my re-post. Thanks\n

\n- - - \n
The 5 min Highlights Video.
\n
\n.\n

.
\n- - - \nThe wedding day kicks off early! (around 6:30am)...and so it begins with....

\n

1.THE KHAN MAAK PROCESSION

\n
THE BRIDESMAIDS:
\n


\n
THAI TRADITIONAL DANCERS:
\n

\n
THE KHAN MAAK PROCESSION:
\n

Ok. So first things first. We have to come to the house, and we can't just rock up and knock on the door and say "Heh we are here for the wedding!". No, that wouldn't do. I must collect my rabbly entourage of family and friends and assorted village vagabonds and assemble them at a point a few hundred metres up the road. From here we must sing, dance and shout our impending arrival as we make our way up the street.

\n

The procession is lead by the groom\u2019s representative or (\u201c\u0e40\u0e16\u0e49\u0e32\u0e41\u0e01\u0e48) Thao Gae\u201d, in this case it was a professor from my wife's university. He was my guide, and helper as I had never done this before. I got the idea that it wasn't his first time at the rodeo. Also as a respected guest he was going to help me gain entry to the fortress that lay ahead. Joining us were my parents, relatives and friends carrying flowers, incenses, candles and gifts, all which were required for the ceremony. Also at the front of the procession were drummers and traditional folk dancers, who making all the banging, clanging and swirling to announce our arrival to everybody in the surrounding village.

\n

Banana leaves and sugar cane storks were given to some of the stronger members to carry, while others had the responsibility of bringing the traditional gifts of the Kan Maak, which included rice, sesame seeds, some small amounts of Thai food for the feast, a selection of Thai desserts. I'd been told sometimes a pigs head was involved, but thankfully not today. My brother and one of my wife's aunt were entrusted with the monetary gifts and other precious items, such as gold and jewellery, which would make up the dowry. A lot of these gifts represent important aspects of marriage, such as health, prosperity, fertility and longevity.

\n

2. PASSING THROUGH THE GATES (\u0e1e\u0e34\u0e18\u0e35\u0e01\u0e31\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e15\u0e39)

\n

\n
PASSING THROUGH THE GATES (\u0e1e\u0e34\u0e18\u0e35\u0e01\u0e31\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e15\u0e39)
\n

In order for the wedding to commence, I had to first collect my bride-to-be from her room inside the family house. Simple enough? Not really.....To do this I had to successfully navigate through a series of gates which only opened upon completion of certain challenges. These symbolic barriers would only be opened once I had proved my worth to the keepers of the \u201clocks\u201d.

\n

Normally, there are just 3 of these symbolic \u201cgates\u201d, but sometimes there may be more, and in my case there were. The gates were made up of strings of orchids, or chains of silver and gold, and each one was held by either close friends or young family members of the bride. I think I sang, danced and bribed my way through 9 gates before I made it to the house mostly in one piece, Indiana Jones would have been proud.. thankfully, my " Thao Gae" (I mentioned him earlier) was a shrewd negotiator and also commanded a bit of respect.

\n

As I passed each challenge, the toll for each subsequent \u201cgate\u201d continually increased as I advanced. I gave the first few gatekeepers 100 Baht ( about $3) to open the door. By the time I got to the last road-block I think her teenage cousins wrangled 1,000 Baht ($30 each) out of me, not bad for 5 minutes work...This wass undoubtedly one of the most frivolous and fun parts of the wedding as I bartered with the various gatekeepers to let me through.

\n

3. MONKS BLESSING

\n

\n
Monks Blessing
\n

Once the gates have been successfully negotiated, I was allowed to collect the bride from her room to continue the next part of ceremony which was the monks blessing. We had 9 monks (auspicious number) and they chanted their way through a succession of blessings whilst a lit candle was placed in a bowl of water. This water was then used later to bless us. A bowl of white paste was also blessed which was also used later to anoint our foreheads, you may notice the white dots on our faces.

\n

Although more solemn than the previous shenanigans on the way in, I still enjoyed this moment very much. The eldest monk has known my wife since the day she was born and watched her grow into the woman she is today.

\n

After the chanting had finished, we offered food to the monks. Nobody else wass permitted to eat until the monks had finished their meal. After they had eaten, they took no further part in the ceremony, and after a brief chat, they trundled up the road back to the temple.

\n

4. COUNTING THE DOWRY (\u0e2a\u0e34\u0e19\u0e2a\u0e2d\u0e14)

\n


\n

\n
Counting The Dowry
\n

Next is the dowry ceremony. This is the part which is often difficult for foreigners to comprehend. I admit, for me, it goes against most of what I believe marriage to be about, however, it is an important part of the traditional ceremony, so we compromise in marriage, and I compromised. The dowry is a symbol that the groom is financially able to care for his new wife.The concept of sinsod was initially brought in to ensure that one\u2019s daughter did not marry below her potential standing in life. To stipulate that her social, financial and professional status and reputation is preserved and secured. Although this is less relevant nowadays, the tradition remains.

\n

So my dowry was formally presented by my parents to my bride\u2019s mum on the Kan Maak tray. This particular dowry consisted of some money, gold, and jewellery, but may also include title deeds to property in some cases. The dowry was then counted out onto a red cloth by my bride\u2019s mum. She put on a bit of a pantomime that it was too heavy to pick up. The amount of the dowry had been predetermined, (Please don't ask how much).
\n

\n

There is no set amount, the sum of sinsod is typically determined on the one hand by suitor\u2019s perceived wealth, and on the other hand by the \u201cvalue\u201d of the future wife. Her beauty, personality, background, education and other qualifications.More often than not, a part of the money is used to pay for the wedding ceremonies, parties and other related expenses. Dowries or sinsod payments range from THB 50,000 to 500,000 ($1500-$1500) and up.

\n

5. THE ENGAGEMENT (\u0e1e\u0e34\u0e18\u0e35\u0e2b\u0e21\u0e31\u0e49\u0e19)

\n


\n

\n
The Engagement
\n

Traditionally, the engagement is performed well in advance of the wedding, just as in western culture, but recently, it has become common for it to be carried out on the wedding day after Counting the Dowry. I mean, we got engaged about 6 months earlier, but we rolled the ceremonial aspect of this into the wedding. The engagement was a way of introducing the bride to the groom, who had been selected by her parents and gave a chance for the couple to get acquainted before the wedding, but nowadays most couples choose their own partners, as we obviously did ;)

\n

At this point, we exchanged rings, and I also took the jewellery from Sin Sod tray and placed them on my bride as well. The exchange is performed in front of the parents of both parties.

\n

6. THE THREAD AND WATER POURING (\u0e1e\u0e34\u0e18\u0e35\u0e2b\u0e25\u0e31\u0e48\u0e07\u0e19\u0e49\u0e33\u0e1e\u0e23\u0e30\u0e1e\u0e38\u0e17\u0e18\u0e21\u0e19\u0e15\u0e4c)

\n


\n

\n
The Thread and Water Pouring
\n

After the Sin Sod ceremony was finished, we got ready for water pouring ceremony.The water pouring is the most important part of the Thai wedding ceremony as during this part the couple officially become husband (\u0e2a\u0e32\u0e21\u0e35) and wife (\u0e20\u0e23\u0e23\u0e22\u0e32). Traditionally, this was all that was required to validate the marriage, but nowadays the couple are also required to obtain a marriage certificate (\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e2a\u0e21\u0e23\u0e2a) from the local registration office (Shh. we haven't done that yet).

\n

Before the water pouring took place, we must seat ourselves at the traditional water pouring tables (\u0e15\u0e31\u0e48\u0e07\u0e23\u0e14\u0e19\u0e49\u0e33 [Dtang Rot Naam]), with the bride to the left of the groom. We each had a ceremonial headdress (\u0e21\u0e07\u0e04\u0e25 [Mong Kol]) , made from one piece of cotton forming a circle and signifying the joining of us as a couple, placed upon our heads. The Mong Kol had been previously been blessed by the Buddhist monks earlier in the wedding.

\n

Then senior members of the family or special guests of honor performed the anointing of our foreheads with three dots of white powder to represent the shape of a pyramid. Traditionally, the powder is made of dirt or clay, ground, and mixed with holy water and blessed by Buddhist monks. As with all of the ceremony\u2019s traditional customs, the ritual is meant to bring good fortune to the couple. (more dots)

\n

We were ready for the water pouring to commence once we had placed both hands (palms together), overhanging the water pouring table and positioned above flowers that were arranged in a water tray, to capture the water that ran off. Each of the elder guests in turn will take the ceremonial water pouring conch shell (\u0e2a\u0e31\u0e07\u0e02\u0e4c\u0e23\u0e14\u0e19\u0e49\u0e33), which had been freshly filled with holy water from the Buddhist ceremony, and poured a trickle of water from the base of our thumbs to the fingertips over the groom and then the bride. Most also used this opportunity to give us their congratulations and best wishes.

\n

7. THE BRIDAL BED (\u0e1e\u0e34\u0e18\u0e35\u0e2a\u0e48\u0e07\u0e15\u0e31\u0e27)

\n

\n
The Bridal Bed
\n

After the water pouring ceremony was completed, we were sent to their bedroom. This is where things got a little weird. This is just a part of the wedding ceremony, we were not going to bed for real just yet. : ) although by this stage I was getting exhausted and could have used a little nap.

\n

The bed will was prepared by a married couple who had been happily married for a long time, in this case my mum and dad. Their knowledge and good luck was then imparted to us in a number of different ways. Nine meaningful items were placed on the bed as symbols of prosperity and fertility. They didn't really know what to do either do we kind of ad-libbed this a bit. But the goods on the bed were:

\n
    \n
  • One big brass tray (\u0e1e\u0e32\u0e19\u0e17\u0e2d\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e43\u0e2b\u0e0d\u0e48)
  • \n
  • A mortar as a symbol of steadily love (\u0e04\u0e23\u0e01\u0e1a\u0e14\u0e22\u0e32 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e08\u0e34\u0e15\u0e43\u0e08\u0e2b\u0e19\u0e31\u0e01\u0e41\u0e19\u0e48\u0e19)
  • \n
  • A cane as a symbol of long life (\u0e44\u0e21\u0e49\u0e40\u0e17\u0e49\u0e32 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e2d\u0e32\u0e22\u0e38\u0e22\u0e37\u0e19)
  • \n
  • A green squash as a symbol of happy and peaceful married life (\u0e1f\u0e31\u0e01\u0e40\u0e02\u0e35\u0e22\u0e27 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e04\u0e27\u0e32\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e22\u0e47\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e38\u0e02)
  • \n
  • A silver bag and gold bag of beans, sesame seeds and baking powder(\u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07\u0e04\u0e27\u0e32\u0e21\u0e40\u0e08\u0e23\u0e34\u0e0d\u0e07\u0e2d\u0e01\u0e07\u0e32\u0e21\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1f\u0e37\u0e48\u0e2d\u0e07\u0e1f\u0e39)
  • \n
  • A bowl of rain water as a symbol of harmony (\u0e02\u0e31\u0e19\u0e43\u0e2a\u0e48\u0e19\u0e49\u0e33\u0e1d\u0e19 \u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35 \u0e1b\u0e47\u0e19\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e43\u0e08\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19)
  • \n
  • A white cat doll as a symbol of liking to stay at home (\u0e15\u0e38\u0e4a\u0e01\u0e15\u0e32\u0e41\u0e21\u0e27\u0e2a\u0e35\u0e02\u0e32\u0e27 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e23\u0e31\u0e01\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e23\u0e37\u0e2d\u0e19)
  • \n
  • A white chicken as a symbol of early rising (\u0e44\u0e01\u0e48\u0e02\u0e32\u0e27 \u0e15\u0e37\u0e48\u0e19\u0e14\u0e36\u0e01 \u0e25\u0e38\u0e01\u0e40\u0e0a\u0e49\u0e32)
  • \n
\n

Tradition states that we the newly-weds must sleep with these objects in the bed for the next 3 nights. And, yes we did.

\n

Act. 2 - The Thai Wedding Party (Reception as we know it)

\n


\nWhen Thai couples tie the knot, there are two wedding events; traditional Thai ceremony and the wedding party. Most do both in the same day with the traditional Thai ceremony in the morning followed by the party in the afternoon or evening. Some couples prefer to do them on a separate day. We did ours on the same day. We got a brief 30 minute respite in which to update our Facebook status (lol) and do a Superman costume change into the afternoon's attire.

\n

We held the party in an empty field next to the house, which suited me fine, as I'm not a fan of dingy hotel ballrooms. The torrential rain from the night before held off, and apart from a bit of mud underfoot, all was well.

\n

\n

A Thai wedding party is usually large (aka huge). We probably only had about 50 people for the ceremony in the morning but we catered for 800 for the party....Yes 800... Parents will invite almost every single person they know; family members, relatives, colleagues, neighbors and of course it includes the immediate family of those guests. The more people the parents and the couple know, the bigger the wedding. It appears my wife's family knew everyone in the surrounding village even if my wife didn't have a clue who half of them were.

\n

This is due to the Thai custom about \u2018face\u2019 \u2013 especially if the family has important status in the society. If you don\u2019t invite someone, they will feel insulted and you could lose the relationship with them. Often the wedding of the children is like a reunion party for the parents. For us, it involved lots and lots of picture taking followed by more picture taking. There was some food in there somewhere, along with a band and some more traditional dancers.
\n

\n

Thai people don\u2019t usually give wedding gifts, instead they give cash. When the guest receives the wedding invitation, they will use the envelope of the invitation card to put the cash in. Then when they arrive at the wedding party\u2019s reception, there will be money boxes for the guests to put the cash envelope in. You can also write wishes for the wedding couple in a guest-book prepared at the reception and receive a wedding souvenir.

\n

Lighting the candles & Cutting the Cake

\n

\n

Before cutting the cake, the wedding couple will light up three auspicious candles (\u0e40\u0e17\u0e35\u0e22\u0e19\u0e21\u0e07\u0e04\u0e25 ).
\nAfter that the cake was cut and we served it to out parents and closest relatives first. Pretty sure that big cake was just for show, and we had a smaller one for devouring.

\n

Eat, Drink and be Merry

\n

The rest of the afternoon was spent eating, drinking and chatting with the guests who remained. It's quite common for many of the guests to vanish quite quickly, as people get back to work or other activities. Regardless, a group of us stayed on till late in the evening recounting tales of times past.

\n

When the party was finished, we had to count the money they received and also make a note of the amount of the money they receive from each guest, so when they are invited to the guest\u2019s wedding or the wedding of the guest\u2019s child, they should put more money in the envelope.

\n

\n

Stay tuned for Pt.2

\n

Part 2: The Thai Beach Wedding, where we have a Western Ceremony by the beach. Yes we had 2 weddings, No that's not actually weird for foreign/Thai couples.

\n\nYou can see my post about our Thai Beach Wedding here: https://steemit.com/thailand/@bkkshadow/ever-wondered-what-a-thai-beach-wedding-was-like-video\n\n

I hope you enjoyed this as much as I did :) Please leave a comment if you have questions and I'll answer as best I can.

\n\n**Click here to:** \n\"dd8bd8753d41da7.gif\" ", + "category": "travel", + "children": 12, + "created": "2016-09-14T13:21:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12496381_1077125985654667_6877914067094171270_o3d0c1.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12642550_10208457787385067_8607015292500155281_n7bc63.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/11181948_10208457810145636_2445300566550295799_n001d7.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12646972_10208457829026108_2159037764911094443_n18556.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/1936966_10208457857546821_8495313954892798009_n73db8.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647460_10208457863426968_3192397085304096848_na6906.jpg", + "https://img1.steemit.com/0x0/http://images.freeimages.com/images/premium/large-thumbs/1759/17595965-headache.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12705258_805141222931506_4453740646358700893_n06042.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12642771_10154007838824367_2870077142764225994_nd3d88.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12592723_10208458150874154_1172827492603314017_n2b041.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647237_10208457963829478_3615902582821576623_n31538.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/5613072010035547817e4.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/1929992_10208458234956256_5010162520827238836_nb94e2.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12592469_10208458697167811_570179526128667858_n07e5f.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647520_10208458164834503_7645634436442074275_n6a48d.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647146_10204110386320266_7030143074989390932_n17dcb.jpg", + "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12650955_10208458277437318_4345598323686671232_n7c3a9.jpg", + "https://www.steemimg.com/images/2016/08/27/dd8bd8753d41da7.gif" + ], + "links": [ + "https://www.steemimg.com/image/RoIIe", + "https://www.steemimg.com/image/RoRMa", + "https://www.steemimg.com/image/RovDB", + "https://www.steemimg.com/image/RoTmi", + "https://www.steemimg.com/image/RoaqI", + "https://www.steemimg.com/image/Roh4K", + "https://steemit.com/thailand/@bkkshadow/ever-wondered-what-a-thai-beach-wedding-was-like-video", + "https://steemit.com/@bkkshadow" + ], + "tags": [ + "travel", + "story", + "love", + "thailand", + "wedding" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 69286398906806, + "payout": 283.896, + "payout_at": "2016-09-21T13:21:51", + "pending_payout_value": "283.896 HBD", + "percent_hbd": 10000, + "permlink": "my-thai-buddhist-wedding", + "post_id": 1243017, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 105 + }, + "title": "My Thai Buddhist Wedding:", + "updated": "2016-09-14T13:21:51", + "url": "/travel/@bkkshadow/my-thai-buddhist-wedding" + }, + { + "active_votes": [ { - "rshares": 11694691059, - "voter": "asim" + "rshares": 260705227219, + "voter": "anonymous" }, { - "rshares": 34326995533, - "voter": "toxonaut" + "rshares": 11178286565909, + "voter": "berniesanders" }, { - "rshares": 15258084279, - "voter": "aaseb" + "rshares": 73213646352, + "voter": "nextgenwitness" }, { - "rshares": 1107680109, - "voter": "karen13" + "rshares": 259348037384, + "voter": "justin" }, { - "rshares": 1398305308, - "voter": "jrd8526" + "rshares": 711067521135, + "voter": "silver" }, { - "rshares": 10469874652, - "voter": "blinova" + "rshares": 1726740952305, + "voter": "silversteem" }, { - "rshares": 448130169012, - "voter": "knozaki2015" + "rshares": 1917401685068, + "voter": "nextgencrypto" }, { - "rshares": 1570700841, - "voter": "dimon14" + "rshares": 2790508712406, + "voter": "wang" }, { - "rshares": 3715709207, - "voter": "maximkichev" + "rshares": 168099094309, + "voter": "steemservices" }, { - "rshares": 4881829351, - "voter": "konti" + "rshares": 13244014543, + "voter": "bentley" }, { - "rshares": 175156042246, - "voter": "blueorgy" + "rshares": 6447826841, + "voter": "james-show" }, { - "rshares": 4542807775, - "voter": "poseidon" + "rshares": 1414282787, + "voter": "murh" }, { - "rshares": 7623214100, - "voter": "smolalit" + "rshares": 16631704876, + "voter": "samether" }, { - "rshares": 339103696418, - "voter": "calaber24p" + "rshares": 4871806957, + "voter": "gustavopasquini" }, { - "rshares": 2851597631, - "voter": "vlad" + "rshares": 817422571, + "voter": "bullionstackers" }, { - "rshares": 3585322192, - "voter": "tarindel" + "rshares": 1107455233, + "voter": "jillstein2016" }, { - "rshares": 31918967693, - "voter": "deanliu" + "rshares": 275446808, + "voter": "cris.emilia" }, { - "rshares": 5133199346, - "voter": "sharker" + "rshares": 191761463, + "voter": "abnerpasquini" }, { - "rshares": 192767998, - "voter": "alexbraun" + "rshares": 8830294864, + "voter": "theconnoisseur" }, { - "rshares": 53840787374, - "voter": "jl777" + "rshares": 51749350, + "voter": "party1998" }, { - "rshares": 7646574749, - "voter": "lostnuggett" + "rshares": 14497214931, + "voter": "thecurator" }, { - "rshares": 30792303570, - "voter": "zaebars" + "rshares": 163701239, + "voter": "steemit-recipes" }, { - "rshares": 35821540654, - "voter": "paquito" + "rshares": 5918377178, + "voter": "leavemealone" }, { - "rshares": 19217003586, - "voter": "carlidos" + "rshares": 59967615173, + "voter": "thecyclist" }, { - "rshares": 560545873, - "voter": "jasonpay1" + "rshares": 54007264, + "voter": "alwayzgamez" }, { - "rshares": 226719741, - "voter": "alexbezimeni" + "rshares": 438008616, + "voter": "anomaly" }, { - "rshares": 4543607802, - "voter": "proto" + "rshares": 430428179, + "voter": "ola1" }, { - "rshares": 634042636, - "voter": "curator" + "rshares": 165241290, + "voter": "crimson" }, { - "rshares": 33381476108, - "voter": "sisterholics" + "rshares": 1406544738, + "voter": "yanik" }, { - "rshares": 8444032663, - "voter": "royalmacro" + "rshares": 417211775, + "voter": "witchcraftblog" }, { - "rshares": 2829197560, - "voter": "nelu.ceban" + "rshares": 166888364, + "voter": "laskoff" }, { - "rshares": 3627608984, - "voter": "bkkshadow" - }, + "rshares": 746759995, + "voter": "alienbutt" + } + ], + "author": "gustavopasquini", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.39, + "beneficiaries": [], + "blacklists": [], + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-20.png?w=1000\n\n> ## Traditional Brazilian Appetizer Recipes\n\n# INGREDIENTS\n\n> 1/2 kg not too thin slices of ham\n\n> 1 small glass mayonnaise\n\n> 200 g of various pickles\n\n> 200 g of green olives\n\n> 2 boiled eggs\n\n# PREPARATION\n\n \n### 1. Mix the mayonnaise with pickles, olives and finely chopped egg\n\n### 2. Season with olive oil and Worcestershire sauce to taste\n\n### 3. If you want more sophisticated add some white raisins, seeded, chopped\n\n### 4. Place a little of the filling carefully over the slices of ham and wrap them\n\n### 5. Serve on lettuce leaves chopped\n\n### 6. It\u2019s a great cold starter and very decorative\n\n### 7. If you wish to serve as canap\u00e9s, just cut each roll in half and secure with a silver toothpick\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/14/rolls-of-ham-and-mayonnaise/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/46066-rolinhos-de-presunto-e-maionese.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 0, + "created": "2016-09-14T12:06:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-20.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/14/rolls-of-ham-and-mayonnaise/", + "http://www.tudogostoso.com.br/receita/46066-rolinhos-de-presunto-e-maionese.html" + ], + "tags": [ + "food", + "health", + "recipes", + "cooking", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 19223627207122, + "payout": 25.204, + "payout_at": "2016-09-21T12:06:06", + "pending_payout_value": "25.204 HBD", + "percent_hbd": 10000, + "permlink": "rolls-of-ham-and-mayonnaise", + "post_id": 1242492, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 32 + }, + "title": "Rolls of ham and Mayonnaise", + "updated": "2016-09-14T14:54:24", + "url": "/food/@gustavopasquini/rolls-of-ham-and-mayonnaise" + }, + { + "active_votes": [ { - "rshares": 817422571, - "voter": "bullionstackers" + "rshares": 13150427241633, + "voter": "berniesanders" }, { - "rshares": 1907284013, - "voter": "jillstein2016" + "rshares": 4567794608000, + "voter": "riverhead" }, { - "rshares": 2420737768, - "voter": "belkins" + "rshares": 86940176279, + "voter": "nextgenwitness" }, { - "rshares": 55155632583, - "voter": "gomeravibz" + "rshares": 305111296887, + "voter": "justin" }, { - "rshares": 2298213587, - "voter": "taker" + "rshares": 1003593968770, + "voter": "silver" }, { - "rshares": 7496773915, - "voter": "nekromarinist" + "rshares": 2437285123299, + "voter": "silversteem" }, { - "rshares": 1943832207, - "voter": "brownsgreens" + "rshares": 201716648152, + "voter": "steemservices" }, { - "rshares": 1180033725213, - "voter": "laonie" + "rshares": 817131904966, + "voter": "pfunk" }, { - "rshares": 23390997891, - "voter": "rawnetics" + "rshares": 98046716916, + "voter": "jchch" }, { - "rshares": 24550456510, - "voter": "laoyao" + "rshares": 894675953735, + "voter": "cryptogee" }, { - "rshares": 38492150367, - "voter": "myfirst" + "rshares": 5641848486, + "voter": "james-show" }, { - "rshares": 239613973655, - "voter": "somebody" + "rshares": 9533594054, + "voter": "richman" }, { - "rshares": 16245468786, - "voter": "sunshine" + "rshares": 1413642140, + "voter": "murh" }, { - "rshares": 9201783483, - "voter": "flysaga" + "rshares": 7897515214, + "voter": "thecryptofiend" }, { - "rshares": 1666087667, - "voter": "gmurph" + "rshares": 17847580402, + "voter": "samether" }, { - "rshares": 77413968, - "voter": "kurzer42" + "rshares": 87033822528, + "voter": "razvanelulmarin" }, { - "rshares": 54363923845, - "voter": "midnightoil" + "rshares": 158940876964, + "voter": "asmolokalo" }, { - "rshares": 2327652192, - "voter": "kalimor" + "rshares": 184016912684, + "voter": "anyx" }, { - "rshares": 132362516716, - "voter": "xiaohui" + "rshares": 33653917190, + "voter": "toxonaut" }, { - "rshares": 64380620, - "voter": "bolchek" + "rshares": 1570700841, + "voter": "dimon14" }, { - "rshares": 177510302511, - "voter": "terrycraft" + "rshares": 15415643197, + "voter": "heimindanger" }, { - "rshares": 61495409, - "voter": "locolote" + "rshares": 66309573741, + "voter": "cheetah" }, { - "rshares": 368648608, - "voter": "riosparada" + "rshares": 78269782470, + "voter": "mibenkito" }, { - "rshares": 6515122069, - "voter": "elfkitchen" + "rshares": 52733781913, + "voter": "driv3n" }, { - "rshares": 93214491315, - "voter": "joele" + "rshares": 2891871108, + "voter": "unrealisback" }, { - "rshares": 5833542913, - "voter": "oflyhigh" + "rshares": 16913258615, + "voter": "thecurator" }, { - "rshares": 1246621147, - "voter": "boddhisattva" + "rshares": 5711894376, + "voter": "trev" }, { - "rshares": 4251276841, - "voter": "xiaokongcom" + "rshares": 16098304653, + "voter": "mikemacintire" }, { - "rshares": 8569614654, - "voter": "xianjun" + "rshares": 1698343166, + "voter": "runridefly" }, { - "rshares": 74615731, - "voter": "evgenyche" + "rshares": 1575870056, + "voter": "quinneaker" }, { - "rshares": 3851639124, - "voter": "bledarus" + "rshares": 9606888171, + "voter": "daveks" }, { - "rshares": 2249406646, - "voter": "njall" + "rshares": 52129459, + "voter": "gumer" }, { - "rshares": 561462512, - "voter": "microluck" + "rshares": 272947224, + "voter": "benjamin.still" }, { - "rshares": 587265371, - "voter": "ashwim" + "rshares": 6149920815, + "voter": "dexter-k" }, { - "rshares": 6335028236, - "voter": "userlogin" + "rshares": 765205651, + "voter": "ola1" }, { - "rshares": 2005300662, - "voter": "chinadaily" + "rshares": 439433705, + "voter": "borishaifa" }, { - "rshares": 3054149279, - "voter": "virtualgrowth" + "rshares": 190732946, + "voter": "payne" }, { - "rshares": 93967126680, - "voter": "serejandmyself" + "rshares": 161662719, + "voter": "philinvancouver" }, { - "rshares": 11375408076, - "voter": "gvargas123" + "rshares": 3191370891, + "voter": "lscottphotos" + } + ], + "author": "dexter-k", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.67, + "beneficiaries": [], + "blacklists": [], + "body": "About two years ago now, my wife Sabrina and I were feeling a little ill, we had been bitten by the travel bug, but couldn't get away. We were stuck in Vancouver Canada, with just about enough money to pay the bills, but not much to do anything else. One thing we really truly love is traveling and exploring places we have never been, but this particular year it was really looking like a trip was just not going to happen. We didn't have the cash, things weren't working out the way we thought they needed to, we resigned to just stay home.\n\nThen out of nowhere, in the span of about a week, we ended up booking 2 jobs that we weren't expecting. Suddenly we had a fist full of cash (actually, a bank account balance slightly higher than normal) and since we had been planning on tightening up the belt as it were, this cash was basically bonus. I got to thinking about it for a day or two, then one afternoon I just turned to Sabrina and said \"Hey, so we've got this money now, do you want to go to China?\" \n\nWe both kinda laughed for a minute, then she said \"Yeah, I really do... do you think we can?\" \n\nTwo days later we had flights booked to Beijing, and 3 nights reserved at a hostel in the city, the rest was up to us to figure out as it came along. We look back at this insane, spontaneous decision with fond memories and warm laughter every time we talk about it. It was the start of one of the best trips we have ever been on together, and we don't regret a single thing. Even when one of our jobs cancelled late, and the person who was going to rent our place canned out last minute (double rent, yay!!), and we ended up running out of money about three quarters of the way into our trip (hi uh mom? yeah, so were in Cambodia, and well, you're not gonna believe this...). \n\nI'll be making more posts as a series eventually covering our entire trip through Asia, but for now I hope you enjoy looking through some of our memories from China!\n\n## Around Beijing\n\n###### Sabrina, on our way to Vancouver airport.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1f0cd4.jpg\n\n###### On the tarmac at Shanghai, about to board our connecting flight to Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer68f8570.jpg\n\n###### Sabrina was getting a little tired.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6370e2b.jpg\n\n###### On the way to Beijing!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3e45da.jpg\n\n###### One of the first images I took in Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer400960.jpg\n\n###### The alley way leading to our hostel, you can see the sign in the back \"Sunrise Hostel\" \nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer37b44ef.jpg\n\n###### Severe jetlag = waking up at 4:00 in the morning to explore Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer38c6101.jpg\n\n###### Later on that morning we were able to taste one of the worst simulated coffee flavored beverages ever to disgrace the face of this earth. But the view of the moat around the forbidden city was pretty nice!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4985986.jpg\n\n###### Told you it was pretty nice.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4873dd4.jpg\n\n###### I like this news stand, but don't understand a single thing on it.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6505a73.jpg\n\n###### Fresh milk, every morning.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64f490c.jpg\n\n###### Exploring the alleyways.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5296411.jpg\n\n###### Typical local Beijing market street, just around the corner from our hostel.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3418a94.jpg\n\n###### Drinks on the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer33349cd.jpg\n\n###### We found a Sabrina size motorcycle!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1770c03.jpg\n\n###### Sun setting above the rooftops.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer31f17fc.jpg\n\n###### Beijing is actually super cold in the winter, I thought these things were genius.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer456db5a.jpg\n\n###### Faded images.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer421c06c.jpg\n\n###### Manual street sweepers.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer66b3429.jpg\n\n## Folks on the Street\n\n###### Taking a break.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2603d89.jpg\n\n###### Street corner.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6768782.jpg\n\n###### In the hutongs.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer24e068e.jpg\n\n###### Across the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer23b1e01.jpg\n\n###### Transportation.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer22e55a2.jpg\n\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer21a1bde.jpg\n\n###### Advertising.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2839b82.jpg\n\n###### We loved this lady's outfit.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer140b4f4.jpg\n\n###### Cruisin the Hutongs.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer180ebc4.jpg\n\n###### Practicing on the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2769d90.jpg\n\n###### Homeless man across the street from a high end goods mall.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2951f25.jpg\n\n###### Street lion.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer441e40a.jpg\n\n###### More kittehs, I luuuuurves themmmm!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer46a5042.jpg\n\n## Funny and interesting signs and products\n\n###### WARNING DAOP DOWN! WARNING OVNTILATING!! This whole cluster of signs was hilarious and terrifying at the same time.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5d744a.jpg\n\n###### This guy is totally legit, these snacks are delicious!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64e9b7.jpg\n\n###### Back when I was a hipster.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer777baf.jpg\n\n###### Delicious Pocari Sweat, drink it!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer102a929.jpg\n\n###### Guess what? CHICKEN BUTT!! No wait.. the other thing... CHICKEN FOOT!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer50fbe8b.jpg\n\n###### Saving water, you are the best! Urinating into the pool, you are the best! Flushing timely, you are the... Wait what was that last one?\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer35b2554.jpg\n\n\nWell that's the first part of our travels through China, I hope you enjoyed the photos and as always if you did feel free to throw me an up vote, I appreciate each and every one of em'! And remember to follow me @dexter-k on Steemit for new content all the time. I'll be continuing this series soon, and eventually leading into Vietnam, Cambodia, and Thailand!\n\nDexter", + "category": "photography", + "children": 9, + "created": "2016-09-14T03:37:06", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1f0cd4.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer68f8570.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6370e2b.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3e45da.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer400960.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer37b44ef.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer38c6101.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4985986.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4873dd4.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6505a73.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64f490c.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5296411.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3418a94.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer33349cd.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1770c03.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer31f17fc.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer456db5a.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer421c06c.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer66b3429.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2603d89.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6768782.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer24e068e.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer23b1e01.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer22e55a2.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer21a1bde.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2839b82.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer140b4f4.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer180ebc4.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2769d90.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2951f25.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer441e40a.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer46a5042.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5d744a.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64e9b7.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer777baf.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer102a929.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer50fbe8b.jpg", + "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer35b2554.jpg" + ], + "tags": [ + "photography", + "travel", + "originalwork", + "china", + "" + ], + "users": [ + "dexter-k" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 24348722664016, + "payout": 35.569, + "payout_at": "2016-09-21T03:37:06", + "pending_payout_value": "35.569 HBD", + "percent_hbd": 10000, + "permlink": "traveling-in-china-part-i-the-streets-of-beijing-lost-in-translation-and-people-around-town-original-work", + "post_id": 1239649, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 39 + }, + "title": "Traveling in China Part I: The streets of Beijing, lost in translation, and people around town (original work)", + "updated": "2016-09-14T03:37:06", + "url": "/photography/@dexter-k/traveling-in-china-part-i-the-streets-of-beijing-lost-in-translation-and-people-around-town-original-work" + }, + { + "active_votes": [ + { + "rshares": 1061145996, + "voter": "edrivegom" }, { - "rshares": 59171026, - "voter": "piezolit" + "rshares": 4824065074, + "voter": "gustavopasquini" }, { - "rshares": 59693834, - "voter": "suprepachyderm" + "rshares": 115689188, + "voter": "bitmap" }, { - "rshares": 59461347, - "voter": "bonapetit" + "rshares": 275446808, + "voter": "cris.emilia" }, { - "rshares": 1853399306, - "voter": "runridefly" + "rshares": 514947462, + "voter": "karenb54" }, { - "rshares": 79831683, - "voter": "uziriel" + "rshares": 1188355724, + "voter": "future24" }, { - "rshares": 54185367333, - "voter": "luminousvisions" + "rshares": 191761463, + "voter": "abnerpasquini" }, { - "rshares": 1660674892, - "voter": "davidjkelley" + "rshares": 2674808039, + "voter": "jrcornel" }, { - "rshares": 187911420, - "voter": "team101" + "rshares": 262742262, + "voter": "lisadang" }, { - "rshares": 2934938337, - "voter": "victoriart" + "rshares": 91243143826, + "voter": "serejandmyself" }, { - "rshares": 42587238948, - "voter": "sponge-bob" + "rshares": 2137793953, + "voter": "levycore" }, { - "rshares": 15560653946, - "voter": "digital-wisdom" + "rshares": 381529328, + "voter": "wuyueling" }, { - "rshares": 3708740392, - "voter": "ethical-ai" + "rshares": 163701239, + "voter": "steemit-recipes" }, { - "rshares": 52171620, - "voter": "jamespro" + "rshares": 78546002, + "voter": "crowe" }, { - "rshares": 6827311951, - "voter": "jwaser" + "rshares": 699303092, + "voter": "edgarsart" }, { - "rshares": 212837202380, - "voter": "asksisk" + "rshares": 3384753961, + "voter": "patelincho" }, { - "rshares": 25849035338, - "voter": "dubi" - }, + "rshares": 426281596, + "voter": "witchcraftblog" + } + ], + "author": "gustavopasquini", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.39, + "beneficiaries": [], + "blacklists": [], + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-19.png?w=1000\n\n> ## Traditional Brazilian Desserts Recipes\n\n# INGREDIENTS\n\n> 2 phyllo packages (400g)\n\n> 1 egg yolk beaten\n\n> 400g chopped chocolate\n\n> 1 can of cream\n\n> 150ml fresh cream\n\n> 2 tablespoons (soup) of sugar\n\n> 1 box of strawberries\n\n \n# PREPARATION\n\n### 1. Cut nine circles with the puff pastry. Brush the egg yolk, distribute on baking sheet and bake in the preheated oven at 180 degrees until golden brown. Reserve.\n\n### 2. In double boiler or in the microwave melt the chocolate and stir in sour cream.\n\n### 3. Refrigerate until firm. Then beat in the mixer until light and fluffy. Reserve.\n\n### 4. In electric mixer, beat the cream with the sugar until to the point of whipped cream. Reserve.\n\n### 5. Wash, dry and chop the strawberries. Mounting: Mount 3 towers, alternating discs, chocolate cream and strawberry.\n\n### 6. On top cover with whipped cream and garnish with strawberries.\n\n \n# Tip\n\n ### Bake the scraps left over the pastry and serve with sprinkled sugar.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/puff-pastry-of-chocolate-and-strawberr/)\n\n> ### [Recipe Site ](http://gshow.globo.com/receitas-gshow/receita/folhado-de-chocolate-e-morango-4ee3599be1608c68880013cf.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 3, + "created": "2016-09-13T19:50:09", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-19.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/13/puff-pastry-of-chocolate-and-strawberr/", + "http://gshow.globo.com/receitas-gshow/receita/folhado-de-chocolate-e-morango-4ee3599be1608c68880013cf.html" + ], + "tags": [ + "food", + "health", + "recipes", + "cooking", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 109624015013, + "payout": 0.021, + "payout_at": "2016-09-20T19:50:09", + "pending_payout_value": "0.021 HBD", + "percent_hbd": 10000, + "permlink": "puff-pastry-of-chocolate-and-strawberr", + "post_id": 1235534, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 17 + }, + "title": "Puff Pastry of Chocolate and Strawberr", + "updated": "2016-09-13T19:50:09", + "url": "/food/@gustavopasquini/puff-pastry-of-chocolate-and-strawberr" + }, + { + "active_votes": [ { - "rshares": 2673994994, - "voter": "bwaser" + "rshares": 260622160848, + "voter": "anonymous" }, { - "rshares": 344116052, - "voter": "panther" + "rshares": 11834288933460, + "voter": "berniesanders" }, { - "rshares": 43440598050, - "voter": "brains" + "rshares": 54907316483, + "voter": "nextgenwitness" }, { - "rshares": 531027825, - "voter": "nelyp" + "rshares": 259331422398, + "voter": "justin" }, { - "rshares": 474509334, - "voter": "anomaly" + "rshares": 752417937460, + "voter": "silver" }, { - "rshares": 2399995426, - "voter": "ellepdub" + "rshares": 1827452021203, + "voter": "silversteem" }, { - "rshares": 310864796, - "voter": "ola1" + "rshares": 1803885044553, + "voter": "nextgencrypto" }, { - "rshares": 12084249437, - "voter": "herpetologyguy" + "rshares": 3374493281870, + "voter": "wang" }, { - "rshares": 51659688, - "voter": "drac59" + "rshares": 168090383846, + "voter": "steemservices" }, { - "rshares": 4814022329, - "voter": "morgan.waser" + "rshares": 34968781349, + "voter": "james-show" }, { - "rshares": 50228382, - "voter": "dragonice" + "rshares": 8537890809, + "voter": "acidyo" }, { - "rshares": 50225780, - "voter": "steemq" + "rshares": 1413569309, + "voter": "murh" }, { - "rshares": 51225440, - "voter": "sergsea" + "rshares": 7660935220, + "voter": "thecryptofiend" }, { - "rshares": 50139069, - "voter": "slow" + "rshares": 73942403, + "voter": "strawhat" }, { - "rshares": 50873654, - "voter": "palladium" + "rshares": 2602014729, + "voter": "steemswede" }, { - "rshares": 3687674747, - "voter": "strong-ai" + "rshares": 73278315, + "voter": "cryptochannel" }, { - "rshares": 197326430, - "voter": "sjamayee" + "rshares": 766595200, + "voter": "kellywin21" }, { - "rshares": 159710416, - "voter": "allianz" + "rshares": 4729065421, + "voter": "gustavopasquini" }, { - "rshares": 1354011808, - "voter": "rusteemitblog" + "rshares": 77156992, + "voter": "sergey44" }, { - "rshares": 158666175, - "voter": "durex" + "rshares": 116751617, + "voter": "bullionstackers" }, { - "rshares": 161815656, - "voter": "ranger" + "rshares": 275446808, + "voter": "cris.emilia" }, { - "rshares": 158529766, - "voter": "shadowcash" + "rshares": 5848123826, + "voter": "french.fyde" }, { - "rshares": 426281596, - "voter": "witchcraftblog" + "rshares": 3001806340, + "voter": "darrenturetzky" }, { - "rshares": 161218747, - "voter": "sdc" + "rshares": 191761463, + "voter": "abnerpasquini" }, { - "rshares": 158018960, - "voter": "bethesda" + "rshares": 79328156, + "voter": "numberone" }, { - "rshares": 157937685, - "voter": "bethsoft" + "rshares": 9214177074, + "voter": "theconnoisseur" }, { - "rshares": 2216109112, - "voter": "dresden" + "rshares": 11275110754, + "voter": "thecurator" }, { - "rshares": 157176058, - "voter": "cybergirls" + "rshares": 13441583897, + "voter": "gvargas123" }, { - "rshares": 160260561, - "voter": "rage" + "rshares": 163701239, + "voter": "steemit-recipes" }, { - "rshares": 159963865, - "voter": "sledgehammer" + "rshares": 5126102949, + "voter": "nadin3" }, { - "rshares": 156262128, - "voter": "bosch" + "rshares": 59599082, + "voter": "rusla" }, { - "rshares": 158486055, - "voter": "zendesk" + "rshares": 1865626765, + "voter": "thedashtimes" }, { - "rshares": 157482864, - "voter": "kostach" + "rshares": 148331179950, + "voter": "thecyclist" }, { - "rshares": 79990132, - "voter": "gifts" + "rshares": 5726115551, + "voter": "gringalicious" }, { - "rshares": 103328828, - "voter": "paulocouto" + "rshares": 155580599, + "voter": "tycho" }, { - "rshares": 132935425, - "voter": "newsfeed" + "rshares": 399072132, + "voter": "witchcraftblog" } ], - "author": "terrycraft", + "author": "gustavopasquini", "author_payout_value": "0.000 HBD", - "author_reputation": 68.42, + "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "\n

 Hello friends!  Today, I'm writing my second article about how to move to live on the paradise island. I am talking about the Koh Phangan Island in Thailand. In my first article I wrote about how to get there. Now I want to tell you what to do next. 

\n
 \u041f\u0440\u0438\u0432\u0435\u0442 \u0434\u0440\u0443\u0437\u044c\u044f! \u0421\u0435\u0433\u043e\u0434\u043d\u044f \u044f \u043f\u0438\u0448\u0443 \u0441\u0432\u043e\u044e \u0432\u0442\u043e\u0440\u0443\u044e \u0441\u0442\u0430\u0442\u044c\u044e \u043f\u0440\u043e \u0442\u043e, \u043a\u0430\u043a \u043f\u0435\u0440\u0435\u0435\u0445\u0430\u0442\u044c \u0436\u0438\u0442\u044c \u043d\u0430 \u0440\u0430\u0439\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430, \u0430 \u0438\u043c\u0435\u043d\u043d\u043e \u0432 \u0422\u0430\u0438\u043b\u0430\u043d\u0434 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432 Koh Phangan. \u0412 \u0441\u0432\u043e\u0435\u0439 \u043f\u0435\u0440\u0432\u043e\u0439 \u0441\u0442\u0430\u0442\u044c\u0435 \u044f \u043f\u0438\u0441\u0430\u043b \u043f\u0440\u043e \u0442\u043e, \u043a\u0430\u043a \u0434\u043e\u0431\u0440\u0430\u0442\u044c\u0441\u044f \u0434\u043e \u043e\u0441\u0442\u0440\u043e\u0432\u0430. \u0414\u0430\u043b\u0435\u0435 \u044f \u0445\u043e\u0447\u0443 \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u0442\u044c \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0434\u0430\u043b\u044c\u0448\u0435. 
\n

  Since you arrive to the Island - you have to solve 2 main tasks as fast as you can. There is onl\u0443 thing you should pay attention to. If you come in the high season that is from the 15th of December to 15th of January you may have some problems when searching a house to stay. At this time the Island is full of people, everybody comes to celebrate the New Year, and that is why almost all the houses are occupied. So if you arrive around this time, I advise you to book in your accommodation in advance. Here you can see some reliable Realtors, who will not trick you and do everything very quickly and nicely.  But if you do not plan to come in the high season, you can easily find a suitable accommodation for yourself. As soon as you step out to the dock you get immediately surrounded by a bunch of taxi drivers who want to take you somewhere. It\u2019s better not to use their services, and do everything on your own.  

\n
\u0412 \u043f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043a\u0430\u043a \u0432\u044b \u0441\u043e\u0448\u043b\u0438 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432 - \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c 2 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0440\u0435\u0448\u0438\u0442\u044c \u0432 \u0441\u0430\u043c\u043e\u0435 \u0431\u044b\u0441\u0442\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0417\u0434\u0435\u0441\u044c \u0435\u0441\u0442\u044c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043d\u044e\u0430\u043d\u0441 - \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438 \u0432 \u0441\u0430\u043c\u044b\u0439 \u043f\u0438\u043a \u0441\u0435\u0437\u043e\u043d\u0430 - \u0430 \u044d\u0442\u043e \u0441 15 \u0434\u0435\u043a\u0430\u0431\u0440\u044f \u043f\u043e 15 \u044f\u043d\u0432\u0430\u0440\u044f \u0441 \u043f\u043e\u0438\u0441\u043a\u043e\u043c \u0436\u0438\u043b\u044c\u044f \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b, \u0442\u0430\u043a \u043a\u0430\u043a \u0432 \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e \u043b\u044e\u0434\u0435\u0439 - \u0432\u0441\u0435 \u043f\u0440\u0438\u0435\u0437\u0436\u0430\u044e\u0442 \u043d\u0430 \u043d\u043e\u0432\u044b\u0439 \u0433\u043e\u0434 \u0438 \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0435 \u0434\u043e\u043c\u0430 \u0437\u0430\u043d\u044f\u0442\u044b. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u0435\u0441\u043b\u0438 \u0432\u044b \u0435\u0434\u0438\u0442\u0435 \u043f\u0440\u0438\u043c\u0435\u0440\u043d\u043e \u0432 \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f - \u0442\u043e \u0441\u043e\u0432\u0435\u0442\u0443\u044e \u0432\u0430\u043c \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0437\u0430\u0431\u0440\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0436\u0438\u043b\u044c\u0435. \u0412\u043e\u0442 \u043f\u0440\u0438\u043c\u0435\u0440\u044b \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0445 \u0440\u0438\u044d\u043b\u0442\u043e\u0440\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0442\u043e\u0447\u043d\u043e \u043d\u0435 \u043e\u0431\u043c\u0430\u043d\u0443\u0442 \u0438 \u0441\u0434\u0435\u043b\u0430\u044e\u0442 \u0432\u0441\u0435 \u043e\u0447\u0435\u043d\u044c \u0431\u044b\u0441\u0442\u0440\u043e \u0438 \u043a\u0440\u0430\u0441\u0438\u0432\u043e. 
\n
 \u041d\u043e \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u0438\u0435\u0445\u0430\u043b\u0438 \u043d\u0435 \u0432 \u043f\u0438\u043a\u043e\u0432\u044b\u0439 \u0441\u0435\u0437\u043e\u043d \u0442\u043e \u0441\u043c\u0435\u043b\u043e \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0439\u0442\u0438 \u0441\u0435\u0431\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u044f\u0449\u0435\u0435 \u0436\u0438\u043b\u044c\u0435 \u0441\u0430\u043c\u0438. \u0412\u044b \u0441\u043e\u0448\u043b\u0438 \u043d\u0430 \u043f\u0440\u0438\u0447\u0430\u043b \u0438 \u0441\u0440\u0430\u0437\u0443 \u0436\u0435 \u043d\u0430 \u0432\u0430\u0441 \u043d\u0430\u043b\u0435\u0442\u0430\u0435\u0442 \u043a\u0443\u0447\u0430 \u0442\u0430\u043a\u0441\u0438\u0441\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0445\u043e\u0442\u044f\u0442 \u0432\u0430\u0441 \u043a\u0443\u0434\u0430 \u043d\u0438\u0431\u0443\u0434\u044c \u043e\u0442\u0432\u0435\u0437\u0442\u0438. \u042f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e \u0432\u0430\u043c \u043d\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0445 \u0443\u0441\u043b\u0443\u0433\u0430\u043c\u0438, \u0430 \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0432\u0441\u0435 \u0441\u0430\u043c\u0438\u043c. 
\n


\n

 Your 1st task is to rent a bike by yourself. You can rent it for absolutely any term from 1 day to several months. If you want to stay here for a few months, it is much more profitable to buy it. There are a lot of offers for renting bikes, you can find absolutely any bike for any budget. The average monthly rent varies from 3000 baht  to 7000 baht .(1000 baht=29$)   In my opinion, the best option is to immediately rent a good bike yourself. My choice is

\n

 Honda Pcx 150

\n
1 \u0432\u0430\u0448\u0430 \u0437\u0430\u0434\u0430\u0447\u0430 - \u044d\u0442\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0431\u0430\u0439\u043a. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0437\u044f\u0442\u044c \u0435\u0433\u043e \u043d\u0430 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0441\u0440\u043e\u043a \u043e\u0442 1 \u0434\u043d\u044f \u0434\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432. \u0415\u0441\u043b\u0438 \u0436\u0435 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0441\u0442\u0430\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c \u043d\u0430 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0442\u043e \u043d\u0430\u043c\u043d\u043e\u0433\u043e \u0432\u044b\u0433\u043e\u0434\u043d\u0435\u0435 \u043a\u0443\u043f\u0438\u0442\u044c \u0441\u0435\u0431\u0435 \u0435\u0433\u043e. \u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u043e\u0431 \u0430\u0440\u0435\u043d\u0434\u0435 \u0431\u0430\u0439\u043a\u043e\u0432 \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e, \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0431\u0430\u0439\u043a \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0431\u044e\u0434\u0436\u0435\u0442. \u0412 \u0441\u0440\u0435\u0434\u043d\u0435\u043c \u043c\u0435\u0441\u044f\u0447\u043d\u0430\u044f \u0430\u0440\u0435\u043d\u0434\u0430 \u0431\u0430\u0439\u043a\u0430 \u0441\u0442\u043e\u0438\u0442 \u043e\u0442 3000 \u0431\u0430\u0442 ( 90$) \u0434\u043e 7000 \u0431\u0430\u0442 . \u0412\u043e\u043e\u0431\u0449\u0435 \u044f \u0432\u0430\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0441\u0440\u0430\u0437\u0443 \u0445\u043e\u0440\u043e\u0448\u0438\u0439 \u0431\u0430\u0439\u043a - \u0441\u0430\u043c\u044b\u043c \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u043c \u0438 \u043b\u0443\u0447\u0448\u0438\u043c \u043f\u043e \u0446\u0435\u043d\u0435 \u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0443 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f 
\n

honda pcx 150.

\n


\n


\n


\n

\n

\n

it\u2019s the most popular one and it has the best combination of price and quality. It will cost you 5000 baht in average. It is very comfortable, fast and efficient. You can rent it not far from the arrival pier. After you left the pier, you have to go to the left at the first junction towards the roundabout. After that to choose a bike suiting you taste and in the color you need, you should come to every office and bargain. When renting you a bike Thais always take your passport. And if you leave even a tiny scratch on the bike, they will get really angry. They seem to have a national Thai sport \u2013 fooling a foreigner. So a friend of mine paid 3000 for a small scratch, Thais did not want to give him his passport back, and the ferry was already set to sail, so my friend had to pay. Do not forget that you are a guest here and locals dictate the rules of the game here. That's their business. So be careful with a rented bike and protect it as your own. And finally you have found a transport - then the most difficult, but exciting time comes \u2013 you should search for a house.

\n
 \u0415\u0433\u043e \u0441\u0440\u0435\u0434\u043d\u044f\u044f \u0446\u0435\u043d\u0430 - 5000 \u0431\u0430\u0442. \u041e\u043d \u043e\u0447\u0435\u043d\u044c \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u043d\u044b\u0439, \u0431\u044b\u0441\u0442\u0440\u044b\u0439 \u0438 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0447\u043d\u044b\u0439 \u0438 \u043e\u0434\u0438\u043d \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u0445 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435. \u0415\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435\u0434\u0430\u043b\u0435\u043a\u043e \u043e\u0442 \u043f\u0440\u0438\u0447\u0430\u043b\u0430 \u043a\u0443\u0434\u0430 \u0432\u044b \u043f\u0440\u0438\u0431\u044b\u043b\u0438. \u0412\u044b \u0441\u043e\u0448\u043b\u0438 \u0441 \u043f\u0440\u0438\u0447\u0430\u043b\u0430 \u0438 \u0432\u0430\u043c \u043d\u0430\u0434\u043e \u0438\u0434\u0442\u0438 \u0432 \u043b\u0435\u0432\u0443\u044e \u0441\u0442\u043e\u0440\u043e\u043d\u0443 \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u043c \u043f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u0442\u043a\u0435 \u0434\u043e \u043a\u0440\u0443\u0433\u043e\u0432\u043e\u0433\u043e \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u044f. \u0414\u0430\u043b\u0435\u0435 \u0437\u0430\u0445\u043e\u0434\u044f \u0432 \u043a\u0430\u0436\u0434\u0443\u044e \u043a\u043e\u043d\u0442\u043e\u0440\u0443 - \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u0431\u0430\u0439\u043a \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u043a\u0443\u0441 \u0438 \u0446\u0432\u0435\u0442. \u0422\u0430\u0439\u0446\u044b \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0440\u0438 \u0430\u0440\u0435\u043d\u0434\u0435 \u0438\u0445 \u0431\u0430\u0439\u043a\u0430 \u0437\u0430\u0431\u0438\u0440\u0430\u044e\u0442 \u0432\u0430\u0448 \u043f\u0430\u0441\u043f\u043e\u0440\u0442. \u0418 \u0435\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u044f \u0431\u044b \u0447\u0443\u0442\u044c \u0447\u0443\u0442\u044c \u043f\u043e\u0446\u0430\u0440\u0430\u043f\u0430\u0435\u0442\u0435 \u0438\u0445 \u0431\u0430\u0439\u043a \u043f\u0440\u0438 \u0430\u0440\u0435\u043d\u0434\u0435 - \u0442\u0443\u0442 \u043e\u043d\u0438 \u0443\u0436\u0435 \u0440\u0430\u0437\u043e\u0439\u0434\u0443\u0442\u0441\u044f \u043d\u0435 \u043d\u0430 \u0448\u0443\u0442\u043a\u0443. \u0423 \u043d\u0438\u0445 \u043a\u0430\u0436\u0435\u0442\u0441\u044f \u0435\u0441\u0442\u044c \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0441\u043f\u043e\u0440\u0442 - \u043e\u0431\u043c\u0430\u043d\u0438 \u0442\u0443\u0436\u0435\u0437\u0435\u043c\u0446\u0430. \u0422\u0430\u043a \u043e\u0434\u0438\u043d \u043c\u043e\u0439 \u0434\u0440\u0443\u0433 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b 3000 \u0437\u0430 \u043c\u0435\u043b\u043a\u0443\u044e \u0446\u0430\u0440\u0430\u043f\u0438\u043d\u043a\u0443, \u0442\u0430\u0439\u0446\u044b \u043d\u0435 \u043e\u0442\u0434\u0430\u0432\u0430\u043b\u0438 \u043f\u0430\u0441\u043f\u043e\u0440\u0442, \u0430 \u043f\u0430\u0440\u043e\u043c \u0431\u044b\u043b \u0443\u0436\u0435 \u043d\u0430 \u043e\u0442\u043f\u043b\u044b\u0442\u0438\u0438 \u0438 \u043f\u0440\u0438\u0448\u043b\u043e\u0441\u044c \u043f\u043b\u0430\u0442\u0438\u0442\u044c. \u041d\u0435 \u0437\u0430\u0431\u044b\u0432\u0430\u0439\u0442\u0435 \u0447\u0442\u043e \u0432\u044b \u0442\u0443\u0442 \u0433\u043e\u0441\u0442\u0438 \u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u0430 \u0438\u0433\u0440\u044b \u0442\u0443\u0442 \u0434\u0438\u043a\u0442\u0443\u044e\u0442 \u043c\u0435\u0441\u0442\u043d\u044b\u0435. \u042d\u0442\u043e \u0438\u0445 \u0431\u0438\u0437\u043d\u0435\u0441. \u0422\u0430\u043a \u0447\u0442\u043e \u0431\u0443\u0434\u044c\u0442\u0435 \u0430\u043a\u043a\u0443\u0440\u0430\u0442\u043d\u0435\u0435 \u0441 \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u043d\u043d\u044b\u043c \u0431\u0430\u0439\u043a\u043e\u043c, \u0435\u0433\u043e \u043d\u0430\u0434\u043e \u043e\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043a\u0430\u043a \u0441\u0432\u043e\u0439. 
\n
 \u0418 \u0432\u043e\u0442 \u043d\u0430\u043a\u043e\u043d\u0435\u0446 \u0432\u044b \u043d\u0430\u0448\u043b\u0438 \u0441\u0435\u0431\u0435 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442 - \u0434\u0430\u043b\u0435\u0435 \u043d\u0430\u0441\u0442\u0443\u043f\u0430\u0435\u0442 \u0441\u0430\u043c\u044b\u0439 \u0441\u043b\u043e\u0436\u043d\u044b\u0439, \u043d\u043e \u0443\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 - \u044d\u0442\u043e \u043f\u043e\u0438\u0441\u043a \u0436\u0438\u043b\u044c\u044f.
\n


\n

 At the first day, I recommend you to find any house that you like for a week. You will have a week to drive around the Island and find the place to stay that you really like. In future articles, I will tell you how and where to go that week, and now I'll tell you where you need to go to find a budget place for the first time.  Here you can see the marks of the villages where you can almost always find available and very good accommodation with very good hosts. These houses are not expensive.  For example, such a house can be rented for 13000 baht. For a week the owner asks 4000 baht.

\n
\u042f \u0432\u0430\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u0432 \u043f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043d\u0430\u0439\u0442\u0438 \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e \u043b\u044e\u0431\u043e\u0439 \u0434\u043e\u043c\u0438\u043a \u043d\u0430 \u043d\u0435\u0434\u0435\u043b\u044e, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u0430\u043c \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u0438 \u0434\u0430\u043b\u0435\u0435 \u0443\u0436\u0435 \u0437\u0430 \u044d\u0442\u0443 \u043d\u0435\u0434\u0435\u043b\u044e \u043e\u0431\u044c\u0435\u0445\u0430\u0442\u044c \u0432\u0435\u0441\u044c \u043e\u0441\u0442\u0440\u043e\u0432 \u0438 \u043f\u043e\u0434\u043e\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0442\u043e \u0447\u0435\u0433\u043e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435. \u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u0442\u0430\u0442\u044c\u044f\u0445 \u044f \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u0432\u0430\u043c \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u0438 \u043a\u0443\u0434\u0430 \u0435\u0445\u0430\u0442\u044c \u0432 \u044d\u0442\u0443 \u043d\u0435\u0434\u0435\u043b\u044e, \u0430 \u0441\u0435\u0439\u0447\u0430\u0441 \u044f \u0432\u0430\u043c \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u043a\u0443\u0434\u0430 \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0435\u0445\u0430\u0442\u044c \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0439\u0442\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u043d\u043e\u0435 \u0436\u0438\u043b\u044c\u0435 \u043d\u0430 \u043f\u0435\u0440\u0432\u043e\u0435 \u0432\u0440\u0435\u043c\u044f. \u0412\u043e\u0442 \u043c\u0435\u0442\u043a\u0438 \u0434\u0435\u0440\u0435\u0432\u043d\u044c \u0433\u0434\u0435 \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u0435\u0441\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0435 \u0438 \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0435\u0435 \u0436\u0438\u043b\u044c\u0435 \u0441 \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0438\u043c\u0438 \u0445\u043e\u0437\u044f\u0435\u0432\u0430\u043c\u0438. \u0422\u0430\u043a\u0438\u0435 \u0434\u043e\u043c\u0430 \u0441\u0442\u043e\u044f\u0442 \u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435 \u0434\u043e\u0440\u043e\u0433\u043e. \u0414\u043e\u043f\u0443\u0441\u0442\u0438\u043c \u0432\u043e\u0442 \u0442\u0430\u043a\u043e\u0439 \u0434\u043e\u043c\u0438\u043a \u043c\u043e\u0436\u043d\u043e \u0430\u0440\u0435\u043d\u0434\u043e\u0432\u0430\u0442\u044c \u0437\u0430 13000 \u0431\u0430\u0442. \u0417\u0430 \u043d\u0435\u0434\u0435\u043b\u044e \u0445\u043e\u0437\u044f\u0438\u043d \u043f\u0440\u043e\u0441\u0438\u0442 4000 \u0431\u0430\u0442
\n

\n

\n

\n

 But you should always bargain with Thais.

\n

 In recent years I myself have lived with the most wonderful hosts, I would recommend you to stay with them too. They became really close to us during our stay. Here is the mark of the house, and the owner\u2019s contacts. You can write to him and he can meet you directly at the pier and help carry you stuff. This amazing guy has even bikes for rent. 

\n
\u0421 \u0442\u0430\u0439\u0446\u0430\u043c\u0438 \u0432\u0441\u0435\u0433\u0434\u0430 \u041d\u0415\u041e\u0411\u0425\u041e\u0414\u0418\u041c\u041e \u0442\u043e\u0440\u0433\u043e\u0432\u0430\u0442\u044c\u0441\u044f.
\n
\u0421\u0430\u043c \u044f \u0436\u0438\u043b \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0443 \u0441\u0430\u043c\u044b\u0445 \u0437\u0430\u043c\u0435\u0447\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0445\u043e\u0437\u044f\u0435\u0432 \u0432\u0441\u0435\u043c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f \u0443 \u043d\u0438\u0445. \u0417\u0430 \u0432\u0440\u0435\u043c\u044f \u0436\u0438\u0437\u043d\u0438 \u043e\u043d\u0438 \u0441\u0442\u0430\u043b\u0438 \u043d\u0430\u043c \u0441\u043e\u0432\u0441\u0435\u043c \u0440\u043e\u0434\u043d\u044b\u043c\u0438. \u0412\u043e\u0442 \u043c\u0435\u0442\u043a\u0430 \u044d\u0442\u043e\u0433\u043e \u0434\u043e\u043c\u0430, \u0438 \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u044b \u0445\u043e\u0437\u044f\u0438\u043d\u0430. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0435\u043c\u0443 \u0438 \u043e\u043d \u0432\u0430\u0441 \u043c\u043e\u0436\u0435\u0442 \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u0442\u044c \u043f\u0440\u044f\u043c\u043e \u0441 \u043f\u0430\u0440\u043e\u043c\u0430 \u0438 \u043f\u043e\u043c\u043e\u0447\u044c \u0434\u043e\u0432\u0435\u0441\u0442\u0438 \u0432\u0435\u0449\u0438. \u0423 \u044d\u0442\u043e\u0433\u043e \u043e\u0447\u0435\u043d\u044c \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0434\u0430\u0436\u0435 \u0435\u0441\u0442\u044c \u0431\u0430\u0439\u043a\u0438 \u0432 \u0430\u0440\u0435\u043d\u0434\u0443. 
\n


\n

\n

\n

When you find a house and get some rest, it's time to go eat something. The most important meeting point of all the people living on the Island is the food court.

\n

\n

 Anyone can find food for him here. I'll give you more details about it in the following articles. Another very important tip - if it\u2019s your first time on the island, download the map Maps.me and mark there all the important places. Because as soon as it gets dark on the island - everything is changing, and it\u2019s very easy to get lost. Thank you for reading my article. I hope it will be useful to you. See you soon! 

\n
\u041a\u043e\u0433\u0434\u0430 \u0432\u044b \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438\u0441\u044c \u0432 \u0434\u043e\u043c\u0435, \u043e\u0442\u0434\u043e\u0445\u043d\u0443\u043b\u0438 - \u0441\u0430\u043c\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u044a\u0435\u0437\u0434\u0438\u0442\u044c \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c. \u0421\u0430\u043c\u043e\u0435 \u0433\u043b\u0430\u0432\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0441\u0431\u043e\u0440\u0430 \u0432\u0441\u0435\u0445 \u0436\u0438\u0432\u0443\u0449\u0438\u0445 \u043b\u044e\u0434\u0435\u0439 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 - \u044d\u0442\u043e \u0444\u0443\u0434\u043a\u043e\u0440\u0442. \u0417\u0434\u0435\u0441\u044c \u0435\u0441\u0442\u044c \u0435\u0434\u0430 \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0432\u044b\u0431\u043e\u0440 \u0438 \u043e \u043d\u0435\u043c \u044f \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e \u0440\u0430\u0441\u0441\u043a\u0430\u0436\u0443 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u0442\u0430\u0442\u044c\u044f\u0445. \u0415\u0449\u0435 \u043e\u0447\u0435\u043d\u044c \u0432\u0430\u0436\u043d\u044b\u0439 \u0441\u043e\u0432\u0435\u0442 \u0435\u0441\u043b\u0438 \u0432\u044b \u043f\u0435\u0440\u0432\u044b\u0439 \u0440\u0430\u0437 \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 - \u0441\u043a\u0430\u0447\u0430\u0442\u044c \u0441\u0435\u0431\u0435 \u043a\u0430\u0440\u0442\u0443 maps me \u0438 \u043e\u0442\u043c\u0435\u0447\u0430\u0442\u044c \u0432\u0441\u0435 \u0437\u043d\u0430\u0447\u0438\u043c\u044b\u0435 \u043c\u0435\u0441\u0442\u0430 \u043c\u0435\u0442\u043a\u0430\u043c\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0435. \u041f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u0442\u0435\u043c\u043d\u0435\u0435\u0442 - \u0432\u0441\u0435 \u0432\u043e\u043a\u0440\u0443\u0433 \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043e\u0447\u0435\u043d\u044c \u043b\u0435\u0433\u043a\u043e \u0437\u0430\u0431\u043b\u0443\u0434\u0438\u0442\u0441\u044f. \u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0432\u0430\u043c \u0437\u0430 \u0442\u043e, \u0447\u0442\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b\u0438 \u043c\u043e\u044e \u0441\u0442\u0430\u0442\u044c\u044e. \u042f \u0434\u0443\u043c\u0430\u044e \u0447\u0442\u043e \u0431\u044b\u043b \u043a\u043e\u043c\u0443 \u0442\u043e \u043f\u043e\u043b\u0435\u0437\u0435\u043d. \u0414\u043e \u0441\u043a\u043e\u0440\u043e\u0439 \u0432\u0441\u0442\u0440\u0435\u0447\u0438!
\n\n\n
\n\n---\n\nIf you like this article not follow only me, but also follow the author - @maximkichev\n\n---\n\nAll STEEM Dollars for this post go to the featured author. \u0412\u0441\u0435 SD \u0437\u0430 \u043f\u043e\u0441\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442 \u0430\u0432\u0442\u043e\u0440.", - "category": "travel", - "children": 6, - "created": "2016-09-14T13:41:51", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-18.png?w=1000\n\n> ## Traditional Brazilian recipes\n\n# INGREDIENTS\n\n> 300g Macedonia vegetables\n\n> 150g Mayonnaise (made with olive oil)\n\n> 400g chicken breast\n\n> 1dl Gallo Great choice Oil\n\n> 1unid. Green apple\n\n> chopped parsley\n\n> broth of vegetables\n\n> Chicken Broth\n\n \n# PREPARATION\n\n### 1. Bake the Macedonian vegetables in vegetable broth, drain and cool when cooked.\n\n### 2. Bake the chicken breast in chicken broth, cool and shred.\n\n### 3. Involve the mayonnaise with the Macedonian vegetable on this have shredded chicken and this, green apple.\n\n \n# CHIEF TIP\n\n### 1. Sprinkle with chopped parsley and sprinkle it with olive oil Gallo Great choice.\n\n### 2. The Gallo products that the chef suggests for this recipe can be replaced by other varieties Gallo of your choice. Try and share your combinations.\n\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/chicken-salad-shredded-and-green-apple/)\n\n> ### [Recipe Site ](http://www.gallooliveoil.com/pt/inspira-me/receitas/saladas/salada-russa-servida-com-frango-desfiado-e-maca-verde.aspx)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465", + "category": "food", + "children": 4, + "created": "2016-09-13T15:14:42", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://www.steemimg.com/images/2016/09/06/12728528_1058985940831903_2136328517_n410d0.jpg", - "https://www.steemimg.com/images/2016/09/06/12224592_122832371412947_1363648931_nf668a.jpg", - "https://www.steemimg.com/images/2016/09/06/IMG_8474e1580.jpg", - "https://www.steemimg.com/images/2016/09/06/IMG_84828dc26.jpg", - "https://www.steemimg.com/images/2016/09/06/IMG_260880143.jpg", - "https://www.steemimg.com/images/2016/09/06/12797606_198129123884007_684911603_ne9572.jpg", - "https://www.steemimg.com/images/2016/09/06/12725187_232914270382388_1084474976_n46bf5.jpg", - "https://www.steemimg.com/images/2016/09/06/IMG_91694a457.jpg" + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-18.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" ], "links": [ - "https://steemit.com/travel/@terrycraft/koh-phangan-is-modern-tortuga-part-1-ko-pkhangan-eto-sovremennaya-tortuga-chast-1-featuring-maximkichev-as-author", - "https://www.facebook.com/arkady.volk?fref=ts", - "https://www.google.com/maps/place/Tw+Travel+2,+Unnamed+Rd,,+Ko+Pha-ngan,+Ko+Pha-ngan+District,+Surat+Thani+84280,+%D0%A2%D0%B0%D0%B8%D0%BB%D0%B0%D0%BD%D0%B4/@9.711781,99.985466,19z/data=!3m1!1e3!4m6!1m3!3m2!1s0x3054fe7de41200f9:0xd0041a7b8adc197c!2zVW5uYW1lZCBSb2FkLCBUYW1ib24gS28gUGhhLW5nYW4sIEFtcGhvZSBLbyBQaGEtbmdhbiwgQ2hhbmcgV2F0IFN1cmF0IFRoYW5pIDg0MjgwLCDQotCw0LjQu9Cw0L3QtA!3m1!1s0x3054fe7de19dc325:0x16481455c28a49d7?hl=ru-ID", - "https://www.google.ru/maps/dir/9.7224811,100.0070475/9.7225217,100.0070279/@9.7224499,100.0052736,631m/data=!3m1!1e3!4m2!4m1!3e2", - "https://www.facebook.com/stormand?fref=ts", - "http://maps.me/" + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/13/chicken-salad-shredded-and-green-apple/", + "http://www.gallooliveoil.com/pt/inspira-me/receitas/saladas/salada-russa-servida-com-frango-desfiado-e-maca-verde.aspx" ], "tags": [ - "travel", - "story", - "thailand", - "ru" - ], - "users": [ - "maximkichev" + "food", + "health", + "recipes", + "cooking", + "life" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 84039445019137, - "payout": 415.525, - "payout_at": "2016-09-21T13:41:51", - "pending_payout_value": "415.525 HBD", + "net_rshares": 20601662800070, + "payout": 29.765, + "payout_at": "2016-09-20T15:14:42", + "pending_payout_value": "29.765 HBD", "percent_hbd": 10000, - "permlink": "the-first-day-on-the-koh-phangan-island-what-you-should-do-and-where-you-should-go-pervyi-den-na-ostrove-ko-pkhangan-chto-delat", - "post_id": 1243180, + "permlink": "chicken-salad-shredded-and-green-apple", + "post_id": 1232624, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 185 + "total_votes": 36 }, - "title": "The first day on the Koh Phangan Island. What you should do and where you should go / \u041f\u0435\u0440\u0432\u044b\u0439 \u0434\u0435\u043d\u044c \u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0435 \u041a\u043e-\u041f\u0445\u0430\u043d\u0433\u0430\u043d. \u0427\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0438 \u043a\u0443\u0434\u0430 \u0441\u0445\u043e\u0434\u0438\u0442\u044c. (featuring @maximkichev as author)", - "updated": "2016-09-14T13:41:51", - "url": "/travel/@terrycraft/the-first-day-on-the-koh-phangan-island-what-you-should-do-and-where-you-should-go-pervyi-den-na-ostrove-ko-pkhangan-chto-delat" + "title": "Chicken salad shredded and Green Apple", + "updated": "2016-09-13T19:54:21", + "url": "/food/@gustavopasquini/chicken-salad-shredded-and-green-apple" }, { "active_votes": [ { - "rshares": 260705259869, + "rshares": 260582718501, "voter": "anonymous" }, { - "rshares": 10520740297326, + "rshares": 11834143712367, "voter": "berniesanders" }, { - "rshares": 73213646352, + "rshares": 73209361505, "voter": "nextgenwitness" }, { - "rshares": 244092270479, + "rshares": 259329872696, "voter": "justin" }, { - "rshares": 669240019892, + "rshares": 752298710266, "voter": "silver" }, { - "rshares": 1625172792145, + "rshares": 1827293771080, "voter": "silversteem" }, { - "rshares": 1917401685068, + "rshares": 1803812175805, "voter": "nextgencrypto" }, { - "rshares": 2496772623482, + "rshares": 3667340586581, "voter": "wang" }, { - "rshares": 168099094309, + "rshares": 168089567974, "voter": "steemservices" }, { - "rshares": 31813217918, - "voter": "thedarkestplum" + "rshares": 14857190598, + "voter": "bentley" }, { - "rshares": 1414367459, - "voter": "murh" + "rshares": 18356018065, + "voter": "dedmatvey" }, { - "rshares": 23805646075, - "voter": "thecryptofiend" + "rshares": 1766957079, + "voter": "murh" }, { - "rshares": 36918468476, - "voter": "redpalestino" + "rshares": 38822576165, + "voter": "creemej" }, { - "rshares": 4776598885, - "voter": "gustavopasquini" + "rshares": 1372243951, + "voter": "alekst" }, { - "rshares": 118330689, - "voter": "bullionstackers" + "rshares": 4823615716, + "voter": "gustavopasquini" }, { - "rshares": 1845758722, - "voter": "jillstein2016" + "rshares": 154313985, + "voter": "sergey44" }, { "rshares": 275446808, "voter": "cris.emilia" }, + { + "rshares": 23283956675, + "voter": "jasonstaggers" + }, + { + "rshares": 5969959739, + "voter": "french.fyde" + }, { "rshares": 191761463, "voter": "abnerpasquini" }, { - "rshares": 50545877, - "voter": "party1998" + "rshares": 200523992, + "voter": "party1999" + }, + { + "rshares": 242137585, + "voter": "lisadang" + }, + { + "rshares": 14496406906, + "voter": "thecurator" + }, + { + "rshares": 3183176699, + "voter": "virtualgrowth" + }, + { + "rshares": 9167216579, + "voter": "mrgrey" + }, + { + "rshares": 14475466814, + "voter": "gvargas123" }, { "rshares": 163701239, "voter": "steemit-recipes" }, { - "rshares": 5676810763, + "rshares": 253919488, + "voter": "lindseylambz" + }, + { + "rshares": 94657366, + "voter": "rusla" + }, + { + "rshares": 5917666043, "voter": "leavemealone" }, { - "rshares": 1737088264, - "voter": "alwayzgame" + "rshares": 1632423419, + "voter": "thedashtimes" }, { - "rshares": 401507898, - "voter": "anomaly" + "rshares": 154642951404, + "voter": "thecyclist" }, { - "rshares": 334777472, + "rshares": 1099577930, "voter": "ola1" }, { - "rshares": 151471183, - "voter": "crimson" + "rshares": 3954459531, + "voter": "dodders007" }, { - "rshares": 426281596, - "voter": "witchcraftblog" + "rshares": 165241290, + "voter": "crimson" }, { - "rshares": 2105303657, - "voter": "dresden" + "rshares": 417002303, + "voter": "witchcraftblog" }, { - "rshares": 763354661, - "voter": "alienbutt" + "rshares": 146712264, + "voter": "dixonloveart" } ], "author": "gustavopasquini", @@ -3362,24 +3408,24 @@ "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-21.png?w=1000\n\n> ## Traditional Brazilian Main Course to bring exquisite recipes to your fine dining table for special ocacsions.\n\n\n# INGREDIENTS\n\n> 1 kg of dry flesh\n\n> 1 kg of ripe pumpkin\n\n> 2 chopped tomatoes\n\n> 1 chopped onion\n\n> 2 cloves garlic, minced\n\n> Pepper and spices to taste\n\n> Oil or oil for saut\u00e9ing\n\n> Parsley and chive\n\n\n \n# PREPARATION\n\n### 1. Let dry meat soaked in water the day before, changing the water several times\n\n### 2. The next day all of the water drain\n\n### 3. Cook in a pressure cooker as few with a little water until soft\n\n### 4. Saute in olive oil garlic, onion and tomato\n\n### 5. Add the dried meat, the pumpkin into pieces and pepper to taste\n\n### 6. If necessary add salt\n\n### 7. Cook until the pumpkin is tender\n\n### 8. Turn off the heat and add parsley and chives\n\n### 9. Serve with white rice\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/14/pumpkin-with-jerked-beef/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/75748-carne-seca-com-abobora.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-17.png?w=1000\n\n> ## Traditional Brazilian recipes\n\n# Ingredients\n\n> already baked beans with their broth\n\n> Cassava flour\n\n> pork fat\n\n> Oil\n\n> beat onion\n\n> Salt and green onions and pat\n\n\n# Preparation\n\n### 1. In hot fat if refoguem-two cloves of crushed garlic.\n\n### 2. Being well fried, remove them.\n\n### 3. Add the onions and when they are golden, saute the beans, then add the broth and salt.\n\n### 4. Cook for about twenty minutes on low heat.\n\n### 5. In a skillet, place the beans that are ready, with little broth and go slowly adding cassava flour, stirring well until it gets the point.\n\n### 6. Prove it to check the salt.\n\n### 7. The point of the face should be neither too soft nor too hard.\n\n### 8. To serve, garnish with a beaded can of pork rinds and fried pork skins and pururucas.\n\n### 9. To accompany the upset, still being indispensable cabbage cut very thin, steamed and fried eggs.\n\n### 10. Also according to the will accompany pork loin, fried sausage, chops or antrecosto pork, fried in advance, but nice and warm.\n\n# Tip\n\n### In the Paraiba Valley region to the face, it is used preferably cassava flour, which does not occur in mountainous areas of the state, whose preference is for cornmeal.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/bean-turned/)\n\n> ### [Recipe Site ](https://www.comidaereceitas.com.br/legumes-e-verduras/virado-de-feijao.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465", "category": "food", - "children": 3, - "created": "2016-09-14T13:34:51", + "children": 7, + "created": "2016-09-13T13:22:12", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-21.png?w=1000", + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-17.png?w=1000", "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" ], "links": [ "https://gustavopasquini.com", "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/14/pumpkin-with-jerked-beef/", - "http://www.tudogostoso.com.br/receita/75748-carne-seca-com-abobora.html" + "https://gustavopasquini.wordpress.com/2016/09/13/bean-turned/", + "https://www.comidaereceitas.com.br/legumes-e-verduras/virado-de-feijao.html" ], "tags": [ "food", @@ -3390,1616 +3436,1682 @@ ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 18088408128027, - "payout": 22.459, - "payout_at": "2016-09-21T13:34:51", - "pending_payout_value": "22.459 HBD", + "net_rshares": 20966227757871, + "payout": 32.736, + "payout_at": "2016-09-20T13:22:12", + "pending_payout_value": "32.736 HBD", "percent_hbd": 10000, - "permlink": "pumpkin-with-jerked-beef", - "post_id": 1243137, + "permlink": "recipe-bean-turned", + "post_id": 1231576, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 28 + "total_votes": 37 }, - "title": "Pumpkin with jerk beef", - "updated": "2016-09-15T10:18:21", - "url": "/food/@gustavopasquini/pumpkin-with-jerked-beef" + "title": "Recipe Bean turned", + "updated": "2016-09-13T13:22:12", + "url": "/food/@gustavopasquini/recipe-bean-turned" }, { "active_votes": [ { - "rshares": 260702481730, - "voter": "anonymous" - }, - { - "rshares": 16524460338694, - "voter": "rainman" - }, - { - "rshares": 37958613597847, - "voter": "ned" + "rshares": 9485940684, + "voter": "richman" }, { - "rshares": 3302851909671, - "voter": "pharesim" + "rshares": 8682829117, + "voter": "gore84" }, { - "rshares": 183319367322, - "voter": "svk" + "rshares": 373150559, + "voter": "borishaifa" }, { - "rshares": 1910032397363, - "voter": "xeroc" - }, + "rshares": 157259353, + "voter": "siniceku" + } + ], + "author": "siniceku", + "author_payout_value": "0.000 HBD", + "author_reputation": 38.67, + "beneficiaries": [], + "blacklists": [], + "body": "For all in Steemit!\n\n\nThe melting of the Arctic ice cap due to global warming increasingly alarming. Each year , the sea level rise of 1-3 mm . If not immediately anticipated , rising sea levels is certainly dangerous for the survival of human beings living on the earth surface . Even more dangerous , several major cities in the world was threatened with sinking due to rising sea levels , the foundation is fragile, as well as ground water extraction . The following eight major cities in the world are threatened with drowning.\n\nShanghai,china\n
\n\n
\nShanghai was once just a place surrounded by swamp . The need for a place to stay and a population that swells create more and more skyscrapers in the area. Not surprisingly , each year the ground in Shanghai dropped half an inch . Based on data from PBS , the surface of the ground in Shanghai fell by around 2.4 meters within the period 1921 to 1965. Experts estimate that the land in Shanghai no longer able to withstand the heavy loads of building on it . Predicted a time Shanghai will sink if the Yangze River overflowed\n\n\n\nSaigon,Vietnam\n
\n\n
\n\nOne of the most populous cities in Southeast Asia is also in danger of drowning. The reduced surface soil make this area prone to flooding . Each year, the floodwaters rose as high as 2cm.\n\n\nBangkok,Thailand\n
\n\n
\nHead of the National Disaster Warning Centre of Thailand , Smith Dharmasaroja , predicted in 2100 Bangkok will be the second Atlantis . The city will sink due to several factors , such as : climate change due to greenhouse effect , rising sea levels , coastal erosion , and landslides . Plus it lies low causing Bangkok every year has flooded.\n\nMumbai,india\n\n\n
\n\n
\nNot much different from Bangkok , a group of Greenpeace activists in 2100 memperkitakan Mumbai city will be submerged by seawater . Rising sea levels of up to 5 meters led to the city's community in the town threatened its sustainability.\nMexico,City\n\n
\n\n
\n\nThis one city each year sunk 20cm in case of flooding . It lies in the valley plus the poor drainage system make Mexico City in danger of drowning. Since 1975 , the city's drainage capacity is down 30 percent . But now the government is pushing for the manufacture of drainage tunnel giant who claimed can hold enough water.\n\n\nNew York\n\n
\n\n
\n\nRising sea levels threaten the city turned out to take part in these United States. Position at the mouth of the Hudson River that connects directly to the Atlantic Ocean helped trigger. Science Daily predict , the city sea water more than doubled compared to other oceans . Not only that , coastal erosion , decreased soil and destruction of the environment can also trigger the overflow of water in the city known as the center of the business world.\n\n\nVenesia,italy\n\n
\n\n
\n\nThe end of 2012 , the city was flooded badly . This phenomenon is present due to a combination of heavy rain and wind from the south . At least 70 percent of the land in the canal city is flooded with a depth of up to 1.5 meters above normal . Flooding was apparently one of the indications that the region of Venice continues to sink . Christian Science Monitor even noted , the city dropped its surface as long as 30 cm over the last 100 years. The rising water level in the Mediterranean Sea canal city likely add it to sink.\n\n\nJakarta,indonesia\n\n\n
\n\n
\n\n\nIn addition to the geographical location of which is under sea level , the need for a high water is considered to be one of the causes of the sinking of the mainland Jakarta . Population continues to increase the main reason for the need for groundwater . In a period of 20 years, the estimated number of residents in the capital increase of up to 40 million people.\n\n\nHydrology expert from the Netherlands , Janjaap Brinkman explained that if the soil water suction process continuously carried out , at the end of the 21st century , Jakarta will sink five to six meters deep . A matter of time Jakarta will sink beneath the sea as the city of Atlantis\n\nThese towns are threatened sinking due to rising sea levels and global warming . If we do not change the way we treat the earth , these cities will be completely submerged without we could do anything. Let's start caring for the environment.!!!\n\n\n\n\nComments and Responses You\nVery I would expect to progress I\nAnd I hope you enjoyed reading this post\n\n\nDon't forget to vote and follow me,\nThanks...\n\n\nBest Regars\n\nhttps://s9.postimg.org/7que1vu0v/20150608150705.jpg\n\nSazkia@Siniceku", + "category": "life", + "children": 0, + "created": "2016-09-13T03:32:03", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s18.postimg.org/d9i0vjmzd/405046_queensland_039_s_flood_disaster.jpg", + "https://s4.postimg.org/s97fe437x/Saigon_Flooding.jpg", + "https://s15.postimg.org/dq72f2v8b/temples_flooded_in_thailand_data.jpg", + "https://s15.postimg.org/fgl6hs59n/28sl3.jpg", + "https://s11.postimg.org/ml22odc4z/f8fcd814_1646_4aaa_ad1e_b4bc111c707c_650x366.jpg", + "https://s12.postimg.org/6g8rm99zx/Yellow_cabs_line_a_flood_010.jpg", + "https://s16.postimg.org/rzrojow7p/628x471.jpg", + "https://s15.postimg.org/3m6tky4kr/335370_jakarta_floods.jpg", + "https://s9.postimg.org/7que1vu0v/20150608150705.jpg" + ], + "tags": [ + "life", + "steemit", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 18699179713, + "payout": 0.004, + "payout_at": "2016-09-20T03:32:03", + "pending_payout_value": "0.004 HBD", + "percent_hbd": 10000, + "permlink": "8-big-cities-in-the-world-threatened-drowning", + "post_id": 1227664, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 4 + }, + "title": "8 Big Cities in the World Threatened Drowning", + "updated": "2016-09-13T04:09:21", + "url": "/life/@siniceku/8-big-cities-in-the-world-threatened-drowning" + }, + { + "active_votes": [ { - "rshares": 6017419272738, - "voter": "witness.svk" + "rshares": 289505960501, + "voter": "anonymous" }, { - "rshares": 8668864101, - "voter": "richman" + "rshares": 11832846202341, + "voter": "berniesanders" }, { - "rshares": 165883357441, - "voter": "steve-walschot" + "rshares": 73207228831, + "voter": "nextgenwitness" }, { - "rshares": 16733609471, - "voter": "b4bb4r-5h3r" + "rshares": 259320461975, + "voter": "justin" }, { - "rshares": 39650275501, - "voter": "ranko-k" + "rshares": 751763083749, + "voter": "silver" }, { - "rshares": 56501687416, - "voter": "kus-knee" + "rshares": 1824730859114, + "voter": "silversteem" }, { - "rshares": 76741877365, - "voter": "lizik" + "rshares": 1820462096986, + "voter": "nextgencrypto" }, { - "rshares": 5286973601, - "voter": "tee-em" + "rshares": 4106086052684, + "voter": "wang" }, { - "rshares": 30495878334, - "voter": "michaelx" + "rshares": 156879417233, + "voter": "steemservices" }, { - "rshares": 17023109715, - "voter": "albertogm" + "rshares": 10522506095, + "voter": "steemservices1" }, { - "rshares": 783296766, - "voter": "mammasitta" + "rshares": 6136428479, + "voter": "bentley" }, { - "rshares": 471516850, - "voter": "mrhankeh" + "rshares": 1766931218, + "voter": "murh" }, { - "rshares": 68200380711, - "voter": "bacchist" + "rshares": 198951596446, + "voter": "the-alien" }, { - "rshares": 1210050218327, - "voter": "renohq" + "rshares": 2856868618, + "voter": "steemswede" }, { - "rshares": 14880181090, - "voter": "ausbitbank" + "rshares": 43156587681, + "voter": "mrwang" }, { - "rshares": 33653917190, - "voter": "toxonaut" + "rshares": 4101540390, + "voter": "lpfaust" }, { - "rshares": 85512692, - "voter": "snowden" + "rshares": 174462677, + "voter": "uwe69" }, { - "rshares": 38758863864, - "voter": "biophil" + "rshares": 10809284473, + "voter": "gargon" }, { - "rshares": 1817255932, - "voter": "kendewitt" + "rshares": 204980081, + "voter": "party1999" }, { - "rshares": 87223247, - "voter": "wildchild" + "rshares": 14496122032, + "voter": "thecurator" }, { - "rshares": 2434921863, - "voter": "the-future" + "rshares": 60824216, + "voter": "lchazen" }, { - "rshares": 3848107418, - "voter": "bitcoiner" + "rshares": 979076276, + "voter": "kalipo" + } + ], + "author": "lchazen", + "author_payout_value": "0.000 HBD", + "author_reputation": 46.94, + "beneficiaries": [], + "blacklists": [], + "body": "http://i67.tinypic.com/ncjk03.jpg\n\nThe information below could be helpful to anyone out there who wants to know more about the connection between depression (and other mental illnesses) and creativity. If the findings are correct, and the \"mentally ill\" have so much to offer, then what does this say about how society tends to treat of this segment of society?\n\nConsciousness, introspection, self-awareness, and abstract thinking have no basis in scientific measurement (Swerdlow, 1995). Science, however, seems to be heading in this direction. Humans have this need for explanation, and as such, we have discovered that the planum temporale in the left hemisphere, a part of the brain associated with auditory processing, is larger in musicians than in non-musicians, and is larger still in musicians with perfect pitch. Other research indicates that van Gogh may have suffered from temporal lobe epilepsy, which triggered electrical hyperactivity of the brain (Swerdlow, 1995).\n\nThere are more recent cases which point to physiology as it effects the creative process. By the 1950\u2019s, Howard Hughes had established himself as a filmmaker, inventor, designer, engineer, industrialist and businessman. By the 1970\u2019s, he was said to be one of the most eccentric people in America, living in isolation, giving out strict orders to his staff on how to maintain cleanliness, once test landing a plane some five thousand times when only twenty or so was necessary, and generally living out a life of extraordinarily bizarre behaviors. Yet, no one questioned this, intervened or even insisted that he get help!! Why? Perhaps, they thought this was common for a creative genius, man of his caliber, or normal for the rich and famous to act peculiar. What we know now is that Howard Hughes was suffering from obsessive compulsive disorder (Osborne, 1998). PET scans reveal that the brain of someone suffering from obsessive compulsive disorder is overactive, particularly the section known as the caudate nucleus. The entire frontal cortex of a person with this condition literally lights up when compared to a person without the condition. The mental activity that made Hughes a great genius, was also slowly killing him.\n\nWhat I have learned in my study of this disorder is that what makes some people crazy, can also make them creative, or great if they choose. Winston Churchill and Martin Luther, both great leaders in their time, suffered the effects of mental illness. Churchill had terrible depression and Martin Luther, though it wasn\u2019t called this at the time, had obsessive compulsive disorder. Martin Luther was said to be scrupulous, literally asking for forgiveness more than twenty times a day for acts committed that day (Jamision, 1995). There is an endless list of people that I have read or heard about that suffered from mental illness and were also creative. Is there a connection?\n\nIt would be hard to imagine that there is not. The brain is acting in such a way as to stimulate thought, insight, imagination, excitement and emotion. What we do not manifest into some creative outlet is likely to take its toll in another equally profound way. A few years ago, I had a conversation with a doctor concerning his son and his son\u2019s outrageous, counter productive behavior in my classroom. When we discussed the possible reasons, his answer was that his son acted this way, not because he meant any harm or disrespect, but because \u201chis brain required it.\u201d Acting out, creating, being weird, whatever we wish to call it is really the brain\u2019s way of achieving the balance it needs.\n\nEdward O. Wilson, in Consilience, discusses this very notion on the section involving dreaming. He reports that in a dream state, the person is really insane. What he means is that these images, thoughts, impulses, if occurring during a cognizant, awake state would classify any of us as insane. What is going on during one of these states is interesting. The amines that the brain normally produces \u2013 such as norepinephrine and serotonin run low. Wilson suggests that the brain, in a dream state, is compensating for low levels of these chemicals by producing fantastic images. Take this a step further and one can see why artists and creative people tend to be so depressed. They too are compensating. They want so badly to get out of this state and the only option is a creation of their own doing, something so amazing that it literally alters their brain chemistry! It would naturally follow that the deeper one feels depression the more creative they are apt to be. The \"normal\" nine-to-five crowd, to some, is uninspiring and unimaginative. Well, they don\u2019t need to be. Perhaps their brains do not require it.\n\nJulia Cameron (1992), in the Artist\u2019s way, confirms this, though in a less scientific way. She says, that our brightest ideas are often \u201cproceeded by a gestation period that is inferior, murky, and completely necessary.\u201d People seeking to reach that perfect state of creativity toy with these brain levels, trying to find the perfect amount of sadness or joy or whatever emotion will propel their project to great heights of pure creativity. When such levels are insufficient, they turn to exercise, thrill seeking, or worse, coffee, tobacco, alcohol and worse yet, drugs. It is really a never ending battle for the perfect state of being, and the perfect state of creative contribution.\n\nSpalding Gray (1985) writes about this in his cult classic, Swimming to Cambodia. As an actor in the movie The Killing Fields, he swore not to leave Thailand until he had achieved what he called the \u201cperfect moment.\u201d To paraphrase, the perfect moment was to him, that moment when everything came together, producing an amazing experience (Gray, 1985). This was the experience that one would remember most, the experience that would define the journey, the one to tell family and friends about. For Michael Jordan, it was important to leave basketball at the peak of his game, probably in a moment not too different from what Gray was writing about. Jordan, was in effect, the writer of the play on his life. As director, why not make it dramatic, thrilling, emotional, or even perfect?\n\nDoes this have implications for education? Without a doubt it does. Here we are, teachers directing students, literally taking away their control, their ability to form personal meaning and imposing, almost forcing content down their throats. Yet, we somehow expect them to learn from this?! Eric Jensen\u2019s (1998) research in Teaching with the Brain in Mind would probably caution against this, noting that \u201cemotion helps reason to focus the mind and set priorities. Many researchers now believe that emotion and reason are not opposites. For example, our logical side says, \u2018set a goal.\u2019 But only our emotions get us passionate enough even to care enough to act on that goal.\u201d (Daniel Goleman, 1995) argues that emotions are equally important to basic logic when making a decision. Perhaps the answer to this is to allow the students more control in decision making, in personal choice making, not just at home but at school.\n\nNote: This was excerpted from a paper I wrote while attending graduate school in Chico, CA.", + "category": "creativity", + "children": 8, + "created": "2016-09-12T18:09:51", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i67.tinypic.com/ncjk03.jpg" + ], + "tags": [ + "creativity", + "artists", + "depression", + "education", + "" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 21409018572096, + "payout": 33.021, + "payout_at": "2016-09-19T18:09:51", + "pending_payout_value": "33.021 HBD", + "percent_hbd": 10000, + "permlink": "the-connection-between-creativity-and-mental-illness", + "post_id": 1222406, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 22 + }, + "title": "The Connection Between Creativity and Mental Illness", + "updated": "2016-09-13T00:59:33", + "url": "/creativity/@lchazen/the-connection-between-creativity-and-mental-illness" + }, + { + "active_votes": [ + { + "rshares": 6320112756502, + "voter": "smooth" }, { - "rshares": 7646574749, - "voter": "lostnuggett" + "rshares": 289494267750, + "voter": "anonymous" }, { - "rshares": 30988207740, - "voter": "zaebars" + "rshares": 14444913681822, + "voter": "summon" }, { - "rshares": 35821540654, - "voter": "paquito" + "rshares": 166818213081, + "voter": "highasfuck" }, { - "rshares": 799591046, - "voter": "raymonjohnstone" + "rshares": 1364510657964, + "voter": "riverhead" }, { - "rshares": 50619397, - "voter": "steemchain" + "rshares": 213570205770, + "voter": "alex90342fastn1" }, { - "rshares": 50619397, - "voter": "whalepool" + "rshares": 1175265582767, + "voter": "smooth.witness" }, { - "rshares": 67493227330, - "voter": "susanne" + "rshares": 1190060429880, + "voter": "cass" }, { - "rshares": 477106677, - "voter": "hermes7" + "rshares": 24301363356, + "voter": "nikolai" }, { - "rshares": 3555027172, - "voter": "bkkshadow" + "rshares": 706764551, + "voter": "murh" }, { - "rshares": 817422571, - "voter": "bullionstackers" + "rshares": 552575118, + "voter": "dbrock" }, { - "rshares": 1722708140, - "voter": "jillstein2016" + "rshares": 11707821705, + "voter": "primus" }, { - "rshares": 114064883, - "voter": "andrew-charles" + "rshares": 7771275927, + "voter": "dasha" }, { - "rshares": 50575705298, - "voter": "gomeravibz" + "rshares": 3601517137, + "voter": "kepo777" }, { - "rshares": 2316686351, - "voter": "merej99" + "rshares": 445756207, + "voter": "kooshikoo" }, { - "rshares": 15542400563, - "voter": "magicmonk" + "rshares": 1506382994, + "voter": "littlekitty" }, { - "rshares": 24019048233, + "rshares": 26122931456, "voter": "laonie1" }, { - "rshares": 24533689929, + "rshares": 26100683859, "voter": "laonie2" }, { - "rshares": 24542292693, + "rshares": 26110010937, "voter": "laonie3" }, { - "rshares": 5465037533, - "voter": "brendio" + "rshares": 26105523826, + "voter": "laonie4" }, { - "rshares": 18126086550, - "voter": "timelapse" + "rshares": 26103248276, + "voter": "laonie5" }, { - "rshares": 50565616, - "voter": "michellek" + "rshares": 26100183826, + "voter": "laonie6" }, { - "rshares": 24537787517, - "voter": "laonie4" + "rshares": 26096640233, + "voter": "laonie7" }, { - "rshares": 24535205557, - "voter": "laonie5" + "rshares": 26092206591, + "voter": "laonie8" }, { - "rshares": 24532286670, - "voter": "laonie6" + "rshares": 26090029262, + "voter": "laonie9" }, { - "rshares": 24528304864, - "voter": "laonie7" + "rshares": 8529213634, + "voter": "mione" }, { - "rshares": 5481045936, - "voter": "kurtbeil" + "rshares": 1222376738, + "voter": "johnny-ad" }, { - "rshares": 24524741537, - "voter": "laonie8" + "rshares": 2899878736, + "voter": "levycore" }, { - "rshares": 24522014629, - "voter": "laonie9" + "rshares": 26082953024, + "voter": "laonie10" }, { - "rshares": 2440800277, - "voter": "steemleak" + "rshares": 8773513507, + "voter": "craigwilliamz" }, { - "rshares": 90985687, - "voter": "bigsambucca" + "rshares": 24677930294, + "voter": "laonie11" }, { - "rshares": 2229102304, - "voter": "paynode" + "rshares": 616518312, + "voter": "edgarsart" }, { - "rshares": 72135954, - "voter": "stevescriber" + "rshares": 1984839070, + "voter": "kato" }, { - "rshares": 123568597, - "voter": "sarita" + "rshares": 143370789, + "voter": "anomaly" }, { - "rshares": 50027573, - "voter": "loli" + "rshares": 202217704, + "voter": "vetvso" }, { - "rshares": 52419023, - "voter": "nano2nd" + "rshares": 2221522484, + "voter": "senseye" }, { - "rshares": 11375408076, - "voter": "gvargas123" + "rshares": 135564097, + "voter": "hanamana" }, { - "rshares": 13834252977, - "voter": "telos" + "rshares": 900750174, + "voter": "kalipo" }, { - "rshares": 24515733866, - "voter": "laonie10" - }, + "rshares": 143873085, + "voter": "jameshowarrd" + } + ], + "author": "kato", + "author_payout_value": "0.000 HBD", + "author_reputation": 54.37, + "beneficiaries": [], + "blacklists": [], + "body": "http://i.imgur.com/s1ax1cU.jpg\n\n### I've recently started watching a new show called \"Startup\" on the Crackle streaming platform. The show, which is set in Miami, is about 3 people from completely different walks of life getting together to create a (stable)cryptocurrency to change the world. It made me think about my decision to move back to Miami, and I wanted to share with you. \n\nhttp://i.imgur.com/QVMcQUH.jpg\n###### The ride back to Downtown from South Beach\n\n\nA year ago, my boyfriend and I both quit our jobs at the same time to work on his crypto project full time. It was one of the scariest, exciting, and fulfilling periods of my life. We were living together in Queens, NY at the time and were quickly becoming disillusioned with the expense, stress, sounds, and smells of New York City life. We mused about moving all over the world from Spain, to Thailand, Germany, Texas, the list went on...\n\nI thought long and hard about suggesting my hometown of Miami--I thought I had left it for good. I was born in Miami Beach and spent most of the first 18 years of my life living with my family in the same house in North Miami. Both of my parents worked a lot, so I spent a lot of time with my nanny, \u00cdnes, from Colombia. I speak Spanish to her and English to my parents. \n\nI got to grow up in a place where I was exposed to people from pretty much every different background you could imagine. I got to live in the aftermath of our diplomatic interaction with Cuba. Many of my friend's parents came to Miami on the [Mariel boatlift](https://en.wikipedia.org/wiki/Mariel_boatlift). I got to learn Creole and eat amazing things my parents never would have exposed me to (for example, [Goat Curry](http://caribbeanpot.com/the-ultimate-curry-goat-recipe/)...YUM!!) with my friends from school. I got to spend weekends sailing to islands with my Dad's \"boat friends\", shooting the shit, snorkeling, soaking up sun, and getting salty hair curls. I've seen alligators, crocs, manatees, dolphins, peacocks, and so much more living in the wild. I can't believe it took me leaving to realize how lucky I was. \n\nhttp://i.imgur.com/l9HLcTC.jpg\n###### Playing Apples to Apples at Sea on New Years\n\nhttp://i.imgur.com/J8knNOj.jpg\n###### Gators in the Everglades on a High School Field Trip\n\n## After a lot of thought, we decided on Miami, and (if you need less nostalgic reasons) here's why:\n\n\n### No Snow\n\nYup, that's right! Toss out your winter coats, cause you don't need 'em! It's warm and sunny almost all the time (yes, we get hurricanes) Every year at Christmas I float in a pool and drink eggnog. It's flip flops and sundresses all year round! Beach Picnic for Valentine's Day? No problem. Halloween Pool Party? Go for it! In Miami, outdoors is always an option. (Again, unless there's a hurricane. Then don't go outside.)\n\nhttp://i.imgur.com/JfucfI8.jpg\n###### My Old Backyard Shortly Before a Hurricane\n\nhttp://i.imgur.com/XShlu8K.jpg\n\n### More Money\n\nIf you're going to live in the US, there are few states where you [don't pay State Income Tax](https://en.wikipedia.org/wiki/State_income_tax#States_with_no_individual_income_tax). Florida is one of them. When I lived in NYC, I had to pay Federal, State, AND City Income Tax on my low, early-stage-startup salary. You don't end up getting much of a take home--even if you make good money. In Florida, not only are the taxes low, but since we're have a major import port and things don't have to travel very far to get to our stores, everything-especially food-is much cheaper. My rent is much lower than in NYC, too, and I get to live more central to the city, which I like. More money also means a longer runway for your startup and investors money goes a longer way!\n\nhttp://i.imgur.com/JjHV1vu.jpg\n###### Getting Some Juice Straight from The Grove!\n\n### Startup Friendly\n\nIn 2015, [Miami passed San Jose and reached up to the #2 city for Startup Activity in the US](http://www.miaminewtimes.com/news/miami-is-now-number-two-for-startup-activity-7802965). Last year, Miami also had the highest concentration of startups by population. Because of reasons one and two, there's a lot of investor Money in the city of Miami. Rich old guys love to retire here, play golf, and fund pet projects. Anecdotally, I've seen a lot more VC activity this year in Miami than I've seen in the last couple years. We've started to get [hip coding bootcamps](https://wyncode.co/), [innovation centers](https://www.microsoftinnovationcenters.com/locations/miami), startup oriented co-working spaces--all with Miami cultural flare (and, of course, our new, delicious, [local craft brews](https://www.timeout.com/miami/bars/best-craft-beer-bars-in-miami)). \n\n### Excitement\n\nIf you hear something weird on the news, chances are, it probably happened in Florida. From [throwing gators into drive through windows](http://www.foxnews.com/leisure/2016/04/08/video-released-customer-throwing-alligator-through-wendys-drive-thru/), to (multiple!!) [face-eating incidents](http://www.miamiherald.com/news/state/florida/article95896387.html), to the good ol' days of the [Cocaine Cowboys](https://en.wikipedia.org/wiki/Cocaine_Cowboys), you can bet that you'll never be bored in Florida. \n\n### My Parents Moved to Sarasota\n\nSorry Mom and Dad, I love you guys, but I want at least a couple hours between us so I can live my life. Lucky for me, it's a nice 3 hour drive right across Alligator Ally. Many of my friend's parents moved over there after we went to University or moved out. \n###### Side note: @charlieshrem I'm so sad I can't come up visit my parents and go to your dinner chat because I'm going to Devcon, but I REALLY want to meet you. I hope you're down here again soon! \n\n\n## So, why are all you startup guys killing yourselves to live in NYC or Cali? Come unwind, thaw out, and get your hustle on! [DAL\u00c9!!!](https://www.youtube.com/watch?v=p2OLJIbfTm8)\n\n## -Kat\n### Forever a Miami Baby\nhttp://i.imgur.com/g6TA5vS.jpg\n\nhttp://i.imgur.com/d7amgmp.jpg", + "category": "life", + "children": 4, + "created": "2016-09-12T17:18:57", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://i.imgur.com/s1ax1cU.jpg", + "http://i.imgur.com/QVMcQUH.jpg", + "http://i.imgur.com/l9HLcTC.jpg", + "http://i.imgur.com/J8knNOj.jpg", + "http://i.imgur.com/JfucfI8.jpg", + "http://i.imgur.com/XShlu8K.jpg", + "http://i.imgur.com/JjHV1vu.jpg", + "http://i.imgur.com/g6TA5vS.jpg", + "http://i.imgur.com/d7amgmp.jpg" + ], + "links": [ + "https://en.wikipedia.org/wiki/Mariel_boatlift", + "http://caribbeanpot.com/the-ultimate-curry-goat-recipe/", + "https://en.wikipedia.org/wiki/State_income_tax#States_with_no_individual_income_tax", + "http://www.miaminewtimes.com/news/miami-is-now-number-two-for-startup-activity-7802965", + "https://wyncode.co/", + "https://www.microsoftinnovationcenters.com/locations/miami", + "https://www.timeout.com/miami/bars/best-craft-beer-bars-in-miami", + "http://www.foxnews.com/leisure/2016/04/08/video-released-customer-throwing-alligator-through-wendys-drive-thru/", + "http://www.miamiherald.com/news/state/florida/article95896387.html", + "https://en.wikipedia.org/wiki/Cocaine_Cowboys", + "https://www.youtube.com/watch?v=p2OLJIbfTm8" + ], + "tags": [ + "life", + "story", + "travel", + "writing", + "miami" + ], + "users": [ + "charlieshrem" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 25528795232445, + "payout": 44.374, + "payout_at": "2016-09-19T17:18:57", + "pending_payout_value": "44.374 HBD", + "percent_hbd": 10000, + "permlink": "startups-moving-and-cryptocurrency-why-i-picked-miami", + "post_id": 1221864, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 39 + }, + "title": "Startups, Moving, and Cryptocurrency- Why I picked Miami", + "updated": "2016-09-12T17:18:57", + "url": "/life/@kato/startups-moving-and-cryptocurrency-why-i-picked-miami" + }, + { + "active_votes": [ { - "rshares": 215103953, - "voter": "lasseehlers" + "rshares": 464880569, + "voter": "andrew-jesus" }, { - "rshares": 50816343, - "voter": "bitchplease" + "rshares": 118415213, + "voter": "dc-245horsepower" + } + ], + "author": "dc-245horsepower", + "author_payout_value": "0.000 HBD", + "author_reputation": 25.0, + "beneficiaries": [], + "blacklists": [], + "body": "![](http://media-cache-ak0.pinimg.com/736x/7a/a9/70/7aa970bb7c5f078c86a379af4513aa1c.jpg)\n\nDear Friends, \n \nThe story that I\u2019m going to tell you is based on a friend of mine who will later be known as a pathological liar.\n \nLet me introduce the main characters of this story: My friend and I. My name is Jane, of course it\u2019s an alias. I studied economics at a top university in Thailand but I wasn\u2019t as good as my friend, Lena. Lena by that time was chubby and had acne scars on her pinkish cheeks. She was the smartest student in our class. She\u2019s fluent in English because she\u2019s from an international school in Bangkok while I\u2019m from the countryside. I consider my English to be poor. We both stayed in the university dorm because our university is far from Bangkok. While I stayed at the dorm throughout the semester, Lena would go back home every weekend. We became close friends as freshmen because we shared classes and activities together. That changed when we turned sophomores because we were in different majors and rarely had a chance to talk anymore. As far as I know, she got first class honor when she graduated. Then we lost complete contact after that.\n \nFor those who don\u2019t know what a pathological liar is, I have a short explanation here. Pathological liars are people who continually lie or make up stories that never exist in their lives. Their lying tends to be their normal manner or habit. You can find more information here: https://en.wikipedia.org/wiki/Pathological_lying . Anyway, after 7 years I graduated in 2015. Thanks (or maybe no thanks) to Facebook, I finally met Lena again. I added her as a Facebook friend and according to her profile it seems like she\u2019s changed a lot from when I knew her during our freshman year at the university. Lena is slimmer! There are not many pictures of her on Facebook. As I can tell from her pictures on Facebook, Lena seemed to be so shy. I can\u2019t see her face clearly. I only remember her long, light, beautiful, brown hair as she always dyed it when she was at the university. She also seemed to have a luxurious life. She always checked in at hi-class restaurants, posting food pictures. Dozens of likes and comments about her life and food are always common as she had over 300 friends on Facebook; \u201cI\u2019m so jealous\u201d, \u201cI want to go to that restaurant\u201d, \u201cYou are so beautiful\u201d. As for me, I can only afford one of those luxurious dinners a month or less because my mortgage already takes out one third of my salary.\n \nOne day, while I was walking in a city center department store, I noticed that Lena checked in at the same department store as I was. I spontaneously texted her on Facebook messenger: Hey Lena, I saw you check in, I\u2019m at Paragon (the department store) too! She replied, \u201cNice, wanna meet up? I\u2019m at Mandarin Oriental Shop B floor with my boyfriend and his parents\u201d (oooh, that's a very luxurious shop). She offered \u201cI can go out and meet you at the food court for a minute\u201d. I spontaneously replied \u201cNope, it\u2019s ok. Thanks for asking. You\u2019re with your bf's parents. I don\u2019t think you should leave them. We can meet later. I won\u2019t\u2019 bother you. Enjoy dinner! Here\u2019s my number and line ID, we can talk via line.\" Note to reader: In Thailand, Line is the most popular messenger app. You can also create a group chat and so on. \n\nThat night Lena sent me line message. Hey Jane. I\u2019m so sorry for today. I wanna meet you! How is life? I saw you on Facebook. What are you doing? Lots of questions, lots of updates came in that night and days after. Lena told me her story about her family, boyfriend and friends. Her family business sells tractors and luxurious cars. Lena wants to open a coffee shop chain in a new (being built) department store but her father asked that she do more research before investing in this business.\n\nLena has a boyfriend, Tim, who owns a tour company. They\u2019ve been dating for 1 year. She has a close friend named Jonathan, aka Jonno. Lena told me that she does\u2019t have many friends and Jonno is the closest one. The reason why they are so close is because Jonno is a friend and also an employee to Lena\u2019s father who's hired him to take care of her almost 24/7 with a salary of 5K (Me: what the\u2026!!!). Since Jonno is gay, her father trusts him to do this job (taking care of her like a nanny). \n\nOne day we manage to meet for dinner. Finally, an in-person meeting! I met Lena at a restaurant. When she walked into the restaurant Lena looked so gorgeous. Lena is so slim now. She\u2019s prettier than she was at the university. Lena explained that the reason she is so slim is because she got brokenhearted by her ex who is a consul. They lived far apart. They rarely met. She also told me that her current boyfriend is so boring. They had bad SEX! (Me: Oyyoiyoi! She was telling me her private life!). We caught up a lot and she said she will introduce Jonno to me later when we meet again. Oh my! I became closer to her after the first meeting. (to be continued)", + "category": "pathological", + "children": 0, + "created": "2016-09-12T15:31:12", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "http://media-cache-ak0.pinimg.com/736x/7a/a9/70/7aa970bb7c5f078c86a379af4513aa1c.jpg" + ], + "links": [ + "https://en.wikipedia.org/wiki/Pathological_lying" + ], + "tags": [ + "pathological", + "relationship", + "life", + "psychology", + "love" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 583295782, + "payout": 0.0, + "payout_at": "2016-09-19T15:31:12", + "pending_payout_value": "0.000 HBD", + "percent_hbd": 10000, + "permlink": "my-friend-is-a-pathological-liar01", + "post_id": 1220825, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 2 + }, + "title": "My Friend Is a Pathological Liar_01", + "updated": "2016-09-12T16:21:39", + "url": "/pathological/@dc-245horsepower/my-friend-is-a-pathological-liar01" + }, + { + "active_votes": [ + { + "rshares": 1353165493, + "voter": "endgame" }, { - "rshares": 9139334850, - "voter": "craigwilliamz" + "rshares": 139153056195, + "voter": "bonface" }, { - "rshares": 3011280076, - "voter": "imag1ne" + "rshares": 415541749, + "voter": "luisucv34" }, { - "rshares": 2184465097, - "voter": "shadowspub" + "rshares": 238767314, + "voter": "soggypotatos" }, { - "rshares": 73690784, - "voter": "uziriel" + "rshares": 4822402940, + "voter": "gustavopasquini" }, { - "rshares": 7622915570, - "voter": "einsteinpotsdam" + "rshares": 52207362, + "voter": "reported" }, { - "rshares": 23655234577, - "voter": "laonie11" + "rshares": 275446808, + "voter": "cris.emilia" }, { - "rshares": 52648880881, - "voter": "luminousvisions" + "rshares": 23273897441, + "voter": "jasonstaggers" }, { - "rshares": 3411072843, - "voter": "xanoxt" + "rshares": 6091765227, + "voter": "french.fyde" }, { - "rshares": 4379700279, - "voter": "l0k1" + "rshares": 513156982, + "voter": "minnowsunited" }, { - "rshares": 465069683, - "voter": "areynolds" + "rshares": 59002619, + "voter": "makaveli" }, { - "rshares": 50784892, - "voter": "freesteem" + "rshares": 191761463, + "voter": "abnerpasquini" }, { - "rshares": 51061585, - "voter": "jamespro" + "rshares": 163701239, + "voter": "steemit-recipes" }, { - "rshares": 201635244360, - "voter": "asksisk" + "rshares": 65362056, + "voter": "ozertayiz" }, { - "rshares": 1701267958, - "voter": "kiwideb" + "rshares": 1719320902, + "voter": "ines-f" }, { - "rshares": 25321504005, - "voter": "dubi" + "rshares": 474854400, + "voter": "edgarsart" }, { - "rshares": 659649765, - "voter": "ct-gurus" + "rshares": 166312443, + "voter": "laskoff" + } + ], + "author": "gustavopasquini", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.39, + "beneficiaries": [], + "blacklists": [], + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-16.png?w=620&h=465\n\n> ### I would like to contribute to this community a Gastronomic Experiences By Chef Gustavo Pasquini ft. Chef Steemit\n\n# INGREDIENTS\n\n \n## Main Ingredients\n\n \n> 800g tenderloin\n\n> Salt, pepper\n\n> Egg wash Celestine crepes\n\n> 75g flour\n\n> 150ml Milk\n\n> 2 eggs\n\n> 10g butter\n\n> Salt, pepper\n\n \n## Sauce\n\n \n> 2 shallots\n\n> 100ml veal stock and beef trimming\n\n> 50g butter\n\n> 50g carrots\n\n> 50g onions\n\n> 50g celery\n\n> 50g garlic\n\n> 1 bouquet of herbs\n\n \n## Turned vegetables\n\n \n> Carrots\n\n> Turnips\n\n> Butter\n\n> Salt, sugar\n\n \n## Doll \u2013 Pastry\n\n \n> Pastry to cover the meat.\n\n \n# PREPARATIONS\n\n> ### Beef \u2013 20m cook\n> ### Temperature 180 \u00b0\n\n \n### STEP 1 \u2013 Sieve the flour and mix with the eggs. Slowly add milk to the mix. Melt the butter and chop in your herbs. Filter the liquid, add the melted butter and mix all together.\n\n \n### STEP 2 \u2013 Tie string loosely around the meat. Cut and retain the trimmings. Fry the meat, then add salt and pepper and put the meat in the freezer for 10 minutes.\n\n \n### STEP 3 \u2013 Cut the carrots, onions, celery and shallots into small cubes. Fry the vegetables, meat trimmings, garlic and butter in a pan for 3 minutes. Remove the vegetables and meat from the pan. . Add the stock to the saucepan and start scratching the saucepan for 30 seconds. Filter the stock from the saucepan and reduce until it becomes a sauce. Add salt and serve.\n\n \n### STEP 4 \u2013 Take the meat from the freezer. Cut the string around the meat. Cover the entire meat with doll pastry. There must be two lines of doll pastry, one on the top of the meat and the other at the bottom of the meat. Press very well around the meat with the fork. Add egg wash to the top of the pastry and cook in the oven for 20 minutes.\n\n \n### STEP 5 \u2013 Peel the carrots and turnip and cut them into slices. Boil these for 10 minutes and fry with butter. Add salt and pepper to serve.\n\n \n## By Chef Gustavo Pasquini\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/12/beef-fillet-wellington/)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465", + "category": "food", + "children": 6, + "created": "2016-09-12T14:09:18", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-16.png?w=620&h=465", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/12/beef-fillet-wellington/" + ], + "tags": [ + "food", + "health", + "recipes", + "cooking", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 179029722633, + "payout": 0.045, + "payout_at": "2016-09-19T14:09:18", + "pending_payout_value": "0.045 HBD", + "percent_hbd": 10000, + "permlink": "beef-fillet-wellington", + "post_id": 1219992, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 17 + }, + "title": "Beef Fillet Wellington", + "updated": "2016-09-12T15:10:36", + "url": "/food/@gustavopasquini/beef-fillet-wellington" + }, + { + "active_votes": [ + { + "rshares": 7861629418, + "voter": "woo7739" }, { - "rshares": 403404632817, - "voter": "charlieshrem" + "rshares": 23936664613, + "voter": "alexgr" }, { - "rshares": 61821059989, - "voter": "tracemayer" + "rshares": 353367913, + "voter": "murh" }, { - "rshares": 3073603178, - "voter": "landofcrypto" + "rshares": 91847003822, + "voter": "mctiller" }, { - "rshares": 474509334, - "voter": "anomaly" + "rshares": 6846836651, + "voter": "micheletrainer" }, { - "rshares": 232237691, - "voter": "dedi" + "rshares": 392021847294, + "voter": "ericvancewalton" }, { - "rshares": 61292139, - "voter": "inarix03" + "rshares": 18758871337, + "voter": "mindover" }, { - "rshares": 382602825, - "voter": "ola1" + "rshares": 26177376830, + "voter": "strangerarray" }, { - "rshares": 1616265191, - "voter": "robotev" + "rshares": 1353435083444, + "voter": "renohq" }, { - "rshares": 1288421610, - "voter": "aksinya" + "rshares": 2697564872, + "voter": "future24" }, { - "rshares": 53375937, - "voter": "ninjapainter" + "rshares": 6998560158, + "voter": "cristi" }, { - "rshares": 1539512961, - "voter": "yanik" + "rshares": 1625494481, + "voter": "freewill" }, { - "rshares": 1630327346, - "voter": "rusteemitblog" + "rshares": 4162000203, + "voter": "steemitpatina" }, { - "rshares": 651666019, - "voter": "ysa" + "rshares": 62192336, + "voter": "lovetosteemit" }, { - "rshares": 74838700, - "voter": "dealzgal" + "rshares": 7514506798, + "voter": "lukeofkondor" }, { - "rshares": 68013381, - "voter": "storage" + "rshares": 59594290, + "voter": "sunjo" }, { - "rshares": 58460105, - "voter": "blackmarket" + "rshares": 179120276, + "voter": "anomaly" }, { - "rshares": 61530871, - "voter": "gifts" + "rshares": 197331756, + "voter": "mlialen" }, { - "rshares": 156881056, - "voter": "alexandrapop" + "rshares": 1515493330, + "voter": "robotev" }, { - "rshares": 96643251, - "voter": "expat" + "rshares": 544309621, + "voter": "grisha-danunaher" }, { - "rshares": 1626865374, - "voter": "steemlift" + "rshares": 185189971, + "voter": "mexresorts" }, { - "rshares": 138651704, - "voter": "toddemaher1" + "rshares": 149960579, + "voter": "mikerano" } ], - "author": "bkkshadow", + "author": "micheletrainer", "author_payout_value": "0.000 HBD", - "author_reputation": 54.39, + "author_reputation": 58.35, "beneficiaries": [], "blacklists": [], - "body": "

Earlier this year I was married in a traditional Thai marriage ceremony in the north of Thailand and I thought some of you may be interested about what goes on. I can tell you it's lots of fun mixed with a healthy dose of traditions. If you have a short attention span then feel free to watch the 5 minute video. I've put it at the top, it has groovy music and captures the essence of the day. \n\nFor those of you who would like to know more, then keep scrolling as I go into pain-staking detail of each of the sections of the wedding along with some pictures. Anyway, I hope you enjoy it, it was certainly a day I will never forget.\n\nLet me tell you I posted this story in the early days of steemit and I think about 6 people saw it. So I have edited it a bit and formatted it to look better. So, I hope you are OK with my re-post. Thanks\n

\n- - - \n
The 5 min Highlights Video.
\n
\n.\n

.
\n- - - \nThe wedding day kicks off early! (around 6:30am)...and so it begins with....

\n

1.THE KHAN MAAK PROCESSION

\n
THE BRIDESMAIDS:
\n


\n
THAI TRADITIONAL DANCERS:
\n

\n
THE KHAN MAAK PROCESSION:
\n

Ok. So first things first. We have to come to the house, and we can't just rock up and knock on the door and say "Heh we are here for the wedding!". No, that wouldn't do. I must collect my rabbly entourage of family and friends and assorted village vagabonds and assemble them at a point a few hundred metres up the road. From here we must sing, dance and shout our impending arrival as we make our way up the street.

\n

The procession is lead by the groom\u2019s representative or (\u201c\u0e40\u0e16\u0e49\u0e32\u0e41\u0e01\u0e48) Thao Gae\u201d, in this case it was a professor from my wife's university. He was my guide, and helper as I had never done this before. I got the idea that it wasn't his first time at the rodeo. Also as a respected guest he was going to help me gain entry to the fortress that lay ahead. Joining us were my parents, relatives and friends carrying flowers, incenses, candles and gifts, all which were required for the ceremony. Also at the front of the procession were drummers and traditional folk dancers, who making all the banging, clanging and swirling to announce our arrival to everybody in the surrounding village.

\n

Banana leaves and sugar cane storks were given to some of the stronger members to carry, while others had the responsibility of bringing the traditional gifts of the Kan Maak, which included rice, sesame seeds, some small amounts of Thai food for the feast, a selection of Thai desserts. I'd been told sometimes a pigs head was involved, but thankfully not today. My brother and one of my wife's aunt were entrusted with the monetary gifts and other precious items, such as gold and jewellery, which would make up the dowry. A lot of these gifts represent important aspects of marriage, such as health, prosperity, fertility and longevity.

\n

2. PASSING THROUGH THE GATES (\u0e1e\u0e34\u0e18\u0e35\u0e01\u0e31\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e15\u0e39)

\n

\n
PASSING THROUGH THE GATES (\u0e1e\u0e34\u0e18\u0e35\u0e01\u0e31\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e15\u0e39)
\n

In order for the wedding to commence, I had to first collect my bride-to-be from her room inside the family house. Simple enough? Not really.....To do this I had to successfully navigate through a series of gates which only opened upon completion of certain challenges. These symbolic barriers would only be opened once I had proved my worth to the keepers of the \u201clocks\u201d.

\n

Normally, there are just 3 of these symbolic \u201cgates\u201d, but sometimes there may be more, and in my case there were. The gates were made up of strings of orchids, or chains of silver and gold, and each one was held by either close friends or young family members of the bride. I think I sang, danced and bribed my way through 9 gates before I made it to the house mostly in one piece, Indiana Jones would have been proud.. thankfully, my " Thao Gae" (I mentioned him earlier) was a shrewd negotiator and also commanded a bit of respect.

\n

As I passed each challenge, the toll for each subsequent \u201cgate\u201d continually increased as I advanced. I gave the first few gatekeepers 100 Baht ( about $3) to open the door. By the time I got to the last road-block I think her teenage cousins wrangled 1,000 Baht ($30 each) out of me, not bad for 5 minutes work...This wass undoubtedly one of the most frivolous and fun parts of the wedding as I bartered with the various gatekeepers to let me through.

\n

3. MONKS BLESSING

\n

\n
Monks Blessing
\n

Once the gates have been successfully negotiated, I was allowed to collect the bride from her room to continue the next part of ceremony which was the monks blessing. We had 9 monks (auspicious number) and they chanted their way through a succession of blessings whilst a lit candle was placed in a bowl of water. This water was then used later to bless us. A bowl of white paste was also blessed which was also used later to anoint our foreheads, you may notice the white dots on our faces.

\n

Although more solemn than the previous shenanigans on the way in, I still enjoyed this moment very much. The eldest monk has known my wife since the day she was born and watched her grow into the woman she is today.

\n

After the chanting had finished, we offered food to the monks. Nobody else wass permitted to eat until the monks had finished their meal. After they had eaten, they took no further part in the ceremony, and after a brief chat, they trundled up the road back to the temple.

\n

4. COUNTING THE DOWRY (\u0e2a\u0e34\u0e19\u0e2a\u0e2d\u0e14)

\n


\n

\n
Counting The Dowry
\n

Next is the dowry ceremony. This is the part which is often difficult for foreigners to comprehend. I admit, for me, it goes against most of what I believe marriage to be about, however, it is an important part of the traditional ceremony, so we compromise in marriage, and I compromised. The dowry is a symbol that the groom is financially able to care for his new wife.The concept of sinsod was initially brought in to ensure that one\u2019s daughter did not marry below her potential standing in life. To stipulate that her social, financial and professional status and reputation is preserved and secured. Although this is less relevant nowadays, the tradition remains.

\n

So my dowry was formally presented by my parents to my bride\u2019s mum on the Kan Maak tray. This particular dowry consisted of some money, gold, and jewellery, but may also include title deeds to property in some cases. The dowry was then counted out onto a red cloth by my bride\u2019s mum. She put on a bit of a pantomime that it was too heavy to pick up. The amount of the dowry had been predetermined, (Please don't ask how much).
\n

\n

There is no set amount, the sum of sinsod is typically determined on the one hand by suitor\u2019s perceived wealth, and on the other hand by the \u201cvalue\u201d of the future wife. Her beauty, personality, background, education and other qualifications.More often than not, a part of the money is used to pay for the wedding ceremonies, parties and other related expenses. Dowries or sinsod payments range from THB 50,000 to 500,000 ($1500-$1500) and up.

\n

5. THE ENGAGEMENT (\u0e1e\u0e34\u0e18\u0e35\u0e2b\u0e21\u0e31\u0e49\u0e19)

\n


\n

\n
The Engagement
\n

Traditionally, the engagement is performed well in advance of the wedding, just as in western culture, but recently, it has become common for it to be carried out on the wedding day after Counting the Dowry. I mean, we got engaged about 6 months earlier, but we rolled the ceremonial aspect of this into the wedding. The engagement was a way of introducing the bride to the groom, who had been selected by her parents and gave a chance for the couple to get acquainted before the wedding, but nowadays most couples choose their own partners, as we obviously did ;)

\n

At this point, we exchanged rings, and I also took the jewellery from Sin Sod tray and placed them on my bride as well. The exchange is performed in front of the parents of both parties.

\n

6. THE THREAD AND WATER POURING (\u0e1e\u0e34\u0e18\u0e35\u0e2b\u0e25\u0e31\u0e48\u0e07\u0e19\u0e49\u0e33\u0e1e\u0e23\u0e30\u0e1e\u0e38\u0e17\u0e18\u0e21\u0e19\u0e15\u0e4c)

\n


\n

\n
The Thread and Water Pouring
\n

After the Sin Sod ceremony was finished, we got ready for water pouring ceremony.The water pouring is the most important part of the Thai wedding ceremony as during this part the couple officially become husband (\u0e2a\u0e32\u0e21\u0e35) and wife (\u0e20\u0e23\u0e23\u0e22\u0e32). Traditionally, this was all that was required to validate the marriage, but nowadays the couple are also required to obtain a marriage certificate (\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e2a\u0e21\u0e23\u0e2a) from the local registration office (Shh. we haven't done that yet).

\n

Before the water pouring took place, we must seat ourselves at the traditional water pouring tables (\u0e15\u0e31\u0e48\u0e07\u0e23\u0e14\u0e19\u0e49\u0e33 [Dtang Rot Naam]), with the bride to the left of the groom. We each had a ceremonial headdress (\u0e21\u0e07\u0e04\u0e25 [Mong Kol]) , made from one piece of cotton forming a circle and signifying the joining of us as a couple, placed upon our heads. The Mong Kol had been previously been blessed by the Buddhist monks earlier in the wedding.

\n

Then senior members of the family or special guests of honor performed the anointing of our foreheads with three dots of white powder to represent the shape of a pyramid. Traditionally, the powder is made of dirt or clay, ground, and mixed with holy water and blessed by Buddhist monks. As with all of the ceremony\u2019s traditional customs, the ritual is meant to bring good fortune to the couple. (more dots)

\n

We were ready for the water pouring to commence once we had placed both hands (palms together), overhanging the water pouring table and positioned above flowers that were arranged in a water tray, to capture the water that ran off. Each of the elder guests in turn will take the ceremonial water pouring conch shell (\u0e2a\u0e31\u0e07\u0e02\u0e4c\u0e23\u0e14\u0e19\u0e49\u0e33), which had been freshly filled with holy water from the Buddhist ceremony, and poured a trickle of water from the base of our thumbs to the fingertips over the groom and then the bride. Most also used this opportunity to give us their congratulations and best wishes.

\n

7. THE BRIDAL BED (\u0e1e\u0e34\u0e18\u0e35\u0e2a\u0e48\u0e07\u0e15\u0e31\u0e27)

\n

\n
The Bridal Bed
\n

After the water pouring ceremony was completed, we were sent to their bedroom. This is where things got a little weird. This is just a part of the wedding ceremony, we were not going to bed for real just yet. : ) although by this stage I was getting exhausted and could have used a little nap.

\n

The bed will was prepared by a married couple who had been happily married for a long time, in this case my mum and dad. Their knowledge and good luck was then imparted to us in a number of different ways. Nine meaningful items were placed on the bed as symbols of prosperity and fertility. They didn't really know what to do either do we kind of ad-libbed this a bit. But the goods on the bed were:

\n
    \n
  • One big brass tray (\u0e1e\u0e32\u0e19\u0e17\u0e2d\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07\u0e43\u0e2b\u0e0d\u0e48)
  • \n
  • A mortar as a symbol of steadily love (\u0e04\u0e23\u0e01\u0e1a\u0e14\u0e22\u0e32 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e08\u0e34\u0e15\u0e43\u0e08\u0e2b\u0e19\u0e31\u0e01\u0e41\u0e19\u0e48\u0e19)
  • \n
  • A cane as a symbol of long life (\u0e44\u0e21\u0e49\u0e40\u0e17\u0e49\u0e32 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e2d\u0e32\u0e22\u0e38\u0e22\u0e37\u0e19)
  • \n
  • A green squash as a symbol of happy and peaceful married life (\u0e1f\u0e31\u0e01\u0e40\u0e02\u0e35\u0e22\u0e27 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e04\u0e27\u0e32\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e22\u0e47\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e38\u0e02)
  • \n
  • A silver bag and gold bag of beans, sesame seeds and baking powder(\u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07\u0e04\u0e27\u0e32\u0e21\u0e40\u0e08\u0e23\u0e34\u0e0d\u0e07\u0e2d\u0e01\u0e07\u0e32\u0e21\u0e41\u0e25\u0e30\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1f\u0e37\u0e48\u0e2d\u0e07\u0e1f\u0e39)
  • \n
  • A bowl of rain water as a symbol of harmony (\u0e02\u0e31\u0e19\u0e43\u0e2a\u0e48\u0e19\u0e49\u0e33\u0e1d\u0e19 \u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e31\u0e04\u0e04\u0e35 \u0e1b\u0e47\u0e19\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e43\u0e08\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19)
  • \n
  • A white cat doll as a symbol of liking to stay at home (\u0e15\u0e38\u0e4a\u0e01\u0e15\u0e32\u0e41\u0e21\u0e27\u0e2a\u0e35\u0e02\u0e32\u0e27 \u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 \u0e23\u0e31\u0e01\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e23\u0e37\u0e2d\u0e19)
  • \n
  • A white chicken as a symbol of early rising (\u0e44\u0e01\u0e48\u0e02\u0e32\u0e27 \u0e15\u0e37\u0e48\u0e19\u0e14\u0e36\u0e01 \u0e25\u0e38\u0e01\u0e40\u0e0a\u0e49\u0e32)
  • \n
\n

Tradition states that we the newly-weds must sleep with these objects in the bed for the next 3 nights. And, yes we did.

\n

Act. 2 - The Thai Wedding Party (Reception as we know it)

\n


\nWhen Thai couples tie the knot, there are two wedding events; traditional Thai ceremony and the wedding party. Most do both in the same day with the traditional Thai ceremony in the morning followed by the party in the afternoon or evening. Some couples prefer to do them on a separate day. We did ours on the same day. We got a brief 30 minute respite in which to update our Facebook status (lol) and do a Superman costume change into the afternoon's attire.

\n

We held the party in an empty field next to the house, which suited me fine, as I'm not a fan of dingy hotel ballrooms. The torrential rain from the night before held off, and apart from a bit of mud underfoot, all was well.

\n

\n

A Thai wedding party is usually large (aka huge). We probably only had about 50 people for the ceremony in the morning but we catered for 800 for the party....Yes 800... Parents will invite almost every single person they know; family members, relatives, colleagues, neighbors and of course it includes the immediate family of those guests. The more people the parents and the couple know, the bigger the wedding. It appears my wife's family knew everyone in the surrounding village even if my wife didn't have a clue who half of them were.

\n

This is due to the Thai custom about \u2018face\u2019 \u2013 especially if the family has important status in the society. If you don\u2019t invite someone, they will feel insulted and you could lose the relationship with them. Often the wedding of the children is like a reunion party for the parents. For us, it involved lots and lots of picture taking followed by more picture taking. There was some food in there somewhere, along with a band and some more traditional dancers.
\n

\n

Thai people don\u2019t usually give wedding gifts, instead they give cash. When the guest receives the wedding invitation, they will use the envelope of the invitation card to put the cash in. Then when they arrive at the wedding party\u2019s reception, there will be money boxes for the guests to put the cash envelope in. You can also write wishes for the wedding couple in a guest-book prepared at the reception and receive a wedding souvenir.

\n

Lighting the candles & Cutting the Cake

\n

\n

Before cutting the cake, the wedding couple will light up three auspicious candles (\u0e40\u0e17\u0e35\u0e22\u0e19\u0e21\u0e07\u0e04\u0e25 ).
\nAfter that the cake was cut and we served it to out parents and closest relatives first. Pretty sure that big cake was just for show, and we had a smaller one for devouring.

\n

Eat, Drink and be Merry

\n

The rest of the afternoon was spent eating, drinking and chatting with the guests who remained. It's quite common for many of the guests to vanish quite quickly, as people get back to work or other activities. Regardless, a group of us stayed on till late in the evening recounting tales of times past.

\n

When the party was finished, we had to count the money they received and also make a note of the amount of the money they receive from each guest, so when they are invited to the guest\u2019s wedding or the wedding of the guest\u2019s child, they should put more money in the envelope.

\n

\n

Stay tuned for Pt.2

\n

Part 2: The Thai Beach Wedding, where we have a Western Ceremony by the beach. Yes we had 2 weddings, No that's not actually weird for foreign/Thai couples.

\n\nYou can see my post about our Thai Beach Wedding here: https://steemit.com/thailand/@bkkshadow/ever-wondered-what-a-thai-beach-wedding-was-like-video\n\n

I hope you enjoyed this as much as I did :) Please leave a comment if you have questions and I'll answer as best I can.

\n\n**Click here to:** \n\"dd8bd8753d41da7.gif\" ", - "category": "travel", - "children": 12, - "created": "2016-09-14T13:21:51", + "body": "http://www.happycow.net/blog/wp-content/uploads/2015/10/dessert.jpg\nVegans have to find the food before we can get on an airplane. To stay vegan we have to plan and do a bit of research. We have to know what we\u2019re eating and where it came from. It\u2019s always good to ask around for a personal recommendation. Sometimes that\u2019s tougher the more that we travel.\n\nMost of us use [HappyCow](https://www.happycow.net/) as a veg* travel resource before we go. Here we are going to look at the cities with the most vegan restaurants, and then we have some recommendations from HappyCow\u2019s International Ambassadors on their personal favorites in those cities. Enjoy!\n\n**TOKYO, JAPAN**\nTokyo is the most populous metropolitan area in the world with an area of 2,188 square kilometers (845 square miles), there are over 13 million people. The city has everything and is one of the fashion capitols of the world. It also has over 175 vegan and vegan-friendly restaurants. It is not only a densely populated city, but it is also one of the safest in the world. There are thousands of sites to see, places to shop, and even Buddhist temples to sit and relax in.\n\n       **Pure Cafe Toyko**\n\n      **Ain Soph.Journey**\n\n*Hanada Rosso \u201cFresh, healthy and comforting\u2026\u201d*\n\n \n\n**HO CHI MINH CITY, VIETNAM**\nA city of 9 million people, this is a vibrant and exciting city. Formerly known as Saigon, in recent years, Ho Chi Minh City has become an important trade and tourism hub for the entire world. The city is filled with sights and sounds that can be found nowhere else. The unique culture of Vietnam is embodied in this bustling and dynamic modern city.\n\n      **Hum** \u2013 Hum is a fine dining vegan/vegetarian experience that expounds the health benefits of food. They \n      even offer a great variety of raw dishes.\n\n*We ate delicious mushroom spring rolls, a coconut and jicama clay pot and a fermented bean tofu dish. To die for! \u2013 geminibec17*\n\n \n**NEW YORK CITY, NEW YORK**\nWith a population of eight and half million within the city as well as millions more less than 50 miles away, this is one of the greatest metropolises in the world. With Broadway, dozens of museums, many of the world\u2019s most iconic buildings, and a culture that is legendary, there are few places that you can visit that are more complete than New York City. One amazing fact: There are over 800 languages spoken in New York, making it the most linguistically diverse place in the world.\n\n      **Blossom** \u2013 Not just some of the best vegetarian dining in the world, Blossom is considered one of the finest \n      restaurants in New York, period.\n\n*The food was absolutely wonderful! Great atmosphere and friendly staff as well \u2013 I highly recommend it. \u2013 kelskris*\n\n\n      **HanGawi (Korean)** HanGawi is one of the most popular all vegan restaurants in the city. They feature many traditional vegan foods from Korea, including mountain roots and grains.\n\n*I was blown away by the creative, vegan Asian menu. There was so much choice and everything I ate was perfect. \u2013 FrancescaRose*\n\n\n      **Candle 79** \u2013 One of the best reviewed vegan restaurants in the New York City, they even have an organic wine and sake bar.\n\n*Unbelievable menu, great atmosphere, fabulous service! May come back again tomorrow!!! \u2013 christincollins*\n\n
http://www.happycow.net/blog/wp-content/uploads/2015/10/12079544_10156200660945331_1506718634851976835_n.jpg
\n\n
http://www.happycow.net/blog/wp-content/uploads/2015/10/12046801_10156200660720331_2402665931858566839_n.jpg
\n
**Peacefood\u2019s Raw Lasagna**
\n\n      **Peacefood** \u2013 International vegan food at its finest with raw foods, juices and even a bakery.\n\n*This place lived up to my expectations and I would gladly go again. Amazing food and an amazing vibe! \nAmanda7196*\n\n*Franchia \u2013 The sister restaurant to HanGawi, this wonderful restaurant offers modern international vegan foods.*\n\n*Great service, high quality food, amazing atmosphere \u2013 reneeareneea*\n\nhttp://www.happycow.net/blog/wp-content/uploads/2015/10/Kopps-Berlin-1.jpg\n**BERLIN, GERMANY**\nBerlin is one of the most vegan-friendly cities in the world. Europe\u2019s most populous city has a history that dates back to the Roman Empire and before. At the heart of the world\u2019s most influential countries, Berlin is a city filled with fun things to do and great places to eat. For hundreds of years, Berlin has been the crossroads of Europe and a vital part of the world economy.\n\n\n      **Cafe V** \u2013 German-style dishes made with tofu and seitan. They also have pizza and much more.\n\n*This is absolutely still my favourite veggie place in Berlin, as well as in Germany. \u2013 hack_man*\nhttp://www.happycow.net/blog/wp-content/uploads/2015/10/Kopps-Berlin-2.jpg\n\n\n      **Kopps** \u2013 Kopps offers an outstanding 5-course prix fixe menu. There is an outstanding wine list and lovely food.\n\n*Just finished the 5 course menu. Enjoyed every bite of it. \u2013 RobertHol*\n\n*Yellow Sunshine \u2013 This is an inexpensive vegan fast food restaurant serving traditional German and international foods.*\n\n*This was possibly THE BEST vegan burger I\u2019ve ever had and I had more than a few. \u2013 k-girl80*\n\n\n      **Sfizy Veg** \u2013 Pizza, pasta, and Panini sandwiches \u2013 need we say any more?\n\n*Nice cozy restaurant with a relaxed feeling. Highly recommended. \u2013 daniellundh*\n\n      **Vego Foodworld** \u2013 This restaurant has many traditional fast foods, all delicious and vegan.*\n\n*Fun & novel vegan junk-food run by a company that makes vegan chocolate bars. \u2013 Exquire*\n\n \n\n**BANGKOK, THAILAND**\nThere are few cultures that are as wonderfully unique and exciting as Thailand. The food of the country reflects the thousands of years of culture and tradition that people have been cooking here. The vegan food culture shares these flavors. Be sure to visit the ancient temples and modern architecture when you are in this astounding city.\n\n      **Govinda** \u2013 Upscale Italian dining in the heart of Bangkok Thailand. Your brain might be confused, but your taste buds won\u2019t be.\n\n*Finally a vegetarian Italian getaway in Bangkok. Grazie mille! \u2013 SteffySteff*\n\n      **May Veggie Home** \u2013 May Veggie Home offers many faux meats, including oyster mushroom curry and more.\n\n*I have been to this restaurant 3x in the past two days. \u2013 dianebash*\n\nhttp://www.happycow.net/blog/wp-content/uploads/2015/10/11109149_1057869664227668_1160167205790668315_n.jpg\n\n\n      **Mango** \u2013 A mix of Thai and western foods with an art gallery and even free Wi-Fi, Mango is modern vegan dining and culture mixed together.\n\n*Really friendly staff/owners and excellent food highly recommend. \u2013 Changiboy*\n\n\n      **Jay Vegetarian Restaurant** \u2013 A vegetarian/vegan buffet\u2026 doesn\u2019t that sound amazing? It\u2019s worth the trip to Jay Vegetarian Restaurant.\n\n*\u201cI really love this authentic stall, run by a lovely woman in a small lane: http://www.happycow.net/reviews/jay-vegetarian-restaurant-bangkok-54690 It\u2019s about $1 for a buffet-style meal. There are a couple of dishes with egg, but she understands the word egg.\u201d*\n\n\n      **Baan Suan Pai**\u2013 One of the best reviewed in Thailand, this restaurant is located in the courtyard of a yoga and retreat compound.\n\n*\u201cIt\u2019s a much fancier food court but still not expensive at all, maybe 2-3$ per meal. That\u2019s really close to the BTS station.\u201d Jule Kunkel*\n\n Thank you to HappyCow Ambassadors who shared with me their favorite restaurants in these fine cities!\n\nThis compilation was from a casual poll. I asked the ambassador group, on Facebook \"What is your favorite vegan city and restaurant?\" This list is not inclusive or global, just a poll, thank you for understanding. I'd love to know your choices too!\n\n*Images are from restaurants with explicit permission from each restaurant. Permission to include each ambassador and their comments also explicit*\n NOTE--this \n\n\u85cd\u4e91\u541b\n\nIsabel Marmolejo\n\nFay Julia\n\nMelissa Chan\n\nVegano Solo\n\nAndrzej Mlynski\n\nManual Lynch\n\nLara Nicole\n\nDee Fancett\n\nAlysoun Mahoney\n\nJonathan Mauirce\n\nJule Kunkel\n\n For more vegan content from Michele the Trainer visit the Happy Cow blog, http://www.EngineeringWellness.com and http://www.MicheletheTrainer.com/press", + "category": "food", + "children": 4, + "created": "2016-09-12T08:57:24", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12496381_1077125985654667_6877914067094171270_o3d0c1.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12642550_10208457787385067_8607015292500155281_n7bc63.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/11181948_10208457810145636_2445300566550295799_n001d7.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12646972_10208457829026108_2159037764911094443_n18556.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/1936966_10208457857546821_8495313954892798009_n73db8.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647460_10208457863426968_3192397085304096848_na6906.jpg", - "https://img1.steemit.com/0x0/http://images.freeimages.com/images/premium/large-thumbs/1759/17595965-headache.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12705258_805141222931506_4453740646358700893_n06042.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12642771_10154007838824367_2870077142764225994_nd3d88.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12592723_10208458150874154_1172827492603314017_n2b041.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647237_10208457963829478_3615902582821576623_n31538.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/5613072010035547817e4.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/1929992_10208458234956256_5010162520827238836_nb94e2.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12592469_10208458697167811_570179526128667858_n07e5f.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647520_10208458164834503_7645634436442074275_n6a48d.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12647146_10204110386320266_7030143074989390932_n17dcb.jpg", - "https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/01/12650955_10208458277437318_4345598323686671232_n7c3a9.jpg", - "https://www.steemimg.com/images/2016/08/27/dd8bd8753d41da7.gif" + "http://www.happycow.net/blog/wp-content/uploads/2015/10/dessert.jpg", + "http://www.happycow.net/blog/wp-content/uploads/2015/10/12079544_10156200660945331_1506718634851976835_n.jpg", + "http://www.happycow.net/blog/wp-content/uploads/2015/10/12046801_10156200660720331_2402665931858566839_n.jpg", + "http://www.happycow.net/blog/wp-content/uploads/2015/10/Kopps-Berlin-1.jpg", + "http://www.happycow.net/blog/wp-content/uploads/2015/10/Kopps-Berlin-2.jpg", + "http://www.happycow.net/blog/wp-content/uploads/2015/10/11109149_1057869664227668_1160167205790668315_n.jpg" ], "links": [ - "https://www.steemimg.com/image/RoIIe", - "https://www.steemimg.com/image/RoRMa", - "https://www.steemimg.com/image/RovDB", - "https://www.steemimg.com/image/RoTmi", - "https://www.steemimg.com/image/RoaqI", - "https://www.steemimg.com/image/Roh4K", - "https://steemit.com/thailand/@bkkshadow/ever-wondered-what-a-thai-beach-wedding-was-like-video", - "https://steemit.com/@bkkshadow" + "https://www.happycow.net/", + "http://www.happycow.net/reviews/jay-vegetarian-restaurant-bangkok-54690", + "http://www.EngineeringWellness.com" ], "tags": [ + "food", "travel", - "story", - "love", - "thailand", - "wedding" + "vegan", + "vegetarian", + "life" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 69286398906806, - "payout": 283.896, - "payout_at": "2016-09-21T13:21:51", - "pending_payout_value": "283.896 HBD", + "net_rshares": 1947129999993, + "payout": 0.821, + "payout_at": "2016-09-19T08:57:24", + "pending_payout_value": "0.821 HBD", "percent_hbd": 10000, - "permlink": "my-thai-buddhist-wedding", - "post_id": 1243017, + "permlink": "the-world-s-greatest-vegan-cities", + "post_id": 1217836, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 105 + "total_votes": 22 }, - "title": "My Thai Buddhist Wedding:", - "updated": "2016-09-14T13:21:51", - "url": "/travel/@bkkshadow/my-thai-buddhist-wedding" + "title": "The World\u2019s Greatest Vegan Cities", + "updated": "2016-09-12T11:56:39", + "url": "/food/@micheletrainer/the-world-s-greatest-vegan-cities" }, { "active_votes": [ { - "rshares": 260705227219, + "rshares": 522093332672, + "voter": "barrie" + }, + { + "rshares": 12637706041204, + "voter": "smooth" + }, + { + "rshares": 376257921512, "voter": "anonymous" }, { - "rshares": 11178286565909, - "voter": "berniesanders" + "rshares": 1873994862739, + "voter": "badassmother" }, { - "rshares": 73213646352, - "voter": "nextgenwitness" + "rshares": 2093097260181, + "voter": "hr1" }, { - "rshares": 259348037384, - "voter": "justin" + "rshares": 6336877479265, + "voter": "fuzzyvest" }, { - "rshares": 711067521135, - "voter": "silver" + "rshares": 22822346145, + "voter": "jaewoocho" }, { - "rshares": 1726740952305, - "voter": "silversteem" + "rshares": 3726619858, + "voter": "boy" }, { - "rshares": 1917401685068, - "voter": "nextgencrypto" + "rshares": 1948369700502, + "voter": "xeroc" }, { - "rshares": 2790508712406, - "voter": "wang" + "rshares": 4524637141, + "voter": "bue-witness" }, { - "rshares": 168099094309, - "voter": "steemservices" + "rshares": 821041814, + "voter": "bunny" }, { - "rshares": 13244014543, - "voter": "bentley" + "rshares": 6582284717737, + "voter": "complexring" }, { - "rshares": 6447826841, - "voter": "james-show" + "rshares": 66102530876, + "voter": "bue" }, { - "rshares": 1414282787, - "voter": "murh" + "rshares": 1996752837, + "voter": "mini" }, { - "rshares": 16631704876, - "voter": "samether" + "rshares": 256577770, + "voter": "moon" }, { - "rshares": 4871806957, - "voter": "gustavopasquini" + "rshares": 442447241791, + "voter": "recursive3" }, { - "rshares": 817422571, - "voter": "bullionstackers" + "rshares": 2777108323950, + "voter": "recursive" }, { - "rshares": 1107455233, - "voter": "jillstein2016" + "rshares": 7329635597, + "voter": "bingo-0" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 1814004245, + "voter": "bingo-1" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 2362379200189, + "voter": "smooth.witness" }, { - "rshares": 8830294864, - "voter": "theconnoisseur" + "rshares": 443037102778, + "voter": "officialfuzzy" }, { - "rshares": 51749350, - "voter": "party1998" + "rshares": 750191506, + "voter": "healthcare" }, { - "rshares": 14497214931, - "voter": "thecurator" + "rshares": 1168134082, + "voter": "daniel.pan" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 346070380, + "voter": "helen.tan" }, { - "rshares": 5918377178, - "voter": "leavemealone" + "rshares": 14689422195, + "voter": "gregory-f" }, { - "rshares": 59967615173, - "voter": "thecyclist" + "rshares": 74770522144, + "voter": "eeks" }, { - "rshares": 54007264, - "voter": "alwayzgamez" + "rshares": 367651629, + "voter": "spaninv" }, { - "rshares": 438008616, - "voter": "anomaly" + "rshares": 32267220010, + "voter": "instructor2121" }, { - "rshares": 430428179, - "voter": "ola1" + "rshares": 336024528357, + "voter": "teamsteem" }, { - "rshares": 165241290, - "voter": "crimson" + "rshares": 20682399664, + "voter": "elishagh1" }, { - "rshares": 1406544738, - "voter": "yanik" + "rshares": 22544898312, + "voter": "acidyo" }, { - "rshares": 417211775, - "voter": "witchcraftblog" + "rshares": 156621131174, + "voter": "steve-walschot" }, { - "rshares": 166888364, - "voter": "laskoff" + "rshares": 938126815, + "voter": "coar" }, { - "rshares": 746759995, - "voter": "alienbutt" - } - ], - "author": "gustavopasquini", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-20.png?w=1000\n\n> ## Traditional Brazilian Appetizer Recipes\n\n# INGREDIENTS\n\n> 1/2 kg not too thin slices of ham\n\n> 1 small glass mayonnaise\n\n> 200 g of various pickles\n\n> 200 g of green olives\n\n> 2 boiled eggs\n\n# PREPARATION\n\n \n### 1. Mix the mayonnaise with pickles, olives and finely chopped egg\n\n### 2. Season with olive oil and Worcestershire sauce to taste\n\n### 3. If you want more sophisticated add some white raisins, seeded, chopped\n\n### 4. Place a little of the filling carefully over the slices of ham and wrap them\n\n### 5. Serve on lettuce leaves chopped\n\n### 6. It\u2019s a great cold starter and very decorative\n\n### 7. If you wish to serve as canap\u00e9s, just cut each roll in half and secure with a silver toothpick\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/14/rolls-of-ham-and-mayonnaise/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/46066-rolinhos-de-presunto-e-maionese.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", - "category": "food", - "children": 0, - "created": "2016-09-14T12:06:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-20.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" - ], - "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/14/rolls-of-ham-and-mayonnaise/", - "http://www.tudogostoso.com.br/receita/46066-rolinhos-de-presunto-e-maionese.html" - ], - "tags": [ - "food", - "health", - "recipes", - "cooking", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 19223627207122, - "payout": 25.204, - "payout_at": "2016-09-21T12:06:06", - "pending_payout_value": "25.204 HBD", - "percent_hbd": 10000, - "permlink": "rolls-of-ham-and-mayonnaise", - "post_id": 1242492, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 32 - }, - "title": "Rolls of ham and Mayonnaise", - "updated": "2016-09-14T14:54:24", - "url": "/food/@gustavopasquini/rolls-of-ham-and-mayonnaise" - }, - { - "active_votes": [ + "rshares": 96235455899, + "voter": "asch" + }, { - "rshares": 13150427241633, - "voter": "berniesanders" + "rshares": 353368831, + "voter": "murh" }, { - "rshares": 4567794608000, - "voter": "riverhead" + "rshares": 43582157545, + "voter": "ranko-k" }, { - "rshares": 86940176279, - "voter": "nextgenwitness" + "rshares": 65119101463, + "voter": "theshell" }, { - "rshares": 305111296887, - "voter": "justin" + "rshares": 62518368334, + "voter": "kanoptx" }, { - "rshares": 1003593968770, - "voter": "silver" + "rshares": 32251404090, + "voter": "drinkzya" }, { - "rshares": 2437285123299, - "voter": "silversteem" + "rshares": 18601449723, + "voter": "samether" }, { - "rshares": 201716648152, - "voter": "steemservices" + "rshares": 55830182236, + "voter": "thecryptodrive" }, { - "rshares": 817131904966, - "voter": "pfunk" + "rshares": 137688166752, + "voter": "bravenewcoin" }, { - "rshares": 98046716916, - "voter": "jchch" + "rshares": 32998761586, + "voter": "michaelx" }, { - "rshares": 894675953735, - "voter": "cryptogee" + "rshares": 181136872757, + "voter": "thedashguy" }, { - "rshares": 5641848486, - "voter": "james-show" + "rshares": 112813004984, + "voter": "geoffrey" }, { - "rshares": 9533594054, - "voter": "richman" + "rshares": 4779970759, + "voter": "ben99" }, { - "rshares": 1413642140, - "voter": "murh" + "rshares": 36117462158, + "voter": "cryptoiskey" }, { - "rshares": 7897515214, - "voter": "thecryptofiend" + "rshares": 510560493, + "voter": "mrhankeh" }, { - "rshares": 17847580402, - "voter": "samether" + "rshares": 52011072519, + "voter": "isteemit" }, { - "rshares": 87033822528, - "voter": "razvanelulmarin" + "rshares": 20352769693, + "voter": "thebatchman" }, { - "rshares": 158940876964, + "rshares": 165836806860, "voter": "asmolokalo" }, { - "rshares": 184016912684, - "voter": "anyx" + "rshares": 5023710065, + "voter": "expanse" }, { - "rshares": 33653917190, - "voter": "toxonaut" + "rshares": 10243974525, + "voter": "r4fken" }, { - "rshares": 1570700841, - "voter": "dimon14" + "rshares": 151065724095, + "voter": "derekareith" }, { - "rshares": 15415643197, - "voter": "heimindanger" + "rshares": 739478598, + "voter": "busser" }, { - "rshares": 66309573741, - "voter": "cheetah" + "rshares": 6450584980, + "voter": "owdy" }, { - "rshares": 78269782470, - "voter": "mibenkito" + "rshares": 2758658920, + "voter": "bitland" }, { - "rshares": 52733781913, - "voter": "driv3n" + "rshares": 10633838468, + "voter": "deviedev" }, { - "rshares": 2891871108, - "voter": "unrealisback" + "rshares": 14811165599, + "voter": "jaycobbell" }, { - "rshares": 16913258615, - "voter": "thecurator" + "rshares": 40691246755, + "voter": "condra" }, { - "rshares": 5711894376, - "voter": "trev" + "rshares": 39832863727, + "voter": "creemej" }, { - "rshares": 16098304653, - "voter": "mikemacintire" + "rshares": 94283196, + "voter": "wildchild" }, { - "rshares": 1698343166, - "voter": "runridefly" + "rshares": 170732643205, + "voter": "blueorgy" }, { - "rshares": 1575870056, - "voter": "quinneaker" + "rshares": 3502148099, + "voter": "simon.braki.love" }, { - "rshares": 9606888171, - "voter": "daveks" + "rshares": 3067726616, + "voter": "tarindel" }, { - "rshares": 52129459, - "voter": "gumer" + "rshares": 27638918317, + "voter": "deanliu" }, { - "rshares": 272947224, - "voter": "benjamin.still" + "rshares": 5148706149, + "voter": "rainchen" }, { - "rshares": 6149920815, - "voter": "dexter-k" + "rshares": 35471564248, + "voter": "zaebars" }, { - "rshares": 765205651, - "voter": "ola1" + "rshares": 124974272, + "voter": "biternator" }, { - "rshares": 439433705, - "voter": "borishaifa" + "rshares": 664224643, + "voter": "curator" }, { - "rshares": 190732946, - "voter": "payne" + "rshares": 1481159625, + "voter": "alex.chien" }, { - "rshares": 161662719, - "voter": "philinvancouver" + "rshares": 3025609165, + "voter": "tygergamer" }, { - "rshares": 3191370891, - "voter": "lscottphotos" - } - ], - "author": "dexter-k", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.67, - "beneficiaries": [], - "blacklists": [], - "body": "About two years ago now, my wife Sabrina and I were feeling a little ill, we had been bitten by the travel bug, but couldn't get away. We were stuck in Vancouver Canada, with just about enough money to pay the bills, but not much to do anything else. One thing we really truly love is traveling and exploring places we have never been, but this particular year it was really looking like a trip was just not going to happen. We didn't have the cash, things weren't working out the way we thought they needed to, we resigned to just stay home.\n\nThen out of nowhere, in the span of about a week, we ended up booking 2 jobs that we weren't expecting. Suddenly we had a fist full of cash (actually, a bank account balance slightly higher than normal) and since we had been planning on tightening up the belt as it were, this cash was basically bonus. I got to thinking about it for a day or two, then one afternoon I just turned to Sabrina and said \"Hey, so we've got this money now, do you want to go to China?\" \n\nWe both kinda laughed for a minute, then she said \"Yeah, I really do... do you think we can?\" \n\nTwo days later we had flights booked to Beijing, and 3 nights reserved at a hostel in the city, the rest was up to us to figure out as it came along. We look back at this insane, spontaneous decision with fond memories and warm laughter every time we talk about it. It was the start of one of the best trips we have ever been on together, and we don't regret a single thing. Even when one of our jobs cancelled late, and the person who was going to rent our place canned out last minute (double rent, yay!!), and we ended up running out of money about three quarters of the way into our trip (hi uh mom? yeah, so were in Cambodia, and well, you're not gonna believe this...). \n\nI'll be making more posts as a series eventually covering our entire trip through Asia, but for now I hope you enjoy looking through some of our memories from China!\n\n## Around Beijing\n\n###### Sabrina, on our way to Vancouver airport.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1f0cd4.jpg\n\n###### On the tarmac at Shanghai, about to board our connecting flight to Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer68f8570.jpg\n\n###### Sabrina was getting a little tired.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6370e2b.jpg\n\n###### On the way to Beijing!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3e45da.jpg\n\n###### One of the first images I took in Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer400960.jpg\n\n###### The alley way leading to our hostel, you can see the sign in the back \"Sunrise Hostel\" \nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer37b44ef.jpg\n\n###### Severe jetlag = waking up at 4:00 in the morning to explore Beijing.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer38c6101.jpg\n\n###### Later on that morning we were able to taste one of the worst simulated coffee flavored beverages ever to disgrace the face of this earth. But the view of the moat around the forbidden city was pretty nice!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4985986.jpg\n\n###### Told you it was pretty nice.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4873dd4.jpg\n\n###### I like this news stand, but don't understand a single thing on it.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6505a73.jpg\n\n###### Fresh milk, every morning.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64f490c.jpg\n\n###### Exploring the alleyways.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5296411.jpg\n\n###### Typical local Beijing market street, just around the corner from our hostel.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3418a94.jpg\n\n###### Drinks on the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer33349cd.jpg\n\n###### We found a Sabrina size motorcycle!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1770c03.jpg\n\n###### Sun setting above the rooftops.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer31f17fc.jpg\n\n###### Beijing is actually super cold in the winter, I thought these things were genius.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer456db5a.jpg\n\n###### Faded images.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer421c06c.jpg\n\n###### Manual street sweepers.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer66b3429.jpg\n\n## Folks on the Street\n\n###### Taking a break.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2603d89.jpg\n\n###### Street corner.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6768782.jpg\n\n###### In the hutongs.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer24e068e.jpg\n\n###### Across the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer23b1e01.jpg\n\n###### Transportation.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer22e55a2.jpg\n\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer21a1bde.jpg\n\n###### Advertising.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2839b82.jpg\n\n###### We loved this lady's outfit.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer140b4f4.jpg\n\n###### Cruisin the Hutongs.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer180ebc4.jpg\n\n###### Practicing on the street.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2769d90.jpg\n\n###### Homeless man across the street from a high end goods mall.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2951f25.jpg\n\n###### Street lion.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer441e40a.jpg\n\n###### More kittehs, I luuuuurves themmmm!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer46a5042.jpg\n\n## Funny and interesting signs and products\n\n###### WARNING DAOP DOWN! WARNING OVNTILATING!! This whole cluster of signs was hilarious and terrifying at the same time.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5d744a.jpg\n\n###### This guy is totally legit, these snacks are delicious!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64e9b7.jpg\n\n###### Back when I was a hipster.\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer777baf.jpg\n\n###### Delicious Pocari Sweat, drink it!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer102a929.jpg\n\n###### Guess what? CHICKEN BUTT!! No wait.. the other thing... CHICKEN FOOT!!\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer50fbe8b.jpg\n\n###### Saving water, you are the best! Urinating into the pool, you are the best! Flushing timely, you are the... Wait what was that last one?\nhttps://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer35b2554.jpg\n\n\nWell that's the first part of our travels through China, I hope you enjoyed the photos and as always if you did feel free to throw me an up vote, I appreciate each and every one of em'! And remember to follow me @dexter-k on Steemit for new content all the time. I'll be continuing this series soon, and eventually leading into Vietnam, Cambodia, and Thailand!\n\nDexter", - "category": "photography", - "children": 9, - "created": "2016-09-14T03:37:06", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1f0cd4.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer68f8570.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6370e2b.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3e45da.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer400960.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer37b44ef.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer38c6101.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4985986.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer4873dd4.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6505a73.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64f490c.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5296411.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer3418a94.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer33349cd.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer1770c03.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer31f17fc.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer456db5a.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer421c06c.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer66b3429.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2603d89.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer6768782.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer24e068e.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer23b1e01.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer22e55a2.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer21a1bde.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2839b82.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer140b4f4.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer180ebc4.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2769d90.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer2951f25.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer441e40a.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer46a5042.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer5d744a.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer64e9b7.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer777baf.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer102a929.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer50fbe8b.jpg", - "https://www.steemimg.com/images/2016/09/13/DallasKolotyloPhotography-AsiaTravelPhotographer35b2554.jpg" - ], - "tags": [ - "photography", - "travel", - "originalwork", - "china", - "" - ], - "users": [ - "dexter-k" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 24348722664016, - "payout": 35.569, - "payout_at": "2016-09-21T03:37:06", - "pending_payout_value": "35.569 HBD", - "percent_hbd": 10000, - "permlink": "traveling-in-china-part-i-the-streets-of-beijing-lost-in-translation-and-people-around-town-original-work", - "post_id": 1239649, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 39 - }, - "title": "Traveling in China Part I: The streets of Beijing, lost in translation, and people around town (original work)", - "updated": "2016-09-14T03:37:06", - "url": "/photography/@dexter-k/traveling-in-china-part-i-the-streets-of-beijing-lost-in-translation-and-people-around-town-original-work" - }, - { - "active_votes": [ + "rshares": 152970347, + "voter": "steemster1" + }, { - "rshares": 1061145996, - "voter": "edrivegom" + "rshares": 3172877896, + "voter": "glitterpig" }, { - "rshares": 4824065074, - "voter": "gustavopasquini" + "rshares": 5192754850, + "voter": "jed78" }, { - "rshares": 115689188, - "voter": "bitmap" + "rshares": 110596072879, + "voter": "steemdrive" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 4892969527, + "voter": "theprophet0" }, { - "rshares": 514947462, - "voter": "karenb54" + "rshares": 60565253, + "voter": "sharon" }, { - "rshares": 1188355724, - "voter": "future24" + "rshares": 61714352, + "voter": "lillianjones" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 24920943026, + "voter": "laoyao" }, { - "rshares": 2674808039, - "voter": "jrcornel" + "rshares": 17051441882, + "voter": "sunshine" }, { - "rshares": 262742262, - "voter": "lisadang" + "rshares": 1981961363, + "voter": "gmurph" }, { - "rshares": 91243143826, - "voter": "serejandmyself" + "rshares": 4771096291, + "voter": "miketr" }, { - "rshares": 2137793953, - "voter": "levycore" + "rshares": 21044216417, + "voter": "jphamer1" }, { - "rshares": 381529328, - "voter": "wuyueling" + "rshares": 1741929410, + "voter": "paynode" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 62188234, + "voter": "msjennifer" }, { - "rshares": 78546002, - "voter": "crowe" + "rshares": 57196572, + "voter": "ciao" }, { - "rshares": 699303092, - "voter": "edgarsart" + "rshares": 56682205, + "voter": "steemo" }, { - "rshares": 3384753961, - "voter": "patelincho" + "rshares": 56535984, + "voter": "steema" }, { - "rshares": 426281596, - "voter": "witchcraftblog" - } - ], - "author": "gustavopasquini", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-19.png?w=1000\n\n> ## Traditional Brazilian Desserts Recipes\n\n# INGREDIENTS\n\n> 2 phyllo packages (400g)\n\n> 1 egg yolk beaten\n\n> 400g chopped chocolate\n\n> 1 can of cream\n\n> 150ml fresh cream\n\n> 2 tablespoons (soup) of sugar\n\n> 1 box of strawberries\n\n \n# PREPARATION\n\n### 1. Cut nine circles with the puff pastry. Brush the egg yolk, distribute on baking sheet and bake in the preheated oven at 180 degrees until golden brown. Reserve.\n\n### 2. In double boiler or in the microwave melt the chocolate and stir in sour cream.\n\n### 3. Refrigerate until firm. Then beat in the mixer until light and fluffy. Reserve.\n\n### 4. In electric mixer, beat the cream with the sugar until to the point of whipped cream. Reserve.\n\n### 5. Wash, dry and chop the strawberries. Mounting: Mount 3 towers, alternating discs, chocolate cream and strawberry.\n\n### 6. On top cover with whipped cream and garnish with strawberries.\n\n \n# Tip\n\n ### Bake the scraps left over the pastry and serve with sprinkled sugar.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/puff-pastry-of-chocolate-and-strawberr/)\n\n> ### [Recipe Site ](http://gshow.globo.com/receitas-gshow/receita/folhado-de-chocolate-e-morango-4ee3599be1608c68880013cf.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", - "category": "food", - "children": 3, - "created": "2016-09-13T19:50:09", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-19.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" - ], - "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/13/puff-pastry-of-chocolate-and-strawberr/", - "http://gshow.globo.com/receitas-gshow/receita/folhado-de-chocolate-e-morango-4ee3599be1608c68880013cf.html" - ], - "tags": [ - "food", - "health", - "recipes", - "cooking", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 109624015013, - "payout": 0.021, - "payout_at": "2016-09-20T19:50:09", - "pending_payout_value": "0.021 HBD", - "percent_hbd": 10000, - "permlink": "puff-pastry-of-chocolate-and-strawberr", - "post_id": 1235534, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 17 - }, - "title": "Puff Pastry of Chocolate and Strawberr", - "updated": "2016-09-13T19:50:09", - "url": "/food/@gustavopasquini/puff-pastry-of-chocolate-and-strawberr" - }, - { - "active_votes": [ + "rshares": 72874863, + "voter": "confucius" + }, { - "rshares": 260622160848, - "voter": "anonymous" + "rshares": 12287449701, + "voter": "borran" }, { - "rshares": 11834288933460, - "voter": "berniesanders" + "rshares": 72135954, + "voter": "stevescriber" }, { - "rshares": 54907316483, - "voter": "nextgenwitness" + "rshares": 3031960754, + "voter": "bledarus" }, { - "rshares": 259331422398, - "voter": "justin" + "rshares": 52467942, + "voter": "loli" }, { - "rshares": 752417937460, - "voter": "silver" + "rshares": 52419023, + "voter": "nano2nd" }, { - "rshares": 1827452021203, - "voter": "silversteem" + "rshares": 57405835, + "voter": "jarvis" }, { - "rshares": 1803885044553, - "voter": "nextgencrypto" + "rshares": 254680718, + "voter": "matrixdweller" }, { - "rshares": 3374493281870, - "voter": "wang" + "rshares": 55520042, + "voter": "fortuner" }, { - "rshares": 168090383846, - "voter": "steemservices" + "rshares": 1899453799, + "voter": "chinadaily" }, { - "rshares": 34968781349, - "voter": "james-show" + "rshares": 10115255960, + "voter": "kyriacos" }, { - "rshares": 8537890809, - "voter": "acidyo" + "rshares": 61414862, + "voter": "cryptoblu" }, { - "rshares": 1413569309, - "voter": "murh" + "rshares": 61408183, + "voter": "instructor" }, { - "rshares": 7660935220, - "voter": "thecryptofiend" + "rshares": 737983647550, + "voter": "dollarvigilante" }, { - "rshares": 73942403, - "voter": "strawhat" + "rshares": 4873874459, + "voter": "almerri" }, { - "rshares": 2602014729, - "voter": "steemswede" + "rshares": 834435493, + "voter": "inferno" }, { - "rshares": 73278315, - "voter": "cryptochannel" + "rshares": 14079745246, + "voter": "gvargas123" }, { - "rshares": 766595200, - "voter": "kellywin21" + "rshares": 54235184, + "voter": "johnbyrd" }, { - "rshares": 4729065421, - "voter": "gustavopasquini" + "rshares": 54218223, + "voter": "thomasaustin" }, { - "rshares": 77156992, - "voter": "sergey44" + "rshares": 54216305, + "voter": "thermor" }, { - "rshares": 116751617, - "voter": "bullionstackers" + "rshares": 54227808, + "voter": "ficholl" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 54209199, + "voter": "widell" }, { - "rshares": 5848123826, - "voter": "french.fyde" + "rshares": 437056666, + "voter": "violino" }, { - "rshares": 3001806340, - "voter": "darrenturetzky" + "rshares": 9789416081, + "voter": "jaredcwillis" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 53821337, + "voter": "revelbrooks" }, { - "rshares": 79328156, - "voter": "numberone" + "rshares": 162957058, + "voter": "kamil5" }, { - "rshares": 9214177074, - "voter": "theconnoisseur" + "rshares": 2799982825, + "voter": "netaterra" }, { - "rshares": 11275110754, - "voter": "thecurator" + "rshares": 84411204420, + "voter": "barrycooper" }, { - "rshares": 13441583897, - "voter": "gvargas123" + "rshares": 27256167812, + "voter": "hilarski" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 52708083, + "voter": "curpose" }, { - "rshares": 5126102949, - "voter": "nadin3" + "rshares": 58124470, + "voter": "rickmiller" }, { - "rshares": 59599082, - "voter": "rusla" + "rshares": 3079614068, + "voter": "nulliusinverba" }, { - "rshares": 1865626765, - "voter": "thedashtimes" + "rshares": 74686608, + "voter": "stephenkendal" }, { - "rshares": 148331179950, - "voter": "thecyclist" + "rshares": 22620901678, + "voter": "mikehere" }, { - "rshares": 5726115551, - "voter": "gringalicious" + "rshares": 1036280295, + "voter": "jjepic" }, { - "rshares": 155580599, - "voter": "tycho" + "rshares": 52836995, + "voter": "troich" }, { - "rshares": 399072132, - "voter": "witchcraftblog" - } - ], - "author": "gustavopasquini", - "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, - "beneficiaries": [], - "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-18.png?w=1000\n\n> ## Traditional Brazilian recipes\n\n# INGREDIENTS\n\n> 300g Macedonia vegetables\n\n> 150g Mayonnaise (made with olive oil)\n\n> 400g chicken breast\n\n> 1dl Gallo Great choice Oil\n\n> 1unid. Green apple\n\n> chopped parsley\n\n> broth of vegetables\n\n> Chicken Broth\n\n \n# PREPARATION\n\n### 1. Bake the Macedonian vegetables in vegetable broth, drain and cool when cooked.\n\n### 2. Bake the chicken breast in chicken broth, cool and shred.\n\n### 3. Involve the mayonnaise with the Macedonian vegetable on this have shredded chicken and this, green apple.\n\n \n# CHIEF TIP\n\n### 1. Sprinkle with chopped parsley and sprinkle it with olive oil Gallo Great choice.\n\n### 2. The Gallo products that the chef suggests for this recipe can be replaced by other varieties Gallo of your choice. Try and share your combinations.\n\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/chicken-salad-shredded-and-green-apple/)\n\n> ### [Recipe Site ](http://www.gallooliveoil.com/pt/inspira-me/receitas/saladas/salada-russa-servida-com-frango-desfiado-e-maca-verde.aspx)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465", - "category": "food", - "children": 4, - "created": "2016-09-13T15:14:42", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-18.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" - ], - "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/13/chicken-salad-shredded-and-green-apple/", - "http://www.gallooliveoil.com/pt/inspira-me/receitas/saladas/salada-russa-servida-com-frango-desfiado-e-maca-verde.aspx" - ], - "tags": [ - "food", - "health", - "recipes", - "cooking", - "life" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20601662800070, - "payout": 29.765, - "payout_at": "2016-09-20T15:14:42", - "pending_payout_value": "29.765 HBD", - "percent_hbd": 10000, - "permlink": "chicken-salad-shredded-and-green-apple", - "post_id": 1232624, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 36 - }, - "title": "Chicken salad shredded and Green Apple", - "updated": "2016-09-13T19:54:21", - "url": "/food/@gustavopasquini/chicken-salad-shredded-and-green-apple" - }, - { - "active_votes": [ + "rshares": 176594596, + "voter": "team101" + }, + { + "rshares": 51718188, + "voter": "crion" + }, { - "rshares": 260582718501, - "voter": "anonymous" + "rshares": 51388276, + "voter": "hitherise" }, { - "rshares": 11834143712367, - "voter": "berniesanders" + "rshares": 51379706, + "voter": "wiss" }, { - "rshares": 73209361505, - "voter": "nextgenwitness" + "rshares": 29837355627, + "voter": "sponge-bob" }, { - "rshares": 259329872696, - "voter": "justin" + "rshares": 52143228, + "voter": "stroully" }, { - "rshares": 752298710266, - "voter": "silver" + "rshares": 50712038, + "voter": "thadm" }, { - "rshares": 1827293771080, - "voter": "silversteem" + "rshares": 51812703, + "voter": "prof" }, { - "rshares": 1803812175805, - "voter": "nextgencrypto" + "rshares": 389378512, + "voter": "steemorama" }, { - "rshares": 3667340586581, - "voter": "wang" + "rshares": 50370757, + "voter": "yorsens" }, { - "rshares": 168089567974, - "voter": "steemservices" + "rshares": 50065875, + "voter": "bane" }, { - "rshares": 14857190598, - "voter": "bentley" + "rshares": 51148009, + "voter": "vive" }, { - "rshares": 18356018065, - "voter": "dedmatvey" + "rshares": 50054445, + "voter": "coad" }, { - "rshares": 1766957079, - "voter": "murh" + "rshares": 54258724, + "voter": "zeka" }, { - "rshares": 38822576165, - "voter": "creemej" + "rshares": 55266473, + "voter": "analyzethis" }, { - "rshares": 1372243951, - "voter": "alekst" + "rshares": 50840303, + "voter": "sofa" }, { - "rshares": 4823615716, - "voter": "gustavopasquini" + "rshares": 53593366, + "voter": "jenny-talls" }, { - "rshares": 154313985, - "voter": "sergey44" + "rshares": 392613648002, + "voter": "charlieshrem" }, { - "rshares": 275446808, - "voter": "cris.emilia" + "rshares": 54749475, + "voter": "abh12345" }, { - "rshares": 23283956675, - "voter": "jasonstaggers" + "rshares": 59275695121, + "voter": "tracemayer" }, { - "rshares": 5969959739, - "voter": "french.fyde" + "rshares": 29812066033, + "voter": "brains" }, { - "rshares": 191761463, - "voter": "abnerpasquini" + "rshares": 459262196, + "voter": "jessicanicklos" }, { - "rshares": 200523992, - "voter": "party1999" + "rshares": 1250337518, + "voter": "bitcoinparadise" }, { - "rshares": 242137585, - "voter": "lisadang" + "rshares": 116241342, + "voter": "paketkita.net" }, { - "rshares": 14496406906, - "voter": "thecurator" + "rshares": 2167288739, + "voter": "steemsquad" }, { - "rshares": 3183176699, - "voter": "virtualgrowth" + "rshares": 179120276, + "voter": "anomaly" }, { - "rshares": 9167216579, - "voter": "mrgrey" + "rshares": 84516562, + "voter": "inarix03" }, { - "rshares": 14475466814, - "voter": "gvargas123" + "rshares": 55221608, + "voter": "mari5555na" }, { - "rshares": 163701239, - "voter": "steemit-recipes" + "rshares": 51238118, + "voter": "teemsteem" }, { - "rshares": 253919488, - "voter": "lindseylambz" + "rshares": 51227561, + "voter": "battalar" }, { - "rshares": 94657366, - "voter": "rusla" + "rshares": 50975390, + "voter": "steemprincess" }, { - "rshares": 5917666043, - "voter": "leavemealone" + "rshares": 50796122, + "voter": "factom" }, { - "rshares": 1632423419, - "voter": "thedashtimes" + "rshares": 50708837, + "voter": "ardly" }, { - "rshares": 154642951404, - "voter": "thecyclist" + "rshares": 50704078, + "voter": "yotoh" }, { - "rshares": 1099577930, - "voter": "ola1" + "rshares": 50570250, + "voter": "ziggo" }, { - "rshares": 3954459531, - "voter": "dodders007" + "rshares": 50479027, + "voter": "sunlight" }, { - "rshares": 165241290, - "voter": "crimson" + "rshares": 74416578, + "voter": "igtes" }, { - "rshares": 417002303, - "voter": "witchcraftblog" + "rshares": 151282485, + "voter": "buffett" }, { - "rshares": 146712264, - "voter": "dixonloveart" + "rshares": 159710416, + "voter": "allianz" + }, + { + "rshares": 1592141608, + "voter": "rusteemitblog" + }, + { + "rshares": 158751390, + "voter": "edward.shroder" + }, + { + "rshares": 158057595, + "voter": "sdc" + }, + { + "rshares": 158051137, + "voter": "origin" + }, + { + "rshares": 161205518, + "voter": "acute" + }, + { + "rshares": 161179339, + "voter": "bethesda" + }, + { + "rshares": 157816798, + "voter": "gravity" + }, + { + "rshares": 160835930, + "voter": "skrillex" + }, + { + "rshares": 156425539, + "voter": "planetearth" + }, + { + "rshares": 159318360, + "voter": "stimmt" + }, + { + "rshares": 158732321, + "voter": "steemwallet" + }, + { + "rshares": 155528114, + "voter": "icesteem" + }, + { + "rshares": 158535752, + "voter": "nerds" + }, + { + "rshares": 144468196, + "voter": "roman.est" } ], - "author": "gustavopasquini", + "author": "bravenewcoin", "author_payout_value": "0.000 HBD", - "author_reputation": 56.39, + "author_reputation": 66.99, "beneficiaries": [], "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-17.png?w=1000\n\n> ## Traditional Brazilian recipes\n\n# Ingredients\n\n> already baked beans with their broth\n\n> Cassava flour\n\n> pork fat\n\n> Oil\n\n> beat onion\n\n> Salt and green onions and pat\n\n\n# Preparation\n\n### 1. In hot fat if refoguem-two cloves of crushed garlic.\n\n### 2. Being well fried, remove them.\n\n### 3. Add the onions and when they are golden, saute the beans, then add the broth and salt.\n\n### 4. Cook for about twenty minutes on low heat.\n\n### 5. In a skillet, place the beans that are ready, with little broth and go slowly adding cassava flour, stirring well until it gets the point.\n\n### 6. Prove it to check the salt.\n\n### 7. The point of the face should be neither too soft nor too hard.\n\n### 8. To serve, garnish with a beaded can of pork rinds and fried pork skins and pururucas.\n\n### 9. To accompany the upset, still being indispensable cabbage cut very thin, steamed and fried eggs.\n\n### 10. Also according to the will accompany pork loin, fried sausage, chops or antrecosto pork, fried in advance, but nice and warm.\n\n# Tip\n\n### In the Paraiba Valley region to the face, it is used preferably cassava flour, which does not occur in mountainous areas of the state, whose preference is for cornmeal.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/13/bean-turned/)\n\n> ### [Recipe Site ](https://www.comidaereceitas.com.br/legumes-e-verduras/virado-de-feijao.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465", - "category": "food", - "children": 7, - "created": "2016-09-13T13:22:12", + "body": "\n

\n

\n

Luke Parker || Blockchain Adoption || Btm || Deloitte

\n

Deloitte's Toronto office has a new bitcoin automatic teller machine (ATM), also known as a BTM. The company's first machine is located in city\u2019s Financial District at the intersection of Yonge and Adelaide. \u201cEnter the Deloitte entrance off Yonge St. and go up the escalator,\u201d tweeted the firm's blockchain team, Rubix by Deloitte (Rubix).

\n

Deloitte is comprised of the UK private company, Deloitte Touche Tohmatsu Limited, and a network of independent member firms. Following a revenue announcement on Wednesday, Deloitte has overtaken PricewaterhouseCoopers (PwC) as the largest of the 'Big Four' accounting firm by revenue, earning US$36.8 billion last year. PwC has yet to release its 2016 earnings, but generated US$35.4 billion in 2015. The Canadian member firm of Deloitte, Deloitte LLP, has 56 locations and 8,820 employees and headquarters in Toronto. The firm reported annual revenue of $2.088 billion in 2015.

\n

Deloitte founded Rubix in 2014, exclusively to develop enterprise blockchain applications. \u201cRubix bridges the gap between the exponentially innovative nature of blockchain technology and the complexity of existing enterprise system environments,\u201d states the website.

\n

\u201cThe goal is to make bitcoin more accessible so that users can experience blockchain technology first hand,\u201d explained Iliana Oris Valiente, the original founder and strategy leader of the Rubix team. This will \u201cdeepen their understanding and ultimately increase adoption,\u201d she added. The BTM only needs a mobile phone number to be used. 

\n

\n

The bitcoin-dispensing machine was manufactured by Bitaccess, an Ottawa-based bitcoin ATM maker founded in 2013. The company\u2019s base model sells for $7,000 CAD. Rubix has been collaborating with the start-up over the past few months.

\n

\u201cDeloitte has shown themselves to be a leader in financial innovation through their Rubix team,\u201d said Bitaccess co-founder Moe Adham. \u201cPartnering with Deloitte on this project is a natural fit for Bitaccess. It further advances our mission to commercialize blockchain technologies.\u201d

\n

The BTM industry has been growing steadily in recent years. An independent BTM information portal,CoinATMRadar, shows that new BTMs are installed globally at a rate of 1.29 per day. A global total of 775 BTMs are shown on the site at press time, having nearly doubled over the past year.

\n

62 of the machines are manufactured by Bitaccess, located in 11 different countries throughout North America, Europe, and Thailand. The site lists a total of 17 manufacturers and 28 operators of BTM networks. Giving Bitaccess an 8% market share. The company is the fourth largest BTM manufacturer behind Genesis Coin, Lamassu, and General Bytes. 

\n

\n

Deloitte\u2019s BTM adds to the existing list of 12 BTMs in downtown Toronto. The surrounding cities bordering Toronto together offer 31 BTM locations, giving Deloitte\u2019s new machine plenty of competition.

\n

Canada has been the primary proving grounds for BTM adoption, ever since the world\u2019s first BTM was installed in downtown Vancouver, at Waves Coffee shop in October 2013. The price of a bitcoin was US$200 at the time. The very next day, bitcoin began its steepest climb ever, reaching its all-time high of $1,200 within a month.

\n

The Canadian government offers an extra light regulatory environment. There is no regulation for BTM machine owners or manufacturers, since they are not considered money transmitters. However, there are proposed regulations on digital currency businesses.

\n

A July 2014 economic action plan proposed that existing Money Service Businesses, who deal in \u201cvirtual currencies,\u201d should register themselves with FINTRAC, in order to fight money laundering and become compliant with the Terrorist Financing Act.

\n

By increasing access and understanding of bitcoin, Deloitte hopes that people will be \u201cbetter prepared to embrace and respond to the advancement of blockchain,\u201d according to Ian Chan, Partner and Deloitte\u2019s Exponentials and Innovation Leader. 

\n

\n

Many regulators, companies, and academic institutions have said blockchain has the potential to disrupt various industries. In July 2015, Deutsche Bank Research called blockchain technology \u201cone of the first truly disruptive ideas from the fintech sector.\u201d In December 2015, Goldman Sachs' Equity Research published a report claiming that \"The Blockchain Could Disrupt Everything.\" The Wharton School of the University of Pennsylvania published an article in May, on \u201chow blockchain technology will prove to be a major disruptor to the public and private sectors, starting with the financial services industry.\u201d

\n

A Deloitte report published in March, \u201dBeyond bitcoin: Blockchain is coming to disrupt your industry,\u201d explores blockchains' disruptive potential by sector. The firm examines six sectors including financial services, technology, media, communications, the public sector, energy and resources.

\n

\u201cTo avoid disruptive surprises or missed opportunities, strategists, planners, and decision makers across industries and business functions should pay heed now and begin to investigate applications of the technology,\u201d the report concludes. 

\n
\n

 This article can be found on our website on this link.   

\n
\n

According to the BNC indices, at the time of writing:
\n
\nSteem was trading at $0.72726514
\n

\n

bitcoin was trading at $627.90
\n

\n

If you enjoyed this article, remember to FOLLOW and SHARE our daily content!

\n", + "category": "money", + "children": 4, + "created": "2016-09-11T18:19:36", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-17.png?w=1000", - "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", - "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + "https://s25.postimg.org/ym4ned35r/thumb.jpg", + "https://s25.postimg.org/588wys0fz/image1.jpg", + "https://s25.postimg.org/rlgnll1dr/image2.jpg", + "https://s25.postimg.org/wy5hzppa7/BTM_market_share_9_sep_2016.png", + "https://s25.postimg.org/j5vohtnwf/image3.jpg" ], "links": [ - "https://gustavopasquini.com", - "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/13/bean-turned/", - "https://www.comidaereceitas.com.br/legumes-e-verduras/virado-de-feijao.html" + "http://bravenewcoin.com/authors/luke-parker/", + "http://bravenewcoin.com/news/tag/blockchain+adoption", + "http://bravenewcoin.com/news/tag/btm", + "http://bravenewcoin.com/news/tag/deloitte", + "https://twitter.com/RubixByDeloitte/status/773620101476077569", + "http://www2.deloitte.com/global/en/pages/about-deloitte/articles/global-revenue-announcement.html", + "https://www.pwc.com/gx/en/about/global-annual-review-2015/revenues.html", + "http://www2.deloitte.com/ca/en/pages/about-deloitte/articles/about-deloitte-canada.html", + "http://bravenewcoin.com/news/deloitte-launches-rubix-a-one-stop-blockchain-software-platform/", + "https://www.bitaccess.co/", + "https://coinatmradar.com/charts/", + "http://coinatmradar.com/", + "https://coinatmradar.com/operators/", + "http://www.loc.gov/law/help/bitcoin-survey/#canada", + "http://www.fintrac-canafe.gc.ca/new-neuf/avs/2014-07-30-eng.asp", + "http://bravenewcoin.com/news/industry-research-papers-highlight-blockchain-technologys-disruptive-potential/", + "https://www.dbresearch.com/servlet/reweb2.ReWEB?document=PROD0000000000359046&rwnode=DBR_INTERNET_DE-PROD$NAVIGATION&rwobj=ReDisplay.Start.class&rwsite=DBR_INTERNET_DE-PROD", + "http://www.goldmansachs.com/our-thinking/pages/macroeconomic-insights-folder/what-if-i-told-you/report.pdf", + "http://knowledge.wharton.upenn.edu/article/blockchain-technology-will-disrupt-financial-services-firms/", + "http://www2.deloitte.com/mt/en/pages/financial-services/articles/mt-banking-alert-019-blockchain-is-coming-to-disrupt-your-industry.html", + "http://bravenewcoin.com/news/deloitte-boosts-blockchain-adoption-by-installing-a-bitcoin-atm-in-their-toronto-office/", + "http://www.bravenewcoin.com/markets", + "http://www.bravenewcoin/steem", + "http://bravenewcoin.com/bitcoin", + "http://www.steemit.com/@bravenewcoin" ], "tags": [ - "food", - "health", - "recipes", - "cooking", - "life" + "money", + "bitcoin", + "blockchain", + "crypto-news", + "bravenewcoin" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 20966227757871, - "payout": 32.736, - "payout_at": "2016-09-20T13:22:12", - "pending_payout_value": "32.736 HBD", + "net_rshares": 42473664283164, + "payout": 106.729, + "payout_at": "2016-09-18T18:19:36", + "pending_payout_value": "106.729 HBD", "percent_hbd": 10000, - "permlink": "recipe-bean-turned", - "post_id": 1231576, + "permlink": "bravenewcoin-deloitte-boosts-blockchain-adoption-by-installing-a-bitcoin-atm-in-their-toronto-office", + "post_id": 1211102, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 37 + "total_votes": 178 }, - "title": "Recipe Bean turned", - "updated": "2016-09-13T13:22:12", - "url": "/food/@gustavopasquini/recipe-bean-turned" + "title": "BraveNewCoin: Deloitte boosts blockchain adoption by installing a bitcoin ATM in their Toronto office", + "updated": "2016-09-11T18:19:36", + "url": "/money/@bravenewcoin/bravenewcoin-deloitte-boosts-blockchain-adoption-by-installing-a-bitcoin-atm-in-their-toronto-office" }, { "active_votes": [ { - "rshares": 9485940684, - "voter": "richman" + "rshares": 1631145568, + "voter": "sergei" }, { - "rshares": 8682829117, - "voter": "gore84" + "rshares": 11335418168, + "voter": "anasya" }, { - "rshares": 373150559, - "voter": "borishaifa" + "rshares": 1182233920, + "voter": "dicov" }, { - "rshares": 157259353, - "voter": "siniceku" - } - ], - "author": "siniceku", - "author_payout_value": "0.000 HBD", - "author_reputation": 38.67, - "beneficiaries": [], - "blacklists": [], - "body": "For all in Steemit!\n\n\nThe melting of the Arctic ice cap due to global warming increasingly alarming. Each year , the sea level rise of 1-3 mm . If not immediately anticipated , rising sea levels is certainly dangerous for the survival of human beings living on the earth surface . Even more dangerous , several major cities in the world was threatened with sinking due to rising sea levels , the foundation is fragile, as well as ground water extraction . The following eight major cities in the world are threatened with drowning.\n\nShanghai,china\n
\n\n
\nShanghai was once just a place surrounded by swamp . The need for a place to stay and a population that swells create more and more skyscrapers in the area. Not surprisingly , each year the ground in Shanghai dropped half an inch . Based on data from PBS , the surface of the ground in Shanghai fell by around 2.4 meters within the period 1921 to 1965. Experts estimate that the land in Shanghai no longer able to withstand the heavy loads of building on it . Predicted a time Shanghai will sink if the Yangze River overflowed\n\n\n\nSaigon,Vietnam\n
\n\n
\n\nOne of the most populous cities in Southeast Asia is also in danger of drowning. The reduced surface soil make this area prone to flooding . Each year, the floodwaters rose as high as 2cm.\n\n\nBangkok,Thailand\n
\n\n
\nHead of the National Disaster Warning Centre of Thailand , Smith Dharmasaroja , predicted in 2100 Bangkok will be the second Atlantis . The city will sink due to several factors , such as : climate change due to greenhouse effect , rising sea levels , coastal erosion , and landslides . Plus it lies low causing Bangkok every year has flooded.\n\nMumbai,india\n\n\n
\n\n
\nNot much different from Bangkok , a group of Greenpeace activists in 2100 memperkitakan Mumbai city will be submerged by seawater . Rising sea levels of up to 5 meters led to the city's community in the town threatened its sustainability.\nMexico,City\n\n
\n\n
\n\nThis one city each year sunk 20cm in case of flooding . It lies in the valley plus the poor drainage system make Mexico City in danger of drowning. Since 1975 , the city's drainage capacity is down 30 percent . But now the government is pushing for the manufacture of drainage tunnel giant who claimed can hold enough water.\n\n\nNew York\n\n
\n\n
\n\nRising sea levels threaten the city turned out to take part in these United States. Position at the mouth of the Hudson River that connects directly to the Atlantic Ocean helped trigger. Science Daily predict , the city sea water more than doubled compared to other oceans . Not only that , coastal erosion , decreased soil and destruction of the environment can also trigger the overflow of water in the city known as the center of the business world.\n\n\nVenesia,italy\n\n
\n\n
\n\nThe end of 2012 , the city was flooded badly . This phenomenon is present due to a combination of heavy rain and wind from the south . At least 70 percent of the land in the canal city is flooded with a depth of up to 1.5 meters above normal . Flooding was apparently one of the indications that the region of Venice continues to sink . Christian Science Monitor even noted , the city dropped its surface as long as 30 cm over the last 100 years. The rising water level in the Mediterranean Sea canal city likely add it to sink.\n\n\nJakarta,indonesia\n\n\n
\n\n
\n\n\nIn addition to the geographical location of which is under sea level , the need for a high water is considered to be one of the causes of the sinking of the mainland Jakarta . Population continues to increase the main reason for the need for groundwater . In a period of 20 years, the estimated number of residents in the capital increase of up to 40 million people.\n\n\nHydrology expert from the Netherlands , Janjaap Brinkman explained that if the soil water suction process continuously carried out , at the end of the 21st century , Jakarta will sink five to six meters deep . A matter of time Jakarta will sink beneath the sea as the city of Atlantis\n\nThese towns are threatened sinking due to rising sea levels and global warming . If we do not change the way we treat the earth , these cities will be completely submerged without we could do anything. Let's start caring for the environment.!!!\n\n\n\n\nComments and Responses You\nVery I would expect to progress I\nAnd I hope you enjoyed reading this post\n\n\nDon't forget to vote and follow me,\nThanks...\n\n\nBest Regars\n\nhttps://s9.postimg.org/7que1vu0v/20150608150705.jpg\n\nSazkia@Siniceku", - "category": "life", - "children": 0, - "created": "2016-09-13T03:32:03", - "curator_payout_value": "0.000 HBD", - "depth": 0, - "is_paidout": false, - "json_metadata": { - "image": [ - "https://s18.postimg.org/d9i0vjmzd/405046_queensland_039_s_flood_disaster.jpg", - "https://s4.postimg.org/s97fe437x/Saigon_Flooding.jpg", - "https://s15.postimg.org/dq72f2v8b/temples_flooded_in_thailand_data.jpg", - "https://s15.postimg.org/fgl6hs59n/28sl3.jpg", - "https://s11.postimg.org/ml22odc4z/f8fcd814_1646_4aaa_ad1e_b4bc111c707c_650x366.jpg", - "https://s12.postimg.org/6g8rm99zx/Yellow_cabs_line_a_flood_010.jpg", - "https://s16.postimg.org/rzrojow7p/628x471.jpg", - "https://s15.postimg.org/3m6tky4kr/335370_jakarta_floods.jpg", - "https://s9.postimg.org/7que1vu0v/20150608150705.jpg" - ], - "tags": [ - "life", - "steemit", - "" - ] - }, - "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 18699179713, - "payout": 0.004, - "payout_at": "2016-09-20T03:32:03", - "pending_payout_value": "0.004 HBD", - "percent_hbd": 10000, - "permlink": "8-big-cities-in-the-world-threatened-drowning", - "post_id": 1227664, - "reblogs": 0, - "replies": [], - "stats": { - "flag_weight": 0.0, - "gray": false, - "hide": false, - "total_votes": 4 - }, - "title": "8 Big Cities in the World Threatened Drowning", - "updated": "2016-09-13T04:09:21", - "url": "/life/@siniceku/8-big-cities-in-the-world-threatened-drowning" - }, - { - "active_votes": [ + "rshares": 101872192, + "voter": "cynetyc" + }, + { + "rshares": 4498938804, + "voter": "konti" + }, { - "rshares": 14203668754, - "voter": "valtr" + "rshares": 68550569, + "voter": "numberone" }, { - "rshares": 602561521, - "voter": "keyser" + "rshares": 52053227, + "voter": "jlufer" }, { - "rshares": 174462677, - "voter": "uwe69" + "rshares": 5440664433, + "voter": "nadin3" }, { - "rshares": 366382339, - "voter": "zrc" + "rshares": 137617585, + "voter": "moneymaker" }, { - "rshares": 2042714039, - "voter": "daveks" + "rshares": 573911846, + "voter": "edgarsart" }, { - "rshares": 18204837580, - "voter": "steemokto" + "rshares": 3054162843, + "voter": "anton333" }, { - "rshares": 51874844, - "voter": "mari5555na" + "rshares": 286592441, + "voter": "anomaly" + }, + { + "rshares": 2462891749, + "voter": "ekaterinka" + }, + { + "rshares": 334319550, + "voter": "borishaifa" }, { - "rshares": 152696750, - "voter": "dollshaped" + "rshares": 146492230, + "voter": "modernbukowski" } ], - "author": "dollshaped", + "author": "anton333", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 54.81, "beneficiaries": [], "blacklists": [], - "body": "\n

Earlier this year, my friends and I took a trip to Chiang Mai, Thailand where we had the opportunity of visiting the Elephant Nature Park. Located in the mountains about an hour's drive north of the city, the Elephant Nature Park is home to over fifty elephants rescued from the tourism and logging industries. Their grounds are also home to hundreds of dogs and cats who were left behind by their families during the 2011 floods in southern Thailand. 

\n

It was a really beautiful place and I wanted to share some of the photos I took with everyone! 

\n

\n

\n

\n

\n

(This little guy was only 1 month old!!)

\n

\n", - "category": "photography", - "children": 2, - "created": "2016-09-12T18:43:48", + "body": "\n

1. Chiang Mai, Thailand

\ncq5dam.web.1280.1280


\n

In addition to the beautiful landscapes that involve freelancers security sojourn and comfortable temperate climate, in this town there is a good co-working center, the cost of a monthly subscription which - $ 109. Also for freelancers need a good Internet, the average speed is in Chiang Mai - 20 Mbit / s, which is, in principle, tolerant. As a bonus - a lot of cafes with free Wi-Fi.

\n

2. Bangkok, Thailand

\np-4-58082


\n

Bangkok can be described roughly as well as Chiang Mai. Comfort, speed internet infrastructure and about the same. There is little difference in climate (south of Bangkok, so it is warmer) and the considerable difference in housing prices, which is not strange since Bangkok - Thailand's capital. So, a month renting an apartment you need to pay almost twice as much than in Chiang Mai.

\n

3. London, UK

\nLondon-wallpaper-1366x768


\n

There is a stereotype that London is a perpetual fog. In fact, there is quite sunny and pleasant climate. Only in winter it can be chilly in the living room, if they are not heated. One of the main amenities of the city - transport. In addition to taxi and Metro, the world-famous dabldekery that are equipped with seats for disabled people, baby carriages, almost always free.

\n


\n

Dear users, no matter what city you would like to have or have already had occasion to work with?

\n", + "category": "life", + "children": 3, + "created": "2016-09-11T17:01:45", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "http://i1008.photobucket.com/albums/af202/latelykatie/Screen%20Shot%202016-09-12%20at%201.38.35%20PM_zpsyphsgakh.png", - "http://i1008.photobucket.com/albums/af202/latelykatie/Screen%20Shot%202016-09-12%20at%201.38.42%20PM_zpsihcxclih.png", - "http://i1008.photobucket.com/albums/af202/latelykatie/Screen%20Shot%202016-09-12%20at%201.38.56%20PM_zpstbmvt3a0.png", - "http://i1008.photobucket.com/albums/af202/latelykatie/Screen%20Shot%202016-09-12%20at%201.39.08%20PM_zpsd9q0t5ju.png", - "http://i1008.photobucket.com/albums/af202/latelykatie/Screen%20Shot%202016-09-12%20at%201.38.49%20PM_zpsckcqxi1s.png" + "https://s14.postimg.org/syysgaexd/cq5dam_web_1280_1280.jpg", + "https://s9.postimg.org/cpzyepz2n/p_4_58082.jpg", + "https://s12.postimg.org/tgagcyiwd/London_wallpaper_1366x768.jpg" + ], + "links": [ + "https://postimg.org/image/byfw7m1vx/", + "https://postimage.org/index.php?lang=russian", + "https://postimg.org/image/jggfo5m8b/", + "https://postimg.org/image/csiyago4p/" ], "tags": [ - "photography" + "life", + "money", + "job" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 35799198504, + "net_rshares": 31306865125, "payout": 0.01, - "payout_at": "2016-09-19T18:43:48", + "payout_at": "2016-09-18T17:01:45", "pending_payout_value": "0.010 HBD", "percent_hbd": 10000, - "permlink": "elephants-in-chiang-mai", - "post_id": 1222785, + "permlink": "3-best-cities-for-freelancers", + "post_id": 1210372, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 8 + "total_votes": 15 }, - "title": "Elephants in Chiang Mai", - "updated": "2016-09-12T18:44:57", - "url": "/photography/@dollshaped/elephants-in-chiang-mai" + "title": "3 best cities for freelancers.", + "updated": "2016-09-11T17:01:45", + "url": "/life/@anton333/3-best-cities-for-freelancers" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2.pat.json index c5b95c951c6e292c8a898df32dddc4805aa3bbe7..649e0f806d85f18fa870f5e8524fd6505653031a 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2.pat.json @@ -2,25 +2,29 @@ { "active_votes": [ { - "rshares": 4134640392195, - "voter": "riverhead" + "rshares": 58532670832, + "voter": "ezzy" }, { - "rshares": 2531219186, - "voter": "steem1653" + "rshares": 774734761, + "voter": "luisucv34" }, { - "rshares": 4597948653, - "voter": "gustavopasquini" + "rshares": 88369590246, + "voter": "rea" }, { - "rshares": 232757631, - "voter": "sergey44" + "rshares": 5005509624, + "voter": "gustavopasquini" }, { "rshares": 275446808, "voter": "cris.emilia" }, + { + "rshares": 12685919337, + "voter": "gargon" + }, { "rshares": 1335239332, "voter": "future24" @@ -29,25 +33,41 @@ "rshares": 191761463, "voter": "abnerpasquini" }, - { - "rshares": 83629379486, - "voter": "serejandmyself" - }, { "rshares": 163701239, "voter": "steemit-recipes" }, { - "rshares": 17024381094, - "voter": "bluehorseshoe" + "rshares": 1239881154, + "voter": "yzomri" + }, + { + "rshares": 1064809843, + "voter": "tatianka" }, { - "rshares": 98577200, + "rshares": 52948298, + "voter": "alwayzgamez" + }, + { + "rshares": 98524303, "voter": "ola1" }, { - "rshares": 6654826634, + "rshares": 51848960, + "voter": "audiphotography" + }, + { + "rshares": 154765535, + "voter": "mrsgreen" + }, + { + "rshares": 3649573685, "voter": "dresden" + }, + { + "rshares": 153768931, + "voter": "shortstories" } ], "author": "gustavopasquini", @@ -55,24 +75,24 @@ "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-24.png?w=1000\n\n> ### Traditional Brazilian Desserte to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n> 2 bananas\n\n> 1 tablespoon melted margarine soup\n\n> 1/2 teaspoon brown sugar soup\n\n> 1/2 teaspoon ground cinnamon tea\n\n> 8 sheets of pasta for pastel\n\n> frying oil\n\n\n# PREPARATION\n\n### 1. Cut the banana into slices .\n\n### 2. in a bowl, mix with margarine, sugar and cinnamon .\n\n### 3. divide that filling in pastel masses and close with a fork .\n\n### 4. fry in hot oil, drain on absorbent paper and serve .\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/pastel-of-banana-with-chocolate/)\n\n> ### [Recipe Site ](http://www.tudogostoso.com.br/receita/1660-pastel-de-banana.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000\n\n> ### Traditional Brazilian Main Course to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n \n> 1 kg of pork Ribs\n\n> 1 lemon\n\n> salt to taste\n\n> 2 tablespoons oil soup\n\n> 1/2 onion, chopped\n\n> 1/2 cup brown sugar\n\n> 1/2 cup white vinegar\n\n> 2 tablespoons Worcestershire sauce\n\n> 2 cups ketchup\n\n> 1 bay leaf\n\n> 1/2 cup water\n\n> 1 teaspoon pepper sauce dessert\n\n> pepper to taste\n\n> salt to taste\n\n \n# PREPARATION\n\n### 1. Wash the ribs in water corrente.Esfregue lemon over the meat, and then season with salt to taste.\n\n### 2. Place the ribs in a pan and cover with paper aluminio.\n\n### 3. Leve the heated oven at 200 \u00b0 for about 40 minutes.\n\n### 4. In a saucepan, heat the oil and gently fry the onion. Want to be your brown sugar and vinegar, and let the sugar dissolve.\n\n### 5. Want to be your English sauce, catsup, bay leaf, pepper sauce, water, salt and let the sauce simmer until engrossar.\n\n### 6. Tourne off the oven and set aside.\n\n### 7. After 40 minutes, remove the aluminum foil and baste the ribs with barbecue sauce.\n\n### 8. bake again for another 10 minutes.\n\n### 9. Remove from oven and serve with sauce on the side.\n\n### 10. Serve with fried or stuffed potato.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/)\n\n> ### [Recipe Site ](http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", "category": "food", - "children": 4, - "created": "2016-09-15T18:52:15", + "children": 0, + "created": "2016-09-15T14:37:00", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-24.png?w=1000", + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-23.png?w=1000", "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" ], "links": [ "https://gustavopasquini.com", "https://gustavopasquini-shop.com", - "https://gustavopasquini.wordpress.com/2016/09/15/pastel-of-banana-with-chocolate/", - "http://www.tudogostoso.com.br/receita/1660-pastel-de-banana.html" + "https://gustavopasquini.wordpress.com/2016/09/15/pork-rib-with-barbucue-sauce/", + "http://gshow.globo.com/receitas-gshow/receita/costelinha-ao-molho-barbecue-4e3606631417f260dd004c7e.html" ], "tags": [ "food", @@ -83,86 +103,190 @@ ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 4251375630921, - "payout": 1.927, - "payout_at": "2016-09-22T18:52:15", - "pending_payout_value": "1.927 HBD", + "net_rshares": 173800694351, + "payout": 0.039, + "payout_at": "2016-09-22T14:37:00", + "pending_payout_value": "0.039 HBD", "percent_hbd": 10000, - "permlink": "pastel-of-banana-with-chocolate", - "post_id": 1257493, + "permlink": "pork-rib-with-barbucue-sauce", + "post_id": 1254587, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 12 + "total_votes": 17 }, - "title": "Pastel of Banana with Chocolate", - "updated": "2016-09-15T18:52:57", - "url": "/food/@gustavopasquini/pastel-of-banana-with-chocolate" + "title": "Pork Rib with Barbucue Sauce", + "updated": "2016-09-15T14:37:00", + "url": "/food/@gustavopasquini/pork-rib-with-barbucue-sauce" }, { "active_votes": [ { - "rshares": 164690897, - "voter": "flowmetheus" + "rshares": 231804941120, + "voter": "anonymous" + }, + { + "rshares": 9864946405427, + "voter": "berniesanders" + }, + { + "rshares": 73217648724, + "voter": "nextgenwitness" + }, + { + "rshares": 244108524320, + "voter": "justin" + }, + { + "rshares": 670052746417, + "voter": "silver" + }, + { + "rshares": 1626328757302, + "voter": "silversteem" + }, + { + "rshares": 1918321990604, + "voter": "nextgencrypto" + }, + { + "rshares": 2352812686160, + "voter": "wang" + }, + { + "rshares": 12940564755, + "voter": "danknugs" + }, + { + "rshares": 168108666389, + "voter": "steemservices" + }, + { + "rshares": 1061234076, + "voter": "murh" + }, + { + "rshares": 57111543784, + "voter": "ezzy" + }, + { + "rshares": 5325010239, + "voter": "gustavopasquini" + }, + { + "rshares": 360603550, + "voter": "sergey44" + }, + { + "rshares": 2300746982, + "voter": "leylar" + }, + { + "rshares": 2444628756, + "voter": "bookworm" + }, + { + "rshares": 275446808, + "voter": "cris.emilia" + }, + { + "rshares": 191761463, + "voter": "abnerpasquini" + }, + { + "rshares": 14497903981, + "voter": "thecurator" + }, + { + "rshares": 2649789126, + "voter": "levycore" + }, + { + "rshares": 163701239, + "voter": "steemit-recipes" + }, + { + "rshares": 23137850346, + "voter": "andrewawerdna" + }, + { + "rshares": 3011471807, + "voter": "imag1ne" + }, + { + "rshares": 109225703, + "voter": "rusla" + }, + { + "rshares": 517900727, + "voter": "mohamedmashaal" + }, + { + "rshares": 172352271, + "voter": "ola1" + }, + { + "rshares": 53227552, + "voter": "drac59" }, { - "rshares": 154843377, - "voter": "squadron" + "rshares": 733720697, + "voter": "alienbutt" } ], - "author": "squadron", + "author": "gustavopasquini", "author_payout_value": "0.000 HBD", - "author_reputation": 25.0, + "author_reputation": 56.39, "beneficiaries": [], "blacklists": [], - "body": "\n

Technology could be used to differentiate fish caught sustainably to those caught illegally, or linked to human rights abuses 

\n

\n

Blockchain is a digital ledger or record of information that is accessible to everyone. The technology is being trialled in the fishing industry. Photograph: Maria-Ines Fuenmayor/Provenance 

\n

A new digital technology has been trialled to track fish from trawler to the supermarket in a breakthrough that could help stop human rights abuses and illegal fishing.The technology \u2013 called blockchain and first used to power the currency Bitcoin \u2013 is expected to revolutionise the finance, property and food sectors replacing traditional contracts, paperwork and identification methods.Blockchain is a digital ledger or record of information that is accessible to everyone. In this case it details the origins of fish and allows anyone to see where the fish was caught, processed and sold on. It does not stop illegal fishing on its own but it opens up the supply chain for anyone to scrutinise.With the seafood industry notorious for human rights abuses and illegal fishing, campaigners hope the technology, piloted by a UK-based company Provenance, could help retailers, manufacturers and restaurants prove the origins of their fish.\u201cBuilding in mechanisms to deliver transparency from net to plate is central to eradicating illegal, unsustainable fishing and the human rights abuses that have plagued parts of the seafood production sector,\u201d said Steve Trent, executive director at the Environmental Justice Foundation (EJF). 

\n

\n

Smartphones could be used to scan fish products used in the trial to access information on their origins and journey to the supermarket shelf. Photograph: Provenance 

\n

At present the buying and selling of seafood is tracked by paper records and tags on the fish. The new blockchain approach sees local fishermen send SMS messages to register their catch on the blockchain. This identification is then transferred to a supplier along with the catch, with any subsequent move, for example processing or tinning, also recorded.
\nThe information on the origin and supply chain journey of the fish can then be accessed and verified by end buyers and consumers in shops or restaurants using their smartphones, replacing the current printed communication and labels. 

\n

The technology has already sparked interest from food companies, with the Co-op Food group currently conducting its own trial with Provenance on fresh food products - expected to conclude later this year.Provenance founder Jessi Baker said that the technology currently adds a \u201cfew pence\u201d to the price of the final product so is likely to be used first on premium fish products, or even wine or olive oil. The cost will need to come down to \u201cpoints of a pence\u201d to be viable for canned and processed fish produce, she said. 

\n

\u201cWe are desperately in need of a solution,\u201d said Baker. \u201cWe want to help support fish that is caught sustainably and verify these claims down the chain to help drive the market for slavery-free fish. This pilot shows that complex, global supply chains can be made transparent by using blockchain technology.\u201dThe fish trial has been welcomed by Thai Union, the world\u2019s biggest tuna exporter, that has faced its own sustainability criticisms. Tesco stopped stocking its John West brand in July this year, citing the need for the fish company to ensure it was using sustainable sources of tuna.\u201cTraceability \u2013 which allows us to prove that our fish is caught legally and sustainably and that safe labour conditions are met throughout the supply chain - is vital if we are to interest consumers in the source of their tuna,\u201d said Dr Darian McBain, director of sustainability at Thai Union. 

\n

\u201cThe next challenges are building scalability so that traceability systems can operate across borders and certifying authorities, and educating consumers that it is worth paying more for sustainably-caught traceable fish where workers are paid a fair and decent wage,\u201d she said.Trent from EJF, cautioned that on its own the technology would not end abuses in the seafood sector. \u201cIt is also essential to understand and support the other actions and mechanisms that are needed to combat these abuses, including the role of effective enforcement actions and the application of strong, fair and transparent action in the courts to impose robust penalties,\u201d he said. 

\n", - "category": "blockchain", - "children": 0, - "created": "2016-09-15T15:18:03", + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000\n\n> ### Traditional Brazilian Appetizer to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n## The Ragu Dry Meat\n\n> 400g of dried meat or desalted salt;\n\n> 1/2 medium onion chopped in the smallest possible size (brunoise);\n\n> 2 cloves garlic, minced in the smallest possible size (brunoise);\n\n> 3 tablespoons olive oil;\n\n> 0,3l of white or red wine;\n\n> 500ml of water;\n\n> Pelati 1 can of tomatoes into cubes or 3 Italian tomatoes, seeded and peeled;\n\n> Salt to taste, if necessary after completion of Ragu\n\n# The polenta\n\n> 200g of fine corn flour for polenta;\n\n> 700ml of water (to dilute the polenta);\n\n> \u00bd teaspoon salt tea;\n\n\n# PREPARATION\n\n\n## Ragu Dry Meat\n\n### 1. Before any procedure, dessalgue their dried meat, which usually comes to us consumers with too much salt to your saves. Cut the meat into large cubes of edge 5cm +/- each. Dip these cubes of dried meat in a container with water to the surface of the meat, covering the cubes. Keep this container in the refrigerator and replace your water every 2 hours, 3 to 4 times depending on how their meat is salty.\n\n### 2. To find out if your meat is too much or too little salt, just testing the water at the last and penultimate exchanges; if it is too salty, require more exchanges of cold water, if the water is only brackish, will be ready the meat to be manipulated.\n\n### 3. In a pressure cooker and over medium heat, saute onion and garlic in olive oil, leaving them brown. Add to this mixture the meat without water dessalgue, in order to seal (browning meat outside), while stirring occasionally.\n\n### 4. Add the wine, water and cover the pressure cooker, sealing it well. Lower the heat to the lowest setting and cook in pressure for about 30 minutes.\n\n### 5. Turn off the heat, allow the pressure out completely. Open the pot and see if the meat is well tender, otherwise return it to the fire, with the covered pot for a few minutes (10minutes, depending on how the meat in question is still hard).\n\n### 6. Once cooked meat and tender, remove all the liquid that came off the meat into another container and set aside.\n\n### 7. Close the pressure cooker with the meat cooked inside, and shake several times and vigorously. When you open the pressure cooker meat should be shredded completely. If not, close the pot again and repeat the procedure until the desired result.\n\n### 8. Transfer the meat with its broth to a small saucepan and deep, add pelati tomatoes, mix well, correct the salt if necessary, and leave on medium heat until the broth begins to reduce and refine. About 20 minutes. The more reduce broth, the flavor will be determined.\n\n\n\n## Polenta\n\n### Boil water in a deep pan and add low-temperature salt and fine corn flour gradually, stirring until it is full-bodied and creamy. Preferably, follow the \"proportion\" of water and cornmeal, and the \"method of preparation\" of the flour manufacturer to polenta to buy, after all there are differences in the composition of each of these industrialized corn mixtures! Porcione container or format you want to serve.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/)\n\n> ### [Recipe Site ](https://play.google.com/music/listen?u=0#/wmp)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 2, + "created": "2016-09-15T12:27:30", "curator_payout_value": "0.000 HBD", "depth": 0, "is_paidout": false, "json_metadata": { "image": [ - "https://www.steemitup.eu/i/5A9FC4C0EFB3A4846D134CA765923913.jpg", - "https://www.steemitup.eu/i/161238D8BA707784C33382E6E658E98E.jpg" + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" ], "links": [ - "https://www.theguardian.com/world/2016/jul/07/blockchain-answer-life-universe-everything-bitcoin-technology", - "https://www.theguardian.com/global-development/2014/jun/10/supermarket-prawns-thailand-produced-slave-labour", - "https://www.theguardian.com/fashion/fashion-blog/2014/apr/25/jessi-baker-clothes-slaves-fashion-provenance-website-revolution-consumer", - "https://www.theguardian.com/environment/food", - "https://www.tescoplc.com/news/blog/topics/tough-sustainability-standards-for-our-affordable-quality-fish/" + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/", + "https://play.google.com/music/listen?u=0#/wmp" ], "tags": [ - "blockchain", - "conservation", - "story", - "fishing", - "fish" + "food", + "health", + "recipes", + "curie", + "life" ] }, "max_accepted_payout": "1000000.000 HBD", - "net_rshares": 319534274, - "payout": 0.0, - "payout_at": "2016-09-22T15:18:03", - "pending_payout_value": "0.000 HBD", + "net_rshares": 17276761050325, + "payout": 20.228, + "payout_at": "2016-09-22T12:27:30", + "pending_payout_value": "20.228 HBD", "percent_hbd": 10000, - "permlink": "blockchain-technology-trialled-to-tackle-slavery-in-the-fishing-industry", - "post_id": 1255086, + "permlink": "polenta-with-ragu-meat-dry", + "post_id": 1253260, "reblogs": 0, "replies": [], "stats": { "flag_weight": 0.0, "gray": false, "hide": false, - "total_votes": 2 + "total_votes": 28 }, - "title": "Blockchain technology trialled to tackle slavery in the fishing industry", - "updated": "2016-09-15T15:18:03", - "url": "/blockchain/@squadron/blockchain-technology-trialled-to-tackle-slavery-in-the-fishing-industry" + "title": "Polenta with Ragu Meat Dry", + "updated": "2016-09-15T16:21:24", + "url": "/food/@gustavopasquini/polenta-with-ragu-meat-dry" } ] diff --git a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2_paging.pat.json b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2_paging.pat.json index fe51488c7066f6687ef680d6bfaa4f7768ef205c..e6da2e62a69587488859b1c4402204c123226186 100644 --- a/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2_paging.pat.json +++ b/tests/api_tests/hivemind/tavern/search-api_patterns/find_text/thailand_created_2_paging.pat.json @@ -1 +1,653 @@ -[] +[ + { + "active_votes": [ + { + "rshares": 231804941120, + "voter": "anonymous" + }, + { + "rshares": 9864946405427, + "voter": "berniesanders" + }, + { + "rshares": 73217648724, + "voter": "nextgenwitness" + }, + { + "rshares": 244108524320, + "voter": "justin" + }, + { + "rshares": 670052746417, + "voter": "silver" + }, + { + "rshares": 1626328757302, + "voter": "silversteem" + }, + { + "rshares": 1918321990604, + "voter": "nextgencrypto" + }, + { + "rshares": 2352812686160, + "voter": "wang" + }, + { + "rshares": 12940564755, + "voter": "danknugs" + }, + { + "rshares": 168108666389, + "voter": "steemservices" + }, + { + "rshares": 1061234076, + "voter": "murh" + }, + { + "rshares": 57111543784, + "voter": "ezzy" + }, + { + "rshares": 5325010239, + "voter": "gustavopasquini" + }, + { + "rshares": 360603550, + "voter": "sergey44" + }, + { + "rshares": 2300746982, + "voter": "leylar" + }, + { + "rshares": 2444628756, + "voter": "bookworm" + }, + { + "rshares": 275446808, + "voter": "cris.emilia" + }, + { + "rshares": 191761463, + "voter": "abnerpasquini" + }, + { + "rshares": 14497903981, + "voter": "thecurator" + }, + { + "rshares": 2649789126, + "voter": "levycore" + }, + { + "rshares": 163701239, + "voter": "steemit-recipes" + }, + { + "rshares": 23137850346, + "voter": "andrewawerdna" + }, + { + "rshares": 3011471807, + "voter": "imag1ne" + }, + { + "rshares": 109225703, + "voter": "rusla" + }, + { + "rshares": 517900727, + "voter": "mohamedmashaal" + }, + { + "rshares": 172352271, + "voter": "ola1" + }, + { + "rshares": 53227552, + "voter": "drac59" + }, + { + "rshares": 733720697, + "voter": "alienbutt" + } + ], + "author": "gustavopasquini", + "author_payout_value": "0.000 HBD", + "author_reputation": 56.39, + "beneficiaries": [], + "blacklists": [], + "body": "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000\n\n> ### Traditional Brazilian Appetizer to bring exquisite recipes to your fine dining table for special ocacsions.\n\n# INGREDIENTS\n\n## The Ragu Dry Meat\n\n> 400g of dried meat or desalted salt;\n\n> 1/2 medium onion chopped in the smallest possible size (brunoise);\n\n> 2 cloves garlic, minced in the smallest possible size (brunoise);\n\n> 3 tablespoons olive oil;\n\n> 0,3l of white or red wine;\n\n> 500ml of water;\n\n> Pelati 1 can of tomatoes into cubes or 3 Italian tomatoes, seeded and peeled;\n\n> Salt to taste, if necessary after completion of Ragu\n\n# The polenta\n\n> 200g of fine corn flour for polenta;\n\n> 700ml of water (to dilute the polenta);\n\n> \u00bd teaspoon salt tea;\n\n\n# PREPARATION\n\n\n## Ragu Dry Meat\n\n### 1. Before any procedure, dessalgue their dried meat, which usually comes to us consumers with too much salt to your saves. Cut the meat into large cubes of edge 5cm +/- each. Dip these cubes of dried meat in a container with water to the surface of the meat, covering the cubes. Keep this container in the refrigerator and replace your water every 2 hours, 3 to 4 times depending on how their meat is salty.\n\n### 2. To find out if your meat is too much or too little salt, just testing the water at the last and penultimate exchanges; if it is too salty, require more exchanges of cold water, if the water is only brackish, will be ready the meat to be manipulated.\n\n### 3. In a pressure cooker and over medium heat, saute onion and garlic in olive oil, leaving them brown. Add to this mixture the meat without water dessalgue, in order to seal (browning meat outside), while stirring occasionally.\n\n### 4. Add the wine, water and cover the pressure cooker, sealing it well. Lower the heat to the lowest setting and cook in pressure for about 30 minutes.\n\n### 5. Turn off the heat, allow the pressure out completely. Open the pot and see if the meat is well tender, otherwise return it to the fire, with the covered pot for a few minutes (10minutes, depending on how the meat in question is still hard).\n\n### 6. Once cooked meat and tender, remove all the liquid that came off the meat into another container and set aside.\n\n### 7. Close the pressure cooker with the meat cooked inside, and shake several times and vigorously. When you open the pressure cooker meat should be shredded completely. If not, close the pot again and repeat the procedure until the desired result.\n\n### 8. Transfer the meat with its broth to a small saucepan and deep, add pelati tomatoes, mix well, correct the salt if necessary, and leave on medium heat until the broth begins to reduce and refine. About 20 minutes. The more reduce broth, the flavor will be determined.\n\n\n\n## Polenta\n\n### Boil water in a deep pan and add low-temperature salt and fine corn flour gradually, stirring until it is full-bodied and creamy. Preferably, follow the \"proportion\" of water and cornmeal, and the \"method of preparation\" of the flour manufacturer to polenta to buy, after all there are differences in the composition of each of these industrialized corn mixtures! Porcione container or format you want to serve.\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nhttps://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png\n\n# About Me\n\n### In 2012 I began my cooking journey in Brasil and studied at \u201cSenac, Juiz de Fora\u201d, in Minas Gerais, developing my basic culinary techniques.\n\n### Later I worked in a local restaurant, and rose to a role in management, helping to increase the clientele base. I then discovered a refined bistro called \u201cAssunta\u201d in Minas Gerais and cooked as a Chef de parti. In this place I became sure of what I wanted for my life. Learning an important chef\u2019s culinary art at that time aroused my desire to live abroad; learn English and improve my culinary techniques.\n\n### Following this experience I traveled to Ireland in Europe and began working in an Irish restaurant as a Kitchen Porter and later working as a Chef de Parti.\n\n### Having met my girlfriend, I embarked on the third part of journey to Thailand in 2014 where I gained an Asian cooking experience and improved my International culinary techniques. In Bangkok I had the privilege of undertaking a course in one of the most prestigious international networks of French cuisine; \u201cLe Cordon Bleu\u201d.\n\n### Having completed the Advanced cooking level there I traveled to Italy and learnt more about Mediterranean cooking and then returned to Brasil, where I\u2019m now based.\n\nhttps://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\n> ### [ Chef Recipes Site ](https://gustavopasquini.com)\n\n> ### [ Chef Recipes Shop ](https://gustavopasquini-shop.com)\n\n> ### [Blog Post ](https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/)\n\n> ### [Recipe Site ](https://play.google.com/music/listen?u=0#/wmp)\n\n-----------------------------------------------------------------------------------------------------------------------------------------------------------", + "category": "food", + "children": 2, + "created": "2016-09-15T12:27:30", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://gustavopasquini.files.wordpress.com/2016/09/untitled-design-22.png?w=1000", + "https://img1.steemit.com/0x0/http://gustavopasquini.com/wp-content/uploads/2016/07/2-1.png", + "https://img1.steemit.com/0x0/https://gustavopasquini.files.wordpress.com/2016/01/logo_transparent.png?w=465" + ], + "links": [ + "https://gustavopasquini.com", + "https://gustavopasquini-shop.com", + "https://gustavopasquini.wordpress.com/2016/09/15/polenta-with-ragu-meat-dry/", + "https://play.google.com/music/listen?u=0#/wmp" + ], + "tags": [ + "food", + "health", + "recipes", + "curie", + "life" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 17276761050325, + "payout": 20.228, + "payout_at": "2016-09-22T12:27:30", + "pending_payout_value": "20.228 HBD", + "percent_hbd": 10000, + "permlink": "polenta-with-ragu-meat-dry", + "post_id": 1253260, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 28 + }, + "title": "Polenta with Ragu Meat Dry", + "updated": "2016-09-15T16:21:24", + "url": "/food/@gustavopasquini/polenta-with-ragu-meat-dry" + }, + { + "active_votes": [ + { + "rshares": 115875646943, + "voter": "anonymous" + }, + { + "rshares": 20416330653141, + "voter": "blocktrades" + }, + { + "rshares": 7095296222198, + "voter": "xeldal" + }, + { + "rshares": 3306677308899, + "voter": "pharesim" + }, + { + "rshares": 5763379001974, + "voter": "enki" + }, + { + "rshares": 28968653731, + "voter": "interteem" + }, + { + "rshares": 644261084628, + "voter": "boombastic" + }, + { + "rshares": 6558399783, + "voter": "bingo-0" + }, + { + "rshares": 131761872479, + "voter": "team" + }, + { + "rshares": 94049519439, + "voter": "jchch" + }, + { + "rshares": 83523204254, + "voter": "acidsun" + }, + { + "rshares": 13612259491, + "voter": "fact" + }, + { + "rshares": 10435646449, + "voter": "cian.dafe" + }, + { + "rshares": 268842348, + "voter": "coar" + }, + { + "rshares": 1060926034, + "voter": "murh" + }, + { + "rshares": 10263839321, + "voter": "andu" + }, + { + "rshares": 202560983569, + "voter": "dragonslayer109" + }, + { + "rshares": 75027817954, + "voter": "thecryptofiend" + }, + { + "rshares": 6652497229, + "voter": "grandpere" + }, + { + "rshares": 6553223997, + "voter": "keithwillshine" + }, + { + "rshares": 783400875, + "voter": "mammasitta" + }, + { + "rshares": 81716838174, + "voter": "razvanelulmarin" + }, + { + "rshares": 2187218324, + "voter": "superfreek" + }, + { + "rshares": 4941216517, + "voter": "skapaneas" + }, + { + "rshares": 174543034217, + "voter": "asmolokalo" + }, + { + "rshares": 61322628143, + "voter": "lehard" + }, + { + "rshares": 69475262319, + "voter": "rubybian" + }, + { + "rshares": 8567907568, + "voter": "cmtzco" + }, + { + "rshares": 16313784115, + "voter": "yogi.artist" + }, + { + "rshares": 20904678488, + "voter": "elyaque" + }, + { + "rshares": 910779619, + "voter": "steemswede" + }, + { + "rshares": 823059320858, + "voter": "slowwalker" + }, + { + "rshares": 10594872684, + "voter": "seanmchughart" + }, + { + "rshares": 14879287331, + "voter": "ausbitbank" + }, + { + "rshares": 45733145544, + "voter": "mrwang" + }, + { + "rshares": 23662387370, + "voter": "akareyon" + }, + { + "rshares": 85512692, + "voter": "snowden" + }, + { + "rshares": 40151194718, + "voter": "diana.catherine" + }, + { + "rshares": 10418219772, + "voter": "deviedev" + }, + { + "rshares": 151952973903, + "voter": "gbert" + }, + { + "rshares": 451014793670, + "voter": "knozaki2015" + }, + { + "rshares": 7055915472, + "voter": "arcange" + }, + { + "rshares": 2650671514, + "voter": "the-future" + }, + { + "rshares": 4979465938, + "voter": "konti" + }, + { + "rshares": 39270485141, + "voter": "royaltiffany" + }, + { + "rshares": 10902999570, + "voter": "rpf" + }, + { + "rshares": 3847926858, + "voter": "bitcoiner" + }, + { + "rshares": 14848958749, + "voter": "beowulfoflegend" + }, + { + "rshares": 33395564589, + "voter": "sauravrungta" + }, + { + "rshares": 13069930577, + "voter": "shredlord" + }, + { + "rshares": 125433315, + "voter": "aish" + }, + { + "rshares": 50619397, + "voter": "steemchain" + }, + { + "rshares": 50619397, + "voter": "whalepool" + }, + { + "rshares": 904575538, + "voter": "happyphoenix" + }, + { + "rshares": 4140959784, + "voter": "ace108" + }, + { + "rshares": 1365664469, + "voter": "alex.chien" + }, + { + "rshares": 10469586987, + "voter": "logic" + }, + { + "rshares": 3361197115, + "voter": "sulev" + }, + { + "rshares": 139386030811, + "voter": "shaka" + }, + { + "rshares": 9125799205, + "voter": "sykochica" + }, + { + "rshares": 2236674222, + "voter": "merej99" + }, + { + "rshares": 71563049, + "voter": "always1success" + }, + { + "rshares": 4119640503, + "voter": "timcliff" + }, + { + "rshares": 148152809, + "voter": "btctoken" + }, + { + "rshares": 2375230655, + "voter": "kalimor" + }, + { + "rshares": 13640797900, + "voter": "stephen.king989" + }, + { + "rshares": 50565616, + "voter": "michellek" + }, + { + "rshares": 3489192001, + "voter": "kurtbeil" + }, + { + "rshares": 2440657034, + "voter": "steemleak" + }, + { + "rshares": 88179884, + "voter": "bigsambucca" + }, + { + "rshares": 1148932075, + "voter": "boddhisattva" + }, + { + "rshares": 91269448383, + "voter": "krishtopa" + }, + { + "rshares": 13512480655, + "voter": "gargon" + }, + { + "rshares": 14081076281, + "voter": "cristi" + }, + { + "rshares": 3767193262, + "voter": "alchemage" + }, + { + "rshares": 25744468323, + "voter": "hanshotfirst" + }, + { + "rshares": 62624816, + "voter": "nevermind" + }, + { + "rshares": 2949708530, + "voter": "unrealisback" + }, + { + "rshares": 44290701459, + "voter": "bitcalm" + }, + { + "rshares": 92892046204, + "voter": "serejandmyself" + }, + { + "rshares": 24058008360, + "voter": "mihaiart" + }, + { + "rshares": 8791068705, + "voter": "gvargas123" + }, + { + "rshares": 14514235832, + "voter": "nastik" + }, + { + "rshares": 50816343, + "voter": "bitchplease" + }, + { + "rshares": 8773812221, + "voter": "craigwilliamz" + }, + { + "rshares": 2184427180, + "voter": "shadowspub" + }, + { + "rshares": 88019548, + "voter": "uziriel" + }, + { + "rshares": 7471182625, + "voter": "einsteinpotsdam" + }, + { + "rshares": 50784892, + "voter": "freesteem" + }, + { + "rshares": 1742183706, + "voter": "rachelsvparry" + }, + { + "rshares": 51729228, + "voter": "jeff-kubitz" + }, + { + "rshares": 89354006295, + "voter": "cnfund" + }, + { + "rshares": 1771984046, + "voter": "alwayzgame" + }, + { + "rshares": 4003016084, + "voter": "funnyman" + }, + { + "rshares": 3674734012, + "voter": "slayer" + }, + { + "rshares": 219004308, + "voter": "anomaly" + }, + { + "rshares": 180118177, + "voter": "natord" + }, + { + "rshares": 87018470283, + "voter": "btshuang" + }, + { + "rshares": 1571586148, + "voter": "yanik" + }, + { + "rshares": 152866755, + "voter": "chocolatoso" + }, + { + "rshares": 74838700, + "voter": "dealzgal" + }, + { + "rshares": 153178035, + "voter": "royfft" + }, + { + "rshares": 132877786, + "voter": "sawgunner13" + }, + { + "rshares": 108601105, + "voter": "dirlei.sdias" + }, + { + "rshares": 150753854, + "voter": "shortstories" + } + ], + "author": "sauravrungta", + "author_payout_value": "0.000 HBD", + "author_reputation": 61.54, + "beneficiaries": [], + "blacklists": [], + "body": "\n

Most of us believe that the laws of any country are a result of the pinnacle of rational thinking. Of course, since laws are what keep everybody in \u201corder\u201d and they are quite literally what makes a country, a country. But laws are made by people and people do stupid things all the time. Even while making said laws! There are some laws that make you want to go like this:

\n

\n

In this post, I\u2019m going to list some of the craziest, stupidest and the dumbest laws that are either still in effect or were in effect up till recently. And I am going to do this country wise. So, sit back, relax and get ready for a chuckle or two!

\n

Australia

\n

1. In Victoria, Australia, it is illegal to change a light bulb unless you\u2019re a licensed electrician.

\n

2. Men in the country are free to cross-dress, just as long as their dresses are not strapless.

\n

3. Children may not purchase cigarettes, but they may smoke them.

\n

4. It is illegal to wear hot pink pants after midday Sunday.

\n

\n

Image Credits

\n

Bangladesh

\n

1. Bangladeshi children of age 15 and older can be sent to jail for cheating on their final exams.

\n

Britain

\n

1. It is illegal to handle a salmon in suspicious circumstances.

\n

2. It is illegal to import potatoes into England or Wales if you have reasonable cause to believe that they are Polish.

\n

3. In Britain, you are not allowed to let your pet, mate with any pet from the royal house.

\n

4. It is illegal to operate a cow while intoxicated.

\n

5. It is illegal to die in parliament. (This law has been removed recently)

\n

Canada

\n

1. In Canada, by law, one out of every five songs on the radio must be sung by a Canadian.

\n

\n

Image Credits

\n

2. It is illegal to show public affection on Sunday.

\n

3. It is illegal to kill a sick person by frightening them.

\n

China

\n

1. In July 2013 a law was passed in China that states it is illegal for adult children to not visit their parents \u201coften\u201d in China. They are also required to attend to their parent\u2019s spiritual needs.

\n

2. To go to college you must be intelligent.

\n

Denmark

\n

1. In Danish restaurants, you don\u2019t have to pay for your food unless, you are \u2018full\u2019 at the end of your meal.

\n

2. It is illegal to start your car without first checking to see if there are any children sleeping under the car.

\n

3. In Denmark it is not illegal for a convicted prisoner to escape from prison. If the escapee is caught he only serves the rest of his sentence.

\n

France

\n

1. In France, it is stated as illegal to marry a dead person.

\n

2. From 1799 to 2013, it was illegal for women to wear pants.

\n

3. It is illegal to kiss on railways in France.

\n

4. It is illegal to take photos of police officers or police vehicles, even if they are just in the background.

\n

Hong Kong

\n

1. In Hong Kong, there\u2019s a law that allows a wife to kill her husband if she finds him cheating. However, she must kill him with her bare hands.

\n

\n

Image Credits

\n

Indonesia

\n

1. In Indonesia, the penalty for masturbation is decapitation.

\n

Israel

\n

1. If you have been maintaining an illegal radio station for five or more years, the station becomes legal.

\n

2. Picking one\u2019s nose on the Sabbath is illegal.

\n

3. It is forbidden to bring bears to the beach.

\n

Japan

\n

1. Being overweight is illegal in Japan.

\n

Saudi Arabia

\n

1. In Saudi Arabia, women are not allowed to drive a car.

\n

2. Also, there is no minimum age for marriage.

\n

Singapore

\n

1. In Singapore it is illegal for a person to walk around the house naked.

\n

2. It is illegal to pee in an elevator.

\n

3. Chewing gum is illegal in Singapore.

\n

\n

Image Credits

\n

Switzerland

\n

1. In Switzerland, it is illegal to flush a toilet after 10pm.

\n

2. Clothes may not be hung to dry on Sunday.

\n

3. You may not wash your car on a Sunday.

\n

Thailand

\n

1. In Thailand, it is illegal to step on money.

\n

2. It is also illegal to leave your house without wearing underwear.

\n

3. Also, all cinema patrons must stand up during the National Anthem before a film starts.

\n

USA

\n

1. It is illegal to stab oneself and gain the pity of others. (Alabama)

\n

2. A man is allowed to beat his wife, but only once a month. (Arizona)

\n

3. A person who detonates a nuclear device within city limits is fined up to $500. (California)

\n

4. Car dealers cannot show cars to customers on Sundays. (Colorado) 

\n

5. It is against the law to educate dogs. (Connecticut)

\n

6. It is illegal to give whiskey to a dog, in Chicago.

\n

7. It is illegal to indulge in 'spiteful gossip' and 'talking behind a person's back'. (Indiana)

\n

8. A person needs a license to walk around nude in his/her property. (Kentucky)

\n

9. It is illegal to take a lion to the movies in Baltimore. (Maryland)

\n

10. A man is not allowed to run around with a shaved chest. (Nabraska)

\n

11. Jumping off the Empire State Building is illegal.

\n

12. It is illegal to lie down and fall asleep with your shoes on. (North Dakota)

\n
\n
\n

Sources: Buzzle, Thought Catalogue, Wonderlist, DailyMail, Lifedaily

\n
\n

Follow me for more awesome content @sauravrungta. :)
\nCheck out my Instagram - LINK

\n", + "category": "facts", + "children": 21, + "created": "2016-09-14T22:53:15", + "curator_payout_value": "0.000 HBD", + "depth": 0, + "is_paidout": false, + "json_metadata": { + "image": [ + "https://s15.postimg.org/slf9zpw8r/bab_copy.jpg", + "https://s10.postimg.org/xv139out5/Victoria_Australia_is_forbidden_to_wear_pink_hot.jpg", + "https://s10.postimg.org/kcjea0bft/justin_canada.jpg", + "https://s14.postimg.org/wes6vcich/woman_throttles_man.jpg", + "https://s11.postimg.org/7jhole5fn/i_Stock_000028475756_Medium.jpg" + ], + "links": [ + "http://www.lifedaily.com/26-of-the-craziest-laws-from-around-the-world/", + "http://www.vanyaland.com/2014/04/30/toronto-throwdown-justin-bieber-asks-mayor-rob-ford-crack-canadian-nightclub/", + "http://www.theregister.co.uk/2015/06/02/big_brains_help_birds_not_blokes_fish_study/", + "http://www.berkeleywellness.com/healthy-eating/diet-weight-loss/slideshow/chew-gum-health", + "http://www.buzzle.com/articles/crazy-laws.html", + "http://thoughtcatalog.com/rachel-hodin/2013/10/67-ridiculous-laws-from-around-the-world-that-still-actually-exist/", + "http://www.wonderslist.com/10-craziest-laws-in-world/", + "http://www.dailymail.co.uk/travel/travel_news/article-2856346/It-illegal-not-smile-Milan-no-donkeys-sleep-bath-Oklahoma-strangest-laws-word.html", + "https://www.instagram.com/sauravrungta45/" + ], + "tags": [ + "facts", + "funny", + "laws", + "" + ], + "users": [ + "sauravrungta" + ] + }, + "max_accepted_payout": "1000000.000 HBD", + "net_rshares": 40900060103077, + "payout": 102.69, + "payout_at": "2016-09-21T22:53:15", + "pending_payout_value": "102.690 HBD", + "percent_hbd": 10000, + "permlink": "craziest-laws-from-around-the-world", + "post_id": 1248311, + "reblogs": 0, + "replies": [], + "stats": { + "flag_weight": 0.0, + "gray": false, + "hide": false, + "total_votes": 105 + }, + "title": "Craziest Laws From Around The World", + "updated": "2016-09-14T22:53:15", + "url": "/facts/@sauravrungta/craziest-laws-from-around-the-world" + } +]