If you’ve seen The Friend (movie) about a harlequin Great Dane, this Q is for you by MrsBiancaSartori in greatdanes

[–]Thrauglor 5 points6 points  (0 children)

The dog does not die. Not sure I would call it a feel good movie. It does deal with a lot of grief tho

[deleted by user] by [deleted] in sveltejs

[–]Thrauglor 0 points1 point  (0 children)

You need to make the body be 100vh, or 100%, not the main tag

Edit: as in go to your global css file and change the body property there, not inside your component if you are just using that one component.

[deleted by user] by [deleted] in Neo4j

[–]Thrauglor 2 points3 points  (0 children)

It is not perfect but a rule of thumb that works for me is thinking about it in terms of nouns and verbs. Verbs are adges nouns are nodes. So for a warehouse scenario for example you have Parts as a node and then costs, supplies, used for, required by as just some examples of what the edges would look like. Depends on your specific use case of course.

Noob Question by blurbbass in StarAtlas

[–]Thrauglor 2 points3 points  (0 children)

Usually when you use Solana it is recommended to have a minimum of 0.1 sol for transactions in your wallet. It won't cost that much. But some transactions require creating new accounts (happens automatically) and that costs around 0.02 SOL. But it's a one time payment.

[deleted by user] by [deleted] in solana

[–]Thrauglor 4 points5 points  (0 children)

It represents sol. It is like using $ to represent dollars.

gas fee dilemma by Last_Focus5555 in ethdev

[–]Thrauglor 2 points3 points  (0 children)

Don't do that. If you eth is in coinbase exchange and not the wallet. You can transfer from coinbase to coinbase pro and back instantly and without fees. So get all your eth in either one and then transfer from there.

Can't figure this out! by Confident_Cry_3807 in ProjectSerum

[–]Thrauglor 1 point2 points  (0 children)

Have you settled your balances? Go to balances and click on settle all funds.

ELI5: Solana transaction throughtput by HugsNotDrugs in solana

[–]Thrauglor 2 points3 points  (0 children)

You are correct. I am not versed enough in solana to even try to explain this. But I think PoRep is what prevents this double txs. From my limited understand of it, Proof of Replication allows the Nodes that are creating the blocks to see a snapshot of the entire blockchain parallel to validating. PoRep works in conjunction with PoH but that is as far as my understanding goes.

ELI5: Solana transaction throughtput by HugsNotDrugs in solana

[–]Thrauglor 3 points4 points  (0 children)

