Skip to content

Instantly share code, notes, and snippets.

@d0rsha
d0rsha / 1.md
Last active August 11, 2020 20:40
[Söndagsspan v33] #börs #söndagsspan

Rapporter:

Paradox (Tisdag)
Angler (Onsdag)
Ferroamp (Onsdag)
Embracer (Torsdag)

Måndag

Aktietjuven lägger ut nytt case 18:00.

Sälj
@d0rsha
d0rsha / 0.md
Last active August 5, 2020 21:04
[Söndagsspan v32] #söndagsspan #börs

Vad man sika h´+lla koll på KOMMANDE vecka 32.

Torsdag!

Sälj: Cyxone, Delar av 2curex, G5 Entertainment, SpectrumOne,

Köp: Ferroamp, gabather

Behåll: Embracer, Zwipe, Sprint

@d0rsha
d0rsha / 0.md
Last active July 31, 2020 09:09
[Söndagsspan v30] #börs #söndagsspan

ToDo

  • Bestäm Magic Formula på EE
  • Bokläsning, How to Make money in stocks, The intelliogence Gap

Nästa vecka

  • Sprint Bioscience
  • TopRight
@d0rsha
d0rsha / 0.md
Last active July 26, 2020 18:19
[Söndagsspan v28] Söndagsspan v28 #börs #söndagsspan

ToDo Söndag

ToDo Måndag 15:30

  • MongoDB
  • Atlassian Funcera på om det är värt att börja klnapra på Juli-budgeten.

ToDo Torsdag

@d0rsha
d0rsha / 0.md
Last active July 8, 2020 17:20
[Söndagsspan v.27] Söndagsspaning #börs #söndagsspan

ToDo Måndag (done)

  • ZignSec in EE_Tech (20 k)
  • Zwipe in i EE_TECH (20 k)
  • Paradox (20 k)
  • G5 Entertainment (10 k)
  • Angler gaming (10 k)

Köp fonder SAVR:

@d0rsha
d0rsha / 1.md
Last active July 2, 2020 20:31
[Jul] Juli investeringskikaren #börs

Updated 2020-07-1

Neonode inc

Nikola corporation

Sinch

@d0rsha
d0rsha / Caveats.md
Last active November 14, 2021 17:24
[React Context] React Special keywords #react

Caveats

Because context uses reference identity to determine when to re-render, there are some gotchas that could trigger unintentional renders in consumers when a provider’s parent re-renders.

To get around this, lift the value into the parent’s state:

class App extends React.Component {
  constructor(props) {
 super(props);
@d0rsha
d0rsha / 0.md
Last active June 22, 2020 16:40
[React && JS] Reacj js tricks #react

/!\ Important stuff:

Do you handle integers -> .parseInt(x)

The attribute class is written as className since class is a reserved word in JavaScript

Reconciliation

React decides whether an DOM update is necessary by comparing the newly returned element.

@d0rsha
d0rsha / 0.md
Last active March 20, 2023 16:41
[React hooks] React hooks #react

Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class.

State hook

import React, { useState } from 'react';

A Hook is a special function that lets you “hook into” React features. In a function component, we have no this, so we can’t assign or read this.state. Instead, we call the useState Hook directly inside our component:

@d0rsha
d0rsha / 0.md
Last active June 11, 2020 16:12
[Reactive design] Design react #react
  1. Break The UI Into A Component Hierarchy
  2. Build A Static Version (mock)
    One-way data flow (also called one-way binding) Calls to setState are asynchronous - don’t rely on this.state
    Prop or state?
    Props are read-only / immutable. State is mutated in sequence.
props state
Can get initial value from parent Component? Yes Yes