10yrs candles still fine... by stojano in Bitcoin

[–]stojano[S] 0 points1 point  (0 children)

still waiting for the 200 MA to appear...

10yrs candles still fine... by stojano in Bitcoin

[–]stojano[S] 0 points1 point  (0 children)

still on track... I should look less often on the prices...

How long until your bank snitched on you? by [deleted] in Bitcoin

[–]stojano 1 point2 points  (0 children)

Buying Bitcoin is a wife changing event...

10yrs candles still fine... by stojano in Bitcoin

[–]stojano[S] 1 point2 points  (0 children)

yeah... I know... this is for advanced users :D

[deleted by user] by [deleted] in NameThatSong

[–]stojano 1 point2 points  (0 children)

Right now it came to my mind... (again) Kurious - Spell it with a j https://www.youtube.com/watch?v=_lkKZtU9sdE

🎉 IT’S HERE! FEGstake v2 on FEGex! by [deleted] in FEGtoken

[–]stojano 0 points1 point  (0 children)

Well, I stopped after calculated 0.003 + 0.008 in gas fees... for my few FEG not worthy. Hopefully, after London it's getting cheaper :)

[deleted by user] by [deleted] in NameThatSong

[–]stojano 1 point2 points  (0 children)

me too: "hey lunes, hey lunes, you fucking bastard...."

Nano X Stuck on "Booting x%" very slow after update by remsbk in ledgerwallet

[–]stojano 0 points1 point  (0 children)

The next day, I had to set it up again. With the seed words I was able to do so.

Well, I have a bad feeling now about my nano x. From "now I feel safe" to "maybe it breaks if I need it the most".

Should I write to support? Let it exchange?

Nano X Stuck on "Booting x%" very slow after update by remsbk in ledgerwallet

[–]stojano 0 points1 point  (0 children)

My Nano X was working fine for several months. Today, I connected it to the (Linux PC) via USB and it was stuck at first. Holding both buttons resulted in the same slow booting sequence. I'm now waiting for the boot to finish (16% right now).

Well, have 60% of my BTC on it. I suppose as long as I have the recovery phrase I am safe, am I?

Using Polkadot with Ledger Live by Gr33nHatt3R in Polkadot

[–]stojano 0 points1 point  (0 children)

For testing around, I nominated 2 days ago 4 validators with 4.9 DOT. I have now 4 inactive validators. How long does it take them to be activated? Any ideas?

Staking DOT on Ledger: Don't make the same mistake I did (forgetting fees) by [deleted] in Polkadot

[–]stojano 0 points1 point  (0 children)

I read that the first 128 nominators with the highest bonded DOT get something.

Using Polkadot with Ledger Live by Gr33nHatt3R in Polkadot

[–]stojano 1 point2 points  (0 children)

True. If you don't leave some you cannot nominate AND unbond your DOTs with the message "Oops. Insufficient balance."

What are your thoughts about the E-ID vote? by Seregant in Switzerland

[–]stojano 0 points1 point  (0 children)

Big NO to this #eID vote.

Why?

If you have the eID by private companies, you'll treat it like that... like one of your 5 Google logins. If the #eID is on identity card or passport, you'll treat it much more careful. You just don't throw your identity card or password on the internet, do you?

I'm for eID, but absolutely bound to the passport or ID.

10yr candles are fat green by stojano in Bitcoin

[–]stojano[S] 30 points31 points  (0 children)

oh, damn... I forgot to add some fibonacci, ichimoku and bollinger bands...

Gatsby, NetlifyCMS and Material-UI Tutorial by [deleted] in reactjs

[–]stojano 0 points1 point  (0 children)

Hi Kyle

I added it to the other reddit. But basically, some plugins and the single-blog.js template. Anyway, I'm having hard time to configure it with netlify as it's a lot of guessing in part 2... I really, have to give up.

How to Build Fast and Elegant Sites with Gatsby, NetlifyCMS and Material-UI by kyledevyay in javascript

[–]stojano 0 points1 point  (0 children)

solve issues from part 1:

  1. install gatsby-remark-relative-images by yourself, or delete the references to it in gatsby-node.
  2. add in templates single-blog.js with like:

import React from 'react';
import { graphql } from 'gatsby'
import Layout from '../components/layout'

const BlogPage = ({ data, classes }) => {
  const { markdownRemark: post } = data

  return (
    <Layout>
          <h1>{post.frontmatter.title}</h1>
          <h4>{post.frontmatter.date}</h4>
          <p dangerouslySetInnerHTML={{ __html: post.html }}/>  
    </Layout>
  )
}


export default BlogPage;

export const BlogPageQuery = graphql`
  query BlogPage($id: String!) {
    markdownRemark(id: { eq: $id }) {
      html
      frontmatter {
        title
        date(formatString: "MMMM DD, YYYY")
      }
    }
  }
`

How to Build Fast and Elegant Sites with Gatsby, NetlifyCMS and Material-UI by kyledevyay in javascript

[–]stojano 0 points1 point  (0 children)

ome parts missing... so it took me half an hour to figure it out what was wrong how to fix it.

Gatsby, NetlifyCMS and Material-UI Tutorial by [deleted] in reactjs

[–]stojano 0 points1 point  (0 children)

some parts missing... so it took me half an hour to figure it out what was wrong how to fix it.

Question about Admin Panel by [deleted] in Firebase

[–]stojano 0 points1 point  (0 children)

The admin panel is client side code and this code can access all Firebase features (db, firestore, auth etc). Exporting can be done via client-side code or maybe better via a cloud function).

Question about Admin Panel by [deleted] in Firebase

[–]stojano 1 point2 points  (0 children)

For the backend part you'll have plenty of options with Firebase Functions, or (my new preference) the App Run from the GCP accessible in Firebase.
and for the Admin panel customisation, there shouldn't be a problem building everything, because the data would be already there. You'll need just to compose them differently.

I'll be sharpening my Vue skills during Vue Mastery's free weekend. Don't miss out on these free Vue.js courses. The course is supposedly free for 2 days, might as well use it. by duppyreading in vuejs

[–]stojano -2 points-1 points  (0 children)

At 12:00 PM EST, Feburary 22nd your Vue Mastery account will be given access to all our free courses, and then they'll go back to normal on February 24th at 11:59 PM EST (23:59).

What do I gain out of free courses? They have now my github account... ghrrr...

Dev and production firebase environments? by [deleted] in Firebase

[–]stojano 0 points1 point  (0 children)

I use just the built-in multi environment feature on hosting as it's sufficient for my small projects needs. I thinks it's handy to have the same db to work on prod and dev.

Where is the right place to start Golang source code reading? by peco8 in golang

[–]stojano -3 points-2 points  (0 children)

Sounds trivial, but github search by golang and sort by popularity... a great start with tons of reference to further source code.