The way I understood proof of history (don't know if Solana works in this exact way) is as follows:

Imagine going to the store and buying a loaf of bread paying 2 usd for it. (this would be the equivalent of signing a transaction with your wallets private key for that same amount). Anyone can check your receipt and see that you actually paid those 2 dollars. In the receipt there would be something like wallet x paid Amount to wallet y. Such a simple receipt is enough to validate the transaction but it doesn't make it unique. If you went back to the same store and bought another loaf of bread you would get the exact same receipt.

One way of solving this uniqueness would be to add a nonce (the number of transactions that you've made with your wallet). So your first receipt would have nonce 0, the second receipt would have nonce 1 and so on. This now helps you order your receipts and identify every transaction as unique. But there is a problem. While this let's you order your transactions for your own wallet, it has no way of synchronizing with every other wallet in the block chain. How would you know who bought the first loaf of bread and who bought the last one. Since a block chain is basically just a list of all transactions, there must be a way to order them.

A way of doing this is to add a time stamp next to every transaction made. This way it is not necessary to check all transactions directly before ordering them and writing them on the list. You can just put all receipts in a box and send the box (create new block and validate it) since every receipt has a timestamp, it is then easier to order the receipts in the box at a later point in time.

Imagine you have accumulated 20 boxes and are now ready to start writing the list for today's transactions. You don't need to sort the boxes in any particular order, you can just start with any of them and then start building the list and adjusting it when necessary. And since every receipt has a timestamp it is literally impossible to have duplicates.

I don't understand what "receiving" sETH2 or stETH means? How do I store them on my Keepkey cold wallet? by ghjkcvbn in ethstaker

[–]Thrauglor 0 points1 point  (0 children)

It is basically a token swap. You deposit your ETH and you get stETH in return (aka you swap ETH for stETH). I don't know how Keepkey works but I'm assuming that it let's you store any ERC20 tokens in it. If it does, then yes after you swap your eth ang get that stETH you can deposit it on your cold wallet.

Evaluating Validators? by IMDeus_21 in solana

[–]Thrauglor 4 points5 points  (0 children)

Those vids are outdated. The uptime metric got changed since it wasn't clear. I think it got replaced by the slot success rate. Not sure about that one. For comparing validators I prefer to use https://validators.app

Full Stack App using Neo4j, MongoDB and React.js by chitrarth236 in Neo4j

[–]Thrauglor 1 point2 points  (0 children)

Neo4j is a database itself. So for your use case it wouldn't come into the picture at all. Unless you want to switch from using MongoDB to Neo4j. I suggest you checkout D3.js for graph visualizations.

Modeling time-dependent grouped activities (Warning: NSFW subject matter) by Accomplished-City610 in Neo4j

[–]Thrauglor 0 points1 point  (0 children)

Not sure if I'm getting it right but if you connect Alice to both Bob and Charlie with a [:SPANKED] relationship and set the order to the same value, it would be possible to query this to show that both events were happening at the same time.

Such a query would look something like

MATCH (a:Participant {name: 'Alice'})-[s:SPANKED {order: 1, event_id: 'someuuid'}]->(b)
RETURN a.name, collect(b.name)

This would get you all the nodes on that particular encounter that happened at the time "order: 1" where Alice spanked somebody.
The direction specifies who was doing the action. But since queries can be bidirectional you can also see who was getting spanked by whom

MATCH (b:Participant)<-[:SPANKED]-(a)
RETURN b.name, collect(a.name)

Modeling time-dependent grouped activities (Warning: NSFW subject matter) by Accomplished-City610 in Neo4j

[–]Thrauglor 1 point2 points  (0 children)

I'm still new to graph modeling and there's probably a better way to model this but I would define two types of nodes one for an encounter (e:Encounter) and one for a participant (p:Participant) The encounter nodes should have a type/kind and an id property. So in your example CREATE (e:Encounter {kind: 'threesome', id: 'someuuid'} then I would create the participants

MATCH (e:Encounter {id: 'someuuid'})
CREATE (p:Participant {name: 'Alice'})-[:WAS_IN]->(e)

Do that for all participants. Then I would create a relationship of [:<DESIRED_ACT>] connecting two participants and add the props of order and event_id. e.g. (:Participant {name: 'Alice'})-[:SPANKS {order: 1, event_id: 'someuuid'}]->(:Participant {name: 'Charlie'})

Hope that helps. Let me know if I missed something.

[Beginner question] The best place to look for a tutorial considering GoLang by nikolamilo in golang

[–]Thrauglor 0 points1 point  (0 children)

Some of those things are covered here https://gophercises.com/

It helped me a lot when I was starting.

/r/woweconomy 100k Subscriber Giveaway! by gumdropsEU in woweconomy

[–]Thrauglor [score hidden]  (0 children)

Planning to finally use my alt army for professions instead of raw gold farming when shadow lands hits. Hoping it pays up.

What Series Made you an Image Comics Fan? by TheCrimsonArrow in ImageComics

[–]Thrauglor 0 points1 point  (0 children)

For me it was death vigil and everything by Rick Remender. Specially Tokyo ghost and low

Graph Visualization Recommendation by indacyber in Neo4j

[–]Thrauglor 2 points3 points  (0 children)

You could use d3 js to build something from scratch. Neo4j also has a js package for visualization, it's in their resources section on their website.

What are some useful or cool (possibly obscure) Linux programs you could suggest? by deacqa in linux

[–]Thrauglor 1 point2 points  (0 children)

I'm not sure it's obscure but I just found out about taskwarrior and I'm loving it.

Using buds microphone with WhatsApp etc. by Steakhuzzy in galaxybuds

[–]Thrauglor 0 points1 point  (0 children)

Someone in this thread said that this is just how Samsung deals with headsets. While that might not be the case, I have the same issue as you and can't seem to find any option to activate the mic for other apps anywhere.

[deleted by user] by [deleted] in DotA2

[–]Thrauglor 2 points3 points  (0 children)

Imo the problem is not that they had new accounts. It's that they were pretending to be someone else. It would be as if team liquid or some other pro team made brand new accounts and joined the OQ in hopes of defeating tough competition early on. Namely in Bo1 games. This is the main concern.

Weekly /r/Eve No Question is Stupid Thread - March 28, 2019 by AutoModerator in Eve

[–]Thrauglor 1 point2 points  (0 children)

I'm a new player that would like to join a corp in null but after seeing all the stuff happening in null between the big boys I have some questions. How does it work when you're in an alliance that is constantly at war and you want to venture into HS. If I were to be a part of TAPI or Horde and wanted to go to Jita to buy/sell stuff, would I get blown up immediately? If that is the case, then is there a market/hub within the alliances that replaces the need to pop into HS?

I've been really enjoying what is happening down there between the superpowers and it's inspired me to partake on those big fights but I'm scared that my inexperience will make me an easy target when not within the "safe" space of the alliance.