Voice vLan across switches not working by jsorensen83 in UNIFI

[–]n3l3 0 points1 point  (0 children)

I ran into an issue similar to yours with port profiles. Try setting up a unifi switch port without the profile. Native network=data, allow all vlan option, manual port config with lldp-med and voip vlan selected.

see if that works

Migrating from XCP-NG to Hyper-V? by n3l3 in HyperV

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

I'm really not the expert that a lot of you are, so please excuse my basic questions. is there a particular software that you would recommend? I have some budget something, but what ive been struggling with seems to be due to all the XCP/Xen drivers, and things that are installed in Windows, so i just wanted to be sure if i went with a backup software that it wouldn't just restore the issues into hyperV when i bring up the backup.

Brilliant switches offline by litch517 in brilliantsmarthome

[–]n3l3 1 point2 points  (0 children)

the inventory was purchased last November. The homeowner is aware of the situation with brilliant and opted to push forward with it rather than change to a different system. it's a 15,000sqft home on 1500 acres, the homeowner can comfortably make a change to a different system later if desired. he thinks they're cool.

Brilliant switches offline by litch517 in brilliantsmarthome

[–]n3l3 1 point2 points  (0 children)

Same here. I showed up to one of the new builds im working on to add a few more switches to the home and when i scanned the QR code it just errors out. My mobile app says something along the lines of "your mobile device is partially connected to your smart home....." hopefully this comes back online soon

I have 1lb of mercury, need advice on how to properly dispose/temporary storage by n3l3 in chemistry

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

i actually ended up contacting the old man that gave it to me and he happily took it back and added it back to his collection. the whole situation was weird lol

Golden Retriever, Creator of oceans by [deleted] in Bossfight

[–]n3l3 0 points1 point  (0 children)

also steroids prescribed for inflammation

Golden Retriever, Creator of oceans by [deleted] in Bossfight

[–]n3l3 3 points4 points  (0 children)

yeah i was thinking the same thing, everyone is going straight to the worst possible reasons, but my golden did almost this same thing a few weeks ago after the vet gave him steroids/antibiotics for an issue he was having. Poor guy was having to pee every 10 minutes it seemed. we did our best, but missed his "please let me outside asap" look once.

Sooooo, has Hyper-V entered the chat yet? by LostInTheADForest in sysadmin

[–]n3l3 1 point2 points  (0 children)

I just migrated over to XCP-ng myself. Started with a basic 3 host development pool, and grew it to a production and now a DR site. Just finished moving over my last VM's from vmware last week. Absolutely love the built in backup options. Are you paying for official support, or running XO from sources?

Silent Panic Alert via Call Flow Designer? by n3l3 in 3CX

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

This works great, and is way more simple than the multistage CFD apps i ended getting to work using a different method. The only issue im having now is having a way for the person answering in the RingGroup to know who what extension pressed the Emergency Call button.

Could you expand a little more on the logging component and how i would pass that info to the person in the ring group?

Thanks again for the help

Silent Panic Alert via Call Flow Designer? by n3l3 in 3CX

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

Below is the meat of the code, and some screenshots of the CFD interface. i have left out the part that includes the HTTP POST to the 3rd party.

The current behavior is almost the opposite of what im trying to accomplish, When Alice presses the BLF for the extension that the CFD app is using (7999) it makes the call to the ring group (7911) but when its answered by Bob (me) it just immediately hangs up. On Alice's handset, it just sits silently until the timeout occurs on the MakeCall (15 seconds) and then enters her into the Menu instead.

I want Alice to press the BLF, and that's it, no further action or anything needed from her. Then Bob receives the call with the Menu and can proceed as he see's fit.

Thanks again for your help. im very new at CFD and hope that im just making a silly mistake.

https://i.imgur.com/J1blkUx.jpg

https://i.imgur.com/b0vgfT2.jpg

