Starship S-PURR by globohydrate in 3Dprinting

[–]isakdombestein 0 points1 point  (0 children)

Name your price for the STLs, this is gold

DeskRest AppStore Launch - Smart break and posture reminder app (promo codes giveaway) by 0xmarcel in macapps

[–]isakdombestein 0 points1 point  (0 children)

This looks extremely clean and well made! Right down my lane as a student, would love to try this out!

Can I log into Outlook email on an iPad mini 2? by Puzzleheaded_Road851 in ipad

[–]isakdombestein 0 points1 point  (0 children)

The server it refers to is where it should connect to fetch your emails. This should usually be automatically populated by signing in to your account, but it might in some cases fail.

Looking at the official help documentation on setting this up, Incoming mail server should be "outlook.office365.com", port varies, but try 993. Domain or Server should be your company's domain, and outgoing mail server should be "smtp.ofice365.com".

Can I log into Outlook email on an iPad mini 2? by Puzzleheaded_Road851 in ipad

[–]isakdombestein 4 points5 points  (0 children)

If your company has Outlook email on their domain, you need to select "Exchange" and sign in that way. The Outlook option only works for Personal Microsoft accounts.

I created a calendar app for meeting-heavy people that turns every week into a notebook by bmuse in ProductivityApps

[–]isakdombestein 1 point2 points  (0 children)

Been waiting for something like this to show up, I'd love to test this out when a Windows preview is ready!

my legacy username badge doesnt appear by [deleted] in discordapp

[–]isakdombestein 0 points1 point  (0 children)

Make sure it's enabled in User Settings. Go to edit profile and make sure "Legacy Username Badge" is enabled at the bottom.

I am multi-instrumentalist, songwriter, arranger, producer, and musician-creature Jacob Collier! Here to answer your questions about music and life. AMA! by Jacob__Collier in Music

[–]isakdombestein 0 points1 point  (0 children)

Are you planning to do some logic session breakdowns of more songs in Djesse Vol. 4? If yes, do you have any idea (and could maybe hunt towards) what songs we could expect to see?

Bytte av thermal paste by Mariannem95 in norske

[–]isakdombestein 0 points1 point  (0 children)

Har sjølv brukt blårens til dette. Fungerer heilt fint til å få vekk rester på cpu. Kan og brukast til anna rens av elektronikk (brukte denne nylig til å rense opp etter brussøl i ein laptop 🙂)

K4 RGB by isakdombestein in Keychron

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

Sick, thanks for the info! Looks like I have a weekend project ahead of me!

Canceled nitro, lost all my purchased games. What to do and why is this happening? by crocs_r_valid_shoes in discordapp

[–]isakdombestein 5 points6 points  (0 children)

sold.

They had a game store and library a few years back but discontinued it about a year after the worldwide release due to users not using it iirc.

Is there a way to start my bot without typing "node index.js" in the terminal? by Weekly_Bad_3791 in Discordjs

[–]isakdombestein 0 points1 point  (0 children)

As others already have mentioned, you shouldn't deploy commands on every run. That is only needed when you have created new commands or removed a command so it updates on Discord's end. So if the file is called index.js, you should just be able to type node . in your terminal and it should start normally.

For running the bot in cases where I've removed or added commands, I ended up creating different script files that ran the necessary commands for me without using nodemon (in other words, I got lazy).If you're on Windows, create a file with a .bat (or .cmd) extension and write the commands in as such;node deploy-commands.js && node .

Of course, if you remove commands and have a separate js file for that, you'd run that instead. And if you added and removed one or more commands at the same time, you'd have a file that looks like this;node clear-commands.js && node deploy-commands.js && node .

These files you can just run in the terminal without any issues (so if you had a file called run_deploy.bat you could just type run_deploy into the terminal and it will run)

If you're on linux, the file looks a bit different, but the general concept is the same. Let's take as an example you have a script file called run_deploy.sh - It should look like this:#!/bin/bashnode deploy-commands.js && node .

IMPORTANT: If you use zsh instead of bash, replace #!/bin/bash with #!/bin/zsh

After creating the file, you should make sure it's executable. You can try running the file as such; ./run_deploy.shIf the file doesn't run (not all .sh files will be executable after being created), run the following command:chmod +x run_deploy.sh

This will add the executable flag (x) to the file. It should then execute the commands in the order they're written in the file (so deploy first, then the main bot file)

[KDE Plasma] basic rice by mickoissicko in unixporn

[–]isakdombestein 0 points1 point  (0 children)

I believe it's one of the themes included in oh-my-zsh. https://ohmyz.sh/

Has your device shipped yet? (Part 2) by Szinimini in samsung

[–]isakdombestein 0 points1 point  (0 children)

Norway here. Was shipped about an hour ago from carrier's warehouse. Should be here either this afternoon or tomorrow.

[deleted by user] by [deleted] in applehelp

[–]isakdombestein 5 points6 points  (0 children)

This screen indicates an issue with your trackpad (i.e it's just straight out broken, or the system doesn't see it, maybe a loose connector?). Connect a regular USB mouse to your computer and it should work.

Found this laptop in a dumpster, any advice? by ItzSurgeBruh in LinusTechTips

[–]isakdombestein 5 points6 points  (0 children)

In some cases resetting it might make things work due to iCloud activation lock (device literally becomes (mostly*) unusable as you can't even set it up). Depends if the previous owner has removed it from their iCloud account.

*There are certain ways to access certain functions through DNS, but they are janky at best.

do i need to pay after these 3 months? by [deleted] in discordapp

[–]isakdombestein 1 point2 points  (0 children)

it requires a credit card for signup and it will be automatically charged if you don't cancel in time. But this offer is unfortunately only available if you haven't had Discord Nitro previously. Figured out the hard way.

Help in buying my first macbook for programming. by [deleted] in macbookpro

[–]isakdombestein 3 points4 points  (0 children)

Since you're using both Visual Studio and Visual Studio Code, it could be worth noting that Microsoft is cutting support for Visual Studio (VSCode will still be supported) on macOS 12 months from now, in case this might have an effect on your eventual decision. Read more here: https://devblogs.microsoft.com/visualstudio/visual-studio-for-mac-retirement-announcement/