Time for my first HiveFest!! (+ steps to decode your invite in the private memo)

in #hivefest5 years ago (edited)

Hello hello, long time no see! Beeen busy.

Tomorrow and Saturday I will find some time to join HiveFest though!

  • Here is my VR headset (Oculus 2) and my headband in preparation for the event:

e355cfc845f64792911de1c2f9d28ed1.jpeg

  • Here is my avatar:

( gabe = @gaottantacinque / @keys-defender )

131953768_10223992934360586_7293801959693379214_o.jpg

Can't figure out how to change those ugly clothes lol..



These are the talks I'll likely listen to (I have to skip some due to other commitments - work and personal):

  • green: yes, orange: tentative

image.png

Come find me and say hi if you want to!





And now some help for the community..

I was trying to follow the various steps to prepare for the virtual conference. I got to the step where I was supposed to decode the private memo using peakd.com but there was not a lock sign right next to it..

Screen Shot 20201218 at 1.51.51 AM.png

It may just be that I was doing something wrong since I'm a nostalgic and still use https://hive.blog most of the times. Anyway, I decided to decrypt it using the simple steps below. I hope it helps someone else that has the same problem.

What you need:

  1. A browser;
  2. your private memo key.


Where can you find your memo key you ask?

Screen Shot 20201218 at 2.01.50 AM.png

STEPS:

  1. Open https://cdn.jsdelivr.net/npm/@hiveio/hive-js/dist/hive.min.js

  2. Copy all the code (hive-io.js library)on the page. (Command + A on Mac, Ctrl + A con Windows)

  3. Open the browser Console (Command + Option + J on Mac, F12 on Windows).

  4. Paste the hive-io.js code copied above and press enter.

  5. Copy and paste the command below and press enter.

  • (It uses the function hive.memo.decode with 2 arguments: your private memo key and the message that you want to decode)

Code:

hive.memo.decode(
  'YOUR_PRIVATE_MEMO_KEY_HERE',
  '#TmxigZZryX5rYr9Exb65WT2hr1XVXiHDSaV545BwTnD1HeJcwNCKssvM73FyrVinA6uLER3HGtE9N1NLoFnyJH13apGs1aWo6jdaKLesdQHs2XmXoZSjpPBaW5Ap6jxA3qdsGqGW9FdWjPq9gy9PmJFetWpw8psTVjYwmHdsEH6PfQjcS2VSMisTFu1oburkrwdpGrVBTrzZ7hFYHPDs76wrjHdt2P7SWph3NaGiyLBHZd'
);



Outcome: You'll find your password/invite in the output of that command!

click here to open the image






See you around at the event!!

Sort:  

Congratulations @gaottantacinque! You received a personal badge!

It's great to see you are attending HiveFest⁵ in Altspace VR.

Have fun!

You can view your badges on your board and compare yourself to others in the Ranking

Do not miss the last post from @hivebuzz:

It's today! Do not miss the opening of HiveFest⁵
// Execute this script in the Console of https://cdn.jsdelivr.net/npm/@hiveio/hive-js/dist/hive.min.js
// USE INCOGNITO so it does not save previous console commands!

// BOTH FOR SENDER AND RECEIVER
eval(document.body.innerText); // Loads HiveJs

// FOR SENDER
var senderPrivateMemoKey = '5Hpc**********************joQJgRZFu';
// https://hiveblocks.com/@receiver -> CTRL+F "memo" VVV
var receiverPublicMemoKey = 'STM5W********************d7vcMswj6zjox';
var encoded = hive.memo.encode(
  senderPrivateMemoKey,
  receiverPublicMemoKey,
  `#my message`,
);
console.log('Encoded msg:', encoded);

// FOR RECEIVER
var privateMemoKeyReceiver = '5KL3Ra********************t2ysoET';
var decoded = hive.memo.decode(
  privateMemoKeyReceiver,
  encoded,
);
console.log('Decoded:', decoded);```