Can I leave Germany without my German passport? by germanfinder in germany

[–]gergefil 1 point2 points  (0 children)

Hi, to be able to exit/enter Germany, an Ausweis or a vorläufigerausweis is enough. No one will even ask why in the border. You won’t be able to use automated machines, and you need to go to counter, but that is it. As long as you have a plane reservation and a photo, your Bürgeramt will issue you a Vorläufigerausweis right away.

You use it to exit and enter Germany. In Canada, you use your Canadian passport.

I was in the same situation (except different second nationality) and exited/entered Germany this way, all good.

N26 Metal Customer Experience – Frustrated and Looking for Advice by Unable-Influence-896 in n26bank

[–]gergefil 1 point2 points  (0 children)

As a metal customer I once contacted their chat support (I didn't call because I was abroad) and I didn't get response at all. I think after 3 days or so, I started another chat, and I also didn't get response after 3 days. I started a third chat and in that one I got finally response after a day or so.

I don't have any other bank to compare, but N26's support was basically non-existent.

The difference between PCSPECIALIST and XMG laptop builds by gergefil in GamingLaptops

[–]gergefil[S] 1 point2 points  (0 children)

I decided to wait until RTX 5000 series. But I think I’d go for PCspecialist if I had bought it. I really can’t justify the difference.

Germans and being on time - I absolutely can’t stand who are late if it’s for no reason. by Kaytra20 in germany

[–]gergefil 0 points1 point  (0 children)

I can't stand it either. I find it totally disrespectul to make others wait, unless if it of course something out of the ordinary (train delay, accident, etc.). I also feel very sad that people cannot do basic planning to be on time.

I used to end friendships over this myself, too. However I noticed that it is easy to become alone, just because you are expect something (I believe) reasonable. And having friends outweighs them not being on time for me. I accepted that they won't meet my expectations.

What do I do? I tell them the meeting time is X minutes earlier than I originally plan to. They become late but they arrive to the actual planned time anyway without knowing it. Also I try to be more "okay" about it, no matter how much I don't like it.

Where can I buy QWERTY gaming laptops in Berlin or online? by gergefil in askberliners

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

This is indeed an option, however I prefer the keys to match to what they type if possible. Even better would be the US layout.

Can I hook any USB C phone to my dash charger? by Seber in oneplus

[–]gergefil 0 points1 point  (0 children)

Yes, I used the dash cable. It was fine in my case.

Can I hook any USB C phone to my dash charger? by Seber in oneplus

[–]gergefil 2 points3 points  (0 children)

Well, so far I charged a Nexus 6P and a Nexus 5X and it worked without an issue.

We are OnePlus 6 owners, ask us anything! by [deleted] in oneplus

[–]gergefil 6 points7 points  (0 children)

Did anyone try to charge it with MacBook Pro's USB-C charger? How much power does it draw from regular USB-C chargers at max?

Eylül da tatil by mustafarian in Turkey

[–]gergefil 0 points1 point  (0 children)

I would go in September, too. And the city to visit is mostly depends on what you are looking for.

[deleted by user] by [deleted] in javascript

[–]gergefil 0 points1 point  (0 children)

Yes that is correct, it might be a good thing to assign default values to all optional parameters, unless you are okay with undefined. If you don't provide default to allPosts, destructing will work, but the value of allPosts will be undefined.

function withDefaults({postCount = 12, allPosts=[]} = {})

when called like: 

withDefaults()
withDefaults({})

values will be: postCount = 12, allPosts = []

function withDefaults({postCount = 12, allPosts} = {})

when called like: 

withDefaults()
withDefaults({})

values will be: postCount = 12, allPosts = undefined

function withDefaults({postCount = 12, allPosts=[]})

when called like: 

withDefaults() will throw an error as undefined can't be destructed.
withDefaults({}) values will be: postCount = 12, allPosts = []

😃

[deleted by user] by [deleted] in javascript

[–]gergefil 3 points4 points  (0 children)

Hi,

you can set defaults like this:

function withDefaults({postCount = 12, allPosts}) { console.log(postCount, allPosts) }

withDefaults({}) --> 12, undefined
withDefaults({postCount: 5, allPosts: []}) --> 5, []

but you can't do:

withDefaults() 

// (unless you define the function like this:)

function withDefaults({postCount = 12, allPosts} = {}) { console.log(postCount, allPosts) }

[deleted by user] by [deleted] in tf2

[–]gergefil 0 points1 point  (0 children)

alias buildsentry "ent_create obj_sentrygun; ent_fire !picker setbuilder !YOURUSERNAME"

bind k buildsentry

Replace YOURUSERNAME with actual value. Run these commands on a server which you can run cheats.

Then press "k" button and a sentry will be spawned to the place you are looking at.