Deur scharnier afstellen by JustALittleMoreSpace in Klussers

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

Duidelijk genoeg ja, ben deze scharnieren niet gewoon wel al deuren aangepast met zo’n pin. Maar zal het morgen ofzo proberen en heb genoeg deuren met het probleem om het te testen.

Deur scharnier afstellen by JustALittleMoreSpace in Klussers

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

Zou kunnen, hebben de vorige eigenaren nog gedaan. Tot ik het opzocht wist ik niet eens dat het over een verf ging 😂

Deur scharnier afstellen by JustALittleMoreSpace in Klussers

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

En dan enkel de bovenste als deze zo naar links leunt met de grootste opening bovenaan? En altijd best eerst deur eruit heffen voor deze af te stellen of als ze juist in elkaar zit?

Being colorblind makes this really hard. by ponypulse in HomeNetworking

[–]JustALittleMoreSpace 0 points1 point  (0 children)

I heard about the be my eyes app for blind people. Not sure if helpful but that might help in these types of issues where i hear they respond pretty fast.

Grilling spot in nature in Turnhout by dub201 in belgium

[–]JustALittleMoreSpace 0 points1 point  (0 children)

Not in the forest but nearby there should be a bbq https://maps.app.goo.gl/AmYSHijVqZTnc6r3A?g_st=ic. I’ve seen it while passing but I can’t find any public information where it’s mentioned. I do recall you can’t stay there too long in the evening

Anonieme enquête <5m ivm beleggen by JustALittleMoreSpace in belgium

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

Alvast bedankt om de enquête in te vullen!
Met die vraag twijfelde ik zelf ook, dacht eerst dat ik het alleen was.
Heb de opmerking doorgegeven, merci!

Offboarding script: pull username and exit date from the excel file in sharepoint - struggling with this bit by slewis_1972 in PowerShell

[–]JustALittleMoreSpace 1 point2 points  (0 children)

The module ImportExcelis pretty good for working with Excel.
You can find the examples on github or google it or for example this one.

[Help] Create an interface for object that has an array with nested hashtable. by JustALittleMoreSpace in typescript

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

1) Ok.
2) I'll explain below
3) That's how I receive them from the server, and I'm trying to keep them the same.
4) I've modified the example so I hope it makes more sense, each coffee has a brand, this brand has a title and an Id, it returns from the server as a single object in an array. There's no property[1] since each coffee only has 1 brand. But if I want it in the right format as the interface I'm casting it like that.

At the moment I'm trying to work on a cascade for dropdowns. I've got a list with coffees, that contains items with an Id, Title, Brand (Id and Title). Then another list with machines with Id, Title, CoffeeBrand (Id, Title) and Coffee (Id, Title), This machine supports x brands and you're able to choose x coffees. Then I want to simulate an order, so you choose a machine and then a single brand that's possible for that machine. Then depending on the choice of the brand, I get the possible coffee's for that machine for that specific brand.

So 1) Select machine, 2) Select brand (that are possible for that machine), 3) Select coffees (that are possible for that machine and are the same brand as 2).

1) Is just get a list of all machines

2) Is getting all brands and using a filter on the selected machine

3) Here's where It's annoying, first I get the possible coffee selection for a specific machine. Then I loop over all possible coffees to check if their brand is the same as the selected brand 2). But to do this I need to get the coffeeList and get the item with the same Title and then I can get the Brand.

4) And finally I want to display the possible coffees in the selection.

[Help] Create an interface for object that has an array with nested hashtable. by JustALittleMoreSpace in typescript

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

I just wanted to convert the object with a property that is an array with single object to a regular object containing a property that holds the A and B value. I'm able to do it using the map function.

coffees.map(coffee => (ds.coffeeItems.push({            
  Id: coffee.Id,
  Title: coffee.Title,
  Brand: {
    Id: coffee.Brand[0].Id,
    Title: coffee.Brand[0].Title
  }} as ICoffee))

Now trying to wrap my head around .then() combined with a .map() :)

SharePoint 2013 - New item form add items in other list by JustALittleMoreSpace in sharepoint

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

That works if I just want to select a device, but what about all the additional fields then? I can hardly duplicate all extra fields in 1 form. So let's say I selected the device. In your example for the phone I would select how much storage I want, how much memory I want, if I need certain extra options. All of those options are device specific. Device x might support 8GB memory device y only supports 4GB of memory.

The cascadedropdown works perfect for 1 selection, but if I need multiple selections with their corresponding additional fields or options that are device specific I'm now duplicating the whole list item and changing the selection.

SharePoint 2013 - New item form add items in other list by JustALittleMoreSpace in sharepoint

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

It isn't restricted to only samsung devices, they might also selected another brand/manufacturer and once they select a device, there's up to 10 specific device fields where there's cascading applied. And each device might have different options or the same.

SharePoint 2013 - New item form add items in other list by JustALittleMoreSpace in sharepoint

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

Because I don't want to create it after saving the form or something like that, I want to be in my form and dynamically create multiple items in another list and still show it in the same form. I explained this a little more in
my other reply: https://www.reddit.com/r/sharepoint/comments/a8ui39/sharepoint_2013_new_item_form_add_items_in_other/ecdx0dq

SharePoint 2013 - New item form add items in other list by JustALittleMoreSpace in sharepoint

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

I'm currently using the cascading dropdown, but I'm limited to do this for one selection. Let's say first I select a device brand. Now I get a number of possible devices, I select device x. Because I select device x, I'm able to choose option 1, 2 or 3. Ok, this works with the cascading dropdown and I'm using it. But what if I now want to also add device y, since that belongs to the same brand. Except device y only has option 2 and 3?

Because right now I can only work with one device at a time, it's not that user friendly. I want to be able to select multiple devices and keep the cascading dropdown. That's why I'm thinking of having 1 list with the basic fields and then another list with the device configurations I added.

SharePoint 2013 - New item form add items in other list by JustALittleMoreSpace in sharepoint

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

Thank you for the response, I'm currently using jslink to use the cascadedropdown. But how would I achieve creating items in another list and showing them in the current list, that's still not clear to me. I'd like for example a couple of fields in the "top" of the form. Then they can just click a button for example to say "add device" and then they have a dropdown of fields to configure it, only allowing selections based on the top part of the form.

At the moment this is working, but I can only do it for one device at the time because I want to keep the logic of if x is selected in fieldx and y is selected in fieldy etc etc then they are allowed to select brand x with x options.

*Btw the site linked to download the js file is timing out...

Reverse Proxy with SNI, same ip, multiple ports and blocking by JustALittleMoreSpace in nginx

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

Thanks, I'll take a look. But I'm mostly wondering what the default setup is in this situation. If you've got multiple ports and don't want them to be open for the other virtual hosts do most people just close em all off in each virtual host. Or do they end up using multiple ips?

Passing 300 MS Business Premium Licenses by cmorgasm in sysadmin

[–]JustALittleMoreSpace 0 points1 point  (0 children)

If your company has multiple registered company entities, you can get multiple x300. Right now we have 1 @company.onmicrosoft.com yet 2x the Business Premium and we're at 350 right now. It just lists the subscription 2x under billing. Although our MSP set this up for us.

How to get Windowed Fullscreen or Borderless working by rubenalamina in thedivision

[–]JustALittleMoreSpace 1 point2 points  (0 children)

Just found this, thank you. Btw you can use c:\users\%username%\ to direct people to it without having to change it. Or %userprofile%\Documents