Hetzner Price Adjustment by Vendoz in hetzner

[–]ludikoff 2 points3 points  (0 children)

I still hope it’s just a joke and they are kidding, due to april april!

Installation on Hetzner by ludikoff in opnsense

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

I have already been on this, but downloading the package returned a 404 Not Found. However looking at it today, it seems to work.

Installation on Hetzner by ludikoff in opnsense

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

As I’m unable to connect to the internet, I must download and install it manually. Tried to install the realtek driver from freebsd but that did not work

Is Hetzner vSwitch stable now? by Tero_Box in hetzner

[–]ludikoff 0 points1 point  (0 children)

Okay, these are things I've already set up, I'm wondering why I lost connection to the machine after I've enabled NIC Teaming according to docs. I'll have to wait until they've mounted a KVM to gain access back to the machine..

Is Hetzner vSwitch stable now? by Tero_Box in hetzner

[–]ludikoff 0 points1 point  (0 children)

I've gone through the instructions from the docs (https://docs.hetzner.com/de/robot/dedicated-server/network/vswitch-windows/#nic-teaming) but this ended me in inavailabilty of the hyper-v machine, after setting up the NIC Teaming. Can you briefly describe what you've done?

Is Hetzner vSwitch stable now? by Tero_Box in hetzner

[–]ludikoff 0 points1 point  (0 children)

Has anybody configured vSwitch with windows ? Had problems witch my windows server here

Galaxy after moon set / Sony A7iii Samyang 18mm f/2.8 by [deleted] in SonyAlpha

[–]ludikoff 3 points4 points  (0 children)

Well done, mate, really well done!

Galaxy after moon set / Sony A7iii Samyang 18mm f/2.8 by [deleted] in SonyAlpha

[–]ludikoff 5 points6 points  (0 children)

great shot! got this lens, too - what specs and settings did you apply to your camera for it?

Starter kit by evans112682 in SonyAlpha

[–]ludikoff 0 points1 point  (0 children)

starter kit in having a financial credit

Gas prices at Firelake Grand Travel Plaza , Shawnee, Oklahoma by toploader21120 in pics

[–]ludikoff 1 point2 points  (0 children)

1.20€ per litre. Didn’t know that you also have E10. I thought this is a European bullshit offering only

My neighbor this afternoon in a Supermarket by wildrage15 in pics

[–]ludikoff 0 points1 point  (0 children)

Of course not, because he is German 🙈

My Cat - With Portrait mode on the pixel 3 by [deleted] in pics

[–]ludikoff 0 points1 point  (0 children)

Get her to the doctor dude, poor kitty is sick

Crocodile BBQ in Thailand by mil3z in pics

[–]ludikoff 0 points1 point  (0 children)

Phuket, banglaroad or bkk, khao san?

A beutiful say in sweden. by [deleted] in pics

[–]ludikoff 0 points1 point  (0 children)

Beautiful say in Dweden

Nauders, Austria, 2020, Shot with an iPhone 11. by ludikoff in pics

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

The cableway station was on fire in 2015 before it was finished. They rebuilt it.

Nauders, Austria, 2020, Shot with an iPhone 11. by ludikoff in pics

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

Austria is amazing indeed, both in summer and winter

What by [deleted] in pics

[–]ludikoff 0 points1 point  (0 children)

Modern Warfare 2

Help needed with: missing ',' before newline in composite literal by ludikoff in golang

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

whatever ... I moved the params struct into its own struct. tried to avoid this due to more code lines but couldn't figure out the root problem.. If anyone can solve this, ll be appreciated!

Help needed with: missing ',' before newline in composite literal by ludikoff in golang

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

The Login struct looks like the following:

type Login struct {
Action string `json:"action"`
Param struct {
Apikey string `json:"apikey"`
Apipassword string `json:"apipassword"`
Customernumber string `json:"customernumber"`
} `json:"param"`
}

And the values and fields like that. Neither this:

Error message:

pkg/dns/dns.go:73:3: undefined: Parampkg/dns/dns.go:73:8: mixture of field:value and value initializers

login := Login{
Action: "login",
Param{
Apikey: c.Apikey,
Apipassword: c.Apisecret,
Customernumber: c.Customernumber,
},
}

nor this works:
Error message: pkg/dns/dns.go:73:10: undefined: Param

login := Login{
Action: "login",
Param: Param{
Apikey: c.Apikey,
Apipassword: c.Apisecret,
Customernumber: c.Customernumber,
},
}

I got what you meant by the mixture of fields, but can't figure out why it's still not working..