diff --git a/Rakefile b/Rakefile index e8a97586a7a1bddfcd9cd55c20585b5ab30bc44d..04bb9125585a1094f6b11c1165afe5f89cf04723 100644 --- a/Rakefile +++ b/Rakefile @@ -1,10 +1,10 @@ lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'scrape/api_definitions_job' -require 'scrape/tutorials_job/base' -require 'scrape/tutorials_job/javascript' -require 'scrape/tutorials_job/python' -require 'scrape/tutorials_job/ruby' +require 'generate/tutorials_job/base' +require 'generate/tutorials_job/javascript' +require 'generate/tutorials_job/python' +require 'generate/tutorials_job/ruby' require 'rake/testtask' require 'net/https' @@ -13,15 +13,6 @@ require 'yaml' require 'html-proofer' namespace :scrape do - desc "Scrape steemjs docs" - task :javascript do - - end - - desc "Scrape pysteem docs" - task :python do - end - desc "Scrape API Definitions" task :api_defs do url = ENV.fetch('TEST_NODE', 'https://api.steemit.com') @@ -30,40 +21,42 @@ namespace :scrape do puts "Methods added or changed: #{count}" end +end - desc 'Scrape all known tutorial repositories.' +namespace :gen do + desc 'Generate all known tutorial README.md files.' task :tutorials do puts '=' * 80 puts "JS-Tutorials:" - Rake::Task["scrape:tutorials:js"].invoke + Rake::Task["gen:tutorials:js"].invoke puts '=' * 80 puts "PY-Tutorials:" - Rake::Task["scrape:tutorials:py"].invoke + Rake::Task["gen:tutorials:py"].invoke puts '=' * 80 puts "RB-Tutorials:" - Rake::Task["scrape:tutorials:rb"].invoke + Rake::Task["gen:tutorials:rb"].invoke end namespace :tutorials do - desc 'Scrape JS-Tutorials' + desc 'Generate JS-Tutorials' task :js, [:num, :force] do |t, args| - job = Scrape::TutorialsJob::Javascript.new(num: args[:num], force: args[:force]) + job = Generate::TutorialsJob::Javascript.new(num: args[:num], force: args[:force]) count = job.perform puts "Tutorials added or changed: #{count}" end - desc 'Scrape PY-Tutorials' + desc 'Generate PY-Tutorials' task :py, [:num, :force] do |t, args| - job = Scrape::TutorialsJob::Python.new(num: args[:num], force: args[:force]) + job = Generate::TutorialsJob::Python.new(num: args[:num], force: args[:force]) count = job.perform puts "Tutorials added or changed: #{count}" end - desc 'Scrape RB-Tutorials' + desc 'Generate RB-Tutorials' task :rb, [:num, :force] do |t, args| - job = Scrape::TutorialsJob::Ruby.new(num: args[:num], force: args[:force]) + job = Generate::TutorialsJob::Ruby.new(num: args[:num], force: args[:force]) count = job.perform puts "Tutorials added or changed: #{count}" diff --git a/_tutorials-javascript/account_reputation.md b/_tutorials-javascript/account_reputation.md index 3f9bc20e63fb0c4494afdd2284831731fcfa80b3..e5d35a9f3041736c36cf6421db8ab6a4a259717c 100644 --- a/_tutorials-javascript/account_reputation.md +++ b/_tutorials-javascript/account_reputation.md @@ -4,7 +4,7 @@ position: 20 description: "_Learn how to interpret account reputation._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Reputation](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/20_account_reputation) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Reputation](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/20_account_reputation) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -104,8 +104,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/20_account_reputation` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/20_account_reputation` 1. `npm i` 1. `npm i` 1. `npm run dev-server` or `npm run start` diff --git a/_tutorials-javascript/blog_feed.md b/_tutorials-javascript/blog_feed.md index e926323a4223836e502a0a062a126d04a4e36042..912dd5a59d9941289fa4eff126d4617817760a0b 100644 --- a/_tutorials-javascript/blog_feed.md +++ b/_tutorials-javascript/blog_feed.md @@ -4,7 +4,7 @@ position: 1 description: "_By the end of this tutorial you should know how to fetch most recent five posts from particular user on Steem._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Blog Feed](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/01_blog_feed) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Blog Feed](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/01_blog_feed) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -152,8 +152,8 @@ That's all there is to it. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/01_blog_feed` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/01_blog_feed` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/claim_rewards.md b/_tutorials-javascript/claim_rewards.md index 16680ade5d1e5ebab82c032198da0ddae9a7cf0f..6645ce6c81fbcd11569c43da3b6ab9623859d8d2 100644 --- a/_tutorials-javascript/claim_rewards.md +++ b/_tutorials-javascript/claim_rewards.md @@ -4,7 +4,7 @@ position: 23 description: "_Learn how to claim rewards from unclaimed reward balance using Steemconnect as well as client signing method._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Claim Rewards](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/23_claim_rewards) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Claim Rewards](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/23_claim_rewards) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -105,8 +105,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/21_claim_rewards` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/21_claim_rewards` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/client_signing.md b/_tutorials-javascript/client_signing.md index fea7a4dabaa856cf46113ad221a8fe1ad1d905c6..9dfa005eaa2560ed2ae29d346faba1a88fe16a91 100644 --- a/_tutorials-javascript/client_signing.md +++ b/_tutorials-javascript/client_signing.md @@ -4,7 +4,7 @@ position: 3 description: "_By the end of this tutorial you would know how to sign, verify broadcast transactions locally on Steem._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Client Signing](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/03_client_signing) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Client Signing](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/03_client_signing) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -36,7 +36,7 @@ Testnet and Production networks only differ with few settings which helps develo ```javascript opts.addressPrefix = 'TST'; opts.chainId = - 'd043ab83d223f25f37e1876fe48a240d49d8e4b1daa2342064990a8036a8bb5b'; + '46d82ab7d8db682eb1959aed0ada039a6d49afa1602491f93dde9cac3e8e6c32'; //connect to server which is connected to the network/testnet const client = new dsteem.Client('https://testnet.steemitdev.com', opts); ``` @@ -47,7 +47,7 @@ const client = new dsteem.Client('https://testnet.steemitdev.com', opts); To test connection as well as to get parameters of the connected network, we can use `getDynamicGlobalProperties` function from **dsteem** library. Only 2 fields are in our interesting for this tutorial, `head_block_number` - returns head or latest block number of the network, `head_block_id` - returns id of head block. - + #### 3. Account selection<a name="account-selection"></a> @@ -116,8 +116,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/03_client_signing` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/03_client_signing` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/convert_sbd_to_steem.md b/_tutorials-javascript/convert_sbd_to_steem.md index c23a7883b6cc740f77c333f5f93d7d35c0fbbc5b..4a96bbebaff37411840930275817a6af9b25af71 100644 --- a/_tutorials-javascript/convert_sbd_to_steem.md +++ b/_tutorials-javascript/convert_sbd_to_steem.md @@ -4,7 +4,7 @@ position: 32 description: "_How to convert SBD to STEEM for a specified account._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Convert Sbd To Steem](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/32_convert_sbd_to_steem) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Convert Sbd To Steem](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -143,10 +143,11 @@ The results of the operation is displayed on the UI along with a block number in ### To run this tutorial -1. clone this repo -1. `cd tutorials/32_convert_sbd_to_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ + --- diff --git a/_tutorials-javascript/create_account.md b/_tutorials-javascript/create_account.md index 201e0e0c73ec55c87ddbcbfabfb88e2f6ac6ae0d..37afcb5409d6a25ead60c8d3f9ad6b68b8493414 100644 --- a/_tutorials-javascript/create_account.md +++ b/_tutorials-javascript/create_account.md @@ -4,7 +4,7 @@ position: 26 description: "_Create Steem account using Steemconnect as well as with client-side signing._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Create Account](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/26_create_account) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Create Account](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/26_create_account) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -197,8 +197,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/26_create_account` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/26_create_account` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/delegate_power.md b/_tutorials-javascript/delegate_power.md index ba95cbd575f39616bd8eaee29a82f6f5b40ce829..c19982dfc76c05d919a4d1c37e820f44bcdcdc78 100644 --- a/_tutorials-javascript/delegate_power.md +++ b/_tutorials-javascript/delegate_power.md @@ -4,7 +4,7 @@ position: 27 description: "_Delegate power to other users using Steemconnect or Client-side signing._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Delegate Power](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/27_delegate_power) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Delegate Power](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/27_delegate_power) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -106,8 +106,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/25_delegate_power` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/25_delegate_power` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/edit_content_patching.md b/_tutorials-javascript/edit_content_patching.md index 3137b3ec100c275040a4d2f51e29b0e56fc484c9..d5f814fac86b152af7716066567706b57ea7d019 100644 --- a/_tutorials-javascript/edit_content_patching.md +++ b/_tutorials-javascript/edit_content_patching.md @@ -4,7 +4,7 @@ position: 12 description: "_By the end of this tutorial you should know how to patch post edits to Steem._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/12_edit_content_patching) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -176,8 +176,8 @@ After the post has been broadcasted to the network, we can simply set all the fi ### To Run the tutorial -1. clone this repo -1. `cd tutorials/12_edit_content_patching` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/follow_a_user.md b/_tutorials-javascript/follow_a_user.md index 42c65d1fa0a035adea0288255b6c11e2ecb573bb..debfdb52435d432995f04e37e13fe027a38281c4 100644 --- a/_tutorials-javascript/follow_a_user.md +++ b/_tutorials-javascript/follow_a_user.md @@ -4,7 +4,7 @@ position: 18 description: "_Follow and unfollow a user / author._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow A User](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/18_follow_a_user) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow A User](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/18_follow_a_user) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -153,8 +153,8 @@ If either of the values for the user or author does not exist the proper error r ### To run this tutorial -1. clone this repo -1. `cd tutorials/18_follow_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/18_follow_user` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_account_comments.md b/_tutorials-javascript/get_account_comments.md index 87b2a5309659e9d370cfbacef15f70c9f3a2d749..5ed51650f4a1f1455976e3ff2469ffa23cf1aae7 100644 --- a/_tutorials-javascript/get_account_comments.md +++ b/_tutorials-javascript/get_account_comments.md @@ -4,7 +4,7 @@ position: 9 description: "_By the end of this tutorial you should know how to retrieve account comments from the steem blockchain_" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/09_get_account_comments) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -272,8 +272,8 @@ Each line is then pushed and displayed separately. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/09_get_account_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_account_replies.md b/_tutorials-javascript/get_account_replies.md index 568ccf534150a5ef0a18210590cb98e2c96a6823..166e348795f59ab47486d640af2675b5445bb677 100644 --- a/_tutorials-javascript/get_account_replies.md +++ b/_tutorials-javascript/get_account_replies.md @@ -4,7 +4,7 @@ position: 8 description: "_By the end of this tutorial you would know how to get replies made on particular account's content._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/08_get_account_replies) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -266,8 +266,8 @@ We check if `content` is not an empty object and we iterate through each object ### To Run the tutorial -1. clone this repo -1. `cd tutorials/08_get_account_replies` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_delegations_by_user.md b/_tutorials-javascript/get_delegations_by_user.md index e74826cdea3176f615f8ab5ab293de0a6ac3c059..9e210350e0309b63fed33e590a699b2bf5ac8417 100644 --- a/_tutorials-javascript/get_delegations_by_user.md +++ b/_tutorials-javascript/get_delegations_by_user.md @@ -4,7 +4,7 @@ position: 29 description: "_View the vesting delegations made by a user as well as the delegations that are expiring._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Delegations By User](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/29_get_delegations_by_user) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Delegations By User](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/29_get_delegations_by_user) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -155,8 +155,8 @@ delegationdata.forEach(newObj => { ### To run this tutorial -1. clone this repo -2. `cd tutorials/27_get_delegations_by_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/27_get_delegations_by_user` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/get_follower_and_following_list.md b/_tutorials-javascript/get_follower_and_following_list.md index 3871640131e0c3d68729a9fa4e3586dd7aada6f4..f1cca0835a2f5f4ffe81f2fc48826090423554ae 100644 --- a/_tutorials-javascript/get_follower_and_following_list.md +++ b/_tutorials-javascript/get_follower_and_following_list.md @@ -4,7 +4,7 @@ position: 19 description: "_Get the followers of a user/author & the authors that user is following._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/19_get_follower_and_following_list) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -115,8 +115,8 @@ followlist.forEach(newObj => { ### To run this tutorial -1. clone this repo -2. `cd tutorials/19_get_follower_and_following_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/get_post_comments.md b/_tutorials-javascript/get_post_comments.md index 71173524c84b6e36bb375377ea36df927b117614..83c1ec00b1898b8f8933341e0d34e208c8cd8078 100644 --- a/_tutorials-javascript/get_post_comments.md +++ b/_tutorials-javascript/get_post_comments.md @@ -4,7 +4,7 @@ position: 7 description: "_By the end of this tutorial you would know how to get comments made by others on any post._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/07_get_post_comments) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -146,8 +146,8 @@ From this result, you have access to comments made on selected post. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/07_get_post_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_post_details.md b/_tutorials-javascript/get_post_details.md index 564fe5743069c2961cc26f57627398d3a61bde8c..4c630449ea249513401087c8aff06567f8044158 100644 --- a/_tutorials-javascript/get_post_details.md +++ b/_tutorials-javascript/get_post_details.md @@ -4,7 +4,7 @@ position: 5 description: "_By the end of this tutorial you would know how to get post details and use them appropriately._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/05_get_post_details) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/05_get_post_details) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -187,8 +187,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/05_get_post_details` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/05_get_post_details` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_posts.md b/_tutorials-javascript/get_posts.md index 3b43c153a3c638fa2b8c4f9ccc3d15b02656c332..1f1a9c7f63c5fc677ab560d41c7286b2cfb83d85 100644 --- a/_tutorials-javascript/get_posts.md +++ b/_tutorials-javascript/get_posts.md @@ -4,7 +4,7 @@ position: 4 description: "Query for the most recent posts having a specific tag, using a Steem filter" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/04_get_posts) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/04_get_posts) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -49,7 +49,7 @@ There are three input components to the UI. * Get Posts: It's a button. You click it, and we move on to assembling our post. `<button class="btn btn-primary" onclick="getPosts()">Get Posts</button>` - + #### 2. Construct query <a name="Construct-query"></a> @@ -187,8 +187,8 @@ The result returned from the service is a `JSON` list. This is an example list w ### To Run the tutorial -1. clone this repo -1. `cd tutorials/04_get_posts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/04_get_posts` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/get_state_replacement_api.md b/_tutorials-javascript/get_state_replacement_api.md index d881f2b28d0860aa9cc49e334328f8bb341a6d5f..ebb717c566a6d3d84c7ef1f66993487595f85819 100644 --- a/_tutorials-javascript/get_state_replacement_api.md +++ b/_tutorials-javascript/get_state_replacement_api.md @@ -4,7 +4,7 @@ position: 34 description: "This is a list of replacement API calls for each of the different _routes_ available from the `getState` function." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get State Replacement Api](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/34_get_state_replacement_api) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get State Replacement Api](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -491,8 +491,8 @@ This detailed information can be used to track the performance of a specific wit ### To run this tutorial -1. clone this repo -1. `cd tutorials/34_get_state_replacement_api` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/get_voters_list_on_post.md b/_tutorials-javascript/get_voters_list_on_post.md index 0daa7a4cf95a8914bbdfe4aeace7be2fa9739d4e..e243e1c47181d53f96076d8c58e631b128139a2a 100644 --- a/_tutorials-javascript/get_voters_list_on_post.md +++ b/_tutorials-javascript/get_voters_list_on_post.md @@ -4,7 +4,7 @@ position: 6 description: "_By the end of this tutorial you would know how to get voters list on any content._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/06_get_voters_list_on_post) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -102,8 +102,8 @@ From this result, you have access to everything associated with the selected pos ### To Run the tutorial -1. clone this repo -1. `cd tutorials/06_get_voters_list_on_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/getting_started.md b/_tutorials-javascript/getting_started.md index a6f09ad8a3da4f5bee129a38a2244ef03ae149ef..52d1aae09e177bbc72765e61321eed38b4d49994 100644 --- a/_tutorials-javascript/getting_started.md +++ b/_tutorials-javascript/getting_started.md @@ -4,7 +4,7 @@ position: 0 description: "Prepare your development environment to use Javascript with the Steem blockchain." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/00_getting_started) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/00_getting_started) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -18,7 +18,7 @@ You can still learn a lot of these if they aren't in your base skill-set; it'll ### Your Dev Environment -These tutorials require [Node.js 8.9+](https://nodejs.org/en/download/). [Yarn](https://yarnpkg.com/en/) is nice, but not required. Runnable versions of the tutorials are located [in this github repo](https://github.com/steemit/devportal-tutorials-js). +These tutorials require [Node.js 8.7+](https://nodejs.org/en/download/). [Yarn](https://yarnpkg.com/en/) is nice, but not required. Runnable versions of the tutorials are located [in this github repo](https://gitlab.syncad.com/hive/devportal/-/tree/master/tutorials/devportal-tutorials-js). If you haven't chosen an editor, you can use [Atom](https://atom.io/), [Sublime](https://www.sublimetext.com/), [Intellij](https://www.jetbrains.com/idea/), [Vi](https://en.wikipedia.org/wiki/Vi), etc. If you want to keep multiple versions of Node on your system try [Node Version Manager](https://github.com/creationix/nvm). @@ -27,17 +27,17 @@ If you want to keep multiple versions of Node on your system try [Node Version M Let's say you wanted to run the very [first tutorial](blog_feed), `01_blog_feed`. Here's how you'd do it: -1. From Bash: +From Bash: - ```bash - git clone https://github.com/steemit/devportal-tutorials-js.git +```bash +git clone https://gitlab.syncad.com/hive/devportal.git - cd devportal-tutorials-js/tutorials/01_blog_feed - npm i - npm run dev-server - ``` +cd devportal/tutorials/devportal-tutorials-js/tutorials/01_blog_feed +npm i +npm run dev-server +``` -1. open http://localhost:3000/ in your web browser +Then open http://localhost:3000/ in your web browser: ``` ### Github diff --git a/_tutorials-javascript/grant_active_permission.md b/_tutorials-javascript/grant_active_permission.md index be2af9fc2dbe50bbde50b1306d40397b24d63ac8..b3b91e1719c6c25115e534b4ecdc109746446b9b 100644 --- a/_tutorials-javascript/grant_active_permission.md +++ b/_tutorials-javascript/grant_active_permission.md @@ -4,7 +4,7 @@ position: 31 description: "_How to grant and revoke active permission to another user._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Active Permission](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/31_grant_active_permission) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Active Permission](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -179,10 +179,11 @@ This is similar to the steemconnect links that have been covered in previous tut ### To run this tutorial -1. clone this repo -1. `cd tutorials/31_grant_active_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ + --- diff --git a/_tutorials-javascript/grant_posting_permission.md b/_tutorials-javascript/grant_posting_permission.md index 6af07d7cd9bb07d68f844248e0dc78c1cb81beda..884dc11b80442edf4ffbb66e2b71b293fcce8eb0 100644 --- a/_tutorials-javascript/grant_posting_permission.md +++ b/_tutorials-javascript/grant_posting_permission.md @@ -4,7 +4,7 @@ position: 30 description: "_How to grant and revoke posting permission to another user._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Posting Permission](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/30_grant_posting_permission) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Posting Permission](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/30_grant_posting_permission) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -168,8 +168,8 @@ This is similar to the steemconnect links that have been covered in previous tut ### To run this tutorial -1. clone this repo -2. `cd tutorials/28_grant_posting_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/28_grant_posting_permission` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/power_down.md b/_tutorials-javascript/power_down.md index 97cede10b12bc216d5824d5482005115c16d13f6..285cad6446bc2c270829cc225e3a3d820d733850 100644 --- a/_tutorials-javascript/power_down.md +++ b/_tutorials-javascript/power_down.md @@ -4,7 +4,7 @@ position: 25 description: "_Perform a power down on all or part of an account's VESTS using either Steemconnect or client-side signing._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Down](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/25_power_down) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Down](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/25_power_down) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -114,8 +114,8 @@ That's it! ### To run this tutorial -1. `git clone https://github.com/steemit/devportal-tutorials-js.git` -1. `cd devportal-tutorials-js/tutorials/23_power_down` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/25_power_down` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/power_up_steem.md b/_tutorials-javascript/power_up_steem.md index e8ccff3d4d18833a297ef0b35a777d83f53ce3dc..4c679e1e846846b4346fa12e3c10bd3a2d77f706 100644 --- a/_tutorials-javascript/power_up_steem.md +++ b/_tutorials-javascript/power_up_steem.md @@ -4,7 +4,7 @@ position: 24 description: "_Power up an account's Steem using either Steemconnect or a client-side signing._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Up Steem](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/24_power_up_steem) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Up Steem](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/24_power_up_steem) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -100,8 +100,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/22_power_up_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/22_power_up_steem` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/reblogging_post.md b/_tutorials-javascript/reblogging_post.md index 1251286c1cdc14bfedfd2a29fa8e359c08d62fc8..3e794b51794367f2213e603e82cbb7b0511c6364 100644 --- a/_tutorials-javascript/reblogging_post.md +++ b/_tutorials-javascript/reblogging_post.md @@ -4,7 +4,7 @@ position: 14 description: "_By the end of this tutorial you should know how to reblog (resteem) a blog from steem_" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/14_reblogging_post) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -137,8 +137,8 @@ It should be noted that reblogging a post does not create a new post on the bloc ## To run this tutorial -1. clone this repo -2. `cd tutorials/14_reblogging_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/search_accounts.md b/_tutorials-javascript/search_accounts.md index 6b45a600879f8a8853bffb81141e86429a89637d..73a651cffa44dcd8cbe6f15a823aa2af7a288981 100644 --- a/_tutorials-javascript/search_accounts.md +++ b/_tutorials-javascript/search_accounts.md @@ -4,7 +4,7 @@ position: 15 description: "_By the end of this tutorial you should know how to call a list of user names from the steem blockchain_" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/15_search_accounts) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/15_search_accounts) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -73,8 +73,8 @@ document.getElementById('accList').innerHTML = _accounts.join('<br>'); ## To run this tutorial -1. clone this repo -2. `cd tutorials/15_search_accounts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/15_search_accounts` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/search_tags.md b/_tutorials-javascript/search_tags.md index 30752553f154254a280812527b8d255522610b1e..6956790e312d224b2a94ce533a8fe79db22e039d 100644 --- a/_tutorials-javascript/search_tags.md +++ b/_tutorials-javascript/search_tags.md @@ -4,7 +4,7 @@ position: 16 description: "_By the end of this tutorial you should know how to run a search for trending tags_" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/16_search_tags) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/16_search_tags) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -77,8 +77,8 @@ document.getElementById('tagList').innerHTML = posts.join('<br>'); ### To run this tutorial -1. clone this repo -1. `cd tutorials/16_search_tags` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/16_search_tags` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/set_withdraw_route.md b/_tutorials-javascript/set_withdraw_route.md index b1e25bb18a61df03946ced10b579f4f32de5d00c..fa125a36c7863e5e0cdea7e12522eb57771a6236 100644 --- a/_tutorials-javascript/set_withdraw_route.md +++ b/_tutorials-javascript/set_withdraw_route.md @@ -4,7 +4,7 @@ position: 28 description: "_Set routes to an account's power downs or withdraws._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Set Withdraw Route](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/28_set_withdraw_route) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Set Withdraw Route](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/28_set_withdraw_route) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -120,8 +120,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/26_set_withdraw_route` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/26_set_withdraw_route` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/steemconnect.md b/_tutorials-javascript/steemconnect.md index 613e869b56441c70ec8150ca0b1db9c19597459b..258f995ede07e8276b8fb61b9bc92f6e724b75bb 100644 --- a/_tutorials-javascript/steemconnect.md +++ b/_tutorials-javascript/steemconnect.md @@ -4,7 +4,7 @@ position: 2 description: "_Understand the basics of using Steemconnect with your Steem application._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Steemconnect](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/02_steemconnect) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Steemconnect](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/02_steemconnect) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -47,27 +47,27 @@ Here are the steps that helps you to setup new app: 1a. Visit [Steemconnect Dashboard](https://steemconnect.com/dashboard) and login with your Steem credentials - + 1b. You will see Applications and Developers section, in Developers section click on `My Apps` - + - + 1c. Create New App using Steemconnect, which will help you create new Steem account for your application. Let's call it `demo-app` for this tutorial purpose. - + Account creation fee will be deducted from your balance, make sure you have enough funds to complete account creation. Next step is to login with account which has enough balance to pay for account creation fee. - + 1d. Give your app name, description, icon image link, website (if available) and Redirect URI(s) - + Application name and description should give users clear understanding what permissions it requires and what is the purpose of the app. @@ -117,8 +117,8 @@ Now that `sc2-sdk` is initialized we can start authentication and perform simple ### To Run the tutorial -1. clone this repo -1. `cd tutorials/02_steemconnect` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/02_steemconnect` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/stream_blockchain_transactions.md b/_tutorials-javascript/stream_blockchain_transactions.md index 843e7f7b0f6ab28ec3b5eb2e813fa8864770099f..cac711303e9e44567b1eb6a5963c11dcffb1c03c 100644 --- a/_tutorials-javascript/stream_blockchain_transactions.md +++ b/_tutorials-javascript/stream_blockchain_transactions.md @@ -4,7 +4,7 @@ position: 13 description: "_By the end of this tutorial you should know how to stream transactions and blocks from Steem blockchain._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/13_stream_blockchain_transactions) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -125,8 +125,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/13_stream_blockchain_transactions` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/submit_comment_reply.md b/_tutorials-javascript/submit_comment_reply.md index ae937d1c009320e2c716eb3521e56f4ab089f971..97d8905214ddfb85606a67a9633b4476d2562210 100644 --- a/_tutorials-javascript/submit_comment_reply.md +++ b/_tutorials-javascript/submit_comment_reply.md @@ -4,7 +4,7 @@ position: 11 description: "_By the end of this tutorial you should know how to post a simple comment to Steem._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/11_submit_comment_reply) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -58,7 +58,7 @@ In this case. `dsf0yxlox2d` will be our parent permlink and `@demo` will be the #### 3. Add content<a name="add-content"></a> We've added the parent post info and `Some amazing content` in our UI via the keyboard. - + #### 4. Get Comment Data<a name="get-comment"></a> @@ -133,7 +133,7 @@ client.broadcast.comment(comment, privateKey).then( ``` A successful comment will output something like the following to the console: - + That's all there is to it. @@ -141,8 +141,8 @@ The `broadcast` operation has more to offer than just committing a post/comment ### To Run the tutorial -1. clone this repo -1. `cd tutorials/11_submit_comment_reply` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/submit_post.md b/_tutorials-javascript/submit_post.md index f80fbdbce8d2fd358c8006d40bfff4abee492c5c..70d0464e43b44ff93808a55bbf145a98dd67ff63 100644 --- a/_tutorials-javascript/submit_post.md +++ b/_tutorials-javascript/submit_post.md @@ -4,7 +4,7 @@ position: 10 description: "_By the end of this tutorial you should know how to prepare comments for Steem and then submit using the broadcast.comment function._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/10_submit_post) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/10_submit_post) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -112,8 +112,8 @@ The `broadcast` operation has more to offer than just committing a post/comment ### To Run the tutorial -1. clone this repo -1. `cd tutorials/10_submit_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/10_submit_post` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/transfer_steem_and_sbd.md b/_tutorials-javascript/transfer_steem_and_sbd.md index a7ec536b17460fb164e08f287521c24401e21f89..e34c27a06089d599e56db8fc277453ba081cbcb9 100644 --- a/_tutorials-javascript/transfer_steem_and_sbd.md +++ b/_tutorials-javascript/transfer_steem_and_sbd.md @@ -4,7 +4,7 @@ position: 21 description: "_Transfer both STEEM and SBD from one account to another._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/21_transfer_steem_and_sbd) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/21_transfer_steem_and_sbd) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -122,8 +122,8 @@ client.broadcast.transfer(transf, privateKey).then( ### To run this tutorial -1. clone this repo -2. `cd tutorials/20_transfer_STEEM_and_SBD` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/20_transfer_STEEM_and_SBD` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/_tutorials-javascript/vote_on_content.md b/_tutorials-javascript/vote_on_content.md index 6c24489d5718572d9baf8ef623f69a65271f8b08..02caff333003a867f33509e1701775c7e4285ce6 100644 --- a/_tutorials-javascript/vote_on_content.md +++ b/_tutorials-javascript/vote_on_content.md @@ -4,7 +4,7 @@ position: 17 description: "_Create a weighted up or down vote on a comment/post._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/17_vote_on_content) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -219,8 +219,8 @@ More information on how to use the `broadcast` operation and options surrounding ### To run this tutorial -1. clone this repo -1. `cd tutorials/17_vote_on_content` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-javascript/witness_listing_and_voting.md b/_tutorials-javascript/witness_listing_and_voting.md index 4cba18eaea95ad19b0261f70a93fb3cacff83f20..6c5cefbcd9ccdabd3ce1856f8d63162a4689717d 100644 --- a/_tutorials-javascript/witness_listing_and_voting.md +++ b/_tutorials-javascript/witness_listing_and_voting.md @@ -4,7 +4,7 @@ position: 22 description: "_Create a list of available witnesses as well as vote for and remove your vote for a witness._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Witness Listing And Voting](https://github.com/steemit/devportal-tutorials-js/tree/master/tutorials/22_witness_listing_and_voting) can be downloaded as part of the [JS tutorials repository](https://github.com/steemit/devportal-tutorials-js).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Witness Listing And Voting](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span> <br> @@ -183,8 +183,8 @@ The option buttons (continue with voting process or stop) are disabled at the en ### To run this tutorial -1. clone this repo -1. `cd tutorials/22_witness_listing_and_voting` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/_tutorials-python/account_recovery.md b/_tutorials-python/account_recovery.md index dbe82be0688dddac6ab19f083545408fd9a8fb99..24872cb470da84bc47a7b8934d9d3291ba87df71 100644 --- a/_tutorials-python/account_recovery.md +++ b/_tutorials-python/account_recovery.md @@ -4,7 +4,7 @@ position: 35 description: "How to recover an account using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Recovery](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/35_account_recovery) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Recovery](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/35_account_recovery) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -228,8 +228,8 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/35_account_recovery` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/35_account_recovery` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/_tutorials-python/account_reputation.md b/_tutorials-python/account_reputation.md index 6e9037406b74bb874df81f4e39c5b7d46fd30336..294cbd4ef88ca30282be175163526c1655955bbc 100644 --- a/_tutorials-python/account_reputation.md +++ b/_tutorials-python/account_reputation.md @@ -4,7 +4,7 @@ position: 20 description: "Would you like to know how to interpret account reputation to more human readable format, then this tutorial is for you." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Reputation](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/20_account_reputation) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Account Reputation](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/20_account_reputation) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -102,10 +102,11 @@ That's it. We have successfully interpreted reputation. ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/20_account_reputation` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/20_account_reputation` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. + --- diff --git a/_tutorials-python/claim_rewards.md b/_tutorials-python/claim_rewards.md index f0fb1b860b37942dfc84eeeb030d2de0f3b00b77..cedf7fe6f05235a652dce95eebb16c28c42179a6 100644 --- a/_tutorials-python/claim_rewards.md +++ b/_tutorials-python/claim_rewards.md @@ -4,7 +4,7 @@ position: 23 description: "How to claim rewards using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Claim Rewards](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/23_claim_rewards) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Claim Rewards](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -163,8 +163,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/23_claim_rewards` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/_tutorials-python/convert_sbd_to_steem.md b/_tutorials-python/convert_sbd_to_steem.md index 7f8b4fabc4d529c2061df4df847991772a897b0c..b77c25a63efb8346e994f12f7ff18cdea8d65f33 100644 --- a/_tutorials-python/convert_sbd_to_steem.md +++ b/_tutorials-python/convert_sbd_to_steem.md @@ -4,7 +4,7 @@ position: 32 description: "How to convert your SBD to STEEM using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Convert Sbd To Steem](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/32_convert_sbd_to_steem) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Convert Sbd To Steem](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -121,10 +121,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/00_getting_started#dev-requirements) -1. clone this repo -1. `cd tutorials/32_convert_sbd_to_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. +1. After a few moments, you should see a prompt for input in terminal screen.devportal-tutorials-py/tutorials/ + --- diff --git a/_tutorials-python/delegate_power.md b/_tutorials-python/delegate_power.md index f0c6f3cab81c81ab4e803b82321c658beb02d390..e64dea56023fbf7948eb8082d423e63de3f90b59 100644 --- a/_tutorials-python/delegate_power.md +++ b/_tutorials-python/delegate_power.md @@ -4,7 +4,7 @@ position: 27 description: "How to delegate or remove delegation of STEEM POWER to another user using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Delegate Power](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/27_delegate_power) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Delegate Power](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/27_delegate_power) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -136,10 +136,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/27_delegate_power` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/27_delegate_power` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/edit_content_patching.md b/_tutorials-python/edit_content_patching.md index ca83654416525a619d28ca41bba2518789a5cfaf..8843681c9478216e82bc74cff0ad7c93480368ac 100644 --- a/_tutorials-python/edit_content_patching.md +++ b/_tutorials-python/edit_content_patching.md @@ -4,7 +4,7 @@ position: 12 description: "How to edit post content with diff_match_patch using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/12_edit_content_patching) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -146,10 +146,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/12_edit_content_patching` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/follow_a_user.md b/_tutorials-python/follow_a_user.md index 02a0396900f35b6abfbd0b0b40e5af1944521c8e..456b5e6333c763b43411cf28613bbbbfeddce52b 100644 --- a/_tutorials-python/follow_a_user.md +++ b/_tutorials-python/follow_a_user.md @@ -4,7 +4,7 @@ position: 18 description: "How to follow or unfollow an author using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow A User](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/18_follow_a_user) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow A User](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -127,8 +127,8 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/18_follow_a_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/_tutorials-python/get_account_comments.md b/_tutorials-python/get_account_comments.md index 48e987875f00adef573927da9a67233cda7b4746..852e779737a82ad9b23efc120133b69286d3250a 100644 --- a/_tutorials-python/get_account_comments.md +++ b/_tutorials-python/get_account_comments.md @@ -4,7 +4,7 @@ position: 9 description: "Fetch list of comments made by account on posts or comments." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/09_get_account_comments) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -203,12 +203,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/09_get_account_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/get_account_replies.md b/_tutorials-python/get_account_replies.md index 9839cc7813adcdc99c53b009d24a6dcf31518a66..f45a2b91cdfbe680b9017ffb83659e4184a89f44 100644 --- a/_tutorials-python/get_account_replies.md +++ b/_tutorials-python/get_account_replies.md @@ -4,7 +4,7 @@ position: 8 description: "List of replies received by account to its content, post, comment." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/08_get_account_replies) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -91,10 +91,11 @@ Next, we will print the details obtained from the function. Because we only want ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/08_get_account_replies` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. + --- diff --git a/_tutorials-python/get_delegations_by_user.md b/_tutorials-python/get_delegations_by_user.md index 89d026679b934d1604a5c74fb899733fae26abef..f92f9d929492765c68cab18420131191b8a84718 100644 --- a/_tutorials-python/get_delegations_by_user.md +++ b/_tutorials-python/get_delegations_by_user.md @@ -4,7 +4,7 @@ position: 29 description: "How to get a list of active or expiring vesting delegations using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Delegations By User](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/29_get_delegations_by_user) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Delegations By User](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -105,10 +105,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/29_get_delegations_by_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/get_follower_and_following_list.md b/_tutorials-python/get_follower_and_following_list.md index 02b342e16c0f3a90eb1776bd149410a745ad6681..17d1add87e5b2ccaa6955d855380bdbdae504776 100644 --- a/_tutorials-python/get_follower_and_following_list.md +++ b/_tutorials-python/get_follower_and_following_list.md @@ -4,7 +4,7 @@ position: 19 description: "Tutorial pulls a list of the followers or authors being followed from the blockchain then displays the result." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/19_get_follower_and_following_list) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -117,8 +117,8 @@ This is a fairly simple example of how to use these functions but we encourage y ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/19_get_follower_and_following_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. diff --git a/_tutorials-python/get_post_comments.md b/_tutorials-python/get_post_comments.md index 1d2c3f56c5c64aa6fc31f8e6801eb009f838a138..dd6261358dc35c99c236883572dd3a039d51976b 100644 --- a/_tutorials-python/get_post_comments.md +++ b/_tutorials-python/get_post_comments.md @@ -4,7 +4,7 @@ position: 7 description: "Fetch comments made on each content or post using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/07_get_post_comments) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -187,12 +187,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/07_get_post_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/get_post_details.md b/_tutorials-python/get_post_details.md index 38e8c66ebd8ab0c14dd485a9d14005aff77fc9b2..0f80a85a7844e9cabbada61a2c0504f82d20ba98 100644 --- a/_tutorials-python/get_post_details.md +++ b/_tutorials-python/get_post_details.md @@ -4,7 +4,7 @@ position: 5 description: "Get post details from list of posts from the blockchain with `created` filter and tag then display selected post details." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/05_get_post_details) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/05_get_post_details) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -159,12 +159,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/05_get_post_details` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/05_get_post_details` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/get_posts.md b/_tutorials-python/get_posts.md index dd9e373be0e5dd50abeaa65f5d7cfb67763c2e19..808a375593d51b3a58f4c03915739d99717204d3 100644 --- a/_tutorials-python/get_posts.md +++ b/_tutorials-python/get_posts.md @@ -4,7 +4,7 @@ position: 4 description: "Tutorial pulls a list of the posts from the blockchain with selected filter and tag then displays output." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/04_get_posts) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/04_get_posts) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -168,12 +168,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/04_get_posts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/04_get_posts` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/get_voters_list_on_post.md b/_tutorials-python/get_voters_list_on_post.md index 7952695dc637a864a5a9981a8dab554d59cbaf3c..1fc4654611ed5b47ece56cd1ce5892cf232d563a 100644 --- a/_tutorials-python/get_voters_list_on_post.md +++ b/_tutorials-python/get_voters_list_on_post.md @@ -4,7 +4,7 @@ position: 6 description: "Voters list and detail of each vote on selected content." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/06_get_voters_list_on_post) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list_on_post) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -113,12 +113,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/06_get_voters_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/getting_started.md b/_tutorials-python/getting_started.md index 7456c3b01d2242b76125f35a20d630f88c20509a..d6a650226878ba50e52367ade01e435e72260cdd 100644 --- a/_tutorials-python/getting_started.md +++ b/_tutorials-python/getting_started.md @@ -4,7 +4,7 @@ position: 0 description: "The official Steem library for Python is `steem-python`. It comes with a BIP38 encrypted wallet and a practical CLI utility called `steempy`." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/00_getting_started) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/00_getting_started) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> diff --git a/_tutorials-python/grant_active_permission.md b/_tutorials-python/grant_active_permission.md index 414a7c9211a41a385bd9393b79d7d0e1479e6102..a6b9166c2927b7221390da1f12174e646968f7e1 100644 --- a/_tutorials-python/grant_active_permission.md +++ b/_tutorials-python/grant_active_permission.md @@ -4,7 +4,7 @@ position: 31 description: "How to give another user active permission on your account using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Active Permission](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/31_grant_active_permission) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Active Permission](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -133,10 +133,11 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/31_grant_active_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/grant_posting_permission.md b/_tutorials-python/grant_posting_permission.md index 1399425d1eb4141059494bd69fc6289d1c06cec2..7a01a8ad92f2063249bd11df8616d5645bf0d4c8 100644 --- a/_tutorials-python/grant_posting_permission.md +++ b/_tutorials-python/grant_posting_permission.md @@ -4,7 +4,7 @@ position: 30 description: "How to give another user posting permission on your account using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Posting Permission](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/30_grant_posting_permission) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Grant Posting Permission](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -127,10 +127,11 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/30_grant_posting_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/password_key_change.md b/_tutorials-python/password_key_change.md index ef25cde222e999089bd16c567aa1603b4cc5710e..01cac55144e50708cd2fbc3d654d071beaaff27d 100644 --- a/_tutorials-python/password_key_change.md +++ b/_tutorials-python/password_key_change.md @@ -4,7 +4,7 @@ position: 33 description: "How to change your accounts password and keys" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Password Key Change](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/33_password_key_change) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Password Key Change](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/33_password_key_change) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -138,10 +138,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/33_password_key_change` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/33_password_key_change` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/power_down.md b/_tutorials-python/power_down.md index 0ebd13ea2f68995ec57b25c94b83b0d35215ffb5..5d17c9b80d3b17a88241547daed18184ee8595bc 100644 --- a/_tutorials-python/power_down.md +++ b/_tutorials-python/power_down.md @@ -4,7 +4,7 @@ position: 25 description: "How to power down (withdraw) your vesting shares using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Down](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/25_power_down) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Down](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/25_power_down) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -129,8 +129,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/25_power_down` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/25_power_down` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/_tutorials-python/power_up_steem.md b/_tutorials-python/power_up_steem.md index d65c955d10e3fa6367033218b9f03c7dc3b828b9..c34362d8586e14f644b9809ef4873cf3240b27bd 100644 --- a/_tutorials-python/power_up_steem.md +++ b/_tutorials-python/power_up_steem.md @@ -4,7 +4,7 @@ position: 24 description: "How to power up your STEEM to STEEM POWER using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Up Steem](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/24_power_up_steem) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Power Up Steem](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -142,10 +142,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/24_power_up_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/reblogging_post.md b/_tutorials-python/reblogging_post.md index 2b5deeb5267e5e2e2f169cf7dd6b032715ceeb6a..9ec031af7610a49746d69c4b7fcd3d159366e0b1 100644 --- a/_tutorials-python/reblogging_post.md +++ b/_tutorials-python/reblogging_post.md @@ -4,7 +4,7 @@ position: 14 description: "We will show how to reblog or resteem post using Python, with username and posting private key." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/14_reblogging_post) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -85,12 +85,11 @@ That's it, if transaction is successful you shouldn't see any error messages, ot ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/14_reblogging_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/search_accounts.md b/_tutorials-python/search_accounts.md index 868c07622266d1ac0a46ec0dfb77fcc53c27fd3d..7a6fe194464adf6698f1a908ffcec8c04f50cf0b 100644 --- a/_tutorials-python/search_accounts.md +++ b/_tutorials-python/search_accounts.md @@ -4,7 +4,7 @@ position: 15 description: "How to pull a list of the active user accounts or trending tags from the blockchain using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/15_search_accounts) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/15_search_accounts) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -94,10 +94,11 @@ That's it!. ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/15_search_accounts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/15_search_accounts` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. + --- diff --git a/_tutorials-python/search_tags.md b/_tutorials-python/search_tags.md index e931000619abcb0fcf5925e24c7d073f26271960..3fcb7eb3950650e8b23ca826865866969170c15a 100644 --- a/_tutorials-python/search_tags.md +++ b/_tutorials-python/search_tags.md @@ -4,7 +4,7 @@ position: 16 description: "How to pull a list of the trending tags from the blockchain using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/16_search_tags) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/16_search_tags) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> diff --git a/_tutorials-python/stream_blockchain_transactions.md b/_tutorials-python/stream_blockchain_transactions.md index ebeb321cddc07a1ce967db3ba75ec55a9819854d..11102f28a649c39a399a99e806958f3cf6979ea3 100644 --- a/_tutorials-python/stream_blockchain_transactions.md +++ b/_tutorials-python/stream_blockchain_transactions.md @@ -4,7 +4,7 @@ position: 13 description: "How to stream transactions on the live **Steem** blockchain" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/13_stream_blockchain_transactions) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -70,10 +70,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/13_stream_blockchain_transactions` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/submit_comment_reply.md b/_tutorials-python/submit_comment_reply.md index 941c002b2746bb6d0f2edcdefd730a403ff68dfc..6b6ffefb1339bc991d28dc883b6a7aafc01992db 100644 --- a/_tutorials-python/submit_comment_reply.md +++ b/_tutorials-python/submit_comment_reply.md @@ -4,7 +4,7 @@ position: 11 description: "How to submit a comment on a post to the Steem blockchain." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/11_submit_comment_reply) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -115,10 +115,11 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/11_submit_comment_reply` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/submit_post.md b/_tutorials-python/submit_post.md index 835f214398f4040b272dd8378c68b22056ea3cf5..5c80bc7ace41b174f3eea6353d2e55ee451239b9 100644 --- a/_tutorials-python/submit_post.md +++ b/_tutorials-python/submit_post.md @@ -4,7 +4,7 @@ position: 10 description: "How to submit post on Steem blockchain using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/10_submit_post) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/10_submit_post) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -109,12 +109,11 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -2. `cd tutorials/10_submit_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-py/tutorials/10_submit_post` 3. `pip install -r requirements.txt` 4. `python index.py` 5. After a few moments, you should see a prompt for input in terminal screen. - --- diff --git a/_tutorials-python/transfer_STEEM_and_SBD.md b/_tutorials-python/transfer_STEEM_and_SBD.md index e4d54d32b774c9862425a5609e8825d3b2ce098a..e393510c6eee9ad1ebec8a1c84e07506bfd37a32 100644 --- a/_tutorials-python/transfer_STEEM_and_SBD.md +++ b/_tutorials-python/transfer_STEEM_and_SBD.md @@ -4,7 +4,7 @@ position: 21 description: "How to transfer STEEM and SBD to another account using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/21_transfer_steem_and_sbd) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -154,10 +154,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/21_transfer_steem_and_sbd` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/transfer_steem_and_sbd_to_savings_balance.md b/_tutorials-python/transfer_steem_and_sbd_to_savings_balance.md index 5a3cb0e978f2e57be05ee9da668d5c11821b0324..9672de9e47976cbc8ec25c375c62e6092918b897 100644 --- a/_tutorials-python/transfer_steem_and_sbd_to_savings_balance.md +++ b/_tutorials-python/transfer_steem_and_sbd_to_savings_balance.md @@ -4,7 +4,7 @@ position: 33 description: "How to transfer STEEM and SBD to savings using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd To Savings Balance](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/33_transfer_steem_and_sbd_to_savings_balance) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Transfer Steem And Sbd To Savings Balance](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -173,10 +173,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/00_getting_started#dev-requirements) -1. clone this repo -1. `cd tutorials/33_transfer_steem_and_sbd_to_savings_balance` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/using_keys_securely.md b/_tutorials-python/using_keys_securely.md index 12587cda328e92b9fdf29fd4f114dd066f0a30a8..4cd3efcdb361eb26f029939c682d845530e5cd1d 100644 --- a/_tutorials-python/using_keys_securely.md +++ b/_tutorials-python/using_keys_securely.md @@ -4,7 +4,7 @@ position: 1 description: "Learn how Steem-Python library handles transaction signing with user's key and how to securely manage your private keys." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Using Keys Securely](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/001_using_keys_securely) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Using Keys Securely](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -88,12 +88,11 @@ That's it! ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/001_using_keys_securely` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - --- diff --git a/_tutorials-python/vote_on_content.md b/_tutorials-python/vote_on_content.md index d78e8ab8231029c6300e96332de35cf841d704e1..c8ccccdf88793a3825b24e6656f49332186ba278 100644 --- a/_tutorials-python/vote_on_content.md +++ b/_tutorials-python/vote_on_content.md @@ -4,7 +4,7 @@ position: 17 description: "How to vote on a post/comment using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/17_vote_on_content) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -129,10 +129,11 @@ A simple confirmation of the chosen action is printed on the screen. ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/17_vote_on_content` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-python/witness_listing_and_voting.md b/_tutorials-python/witness_listing_and_voting.md index 29bb35930ba3aaf9cb916643053e5e4bd7808935..60387564ca8cf70474d87784609fbd6f41bdc8f8 100644 --- a/_tutorials-python/witness_listing_and_voting.md +++ b/_tutorials-python/witness_listing_and_voting.md @@ -4,7 +4,7 @@ position: 22 description: "How to vote for or remove a vote for a witness user using Python." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Witness Listing And Voting](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/22_witness_listing_and_voting) can be downloaded as part of the [PY tutorials repository](https://github.com/steemit/devportal-tutorials-py).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Witness Listing And Voting](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting) can be downloaded as part of: [tutorials/devportal-tutorials-py](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-py).</span> <br> @@ -144,10 +144,11 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](getting_started) -1. clone this repo -1. `cd tutorials/22_witness_listing_and_voting` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. + --- diff --git a/_tutorials-ruby/blog_feed.md b/_tutorials-ruby/blog_feed.md index b4069bdc67161f1dddb2a3e1e62688d5f02a3c1a..88b0b2aa0ff66049dcf7b74548b785e786ad5841 100644 --- a/_tutorials-ruby/blog_feed.md +++ b/_tutorials-ruby/blog_feed.md @@ -4,7 +4,7 @@ position: 1 description: "This example will output blog details to the terminal for the author specified, limited to five results." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Blog Feed](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/01_blog_feed) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Blog Feed](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/01_blog_feed) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/edit_content_patching.md b/_tutorials-ruby/edit_content_patching.md index 97ca0f6f986f18f6e0e271578e530cd94fc8e0b8..b20db764028acc49527e086843b4b17d8bf8f1c9 100644 --- a/_tutorials-ruby/edit_content_patching.md +++ b/_tutorials-ruby/edit_content_patching.md @@ -4,7 +4,7 @@ position: 12 description: "---" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/12_edit_content_patching) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Edit Content Patching](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/12_edit_content_patching) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> title: How to edit a Post diff --git a/_tutorials-ruby/follow_another_user.md b/_tutorials-ruby/follow_another_user.md index 0d4c618ce77081f16df9d54f610fb296802b5634..f4cbc788a76e45e43e8b92e4ce8677e60400df00 100644 --- a/_tutorials-ruby/follow_another_user.md +++ b/_tutorials-ruby/follow_another_user.md @@ -4,7 +4,7 @@ position: 18 description: "*How to follow/unfollow another user.*" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow Another User](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/18_follow_another_user) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Follow Another User](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/18_follow_another_user) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_account_comments.md b/_tutorials-ruby/get_account_comments.md index 0e0234161abd954352eb6d2b99eff37de5cd447c..13c0564f87ab7c0d0cf00262c9c0987c3f0a579f 100644 --- a/_tutorials-ruby/get_account_comments.md +++ b/_tutorials-ruby/get_account_comments.md @@ -4,7 +4,7 @@ position: 9 description: "Fetching the comments written by a particular account." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/09_get_account_comments) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/09_get_account_comments) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_account_replies.md b/_tutorials-ruby/get_account_replies.md index aa5c2ef3266c6f8487b0b05eb9338507d2d8ce98..a0285794a89f651c5da679ab30eff41fe7920776 100644 --- a/_tutorials-ruby/get_account_replies.md +++ b/_tutorials-ruby/get_account_replies.md @@ -4,7 +4,7 @@ position: 8 description: "Fetching the replies written to a particular account." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/08_get_account_replies) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Account Replies](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/08_get_account_replies) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_follower_and_following_list.md b/_tutorials-ruby/get_follower_and_following_list.md index 2b55b1cffdadaec5ad02bd1ecdd48f3855c6f703..0e42b2ba08ee8840a8ce4077fe77dc9e21186f0c 100644 --- a/_tutorials-ruby/get_follower_and_following_list.md +++ b/_tutorials-ruby/get_follower_and_following_list.md @@ -4,7 +4,7 @@ position: 19 description: "_How to create a list of followers and accounts that you are following._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/19_get_follower_and_following_list) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Follower And Following List](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/19_get_follower_and_following_list) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_post_comments.md b/_tutorials-ruby/get_post_comments.md index 66d7b0deac89039bd762d89b1898dd4ea6961872..f2ebda2f8893e6a91bd1831014e06591bc39a500 100644 --- a/_tutorials-ruby/get_post_comments.md +++ b/_tutorials-ruby/get_post_comments.md @@ -4,7 +4,7 @@ position: 7 description: "This example will output the reply details and totals for the post/comment passed as an argument to the script." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/07_get_post_comments) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Comments](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/07_get_post_comments) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_post_details.md b/_tutorials-ruby/get_post_details.md index b80f7e550a264b4d7bb09e35711c326ea3ea20ea..dc22230c3ca16d10a5cf583086704e7908be7e04 100644 --- a/_tutorials-ruby/get_post_details.md +++ b/_tutorials-ruby/get_post_details.md @@ -4,7 +4,7 @@ position: 5 description: "Understand and use the most common fields of the requested content." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/05_get_post_details) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Post Details](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/05_get_post_details) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_posts.md b/_tutorials-ruby/get_posts.md index 00d64baa88e0c5013656b6b1c51d2925651be308..35ce72bd69ee9db495e8fe0c73b6203c94dfdd24 100644 --- a/_tutorials-ruby/get_posts.md +++ b/_tutorials-ruby/get_posts.md @@ -4,7 +4,7 @@ position: 4 description: "This example will output posts depending on which category is provided as the arguments." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/04_get_posts) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Posts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/04_get_posts) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/get_voters_list_on_post.md b/_tutorials-ruby/get_voters_list_on_post.md index 41911260596dc5a0d78db66ee567eaa09efd6290..d03ff6e8ef89cde072cffa6c1524fa102e897dcf 100644 --- a/_tutorials-ruby/get_voters_list_on_post.md +++ b/_tutorials-ruby/get_voters_list_on_post.md @@ -4,7 +4,7 @@ position: 6 description: "This example will output the active vote totals for the post/comment passed as an argument to the script." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/06_get_voters_list_on_post) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Get Voters List On Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/06_get_voters_list_on_post) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/getting_started.md b/_tutorials-ruby/getting_started.md index d9c1cf5c552bb2bbc3396c21602af599520853da..f7f0eeb26f9aa58b7dd66797a64b5683402230b9 100644 --- a/_tutorials-ruby/getting_started.md +++ b/_tutorials-ruby/getting_started.md @@ -4,7 +4,7 @@ position: 0 description: "To access the Steem blockchain using Ruby, install the Radiator gem: [https://github.com/inertia186/radiator](https://github.com/inertia186/radiator). Full documentation on Radiator api methods are hosted on [rubydoc.info](http://www.rubydoc.info/gems/radiator)." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/00_getting_started) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Getting Started](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/00_getting_started) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> @@ -83,7 +83,7 @@ api = Radiator::Api.new(options) ### Next Step -If you'd like to dive right into the first tutorial, have a look at: [Blog Feed](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/01_blog_feed) +If you'd like to dive right into the first tutorial, have a look at: [Blog Feed](https://gitlab.syncad.com/hive/devportal/-/tree/master/tutorials/devportal-tutorials-rb/tutorials/01_blog_feed) --- diff --git a/_tutorials-ruby/reblogging_post.md b/_tutorials-ruby/reblogging_post.md index 82453f088b0058287682a976e2b2d471521a7de5..090b1b415ce878c83c487efeb2b2f242379fb642 100644 --- a/_tutorials-ruby/reblogging_post.md +++ b/_tutorials-ruby/reblogging_post.md @@ -4,7 +4,7 @@ position: 14 description: "To reblog ('resteem') a post, we can use a custom json operation that is handled by the follow plugin." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/14_reblogging_post) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Reblogging Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/14_reblogging_post) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/search_accounts.md b/_tutorials-ruby/search_accounts.md index e35336c05db18421f6c8215ef97e4ad1bd618043..42bf5c402f42813d91ff973b196f8e693312c264 100644 --- a/_tutorials-ruby/search_accounts.md +++ b/_tutorials-ruby/search_accounts.md @@ -4,7 +4,7 @@ position: 15 description: "Performing a search on account by names starting with a given input." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/15_search_accounts) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Accounts](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/15_search_accounts) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/search_tags.md b/_tutorials-ruby/search_tags.md index 09bcd6e0fa9c7be6e92b91bcacb0af6f318ee4b7..1e84d91c4bad69884a93f7b81263ed2750ec9f49 100644 --- a/_tutorials-ruby/search_tags.md +++ b/_tutorials-ruby/search_tags.md @@ -4,7 +4,7 @@ position: 16 description: "Performing a search for tags." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/16_search_tags) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Search Tags](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/16_search_tags) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/stream_blockchain_transactions.md b/_tutorials-ruby/stream_blockchain_transactions.md index 1df938752a74fa6534bc5172ba86ef0806a64bfb..d9b6f0155614b3e50fc64e543c4bfafd92ba136e 100644 --- a/_tutorials-ruby/stream_blockchain_transactions.md +++ b/_tutorials-ruby/stream_blockchain_transactions.md @@ -4,7 +4,7 @@ position: 13 description: "*How to stream transactions and operations from Steem blockchain.*" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/13_stream_blockchain_transactions) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Stream Blockchain Transactions](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/13_stream_blockchain_transactions) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/submit_comment_reply.md b/_tutorials-ruby/submit_comment_reply.md index bb834fb3936e11e425ee17152628411414a5a76e..4cda12740834ec923539fab48ae583a558a8b885 100644 --- a/_tutorials-ruby/submit_comment_reply.md +++ b/_tutorials-ruby/submit_comment_reply.md @@ -4,7 +4,7 @@ position: 11 description: "_By the end of this tutorial you should know how to prepare comments for Steem and then submit using Radiator._" layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/11_submit_comment_reply) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Comment Reply](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/11_submit_comment_reply) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/_tutorials-ruby/submit_post.md b/_tutorials-ruby/submit_post.md index da6b866824ef943aee3a23026a776c4ad2f5e116..abea4b51a25741db380ce3bc125ec8655a06394d 100644 --- a/_tutorials-ruby/submit_post.md +++ b/_tutorials-ruby/submit_post.md @@ -4,7 +4,7 @@ position: 10 description: "This example will broadcast a new post to the blockchain using the values provided. To create a post in `ruby`, we will use a `Radiator::Transaction` containing a `comment` operation, which is how all content is stored internally." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/10_submit_post) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Submit Post](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/10_submit_post) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> @@ -13,7 +13,7 @@ A post is differentiated from a comment by whether or not a `parent_author` exis ### Script -You should change `wif` to the posting key that matches your `author`. This script will pass along the values as a [`comment` operation]({{ '/apidefinitions/broadcast-ops#broadcast_ops_comment' | relative_url }}): +You should change `wif` to the posting key that matches your `author`. This script will pass along the values as a [`comment` operation](/apidefinitions/broadcast-ops#broadcast_ops_comment): * `author` - Account name of the author currently posting. * `permlink` - Value unique to the author diff --git a/_tutorials-ruby/vote_on_content.md b/_tutorials-ruby/vote_on_content.md index 7513ed24b3536e0fc9b34006f5206bfa6e63f668..a18566e7f8199963cf07582a22de7952748bf26e 100644 --- a/_tutorials-ruby/vote_on_content.md +++ b/_tutorials-ruby/vote_on_content.md @@ -4,7 +4,7 @@ position: 17 description: "To vote for a post (or reply), we can use a vote operation and provide the voting weight (the percentage of one vote being cast)." layout: full --- -<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/17_vote_on_content) can be downloaded as part of the [RB tutorials repository](https://github.com/steemit/devportal-tutorials-rb).</span> +<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Vote On Content](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb/tutorials/17_vote_on_content) can be downloaded as part of: [tutorials/devportal-tutorials-rb](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-rb).</span> <br> diff --git a/lib/scrape/tutorials_job/base.rb b/lib/generate/tutorials_job/base.rb similarity index 71% rename from lib/scrape/tutorials_job/base.rb rename to lib/generate/tutorials_job/base.rb index bc01be9ff8c2048bd22a3db68b237ec6883f2d64..33d5e185d3c29358bd95c73eea9a21d5ded34317 100644 --- a/lib/scrape/tutorials_job/base.rb +++ b/lib/generate/tutorials_job/base.rb @@ -1,19 +1,13 @@ require 'git' -module Scrape +module Generate module TutorialsJob class Base - TMP_CHECKOUT = '/tmp/checkout' - def initialize(options = {}) @num = (options[:num] || '-1').to_i @force = options[:force] == 'true' - @tutorial_github_url = options[:tutorial_github_url] #e.g.: https://github.com/steemit/devportal-tutorials-js.git - @tutorial_github_name = options[:tutorial_github_name] # e.g.: devportal-tutorials-js - @tutorial_url = options[:tutorial_url] # e.g.: https://github.com/steemit/devportal-tutorials-js + @src_tutorials_path = options[:src_tutorials_path] # e.g.: tutorials/devportal-tutorials-js @dest_tutorials_path = options[:dest_tutorials_path] # e.g.: _tutorials-javascript - - @clone_tutorials_path = "#{TMP_CHECKOUT}/#{@tutorial_github_name}/tutorials" end # Execute the job. @@ -21,13 +15,9 @@ module Scrape # @return [Integer] total number of tutorials added or changed in this pass def perform tutorial_change_count = 0 - tutorial_title_prefix = @tutorial_github_name.split('-').last.upcase - - clean_previous_clone - - Git.clone(@tutorial_github_url, @tutorial_github_name, path: TMP_CHECKOUT) + tutorial_title_prefix = @src_tutorials_path.split('-').last.upcase - Pathname.new(@clone_tutorials_path).children.sort.each do |path| + Pathname.new(@src_tutorials_path + '/tutorials').children.sort.each do |path| next unless File.directory? path slug = include_name = path.to_s.split('/').last @@ -74,8 +64,6 @@ module Scrape tutorial_change_count += 1 end - clean_previous_clone - tutorial_change_count end private @@ -105,7 +93,7 @@ module Scrape src else src = src.split('/')[1..-1].join('/') if src.start_with? './' - "#{@tutorial_url}/blob/master/tutorials/#{include_name}/#{src}?raw=true" + "https://gitlab.syncad.com/hive/devportal/-/raw/master/#{@src_tutorials_path}/tutorials/#{include_name}/#{src}" end "" @@ -119,8 +107,8 @@ module Scrape text, href = Regexp.last_match[1..2] href = if href.include? '://' href - elsif href.include? @tutorial_url - relative_href = href.gsub(/#{@tutorial_url}\/tree\/master\/tutorials\/(\d+)_([a-z0-9_]+)/) do + elsif href.include? @src_tutorials_path + relative_href = href.gsub(/#{@src_tutorials_path}\/tree\/master\/tutorials\/(\d+)_([a-z0-9_]+)/) do num, name = Regexp.last_match[1..2] name @@ -144,11 +132,7 @@ module Scrape end def tutorial_repo_links(title, include_name, tutorial_title_prefix) - "<span class=\"fa-pull-left top-of-tutorial-repo-link\"><span class=\"first-word\">Full</span>, runnable src of [#{title}](#{@tutorial_url}/tree/master/tutorials/#{include_name}) can be downloaded as part of the [#{tutorial_title_prefix} tutorials repository](#{@tutorial_url}).</span>" - end - - def clean_previous_clone - FileUtils.rm_rf(Dir.glob("#{TMP_CHECKOUT}/*")) + "<span class=\"fa-pull-left top-of-tutorial-repo-link\"><span class=\"first-word\">Full</span>, runnable src of [#{title}](https://gitlab.syncad.com/hive/devportal/-/tree/develop/#{@src_tutorials_path}/tutorials/#{include_name}) can be downloaded as part of: [#{@src_tutorials_path}](https://gitlab.syncad.com/hive/devportal/-/tree/develop/#{@src_tutorials_path}).</span>" end end end diff --git a/lib/generate/tutorials_job/javascript.rb b/lib/generate/tutorials_job/javascript.rb new file mode 100644 index 0000000000000000000000000000000000000000..cb071c70d38fb7e29bae105c5748964873d9edaa --- /dev/null +++ b/lib/generate/tutorials_job/javascript.rb @@ -0,0 +1,14 @@ +require 'git' + +module Generate + module TutorialsJob + class Javascript < Base + def initialize(options = {}) + options[:src_tutorials_path] = 'tutorials/devportal-tutorials-js' + options[:dest_tutorials_path] ||= '_tutorials-javascript' + + super + end + end + end +end diff --git a/lib/generate/tutorials_job/python.rb b/lib/generate/tutorials_job/python.rb new file mode 100644 index 0000000000000000000000000000000000000000..131464d635a6ff986775a1473b6b00291dc956cf --- /dev/null +++ b/lib/generate/tutorials_job/python.rb @@ -0,0 +1,14 @@ +require 'git' + +module Generate + module TutorialsJob + class Python < Base + def initialize(options = {}) + options[:src_tutorials_path] = 'tutorials/devportal-tutorials-py' + options[:dest_tutorials_path] ||= '_tutorials-python' + + super + end + end + end +end diff --git a/lib/generate/tutorials_job/ruby.rb b/lib/generate/tutorials_job/ruby.rb new file mode 100644 index 0000000000000000000000000000000000000000..4dcbf2d5fb6dea98f073f652ea4c203c0a339f31 --- /dev/null +++ b/lib/generate/tutorials_job/ruby.rb @@ -0,0 +1,14 @@ +require 'git' + +module Generate + module TutorialsJob + class Ruby < Base + def initialize(options = {}) + options[:src_tutorials_path] = 'tutorials/devportal-tutorials-rb' + options[:dest_tutorials_path] ||= '_tutorials-ruby' + + super + end + end + end +end diff --git a/lib/scrape/tutorials_job/javascript.rb b/lib/scrape/tutorials_job/javascript.rb deleted file mode 100644 index b19693feec78eb2f4a8dc754b4fe1facfba0c1f8..0000000000000000000000000000000000000000 --- a/lib/scrape/tutorials_job/javascript.rb +++ /dev/null @@ -1,16 +0,0 @@ -require 'git' - -module Scrape - module TutorialsJob - class Javascript < Base - def initialize(options = {}) - options[:tutorial_github_url] ||= 'https://github.com/steemit/devportal-tutorials-js.git' - options[:tutorial_github_name] ||= 'devportal-tutorials-js' - options[:tutorial_url] = 'https://github.com/steemit/devportal-tutorials-js' - options[:dest_tutorials_path] ||= '_tutorials-javascript' - - super - end - end - end -end diff --git a/lib/scrape/tutorials_job/python.rb b/lib/scrape/tutorials_job/python.rb deleted file mode 100644 index c5cbdc1c688ee8ef8c8f169b888af84eed70683d..0000000000000000000000000000000000000000 --- a/lib/scrape/tutorials_job/python.rb +++ /dev/null @@ -1,16 +0,0 @@ -require 'git' - -module Scrape - module TutorialsJob - class Python < Base - def initialize(options = {}) - options[:tutorial_github_url] = 'https://github.com/steemit/devportal-tutorials-py.git' - options[:tutorial_github_name] ||= 'devportal-tutorials-py' - options[:tutorial_url] = 'https://github.com/steemit/devportal-tutorials-py' - options[:dest_tutorials_path] ||= '_tutorials-python' - - super - end - end - end -end diff --git a/lib/scrape/tutorials_job/ruby.rb b/lib/scrape/tutorials_job/ruby.rb deleted file mode 100644 index edb81b3f067570f8eea2d1dd605b543493fc3152..0000000000000000000000000000000000000000 --- a/lib/scrape/tutorials_job/ruby.rb +++ /dev/null @@ -1,16 +0,0 @@ -require 'git' - -module Scrape - module TutorialsJob - class Ruby < Base - def initialize(options = {}) - options[:tutorial_github_url] = 'https://github.com/steemit/devportal-tutorials-rb.git' - options[:tutorial_github_name] ||= 'devportal-tutorials-rb' - options[:tutorial_url] = 'https://github.com/steemit/devportal-tutorials-rb' - options[:dest_tutorials_path] ||= '_tutorials-ruby' - - super - end - end - end -end diff --git a/tutorials/devportal-tutorials-js/README.md b/tutorials/devportal-tutorials-js/README.md index 6cfabec24dc881b62fc8b7d70f2c72a4e94f8b46..38b196ac7c995f194ac5efb86ac6391e32383051 100755 --- a/tutorials/devportal-tutorials-js/README.md +++ b/tutorials/devportal-tutorials-js/README.md @@ -46,13 +46,13 @@ The tutorials build on each other. It's suggested you go through them in-order. Use the command line/terminal for the following instructions -1. clone this repo +1. `git clone https://gitlab.syncad.com/hive/devportal.git` - `git clone git@github.com:steemit/devportal-tutorials-js.git` + `git clone https://gitlab.syncad.com/hive/devportal.git` 1. cd into the tutorial you wish to run - ex: `cd tutorials/01_blog_feed` + ex: `cd devportal/tutorials/devportal-tutorials-js/tutorials/01_blog_feed` 1. Use npm or yarn to install dependencies diff --git a/tutorials/devportal-tutorials-js/tutorials/00_getting_started/README.md b/tutorials/devportal-tutorials-js/tutorials/00_getting_started/README.md index 9a0766bb35e520c73e4267b9a8d6200a9fe124bf..1354de944e1f0bd575f0d073430cf5880165b5c5 100755 --- a/tutorials/devportal-tutorials-js/tutorials/00_getting_started/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/00_getting_started/README.md @@ -11,7 +11,7 @@ You can still learn a lot of these if they aren't in your base skill-set; it'll ### Your Dev Environment -These tutorials require [Node.js 8.7+](https://nodejs.org/en/download/). [Yarn](https://yarnpkg.com/en/) is nice, but not required. Runnable versions of the tutorials are located [in this github repo](https://github.com/steemit/devportal-tutorials-js). +These tutorials require [Node.js 8.7+](https://nodejs.org/en/download/). [Yarn](https://yarnpkg.com/en/) is nice, but not required. Runnable versions of the tutorials are located [in this github repo](https://gitlab.syncad.com/hive/devportal/-/tree/master/tutorials/devportal-tutorials-js). If you haven't chosen an editor, you can use [Atom](https://atom.io/), [Sublime](https://www.sublimetext.com/), [Intellij](https://www.jetbrains.com/idea/), [Vi](https://en.wikipedia.org/wiki/Vi), etc. If you want to keep multiple versions of Node on your system try [Node Version Manager](https://github.com/creationix/nvm). @@ -20,17 +20,17 @@ If you want to keep multiple versions of Node on your system try [Node Version M Let's say you wanted to run the very [first tutorial](../01_blog_feed), `01_blog_feed`. Here's how you'd do it: -1. From Bash: +From Bash: - ```bash - git clone https://github.com/steemit/devportal-tutorials-js.git +```bash +git clone https://gitlab.syncad.com/hive/devportal.git - cd devportal-tutorials-js/tutorials/01_blog_feed - npm i - npm run dev-server - ``` +cd devportal/tutorials/devportal-tutorials-js/tutorials/01_blog_feed +npm i +npm run dev-server +``` -1. open http://localhost:3000/ in your web browser +Then open http://localhost:3000/ in your web browser: ``` ### Github diff --git a/tutorials/devportal-tutorials-js/tutorials/01_blog_feed/README.md b/tutorials/devportal-tutorials-js/tutorials/01_blog_feed/README.md index fa026f3b11652fce25def5e7a85a0fe3065d3945..3b04e46995ce5872ef5c191132de890c81b167c8 100755 --- a/tutorials/devportal-tutorials-js/tutorials/01_blog_feed/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/01_blog_feed/README.md @@ -145,8 +145,8 @@ That's all there is to it. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/01_blog_feed` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/01_blog_feed` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md index 5d45d92f7871ffe43fd38d241ffd1029b0b88f22..d64b65f1c2ef1fe24c259f4023a8ebf9ef33dd39 100755 --- a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md @@ -110,8 +110,8 @@ Now that `sc2-sdk` is initialized we can start authentication and perform simple ### To Run the tutorial -1. clone this repo -1. `cd tutorials/02_steemconnect` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/02_steemconnect` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/03_client_signing/README.md b/tutorials/devportal-tutorials-js/tutorials/03_client_signing/README.md index ce5c526afc70f8ad4476defac9ce07635bf72a37..11651d13b09e6cd0390fe80d5ba5ffedc65b486e 100755 --- a/tutorials/devportal-tutorials-js/tutorials/03_client_signing/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/03_client_signing/README.md @@ -109,8 +109,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/03_client_signing` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/03_client_signing` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/04_get_posts/README.md b/tutorials/devportal-tutorials-js/tutorials/04_get_posts/README.md index 03c5aec284f117fbaae144eaeddc1969ea2a8ea2..e78f391a032017ee271c7b9160c293ded18edbd7 100755 --- a/tutorials/devportal-tutorials-js/tutorials/04_get_posts/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/04_get_posts/README.md @@ -180,8 +180,8 @@ The result returned from the service is a `JSON` list. This is an example list w ### To Run the tutorial -1. clone this repo -1. `cd tutorials/04_get_posts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/04_get_posts` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/05_get_post_details/README.md b/tutorials/devportal-tutorials-js/tutorials/05_get_post_details/README.md index a1f5e07f9497fb576c175f4a678818f549e2d8bd..484cb3f98aba7a752619ffb9085d6a7820956422 100755 --- a/tutorials/devportal-tutorials-js/tutorials/05_get_post_details/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/05_get_post_details/README.md @@ -180,8 +180,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/05_get_post_details` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/05_get_post_details` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post/README.md b/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post/README.md index 4891a90aaeaeeab3ec7bc1067fb8b155447ffa66..7d7f7ad51a98cd4ea7e1533684caf886beda7819 100755 --- a/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post/README.md @@ -95,8 +95,8 @@ From this result, you have access to everything associated with the selected pos ### To Run the tutorial -1. clone this repo -1. `cd tutorials/06_get_voters_list_on_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/06_get_voters_list_on_post` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments/README.md b/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments/README.md index 3c05522540810554e141ce2e05383bc4848dabb4..254065eb3b05b0e8ffadf1d35b2f672f4cc4210a 100755 --- a/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments/README.md @@ -139,8 +139,8 @@ From this result, you have access to comments made on selected post. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/07_get_post_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/07_get_post_comments` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies/README.md b/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies/README.md index 613140afeb9e4c4a119fdd0361bc64685c399b31..4a9e98966a9f009f98678c710999c25e49e066c5 100755 --- a/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies/README.md @@ -259,8 +259,8 @@ We check if `content` is not an empty object and we iterate through each object ### To Run the tutorial -1. clone this repo -1. `cd tutorials/08_get_account_replies` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/08_get_account_replies` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments/README.md b/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments/README.md index 868893a90b6f1b241bb8199acc02743b333b4aec..643ccda816978605dc52d091f1126a7c7d9047ee 100755 --- a/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments/README.md @@ -265,8 +265,8 @@ Each line is then pushed and displayed separately. ### To Run the tutorial -1. clone this repo -1. `cd tutorials/09_get_account_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/09_get_account_comments` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/10_submit_post/README.md b/tutorials/devportal-tutorials-js/tutorials/10_submit_post/README.md index 251d6ab676d33e7e52a9859c67a2f939b0528302..0b05cd6d5875d8d777ee8c9414f35bb0efe85508 100755 --- a/tutorials/devportal-tutorials-js/tutorials/10_submit_post/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/10_submit_post/README.md @@ -105,8 +105,8 @@ The `broadcast` operation has more to offer than just committing a post/comment ### To Run the tutorial -1. clone this repo -1. `cd tutorials/10_submit_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/10_submit_post` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply/README.md b/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply/README.md index 01206092e6e5d266d3be3c00fc7fd5e03397c036..c7ce07d2d421921b96d013dc6f224d03a67a7394 100755 --- a/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply/README.md @@ -134,8 +134,8 @@ The `broadcast` operation has more to offer than just committing a post/comment ### To Run the tutorial -1. clone this repo -1. `cd tutorials/11_submit_comment_reply` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/11_submit_comment_reply` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching/README.md b/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching/README.md index 2e6e69740d215b4ab6ca2da9a9d9191b27df71db..215d95b3e5c3ef5c6877e368f77d038ee19d71f8 100755 --- a/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching/README.md @@ -169,8 +169,8 @@ After the post has been broadcasted to the network, we can simply set all the fi ### To Run the tutorial -1. clone this repo -1. `cd tutorials/12_edit_content_patching` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/12_edit_content_patching` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions/README.md b/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions/README.md index c0a2a9bd540f38e5d08286cf625cd856fb96e0ad..58091e57a36aeb460789a2a33d5d850153ade473 100755 --- a/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions/README.md @@ -118,8 +118,8 @@ That's it! ### To Run the tutorial -1. clone this repo -1. `cd tutorials/13_stream_blockchain_transactions` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/13_stream_blockchain_transactions` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post/README.md b/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post/README.md index 45ee47eb09427a33ef05109508e0e8af112379cc..b63a06e0956b3f66ad043c73f1feea48649f0189 100755 --- a/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post/README.md @@ -130,8 +130,8 @@ It should be noted that reblogging a post does not create a new post on the bloc ## To run this tutorial -1. clone this repo -2. `cd tutorials/14_reblogging_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/14_reblogging_post` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/15_search_accounts/README.md b/tutorials/devportal-tutorials-js/tutorials/15_search_accounts/README.md index 5822709921e95f8cb0ceb9074a65e6d6679346c6..a56018b45186dc41dd36b8c0c06808db7485d94d 100755 --- a/tutorials/devportal-tutorials-js/tutorials/15_search_accounts/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/15_search_accounts/README.md @@ -66,8 +66,8 @@ document.getElementById('accList').innerHTML = _accounts.join('<br>'); ## To run this tutorial -1. clone this repo -2. `cd tutorials/15_search_accounts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/15_search_accounts` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/16_search_tags/README.md b/tutorials/devportal-tutorials-js/tutorials/16_search_tags/README.md index c4f6c52d32fc8b4e6f04f86097e302bb1bca1005..cf22b771ddf7daf7ef7bfe57ffed008e2d661f31 100755 --- a/tutorials/devportal-tutorials-js/tutorials/16_search_tags/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/16_search_tags/README.md @@ -70,8 +70,8 @@ document.getElementById('tagList').innerHTML = posts.join('<br>'); ### To run this tutorial -1. clone this repo -1. `cd tutorials/16_search_tags` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/16_search_tags` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content/README.md b/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content/README.md index 9d5125556ae6724c56baaf053c3a1e4f200c43ef..8f43298ee49a36ddacd64f55444186274acd9d93 100755 --- a/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content/README.md @@ -212,8 +212,8 @@ More information on how to use the `broadcast` operation and options surrounding ### To run this tutorial -1. clone this repo -1. `cd tutorials/17_vote_on_content` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/17_vote_on_content` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/18_follow_a_user/README.md b/tutorials/devportal-tutorials-js/tutorials/18_follow_a_user/README.md index c72ec68bf7d38774f52b82cad7a347c5c4e3d6e0..28f08c37400ee8668a27c8ba132977320ce46ecd 100755 --- a/tutorials/devportal-tutorials-js/tutorials/18_follow_a_user/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/18_follow_a_user/README.md @@ -146,8 +146,8 @@ If either of the values for the user or author does not exist the proper error r ### To run this tutorial -1. clone this repo -1. `cd tutorials/18_follow_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/18_follow_user` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list/README.md b/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list/README.md index c752982cfeb6b3463af2f43fd4fdaa2ec83743b3..134b15de2fc98ee6344561536f01902be116fb60 100755 --- a/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list/README.md @@ -108,8 +108,8 @@ followlist.forEach(newObj => { ### To run this tutorial -1. clone this repo -2. `cd tutorials/19_get_follower_and_following_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/19_get_follower_and_following_list` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/20_account_reputation/README.md b/tutorials/devportal-tutorials-js/tutorials/20_account_reputation/README.md index 3b0540c3908c40ed1d6c632107c9bed77fa93456..32b834c03893fb4f7cc820205f6c862bc8ec507d 100755 --- a/tutorials/devportal-tutorials-js/tutorials/20_account_reputation/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/20_account_reputation/README.md @@ -97,8 +97,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/20_account_reputation` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/20_account_reputation` 1. `npm i` 1. `npm i` 1. `npm run dev-server` or `npm run start` diff --git a/tutorials/devportal-tutorials-js/tutorials/21_transfer_steem_and_sbd/README.md b/tutorials/devportal-tutorials-js/tutorials/21_transfer_steem_and_sbd/README.md index 6f236fac6a38984f4ba61c6a345a555327a041c9..768fcca5c6c347fda8e24c3fcfe23264099ebed5 100755 --- a/tutorials/devportal-tutorials-js/tutorials/21_transfer_steem_and_sbd/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/21_transfer_steem_and_sbd/README.md @@ -115,8 +115,8 @@ client.broadcast.transfer(transf, privateKey).then( ### To run this tutorial -1. clone this repo -2. `cd tutorials/20_transfer_STEEM_and_SBD` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/20_transfer_STEEM_and_SBD` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting/README.md b/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting/README.md index 3616f510355fe7442a8b7ea14cdd7ea01a9e12ed..79fddd5b608a79cf3e02db399b6aa575da249c09 100755 --- a/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting/README.md @@ -176,8 +176,8 @@ The option buttons (continue with voting process or stop) are disabled at the en ### To run this tutorial -1. clone this repo -1. `cd tutorials/22_witness_listing_and_voting` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/22_witness_listing_and_voting` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/23_claim_rewards/README.md b/tutorials/devportal-tutorials-js/tutorials/23_claim_rewards/README.md index b9cb35e22b71ed654c3ae079432f845338c34463..6d22c6cd5b9cefc2b18a243449cf7af6bb476054 100755 --- a/tutorials/devportal-tutorials-js/tutorials/23_claim_rewards/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/23_claim_rewards/README.md @@ -98,8 +98,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/21_claim_rewards` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/21_claim_rewards` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/24_power_up_steem/README.md b/tutorials/devportal-tutorials-js/tutorials/24_power_up_steem/README.md index f31db3601b040ac7e9d4ee56a3a74417d72b6773..337c880f64b7a7eadf5c9bc301b5ff5adbeb75fb 100755 --- a/tutorials/devportal-tutorials-js/tutorials/24_power_up_steem/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/24_power_up_steem/README.md @@ -93,8 +93,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/22_power_up_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/22_power_up_steem` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/25_power_down/README.md b/tutorials/devportal-tutorials-js/tutorials/25_power_down/README.md index 3dfaf66087fe21276f4341ed9f2ace6490d7ef65..94cca1a3570abc649a9af5462da6fdd85bd4747c 100755 --- a/tutorials/devportal-tutorials-js/tutorials/25_power_down/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/25_power_down/README.md @@ -107,8 +107,8 @@ That's it! ### To run this tutorial -1. `git clone https://github.com/steemit/devportal-tutorials-js.git` -1. `cd devportal-tutorials-js/tutorials/23_power_down` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/25_power_down` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/26_create_account/README.md b/tutorials/devportal-tutorials-js/tutorials/26_create_account/README.md index 2549417220249b7ca1cc5d984845216d62aec427..5eafd3c9553d9916ad335330c021713dae6860de 100755 --- a/tutorials/devportal-tutorials-js/tutorials/26_create_account/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/26_create_account/README.md @@ -190,8 +190,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/26_create_account` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/26_create_account` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/27_delegate_power/README.md b/tutorials/devportal-tutorials-js/tutorials/27_delegate_power/README.md index b794c336e558016a63cfe45a5c2fe6cd06e2afec..0195083641a6fce034ba5d732fbfb92303eafbe3 100755 --- a/tutorials/devportal-tutorials-js/tutorials/27_delegate_power/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/27_delegate_power/README.md @@ -99,8 +99,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/25_delegate_power` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/25_delegate_power` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/28_set_withdraw_route/README.md b/tutorials/devportal-tutorials-js/tutorials/28_set_withdraw_route/README.md index 05eae16548b8be01c9a1b93081406a637081c199..05889f3c66d51f444df124aaec8accf85e12e78c 100755 --- a/tutorials/devportal-tutorials-js/tutorials/28_set_withdraw_route/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/28_set_withdraw_route/README.md @@ -113,8 +113,8 @@ That's it! ### To run this tutorial -1. clone this repo -1. `cd tutorials/26_set_withdraw_route` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/26_set_withdraw_route` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/) diff --git a/tutorials/devportal-tutorials-js/tutorials/29_get_delegations_by_user/README.md b/tutorials/devportal-tutorials-js/tutorials/29_get_delegations_by_user/README.md index 458082b982d3288e4f5a9a12af7a2db354de7024..2d4487483ebeb86269bdb50def07e1cafb278fc5 100755 --- a/tutorials/devportal-tutorials-js/tutorials/29_get_delegations_by_user/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/29_get_delegations_by_user/README.md @@ -148,8 +148,8 @@ delegationdata.forEach(newObj => { ### To run this tutorial -1. clone this repo -2. `cd tutorials/27_get_delegations_by_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/27_get_delegations_by_user` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/30_grant_posting_permission/README.md b/tutorials/devportal-tutorials-js/tutorials/30_grant_posting_permission/README.md index 953b693bad2f059d9c44d69f418fe2baf2833b3b..fec90d452c815ed909ca13dec1636288acb06eb8 100755 --- a/tutorials/devportal-tutorials-js/tutorials/30_grant_posting_permission/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/30_grant_posting_permission/README.md @@ -161,8 +161,8 @@ This is similar to the steemconnect links that have been covered in previous tut ### To run this tutorial -1. clone this repo -2. `cd tutorials/28_grant_posting_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-js/tutorials/28_grant_posting_permission` 3. `npm i` 4. `npm run dev-server` or `npm run start` 5. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission/README.md b/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission/README.md index 761f97ec0dcd656ef017e024b2376aae8edd2623..ff501dac7b361b24ab87cd62ccc9097033dc2972 100755 --- a/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission/README.md @@ -172,8 +172,8 @@ This is similar to the steemconnect links that have been covered in previous tut ### To run this tutorial -1. clone this repo -1. `cd tutorials/31_grant_active_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/31_grant_active_permission` 1. `npm i` 1. `npm run dev-server` or `npm run start` -1. After a few moments, the server should be running at http://localhost:3000/ \ No newline at end of file +1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem/README.md b/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem/README.md index a627291ca10fb75c7e79b197ed7417be95327004..7c705b14f3ee53017e7b51d8220457fea714a9e4 100755 --- a/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem/README.md @@ -136,8 +136,8 @@ The results of the operation is displayed on the UI along with a block number in ### To run this tutorial -1. clone this repo -1. `cd tutorials/32_convert_sbd_to_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/32_convert_sbd_to_steem` 1. `npm i` 1. `npm run dev-server` or `npm run start` -1. After a few moments, the server should be running at http://localhost:3000/ \ No newline at end of file +1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api/README.md b/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api/README.md index e62daebf850391334d1ad347eca7e281e8265cbe..56d772dd27b7a39991c3238d62101ef05800ae58 100755 --- a/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api/README.md +++ b/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api/README.md @@ -484,8 +484,8 @@ This detailed information can be used to track the performance of a specific wit ### To run this tutorial -1. clone this repo -1. `cd tutorials/34_get_state_replacement_api` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-js/tutorials/34_get_state_replacement_api` 1. `npm i` 1. `npm run dev-server` or `npm run start` 1. After a few moments, the server should be running at http://localhost:3000/ diff --git a/tutorials/devportal-tutorials-py/README.md b/tutorials/devportal-tutorials-py/README.md index 72c006737c94f8d60019928592d8c345f9390219..01315088bd8877c6ab7ce4935d57667420bf185f 100755 --- a/tutorials/devportal-tutorials-py/README.md +++ b/tutorials/devportal-tutorials-py/README.md @@ -49,13 +49,11 @@ The tutorials build on each other. It's suggested you go through them in-order. Use the command line/terminal for the following instructions -1. clone this repo - - `git clone git@github.com:steemit/devportal-tutorial-py.git` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` 1. cd into the tutorial you wish to run - ex: `cd tutorials/04_get_posts` + ex: `cd devportal/tutorials/devportal-tutorials-py/tutorials/04_get_posts` 1. Use pip to install dependencies diff --git a/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely/README.md b/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely/README.md index a752774a02469336e5cd85064e4cf40e9df5c5b9..9e2ee83cb95837d984764799237f904edef158c3 100755 --- a/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely/README.md @@ -81,9 +81,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/001_using_keys_securely` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/001_using_keys_securely` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/04_get_posts/README.md b/tutorials/devportal-tutorials-py/tutorials/04_get_posts/README.md index af15ff8dd605c8d50fb36e8b4c3190768bf0ac08..a05e3bbae1dad65160de2148c8e30a4a6e87373c 100755 --- a/tutorials/devportal-tutorials-py/tutorials/04_get_posts/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/04_get_posts/README.md @@ -161,9 +161,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/04_get_posts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/04_get_posts` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/05_get_post_details/README.md b/tutorials/devportal-tutorials-py/tutorials/05_get_post_details/README.md index 1290d18039b2dcfcacff2c7c578a2aac6e20868d..67a6b1ccab7b71d49dbc8b6d1e6867415a2b0e25 100755 --- a/tutorials/devportal-tutorials-py/tutorials/05_get_post_details/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/05_get_post_details/README.md @@ -154,9 +154,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/05_get_post_details` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/05_get_post_details` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list_on_post/README.md b/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list_on_post/README.md index 6be9696ce5d17a121033c52ca1205f96aa314f84..6582294ced3f61bc786f7fc4266b0f24b3dec3ee 100755 --- a/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list_on_post/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list_on_post/README.md @@ -108,9 +108,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/06_get_voters_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/06_get_voters_list` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments/README.md b/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments/README.md index 5342541b08d67038a97f7a98bc062fbe1ef4a68f..72f536a25f1bc6a53f99efa5faa34fe86b6dab8d 100755 --- a/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments/README.md @@ -180,9 +180,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/07_get_post_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/07_get_post_comments` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies/README.md b/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies/README.md index 23491d9fbff91737ec785db20d2212bf96dbbaa1..0b9de0cfe78e7b9e444d25d86536615ff01d407d 100755 --- a/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies/README.md @@ -84,8 +84,8 @@ Next, we will print the details obtained from the function. Because we only want ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/08_get_account_replies` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/08_get_account_replies` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see output in terminal/command prompt screen. \ No newline at end of file +1. After a few moments, you should see output in terminal/command prompt screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments/README.md b/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments/README.md index 9a3d6c62e1e82b4e62c16915b1c630e2e97c1528..cd6742077f170d824a7c0334bd3818e39865775a 100755 --- a/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments/README.md @@ -196,9 +196,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/09_get_account_comments` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/09_get_account_comments` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/10_submit_post/README.md b/tutorials/devportal-tutorials-py/tutorials/10_submit_post/README.md index 02233f6610740f422bec6c1e785330cc1d94e3db..362a32b039b2d3f81a24009c0283f76169be5bdf 100755 --- a/tutorials/devportal-tutorials-py/tutorials/10_submit_post/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/10_submit_post/README.md @@ -103,9 +103,8 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -2. `cd tutorials/10_submit_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +2. `cd devportal/tutorials/devportal-tutorials-py/tutorials/10_submit_post` 3. `pip install -r requirements.txt` 4. `python index.py` 5. After a few moments, you should see a prompt for input in terminal screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply/README.md b/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply/README.md index 0ce250301253fa67673baacbc75d709b966b0184..5617426f4cf1a3ac9fba437fc0090a443e6f03c2 100755 --- a/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply/README.md @@ -109,8 +109,8 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/11_submit_comment_reply` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/11_submit_comment_reply` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching/README.md b/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching/README.md index ab3220e2169b2b34337343a3dd8b3fc638fca1fd..fcd15eac3107147c981d0a462afbf652de85ccd2 100755 --- a/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching/README.md @@ -141,8 +141,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/12_edit_content_patching` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/12_edit_content_patching` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions/README.md b/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions/README.md index 7d79b8cac5d3050eb940bc05413d07bf5720a985..affd1fd203cfe9e2be9acdaac275d9d46d1626c1 100755 --- a/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions/README.md @@ -63,8 +63,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/13_stream_blockchain_transactions` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/13_stream_blockchain_transactions` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post/README.md b/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post/README.md index 7211f5a5cc1708563b5709edf23c3f291e00f4eb..62f34f2cb076df1d58e2dcc64734c4c17a6b56cb 100755 --- a/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post/README.md @@ -78,9 +78,8 @@ That's it, if transaction is successful you shouldn't see any error messages, ot ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/14_reblogging_post` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/14_reblogging_post` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. - diff --git a/tutorials/devportal-tutorials-py/tutorials/15_search_accounts/README.md b/tutorials/devportal-tutorials-py/tutorials/15_search_accounts/README.md index b3901dc10971d6a1a312225e642dd50c2792afbf..7a8ca4bcbbadac75d0ac2ebf53edcea0a9a7e899 100755 --- a/tutorials/devportal-tutorials-py/tutorials/15_search_accounts/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/15_search_accounts/README.md @@ -88,8 +88,8 @@ That's it!. ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/15_search_accounts` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/15_search_accounts` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see output in terminal/command prompt screen. \ No newline at end of file +1. After a few moments, you should see output in terminal/command prompt screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content/README.md b/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content/README.md index 18911c95cdf565ec1a731df883f94e6dd62a8550..2fe361179cb5ddd26742b78ee40cbb8ddb389496 100755 --- a/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content/README.md @@ -123,8 +123,8 @@ A simple confirmation of the chosen action is printed on the screen. ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/17_vote_on_content` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/17_vote_on_content` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user/README.md b/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user/README.md index b8db5c883217f6a2e1df4f5d9f00e18d29158005..cd6c628aceb30c4cfe213079aec30227a49b105e 100755 --- a/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user/README.md @@ -121,8 +121,8 @@ You can also check on the [testportal](http://condenser.steem.vc/blog/@cdemo) fo ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/18_follow_a_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/18_follow_a_user` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list/README.md b/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list/README.md index 1f15e0e5cb5410c812a9a774c1023d8a3153bd9d..940aa839ada2d5df77d1417362289e7998a668f4 100755 --- a/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list/README.md @@ -111,8 +111,8 @@ This is a fairly simple example of how to use these functions but we encourage y ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/19_get_follower_and_following_list` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/19_get_follower_and_following_list` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see output in terminal/command prompt screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/20_account_reputation/README.md b/tutorials/devportal-tutorials-py/tutorials/20_account_reputation/README.md index ffc2385a3a5ebab0792a5e48b10376f644fe883e..ee9c1ad5be1226d1f02062b26adc313c6296cc73 100755 --- a/tutorials/devportal-tutorials-py/tutorials/20_account_reputation/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/20_account_reputation/README.md @@ -95,8 +95,8 @@ That's it. We have successfully interpreted reputation. ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/20_account_reputation` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/20_account_reputation` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see output in terminal/command prompt screen. \ No newline at end of file +1. After a few moments, you should see output in terminal/command prompt screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd/README.md b/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd/README.md index 1692726378be030e9dd1f13b6df3becc120e5659..5af463ca4af36244f53d483de28298f142e31035 100755 --- a/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd/README.md @@ -148,8 +148,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/21_transfer_steem_and_sbd` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/21_transfer_steem_and_sbd` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting/README.md b/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting/README.md index 8605d263afa6a8221d9980b4e26f2d8f39fdb05f..077b918335b0915044779db0f54142c152f9505c 100755 --- a/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting/README.md @@ -139,8 +139,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/22_witness_listing_and_voting` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/22_witness_listing_and_voting` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards/README.md b/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards/README.md index cce2184cb8879f9dd770ffc9153806c784baeac3..f0f103d088fdcd9175bb686f1e6ecfbe51018f75 100755 --- a/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards/README.md @@ -158,8 +158,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/23_claim_rewards` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/23_claim_rewards` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem/README.md b/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem/README.md index b0d8386a343bdfb43c06e8d0e60c44197d538076..4c96e8ac4e8a5b6ca1ed024ca3d6e28a1595274d 100755 --- a/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem/README.md @@ -137,8 +137,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/24_power_up_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/24_power_up_steem` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/25_power_down/README.md b/tutorials/devportal-tutorials-py/tutorials/25_power_down/README.md index 6246e4ae5b0d5a8dca2ac165cc0fda9e4d24aad9..1634307ee8fe6db0e421a8aa1779848e3c67b6ef 100755 --- a/tutorials/devportal-tutorials-py/tutorials/25_power_down/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/25_power_down/README.md @@ -124,8 +124,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/25_power_down` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/25_power_down` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/27_delegate_power/README.md b/tutorials/devportal-tutorials-py/tutorials/27_delegate_power/README.md index 8273b5d04f5cead50c11a1bd68016ca93221f727..c49be55e73008e8b1ac7ddf3a70f43942e2f0ad4 100755 --- a/tutorials/devportal-tutorials-py/tutorials/27_delegate_power/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/27_delegate_power/README.md @@ -132,8 +132,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/27_delegate_power` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/27_delegate_power` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user/README.md b/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user/README.md index 246bcbb92affac9e914ffd68766ac505f4bf1204..6dc3a5dd71108e0c012e13ef9dabffd89d9ed3fb 100755 --- a/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user/README.md @@ -98,8 +98,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/29_get_delegations_by_user` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/29_get_delegations_by_user` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission/README.md b/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission/README.md index 4aee9e3b4cf03791e9a1882ab3c818eb3b05fcb2..1bd8c5b3e75ccef22aa872698b42213dcec6e508 100755 --- a/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission/README.md @@ -121,8 +121,8 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/30_grant_posting_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/30_grant_posting_permission` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission/README.md b/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission/README.md index 36e88211d3c67adb47ed39d5cb1c3649f93c30ff..3678423d4ef5e714c692734b258e9a8c443565fc 100755 --- a/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission/README.md @@ -127,8 +127,8 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/31_grant_active_permission` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/31_grant_active_permission` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem/README.md b/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem/README.md index 5434c50ea72ccf8709ba7998426ba21d2c3d491c..fdd04f8e6bf09860532d251e615c64f40540c5ae 100755 --- a/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem/README.md @@ -115,8 +115,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/00_getting_started#dev-requirements) -1. clone this repo -1. `cd tutorials/32_convert_sbd_to_steem` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/32_convert_sbd_to_steem` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen.devportal-tutorials-py/tutorials/ diff --git a/tutorials/devportal-tutorials-py/tutorials/33_password_key_change/README.md b/tutorials/devportal-tutorials-py/tutorials/33_password_key_change/README.md index 13667aa762e8860d130ab47316dfebe253aff87e..674892d7f9a1dadaecea6b6d52576a6105ba5f9b 100755 --- a/tutorials/devportal-tutorials-py/tutorials/33_password_key_change/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/33_password_key_change/README.md @@ -131,8 +131,8 @@ That's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/33_password_key_change` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/33_password_key_change` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance/README.md b/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance/README.md index c32d3c99bf9730c949e02d0040d71b1dfa91cd74..1f215e86858cabf7bb869849ac4b6397273d63b9 100755 --- a/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance/README.md @@ -168,8 +168,8 @@ We encourage users to play around with different values and data types to fully ### To Run the tutorial 1. [review dev requirements](https://github.com/steemit/devportal-tutorials-py/tree/master/tutorials/00_getting_started#dev-requirements) -1. clone this repo -1. `cd tutorials/33_transfer_steem_and_sbd_to_savings_balance` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/33_transfer_steem_and_sbd_to_savings_balance` 1. `pip install -r requirements.txt` 1. `python index.py` -1. After a few moments, you should see a prompt for input in terminal screen. \ No newline at end of file +1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-py/tutorials/35_account_recovery/README.md b/tutorials/devportal-tutorials-py/tutorials/35_account_recovery/README.md index 88e66164daac8bd8303a4acaf8cb5248130b7d4c..ddf8b3172791223661d77cfaf70e099f1a5cf32d 100755 --- a/tutorials/devportal-tutorials-py/tutorials/35_account_recovery/README.md +++ b/tutorials/devportal-tutorials-py/tutorials/35_account_recovery/README.md @@ -221,8 +221,8 @@ And that's it! ### To Run the tutorial 1. [review dev requirements](../00_getting_started) -1. clone this repo -1. `cd tutorials/35_account_recovery` +1. `git clone https://gitlab.syncad.com/hive/devportal.git` +1. `cd devportal/tutorials/devportal-tutorials-py/tutorials/35_account_recovery` 1. `pip install -r requirements.txt` 1. `python index.py` 1. After a few moments, you should see a prompt for input in terminal screen. diff --git a/tutorials/devportal-tutorials-rb/README.md b/tutorials/devportal-tutorials-rb/README.md index ce9406df67ee85b98d173bb9bd23a75c9b9ef71c..3637f66cbb5d40c177c1251ff5f7cc618929c351 100755 --- a/tutorials/devportal-tutorials-rb/README.md +++ b/tutorials/devportal-tutorials-rb/README.md @@ -19,7 +19,7 @@ The tutorials build on each other. It's suggested you go through them in-order. Use the command line/terminal for the following instructions -1. clone this repo +1. `git clone https://gitlab.syncad.com/hive/devportal.git` `git clone git@github.com:steemit/devportal-tutorials-rb.git` diff --git a/tutorials/devportal-tutorials-rb/tutorials/00_getting_started/README.md b/tutorials/devportal-tutorials-rb/tutorials/00_getting_started/README.md index af1ec8616d676b6d7703deab69f31c10f5fdc611..63424bacf4c1776ab01401590988e916ec22fee9 100755 --- a/tutorials/devportal-tutorials-rb/tutorials/00_getting_started/README.md +++ b/tutorials/devportal-tutorials-rb/tutorials/00_getting_started/README.md @@ -76,4 +76,4 @@ api = Radiator::Api.new(options) ### Next Step -If you'd like to dive right into the first tutorial, have a look at: [Blog Feed](https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/01_blog_feed) +If you'd like to dive right into the first tutorial, have a look at: [Blog Feed](https://gitlab.syncad.com/hive/devportal/-/tree/master/tutorials/devportal-tutorials-rb/tutorials/01_blog_feed)