Your concerns about wealth tax implications for BoldBooks Norge and the potential benefits of Swedish relocation are well-founded. Based on current Norwegian tax regulations and available investment structures, there are indeed strategies using SAFE/SLIP instruments that can help defer wealth tax exposure, though they come with specific requirements and limitations.
import java.util.List; | |
/* | |
* ❯ java ./SealedSwitch.java | |
* SHIZZLES FOR MY NIZZLES!!! | |
* Whooof! | |
* Whooof! | |
* Whooof! | |
*/ | |
public class SealedSwitch { |
Dette oppsettet fant jeg opprinnelig på i 2021. Søk etter Teltonika i loggen for å finne det.
- Ruter bygget inn i antennehus for minimal tap av signal
- 200 m CAT5-kabel ned til hytte med forsterkning etter 100 m (Power-over-Ethernet)
- Kan fore med egenmekket 24V/48V strømforsyning fra 12V
- Sette opp stang på fot oppe på fjellet der det er dekning
- ca kostnad 7-8000 kr?
Code Sandbox oddities observed while working on LogicRoom exercises
codesandbox.io does its best to give the impression of a locally running environment, but the abstraction is sometimes a bit leaky. Here's some weirdness (with possible fixes)
The console.log statement is actually proxied via a server and executed at a later stage. That sometimes results in weird behaviours, as the value of some field on an object can be different when it is printed than when it was logged ... The fix is making something like this and using that instead:
// ==UserScript== | |
// @name Prevent Jane redirect | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Out-trick the neanderthals responsible for redirecting the Concord customers to the Jane page with JS | |
// @author Carl-Erik Kopseng | |
// @match https://no.concord.es/support/nedlastinger/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=concord.es | |
// @grant none | |
// @run-at document-start |
/* Used on https://minside.fremtindservice.no/passings */ | |
(function() { | |
const priceCols = document.querySelectorAll('.MuiBox-root div div div:nth-child(3n+1) div:nth-child(1)'); | |
let sum=0; | |
for(let n of priceCols) { | |
if( n?.nextSibling?.textContent === 'NOK') { | |
sum+=parseInt(n.textContent,10) | |
} |
class PublicPlanData extends AbstractFixture implements OrderedFixtureInterface | |
{ | |
public function load(ObjectManager $manager) | |
{ | |
$planUnlimitedFree = new PlanInfo(); | |
$planUnlimitedFree->setName('FREE UNLIMITED PLAN') | |
->setAmount(0) | |
->setCurrency('USD') | |
->setDescription('Special plan for users that should never pay for using the service') |
VirtualBox only supports the x86 platform, so the default installation instructions for Vagrant does not work on Apple silicon. Thankfully Vagrant has a VMWare Provider (more on providers here), and so if I can get VMWare running on my M1 MacBook, I should be able to run Vagrant as well!
These are my notes during figuring this out.
We are in luck, as VMWare released this just a few weeks ago.
- See [their blog entry][1]
/* | |
This is a typical example of a codebase I inherited 😭 | |
I mean, where do I even start ... | |
- direct DOM manipulation | |
- toggling display: none instead of not rendering, ... | |
- unclear data paths and constant heavy lookups | |
Oh, are you surprised that this stinking pile of shit is full of bugs? Me neither. | |
#kilowott #ninestack |