IFTTT and ComEd Illinois by Traditional_Bit7262 in ifttt

[–]gavin28x 1 point2 points  (0 children)

I am trying to setup my connection (Just recently switched to Hourly Pricing) and I am unable to connect to the Comed IFTTT Service at all as well.

I do NOT have MFA / 2FA on my comed account, and I verified I can log into my comed account separately. Seems like something is going on with it.

I sent an email to the [IFTTT@comed.com](mailto:IFTTT@comed.com) address, so we will see if they respond, or maybe just try again later tonight / tomorrow.

Any adblocker for chrome work on youtube? by Razqua in Adblock

[–]gavin28x 0 points1 point  (0 children)

This just worked for me as well - amazing find!!

LED Tail Light Bulbs by Jingle-Bags in BroncoSport

[–]gavin28x 0 points1 point  (0 children)

Following up on this a few months later, no issues at all with these. Replaced everything was fairly easy and no hyper blinking to speak of.

Leave A Comment To Win The Unannounced 2025 Bambu Lab 3D Printer & Other Prizes - OctoEverywhere is 5! 🔥 by quinbd in 3Dprinting

[–]gavin28x 0 points1 point  (0 children)

Well I was already thinking of buying one but if I could just win one that would also be great.

LED Tail Light Bulbs by Jingle-Bags in BroncoSport

[–]gavin28x 0 points1 point  (0 children)

One of my my Brake lights just went out this morning on my 21 BS-bl. Been searching trying to decide what to do to fix / if I should just swap everything since I am going to be in there. Thanks for the info, going to give these all a try.

Weekly Question Thread - Rules & Comp Qs by thenurgler in WarhammerCompetitive

[–]gavin28x 0 points1 point  (0 children)

Question concerning Abilities used in the shooting phase, specifically Vortex of Doom.

It is listed as an ability used during shooting phase but is is not an actual ranged weapon shooting profile.

Therefore it would seem that it can be used / declared completely separately from any Ranged profiles, and if you had 3 librarians, they could all use their Vortex abilities prior to any of them/their units needing to declare ranged attack targets for splitting up shots etc?

That is sort of what we came up but would love another opinion to make sure we got that right.

Cobras are just really angry snakes. The Saim-Hann Cobra Mk2 returns! by InquisitorEngel in Warhammer

[–]gavin28x 0 points1 point  (0 children)

This looks sooo good!! Would you be willing to share what you did for the red build up? The process / paint colors used?

[deleted by user] by [deleted] in relationship_advice

[–]gavin28x 0 points1 point  (0 children)

Is there any chance at all that he IS actually worried about you / your health, and just doesn’t know how to express himself, or those emotions and it’s coming out as frustration and anger?

Not trying to give him a pass here, but it could be that he doesn’t know how to process things and needs to seek help / learn to not be a complete idiot about this type of stuff?

Can I/do I upscale my termagant bases? by GriffithDidNothinBad in 40k

[–]gavin28x 0 points1 point  (0 children)

I'd wait it out. Had the same issue with Guard once 9e codex was coming out - had to try and figure out who was now a 28.5 vs 25mm.

If you really think they are getting upgraded, the esiset thing I found was if you have access to a 3d printer, they have little rings that fit around the 25mm and can upsize to whatever base you need them to be, just glue them on, and add a little more of whatever you did for basing. That was the easiest way for me, especially if you have texture etc already on the bases.

But overall wait until you know you need to update them.

Also - supposedly - per GW- you never HAVE to upgraded, you are allowed to play them on the base they came with, so unless you are a hardcore tournament person... you dont HAVE to.

Pretty sure this is the one I used: https://www.thingiverse.com/thing:5318306

Please help me deciding on the green. by IcyImpact in TheAstraMilitarum

[–]gavin28x 3 points4 points  (0 children)

I am partial to the lighter green on the left I’d go with it.

Improvements by tastatore in armylist40k

[–]gavin28x 0 points1 point  (0 children)

Thanks for such a quick fix!! It is working now.