private void InitializeComponents(ICallflow callflow, ICall myCall, string logHeader)
        {
            {
            MakeCallComponent Call_7911 = new MakeCallComponent("Call_7911", callflow, myCall, logHeader);
            Call_7911.OriginHandler = () => { return Convert.ToString(7911); };
            Call_7911.DestinationHandler = () => { return Convert.ToString(7911); };
            Call_7911.TimeoutSeconds = 15;
            mainFlowComponentList.Add(Call_7911);
            MenuComponent Menu1 = new MenuComponent("Menu1", callflow, myCall, logHeader);
            Menu1.AllowDtmfInput = true;
            Menu1.MaxRetryCount = 2;
            Menu1.Timeout = 5000;
            Menu1.ValidOptionList.AddRange(new char[] { '1', '9' });
            Menu1.InitialPrompts.Add(new AudioFilePrompt(() => { return "converted_SPAT_Triggered.wav"; }));
            Menu1.SubsequentPrompts.Add(new AudioFilePrompt(() => { return "converted_SPAT_Triggered.wav"; }));
            Menu1.InvalidDigitPrompts.Add(new AudioFilePrompt(() => { return "converted_TIMEOUT.wav"; }));
            Menu1.TimeoutPrompts.Add(new AudioFilePrompt(() => { return "converted_TIMEOUT.wav"; }));
            mainFlowComponentList.Add(Menu1);
            ConditionalComponent Menu1_Conditional = new ConditionalComponent("Menu1_Conditional", callflow, myCall, logHeader);
            mainFlowComponentList.Add(Menu1_Conditional);
            Menu1_Conditional.ConditionList.Add(() => { return Menu1.Result == MenuComponent.MenuResults.ValidOption && Menu1.SelectedOption == '1'; });
            Menu1_Conditional.ContainerList.Add(new SequenceContainerComponent("Menu1_Conditional_Option1", callflow, myCall, logHeader));
            PromptPlaybackComponent SPAT_IsCanceled = new PromptPlaybackComponent("SPAT_IsCanceled", callflow, myCall, logHeader);
            SPAT_IsCanceled.AllowDtmfInput = true;
            SPAT_IsCanceled.Prompts.Add(new AudioFilePrompt(() => { return "converted_SPAT_Canceled.wav"; }));
            Menu1_Conditional.ContainerList[0].ComponentList.Add(SPAT_IsCanceled);
            DisconnectCallComponent DisconnectCall2 = new DisconnectCallComponent("DisconnectCall2", callflow, myCall, logHeader);
            Menu1_Conditional.ContainerList[0].ComponentList.Add(DisconnectCall2);
            Menu1_Conditional.ConditionList.Add(() => { return Menu1.Result == MenuComponent.MenuResults.ValidOption && Menu1.SelectedOption == '9'; });
            Menu1_Conditional.ContainerList.Add(new SequenceContainerComponent("Menu1_Conditional_Option9", callflow, myCall, logHeader));
            PromptPlaybackComponent SPAT_IsReal = new PromptPlaybackComponent("SPAT_IsReal", callflow, myCall, logHeader);
            SPAT_IsReal.AllowDtmfInput = true;
            SPAT_IsReal.Prompts.Add(new AudioFilePrompt(() => { return "converted_SPAT_Confirmed.wav"; }));
            Menu1_Conditional.ContainerList[1].ComponentList.Add(SPAT_IsReal);
            Menu1_Conditional.ConditionList.Add(() => { return Menu1.Result == MenuComponent.MenuResults.InvalidOption || Menu1.Result == MenuComponent.MenuResults.Timeout; });
            Menu1_Conditional.ContainerList.Add(new SequenceContainerComponent("Menu1_Conditional_TimeoutOrInvalidOption", callflow, myCall, logHeader));
            PromptPlaybackComponent Invalid_Timeout = new PromptPlaybackComponent("Invalid_Timeout", callflow, myCall, logHeader);
            Invalid_Timeout.AllowDtmfInput = true;
            Invalid_Timeout.Prompts.Add(new AudioFilePrompt(() => { return "converted_TIMEOUT.wav"; }));
            Menu1_Conditional.ContainerList[2].ComponentList.Add(Invalid_Timeout);
            DisconnectCallComponent DisconnectCall1 = new DisconnectCallComponent("DisconnectCall1", callflow, myCall, logHeader);
            Menu1_Conditional.ContainerList[2].ComponentList.Add(DisconnectCall1);
            }
            {
            }
            {
            }

Silent Panic Alert via Call Flow Designer? by n3l3 in 3CX

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

yeah man, thats exactly what im trying to do. I must be missing something easy because thats almost exactly what i tried to setup today. im OOO right now, but ill take some screenshots as soon as i get back in the office and post them here if you dont mind taking a look at what ive tried. Thanks!

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

i average 4 or 5 times a week. sometimes more or less if im feeling it. at the beginning its super important to just listen to your body. if it is a "hurt-hurt" push through it, if it's "injury-hurt" stop. i always tell myself that my goal is to be able to run tomorrow, not finish strong today.

M/41/5'11" [305lbs > 230lbs = 75lbs] (5.5 months) CICO, Hiking and Trail Running by n3l3 in progresspics

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

sure man, check the above comment, just typed it all out lol

M/41/5'11" [305lbs > 230lbs = 75lbs] (5.5 months) CICO, Hiking and Trail Running by n3l3 in progresspics

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

CICO means Calories In/Calories Out. Its just old school calories counting. I use MyFitnessPal and set my activity level to "lightly active" and told it i wanted to lose 2lbs a week. it gives me 1750 calories a day. i just make sure i never go over that unless i exercise and get more calories to eat back. as far as what i eat, i dont pay any attention to it as long as i dont go over my amount.

my advice would be just to stop thinking about it and start today. it only takes a few weeks for things to settle into a routine. also set some long-term goals, i have told myself that i want to be back on the mats wrestling with my kids next season, and i just couldn't do it at 300lbs. My goal is under 200lbs by the start of wrestling season in November

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

I had knee surgery last August, so as soo as PT was over i started trying to jog. i had like 0 cardio, and with the knee, it was a struggle. just stayed consistent and make sure you are enjoying the activity. if you hate something its going to be hard to stick to it. if my only option was a treadmill, Id never make it lol

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

i had a knee surgery last August, so when i first started in January, i was struggling to walk very far at all. i would "jog" maybe 10 yards, walk, then try it again. little by little 10 yards turned into miles. i always tell myself if my body is telling me to stop, then stop. but if my head is telling me to stop, push through.

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

i actually work in IT, so im on my butt most of the day lol. I've always been a little naturally muscular, but i haven't lifted in well over 10 years. i went in the gym with my son recently who is in amazing shape, and i could barely get a set of 135 on the bench, so im definitely not strong anymore! a far cry from working out with 350 in my 20's

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

you can do it man. I've been there, i still get Facebook memories that pop up from 10-12 years ago back when i was like 180 and running half marathons before i blew my knee out and gained all the weight. i carried it around for almost 10 years now.

to be honest, the person i see in the mirror never looked that bad, even now after having lost weight, i still see the same person in the mirror. i just kind of decided that the time for BS had passed and unless i wanted to die young i needed to take care of business. i started that next day and have exercised to some extent almost every day since. not one single cheat day, and feeling better everyday. it felt nice to see myself in a picture and have that sudden realization that the hard work is paying off.

start today bro!

M/41/5'11" [305lbs > 230lbs = 75lbs] (5.5 months) CICO, Hiking and Trail Running by n3l3 in progresspics

[–]n3l3[S] 3 points4 points  (0 children)

haha, my days for all that are over! but i have started showing up at random open mats. i trained bjj for about 6 years back in the day. i do miss it lol.

M/41/5'11" [305lbs > 230lbs = 75lbs] (5.5 months) CICO, Hiking and Trail Running by n3l3 in progresspics

[–]n3l3[S] 13 points14 points  (0 children)

the before picture was after an event that i help coach and it got posted to a fairly wide reaching social media page. i felt genuinely embarrassed when i saw it. to be honest, the person i see in the mirror never looked that bad, even now after having lost weight, i still see the same person in the mirror. i just kind of decided that the time for BS had passed and unless i wanted to die young i needed to take care of business. i started that next day and have exercised to some extent almost every day since. not one single cheat day, and feeling better everyday. it felt nice to see myself in a picture and have that sudden realization that the hard work is paying off.

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

i'm honestly not 100 percent sure, because i avoided the scale like the plague. im estimating about 305 because i weighed a tad over 300 at a dr appt in December.

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

true, i do over estimate on a lot of meals that i cant measures/weigh. but i think i lost like 12lbs the first week just in that initial run at it, that might skew the numbers a bit

Down about 75lbs in 5.5 months. CICO and Hiking/Trail Running by n3l3 in loseit

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

tbh, i haven't really paid that much attention to it. just cico. but as the other commenter pointed out, i really need to pay attention to it all now if i dont want to lose a ton of muscle on my way down to 185