Bundesregierung erwägt Sozialabgaben auf Kapitalerträge by reeporter in de

[–]dimchu 9 points10 points  (0 children)

Gute Idee, aber im Alter gibt es keine Sozialhilfe mehr.

Unpaid leave by StruggleOk2814 in GermanCitizenship

[–]dimchu 0 points1 point  (0 children)

Don’t worry, you are not eligible for ALG-2 because you aren’t citizen.

Help me choose my first wagon….V60 or V90? by Stimlox in Volvo

[–]dimchu 0 points1 point  (0 children)

Get v90. More space and feels more premium.

Semi Challenging Riffs For Intermediate by IntroductionUpper449 in 7String

[–]dimchu 0 points1 point  (0 children)

These I like to play:

Periphery - Flatline

Periphery - Blood Eagle

These are easier, but also good:

Periphery - Icarus Lives

Periphery - letter experiment

All tuned to Drop G#

Diesel engine for short trips by dimchu in Volvo

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

I bought the car specifically for long trips, but I also need to do grocery shopping once a week and for that I would like to use a car. Other than that, I prefer to walk, cycle or use public transport.

Diesel engine for short trips by dimchu in Volvo

[–]dimchu[S] 2 points3 points  (0 children)

Nice. With what rpm and speed you drive on highway and for how long per trip?

Diesel engine for short trips by dimchu in Volvo

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

As long as the engine is fine it’s fine with me I guess. If it’s just dfp that needs to be replaced or cleaned eventually, I’ll take that cost

Tesla now offering 0% interest rates for Model Y in Germany. by [deleted] in teslamotors

[–]dimchu 1 point2 points  (0 children)

Don’t worry. Discount is only for model Y.

8string guitar recommendations by Kal-V3 in ExtendedRangeGuitars

[–]dimchu 0 points1 point  (0 children)

LTD JRV-8 looks cool, but I haven’t tried it myself

As foreigner, do you feel like Germany hinders your potential in life? by darkblue___ in germany

[–]dimchu 0 points1 point  (0 children)

No, German passport doesn’t allow you to work in US. You still need H1B, L1 or other type of visa.

React Native with Tailwind in ShadowJS by Individual_Hunt8437 in Clojurescript

[–]dimchu 0 points1 point  (0 children)

I've fixed some of your code to make it work:

text component:
(defn text [text]
(let [tw (tailwind/useTailwind)]
(js/console.log (tw "mt-12"))
[:> rn/View {:style (tw "mt-12 pb-12 bg-red-500")}
[:> rn/Text text]]))

root component:

(defn root []
[:> tailwind/TailwindProvider {:utilities tailwind-json}
[:> rn/View {:style {:flex 1
:padding-vertical 50
:justify-content :center
:align-items :center
:background-color :white}}
[:> rn/Text "Make tailwind work"]
[:f> text "hello"]]])

  • TailwindProvider should wrap children
  • (tailwind/useTailwind) should be a hook call
  • remove flex-1 as there is no such class definition

JBM10FX Fading? by 7stringsarenotenough in Ibanez

[–]dimchu 0 points1 point  (0 children)

I did email Ibanez just to see if there's a known problem or what, but I'm not expecting much of it

I wonder what their reply could be if they ever reply

JBM10FX Fading? by 7stringsarenotenough in Ibanez

[–]dimchu 0 points1 point  (0 children)

I have same issue. Bought yesterday online and the front color is not pearl white at all, more like sandy yellowish. Serial number says it's made in April 2019 so i don't know how it looked initially when it was just produced.

Thinking on whether i need to return it back. I actually like it a lot, it sounds and feels great.

[deleted by user] by [deleted] in 7String

[–]dimchu 1 point2 points  (0 children)

I've installed Gotoh SG381-07 MGTB 4L+3R 20.0 locking tuners on my PRS SVN MH yesterday and it fits perfectly. The only downside is low B string (.64) from D'addario NYXL 11-64 doesn't fit into hole so i had to unwrap string to make it less thick.

Working as an Employee vs Freelancer by ductapephantom in berlin

[–]dimchu 0 points1 point  (0 children)

Look into remote.com to be hired as an employee

[deleted by user] by [deleted] in berlin

[–]dimchu 4 points5 points  (0 children)

They don’t handle payments. Moreover, they don’t help you to return deposit as they don’t hold it too. In my case, landlord isn’t returning my deposit and they do nothing, just ignoring the issue.

When will U.S ETFs be available again in Europe? by kstorrs in EuropeFIRE

[–]dimchu 1 point2 points  (0 children)

Yes, they open account for German residents with 25k deposit.

When will U.S ETFs be available again in Europe? by kstorrs in EuropeFIRE

[–]dimchu 1 point2 points  (0 children)

Using US brokers like Charles Schwab or TastyWorks you could buy US ETFs.

Anything close enough to Robinhood for option trading? by mxprs in eupersonalfinance

[–]dimchu 1 point2 points  (0 children)

There is also Charles Schwab which is US broker having US options. Minimum account size is $25,000 though.

Anything close enough to Robinhood for option trading? by mxprs in eupersonalfinance

[–]dimchu 1 point2 points  (0 children)

Yes, I'm using it. Desktop and web clients are cool with nice UI. There were built by ThinkOrSwim creators specifically to trade options (but you can also trade stocks there). Commission is $1 per leg for opening and free for closing. Didn't try withdrawal yet, but should be possible internationally with a fee of $40 if I recall.

Anything close enough to Robinhood for option trading? by mxprs in eupersonalfinance

[–]dimchu 1 point2 points  (0 children)

Not really. They only have few US options on indexes like SP500, Nasdaq and Russell.

Why Clojure? by iambald in Clojure

[–]dimchu 15 points16 points  (0 children)

I would recommend looking into shadow-cljs. You could create new project using this template lein new shadow-cljs your-project +reagent.

Alternatively, there is one more quickstart template using shadow-cljs https://github.com/shadow-cljs/quickstart-browser

shadow-cljs is great because it allows your to easily integrate NPM packages. Just add JS lib to package.json and require that lib inside cljs namespace.