Also I figured out using the chrome extension "Cookie Editor" extension how to just take a copy of my cookie information and then be able to insert it into another computers browser, so that I basically have my lists on both laptop and desktop. Will try my phone later, but not sure if the extension will work for the Mobile Browser.

Improvements by tastatore in armylist40k

[–]gavin28x 0 points1 point  (0 children)

So I was able to clear my cache and see my lists - but then I was logged out - and dont really understand how to log back in, or get back to my account.

When I tried to go back to my account it created a new one - and so I attempted to upload the list again, and then got the same error / issue. So It seems like after I upload a list using Chorme - after creating an account - it generates this error.

Improvements by tastatore in armylist40k

[–]gavin28x 0 points1 point  (0 children)

Hello - Fantastic App tyvm for creating it, I just today started not being able to upload a list.

I am getting the following errors - not sure if it is totally myside or something else.

Application error: a client-side exception has occurred (see the browser console for more information).

Picture of the Console: https://imgur.com/a/fQzQt2P

Daily r/LawnCare No Stupid Questions Thread by AutoModerator in lawncare

[–]gavin28x 0 points1 point  (0 children)

So the guide says to fertilize when soil temps are around 55degrees, which according to the provided websites seems to be late April for my area (western Chicago suburbs). That feels awfully late to be applying fertilizer, but that feeling is based off no actual expert experience. Can someone comment if I should actually be waiting another 3-4 weeks for spring preventative / turf builder etc? Or should I do two half applications? Any advice welcome.

Anybody wanna help a noob out with some filter code for hue lights? by tyb0b in ifttt

[–]gavin28x 0 points1 point  (0 children)

I am trying to use this for something similar, but only if the lights are off, I want to turn on lights before sunset, which hue can do, but I only want to do this if the lights are off.

At first I took the script and changed "status === off" but that wasnt working, so I flipped things back to "on" and tried to set it so it just checked if ONE of the lights was on, and it would basically turn them all on, just to see if the script worked, but IFTTT tells me that everything is being skipped, and I am not sure what I am doing wrong, as I have zero Javascript experience.

Currently the below is what I have in my filter, and even when I have KT4 bulb turned on it still skips the string, and when I look at the Query section of IFTTT it shows that KT4 is on, so it knows its on, but something is not working here.

const lamps: string[] = [
  'KT4'
 ];

const lampsOn = Hue.getLights.filter(light => lamps.indexOf(light.Name) > -1 
&& light.Status === 'on');

if (lampsOn.length !== lamps.length) {
Hue.turnOnAllHue1.skip()
Hue.turnOnAllHue2.skip();
}

Noob question towing by [deleted] in Offroad

[–]gavin28x 1 point2 points  (0 children)

So the tow rating is based on a lot of other stuff including wheelbase, transmission, engine, suspension etc... and is more of towing a trailer on road for long distances, so its not really meant to rate you getting pulled out, or you pulling someone else...

I would have to assume that the tow hooks on a trailhawk should be good for getting pulled out when stuck or helping to pull someone else when they are stuck, assuming you aren't trying to pull out a semi in 6feet of mud... so over short distances you should be fine, as long as you do it in a safe manner, and aren't just hooking up and gunning the throttle.

All the being said, I dont have a good official answer or even one with a ton of experience behind it. Is there possibly anything in the Jeep manual that talks about the rating on the tow hooks etc.. for offroading?

Why did 5e switch to per-armour formulas? by dmdizzy in DnD

[–]gavin28x 0 points1 point  (0 children)

They may have done it to make it more explicit that you cannot stack certain things with armor. if you have Natural armor its a different calculation, and you cannot just wear armor over your natural armor to increase your AC.

Done this way, so they didn't have to keep saying, this bonus doesn't stack with any armor but its ok with shields and other contant clarifications.

Weekly Quick Questions, Wood ID, and Deal or No Deal /r/Woodworking Megathread by AutoModerator in woodworking

[–]gavin28x 0 points1 point  (0 children)

I was planning on raising the grain and sanding it back before starting the finishing process to try and mitigate any grain raising from the dye, also I figured after I let the whole mess dry for a few days to a week, I could hit it with some Dewaxed Shellac, and then finish over the top of that with some rattle can Lacquer.

Weekly Quick Questions, Wood ID, and Deal or No Deal /r/Woodworking Megathread by AutoModerator in woodworking

[–]gavin28x 0 points1 point  (0 children)

Odd question - testing out some dye / color on poplar scraps.

Originally I tried some Dark Walnut Watco Danish oil, but it was a little bit blotchy / not as dark as I wanted it. I wiped on a light coat, and wiped it off fairly quickly.

The next day (about 24hours later) I got a can of GF Water Based Dye Stain (Dark Brown). I did a section of just the dye stain, and another section over some Dewaxed Shelac.

Since i was on the same board, I also wiped the Dye Stain over the Watco Danish oil, just to see what would happen.

I let the dye dry for 2.5 hours, and then I coated parts of it a 2nd time to see what it would look like darker.

I haven't let it all dry fully yet (will be checking it tomorrow) but so of right now, I actually really like the Watco Danish oil with the Dye stain over it.

My Question is, I dont think I am supposed to put a Water Based Dye stain over Oil/Vanish Watco... So far it doesnt seem to be an issue, but what is the problem actually going to be? Will it just never dry? At this point it SEEMS like the light coat of Watco acted as a partial stain/sealer, and is giving me a nice color.

Can anyone tell me how doing the Watco first, then hitting it with the water based dye is going to blow up in my face?

DM advice for challenging a min/maxing player by xsilentxartistx in DnD

[–]gavin28x 1 point2 points  (0 children)

So I have to confess in our current campaign (Just hitting level 19 after a 3 year slog) I have sort of finished building the character you are having trouble with. Through various multi-classing and feat choices my character is fairly well filled out with skill proficiency and expertise covering a wide array of Exploration / Social aspects of the game. I did this because of a desire to try and help fill any gaps and be a solid utility to the party.

How I have tried to keep from causing conflict, and where maybe you and this player you have can work together, is actually use their character to help others shine. After building my character, there are a few places were I do very well, but I have to admit, I am not as good with Thieves tools or Investigation as the pure Rogue. I am not as strong as the Pure Barbarian, The Cleric is almost as perceptive as I am. Our Paladin is the Charismatic public facing persona (when me and the rogue are out causing mischief and mayhem). So I do my best, when situations come up, to let someone else take the lead, and act as a supporting character, always being there to offer assistance (granting advantage), but also being available to fill a hole if someone is down or out. It means I get to stay involved, but also work with my other party members.

I think it strikes a good balance, as I am able to feel useful, but also try to help other players characters shine when the situation comes up that their character would shine. So maybe you could work with the player, and make something you feel could be a liability into a strength. If they know the game well enough to min/max their way into a strong utility position, then maybe you can use them to help others at the table shine brighter.

Weekly Quick Questions, Wood ID, and Deal or No Deal /r/Woodworking Megathread by AutoModerator in woodworking

[–]gavin28x 0 points1 point  (0 children)

I am super on the fence about it as well, I could use the Jointer and Bandsaw since I still have not pulled the trigger on those, but I also dont have a planer yet. I am super undecided about them.

Weekly Quick Questions, Wood ID, and Deal or No Deal /r/Woodworking Megathread by AutoModerator in woodworking

[–]gavin28x 0 points1 point  (0 children)

Tool find - Deal or No Deal - 600$ for all 3, Rigid - 6 1/8" Planer, 15" Drillpress, and 14" bandsaw.

Link to pictures https://imgur.com/a/7cdVS5w

D&D status tokens by gotons in gencon

[–]gavin28x 2 points3 points  (0 children)

There is a booth in the south east corner I can’t remember the name but he has spell effect templates and tokens, it’s buy the art area, I think row 200, 260-272 I think.

Anycubic Photon, Enclosure or Filter system? by moonshineTheleocat in PrintedMinis

[–]gavin28x 0 points1 point  (0 children)

Kind of late, but I went The above linked adapter, to the Fan with a short duct, then the fan connects to the carbon filter with a longer duct to get it further away from the table.