#the-water-cooler

1 messages · Page 403 of 1

hidden laurel
#

What do you think happens in a try catch block?

wet pilot
#

it means not having to write if error over and over and over

hidden laurel
#

ah

#

I don't mind that

peak breach
#

A catch block doesn't need to be in the normal execution path, though, particularly in compiled languages.

peak cloud
#

I haven’t delved much into mathy languages like those mentioned either.

hidden laurel
#

I actually like the pattern in go of if err return it really encourages linear flows for logic

wet pilot
#

i'm a huge fan of try/except/else flows

peak cloud
#

I’ve grown pretty fond of try/catch blocks.

wet pilot
#

bonus if you add the finally to the end

peak breach
#

I have to say, i really don't like try/catch… D's scope method is much nicer. "If something throws, do this on your way past".

peak cloud
#

However, I do prefer Python’s approach to it, where you can statically catch specific exception types across multiple blocks.

wet pilot
#

in the product i work on we have to deal with un-reliable user data so exception handling is key

hidden laurel
#

sounds like input validation is key

peak cloud
#

Enter HTML5 (for web, anyhow)

wet pilot
#

unreliable users, user-data and lazy support. we have to make pretty messages when "bad things" happen or they freak out

peak breach
#

If the data gets far enough to cause an exception, it's gotten too far already.

hidden laurel
#

we abstracted the error messaging so the ux people can fuck off and do their own thing

#

but yeah you should have better input validation instead of relying on exceptions throw in the backend

wet pilot
#

meh, its mostly catching requests exceptions when they put in bad URLs

#

requests throws exceptions on 4/5xx errors

hidden laurel
#

I have several questions now that I don't for see good answers for

#

but generally your route handling should be abstract to the point where it's not an exception it's a general flow

wet pilot
#

that's how a lot of python libs work. when you call a function you either get the data you're expecting or an exception

hidden laurel
#

I don't generally work with py but it sounds strange

peak breach
#

This is true… Even some of the core stuff works that way. Which is annoying, given how expensive exceptions are in Python.

#

The biggest problem with exceptions, is that they carry stack-frame information with them. Which is a horrid waste when they're being used for non-errors.

#

The standard "find an items index in a list" function. Throws AttributeError if the item isn't in the list. I don't need a stacktrace for that.

hidden laurel
#

my problem with exceptions is just that they feel messy

#

and like I shouldn't use them

peak breach
#

Most of the time you can avoid them — like using dict's get method with a default value. So I actually use very few try's, and mostly only to catch actual errors. Any avoidable exception, I do my utmost to avoid.

wet pilot
#

or key errors if you do a hard lookup on a dictionary

peak breach
#

I generally only do that if I know the items there already, or if I explicitly want it to fall back to a lower try/catch block that's there for something else already.

wet pilot
#

yep

peak cloud
#

Exceptions excel where they fall short: the stack chain.

wet pilot
#

the StopItteration is kinda obnoxious too though

peak cloud
#

Exceptions allow you to catch virtually any error from any underlying module, but at the expense of resources.

peak breach
#

Oh, ghod yes… What idiot thought that was a good idea. shudders

peak cloud
#

I really need to get better at programming, and branch out to new/better programming concepts.

peak breach
#

Well, get away from JS, C#, and VB… 😛

hidden laurel
#

that's a solid starting point

#

py is cool go is cool java is on its way out

#

js frameworks like react/angular are cool

wet pilot
#

"cool" but also a hot mess

peak breach
#

D is freaking awesome. Thought I might be a little biased…

hidden laurel
#

rust is also hot

wet pilot
#

forcing oop on a language that wasn't designed for it 😛

peak breach
#

Rust is making it's way deep into the Embedded market… I'm trying to avoid it, but, I doubt I will be able for long.

hidden laurel
#

I get to write foundational APIs in go for the project I work on

#

It's pretty lit

peak breach
#

It's kinda interesting Microsoft are trying to consume Rust…

hidden laurel
#

Rust is the cool new thing

#

I honestly haven't looked into it too much

peak breach
#

It's got insane memory safety, and minimal overheads. That's why it's rocketing into embedded systems.

hushed basalt
#

I'm learning javascript atm

#

I know python

peak breach
#

Mirosoft want it for the same reasons, for kernel/driver stuff.

hidden laurel
#

makes sense

#

I don't really write stuff where that matters which is why I haven't touched it

peak breach
#

@hushed basalt You have my condolences…

hidden laurel
#

it's not too late to stop

#

you can learn something useful like go or java or how to spell your name

hushed basalt
#

Lok

#

I don't think it's possible to avoid knowing javascript if you do anything with web nowadays

#

Backend only stuff sure,

hidden laurel
#

It is

peak breach
#

Regrettably… I stand by my assertion that JavaScript should never, ever, have been allowed anywhere remotely near a browser.

hidden laurel
#

js bad

hushed basalt
#

It's not about what's the best language, it's about the best employability :D

#

You'll love to know that nodejs and react are on my list next ;)

peak breach
#

Same goes for PHP… Languages that actively encourage you to make mistakes, are NOT web-friendly.

hushed basalt
#

I'm not touching wordpress with a 10 foot pole though

peak breach
#

That's written in PHP, isn't it?

hushed basalt
#

Yeah

peak cloud
#

Yes, WP is written in PHP.

hushed basalt
#

Plus it's all about those third party plugins

#

Who likes fragility and huge attack surfaces

peak cloud
#

tucks his tail between his legs and quietly walks away.

hidden laurel
#

Job security

scenic radish
#

What have I done

peak breach
#

Grown a third arm?

wet pilot
#

threw an OOM exception?

peak breach
#

Isn't that what cows do?

wet pilot
#

maybe if you tip them over

celest aspen
#

anyone have a high res hass rainbow logo, as shown on the new shirt?

wet pilot
#

aussie cows say Woo?

#

@hushed basalt plz confirm!

peak breach
#

I think it depends on your vantage point… I'm pretty sure all American cows say Woo… most of the politicians there, too.

hushed basalt
#

Our cows just get bought by the chinese

peak breach
#

…along with the rest of the country.

ocean mirage
#

lol

hushed basalt
#

Australia's open for business

wet pilot
#

lol

hushed basalt
#

All stock must go

#

Friend or family of a minister? Huge discounts apply!

#

Time to move to Mars

wet pilot
#

ok Elon

hushed basalt
#

Nah elons shit

#

I'll become Emperor of Mars

peak breach
#

It's gonna be worse on Mars… Governments have figured out how to ignore pesky thinks like people, and sell out to the corporations.

steel urchin
#

any network gurus here? been a while, and i have the exact opposite issue i've ever come across... port forwarding is working fine for clients on a remote network, but clients from the same network are not routing through the port forwarding??

hushed basalt
#

@steel urchin that makes sense

#

Is the port forward a direct port

#

So 80 to 80 etc

#

Or is it different like 5080 to 80

steel urchin
#

direct port

#

but i've tried both, same effect

hushed basalt
#

Well that's easy, you need to either have the internal clients call the hostname of the server you want

#

Or you need to set up a dns config in your router

#

Is it http or https

wet pilot
#

https to 80 would be bad juju 😛

steel urchin
#

i can access somedomain.com:888 from a remote network just fine, but doing it internally it never seems to hit the router.. but the traceroute shows it's resolving the right IP

#

mm no you should never have to set a dns entry for a remotely propagated dns

wet pilot
#

nat reflection issues?

hushed basalt
#

Do you have loopback on

#

Otherwise your internal clients will just see your wan as that address

#

And get dropped there

steel urchin
#

mmmm not sure where that's enabled... haven't seen anything related to loopback, and i'm not trying to access localhost

#

pc = a host, pc b = client1, phone = client 2 (on data plan)... client2 accesses external ip which gets port forwarded just fine, client1 times out unless using an internal IP

#

i feel like the modem/router crap has a bug in the firmware

wet pilot
#

that is what you want

steel urchin
#

looks to be enabled in the router

#

now, i'm doing an IP passthrough from the modem/router to MY router... i'm thinking that has something to do with it

thick dragon
#

Random somewhat HA-related question: Have my HA host and my NAS (Synology) on a UPS. UPS has the one USB for shutdown command. How would I get either the NAS or Home Assistant to send a shut down command to the other device before shutting down?

trail crag
steel urchin
#

that was it

#

100%.... damnit

#

that really bums me out 😦

hushed basalt
#

Gigabit speeds are not something I have to worry about

#

But you might want to build a pfsense box

clear ferry
#

ermergerd, the baby slept till 0710 this morning

#

I slept too long, I'm broken

#

🤣

#

@steel urchin netgear 🤢

hushed basalt
#

At least it's 🍅

mighty summit
#

i'm searching for an esp-based multisensor (temp-lux-motion) on battery without having to diy it, anyone ?

hushed basalt
#

I'd go zigbee tbh @mighty summit

#

Esp and battery don't mix

clear ferry
#

sure it does, with deep sleep and polling every two hours, you'll probably get a few months battery life 🤣

mighty summit
#

i do not want to add zigbee into my setup.

#

agreed that the motion detection will srsly mess with battery life. But esp with deepsleep will last a very long time.

hushed basalt
#

Eh good luck

mighty summit
#

ehh thk you 😉

clear ferry
#

zigbee 4 lyfe 🤣

mighty summit
dim apex
#

hello

#

i bought a eWeLink Mini PCI-e Desktop PC Remote Control from Ali

#

is there any way to flash it ?

#

🤓

mighty summit
#

possibly, sure looks as though there is a serial header on the board. You could hook that up & see what the serial console spits out at boot.

clear ferry
#

jewsus christ, calling the norwegian post service, and the guy who has recorded the phone messages sounds like he is 80 years old and never seen a smartphone before

#

and he says "chattttt" with five t's and and "goggle play"

#

I just want to talk to someone that I can yell the heck out of since my package has been for import since 27th of November

hushed basalt
#

That's what dirty socialism gets you

#

Should have joined a capitalist country

#

Then your postal service would be privatised, the old 80 year old would of died at 60 from not being able to afford heart medication, and the call centre would be offshored to the Phillipines

ocean mirage
#

I am gonna have an aneurism thanks telco

normal ferry
#

Hey guys quick question - any suggestions for good reliable mesh wi-fi configuration, especially when it comes to a) multiple smart devices , b) streaming 4K content and c) having a lot of 2.4 Ghz signals around your flat ?

#

Ideally suggestions by someone who has one already and has similar use cases to mine

clear ferry
#

I use a triplet of linksys mesh devices

#

haven't had a single hickup since I installed them

#

replaced 3x MSM466

#

linksys also supports bridging and meshing at the same time

#

none of the other vendors do afaik

normal ferry
#

sounds cool , can I have your model so I can look it up ?

#

is it the velop ?

clear ferry
#

yeah, velop somethingsomething

#

let me check

#

I bought the lower end one

#

I tried the Huawei ones first

#

they were much faster

#

but no bridge mode

#

VLP01v1

#

I have them all connected to ethernet too so the mesh only helps on clients that support it

normal ferry
#

alright thanks! if I may ask - the huawei(s) did not support bridge mode , that means that I cannot bridge them to another router? but they do connect to a modem right?

#

stupid question let me rephrase

#

here (in Greece) the ISP usually gives you a modem/router/WiFi AP device (if they could also make it blend fruits into smoothies they would)

#

which usually sucks

#

so most of us who know a thing or two

#

bridge it to an actually useful router

clear ferry
#

I run a 192.168.1.0/24 network here, when I connected the Huawei all wireless clients were connected to a 192.168.3.0/24 network, that meant those clients were kinda isolated and not reachable from my 192.168.1.0/24 network even though they could reach that same network

#

and it was not possible to disable the routing function of it at all, I even contacted huawei asking for a custom firmware, no answer

#

google wifi supports bridge, but then no mesh

#

so I bought the linksys ones, and have been happy so far

normal ferry
#

Mhm! Yeah they seem reliable , I am half way convinced already. All I need to do is study a bit on Google and then see if I can find a retailer here in Greece - otherwise Amazon here I come

clear ferry
#

the bigger versions are probably a lot faster

normal ferry
#

Yeah I have my eye set on the tri-band ones

#

but proly I need less nodes ... a 2-pack would be fine

clear ferry
#

but I have no issues here, I have 50+ zigbee devices on 2.4Ghz, I have 3-4 legacy 2.4Ghz devices, the rest are 5Ghz, and I stream to Roku \ Apple TV and phones with no issues

#

yeah, I have a terrible house, like... 28 meters long, so I run one at each end and one in the middle

#

one on each floor

normal ferry
#

I have an flat apartment - not good with dimensions but I'd say 60-65 square meters and it has brick walls and the worse "L-shaped" corridor layout I've ever seen

#

There is just no good place to have an access point or a single wifi router

#

(actually my gf's property - so no rent - no complaints about that! 😛 )

clear ferry
clear mirage
#

Classy suspenders

clear ferry
#

Sexy time

hushed basalt
#

This marked the moment

#

The downfall of mankind

clear ferry
#

Get in my belly @hushed basalt

hushed basalt
#

I didn't have any corn

scenic radish
#

left a little rosebud in there for ya

clear ferry
#

@scenic radish is soylent green too

scenic radish
#

always wondered why soylent thought it would be a good idea to name their product that...

#

also 10.0.0.0/24 master race

clear ferry
#

🤢

scenic radish
#

looks prettier

hushed basalt
#

192.168.norwAt.0/24

scenic radish
#

lol Norwat

clear ferry
#

Class A is so barbaric

scenic radish
#

i'm just gonna make my own class

hushed basalt
#

X-Domain. First class.

clear ferry
#

You are definitely in a class of your own ThonkEyes

fallow galleon
#

only issue is some devices love to apply mask 8 when they see 10.

clear ferry
#

That looks like tink when someone says they know security

#

Or Unix

scenic radish
#

"i'm using http but over port 65500 so it's ok"

clear ferry
#

Brb hack your IP through a visual basic interface

hushed basalt
#

"I have https on so it's all good"

clear ferry
#

Telnet for lyfe

scenic radish
#

i also find it funny when people suppress their LAN IPs when posting stuff here lol

hushed basalt
#

To be fair it is a small piece of the puzzle

clear ferry
#

Shit, better not show that my Xiaomi is running on 192.168.1.48

scenic radish
#

i suppose, yeah. but still non-routable

hushed basalt
#

I think if someone was on your network most people here would already be owned

scenic radish
#

oh fuck

hushed basalt
#

But I still try to work off the zero trust principal

clear ferry
#

More tradfri

scenic radish
#

the promised land

hushed basalt
#

And assume lan is not safe

#

Quick nuke Ikea Norwat

scenic radish
#

eh, i live on the edge. SSL via reverse proxy and unencrypted on LAN

clear ferry
#

Ankor Norwat

#

My temple place

hushed basalt
#

Yes hello security, I'd like to report a deranged person entering your store

clear ferry
#

Yes, FBI, this guy right here

hushed basalt
#

You can recognize him as the guy drooling in the tradfri section

scenic radish
#

he keeps softly chanting "RGB" over and over again

hushed basalt
#

RGBCCT master race

clear ferry
hushed basalt
#

🟥 🟩 🟦 🕯️ ☀️

clear ferry
#

😂

scenic radish
#

so i'm sick and accidentally took two meds that both have acetaminophen in them last night which is apparently a no-no. haven't died yet though, so there's that

hushed basalt
#

If you take more it cancels it out

#

Guaranteed.

scenic radish
#

ah damn, good call

hushed basalt
#

this is not a guarantee

clear ferry
#

Lol I had to Google it

#

Paracetamol damn it

#

Who cares 😂

hushed basalt
#

Nah paracetamol OD is not a fun way to die

scenic radish
#

yeah who really needs a liver anyway

clear ferry
#

Except your liver

hushed basalt
#

They basically can't do anything except watch

clear ferry
#

I eat like five painkillers per year, so I wouldn't mind if I are double my dose one day ThonkEyes

hushed basalt
#

Ah yes

#

If I have all my yearly drinking in one night it's okay :D

#

Same average right

clear ferry
#

Yeah, if you eat 250mg or 500mg paracetamol won't be the same 😛

hushed basalt
#

{{ alcohol | average }}

#

Two tabs is 1000mg

#

So a double dose is 2000 mg

clear ferry
#

Depends on the tabs

hushed basalt
#

500mg is normal. This is the way.

clear ferry
#

We have 250/500/1000 and the 1000 is only from prescription

hushed basalt
#

We have 24 packs of 500mg

#

And everyone takes two at once

scenic radish
#

so i guess it doesn't really matter as long as you don't go over 4000mg/24 hr

#

it's just easier to OD if you take multiple meds

hushed basalt
#

I'm sure your liver hates you but I'm sure you're fine

#

I'm pretty sure 4000mg at once is a killer though

scenic radish
#

it was less than 1000 mg

hushed basalt
#

Or pretty.serious

scenic radish
#

yeah not a good idea lol

hushed basalt
#

I've stopped taking 1000mg at once

clear ferry
#

I took Paralgin major and an ibuprofen once, fell asleep, was nice

hushed basalt
#

My literally feel my liver

#

I'm pretty sure I took too much paracetamol over a week when I was sick once..like for too long

#

And my liver was like, stop that, buddy

#

And I feel like i stay drunker for longer now too

#

At least we can still get pseudoephedrine

scenic radish
#

bonus!

hushed basalt
#

None of that phenylalanine garbage

clear ferry
hushed basalt
#

Yes officer, this post right here

clear ferry
scenic radish
#

how do the tradfri compare to hue anyway?

#

i would certainly hope hue are better

clear ferry
#

Good enough for me

#

The hue are a bit dimmer

#

So use those in the bedroom

scenic radish
#

i started with just regular white, got a few tunable white, and then got RGB when i found deals. best deal i found was the 4 bulb color starter kit (includes bridge) for $80 new

clear ferry
#

Most of mine are CT bulbs

#

I have a few RGB

#

Kids room etc

scenic radish
#

when i got the tunable white is when i noticed the regular white don't fade out smoothly at the very end. they go from like 10% brightness to 0 with no fade

#

so that basically ruined the regular white for me lol

clear ferry
#

😂

scenic radish
#

either way i like 3000K for general lighting more than 2700K anyway

#

2700K is too yellow, 3000K is less yellow but nowhere close to cold white

hushed basalt
#

Hue is like $80 each here

scenic radish
#

wut

#

full retail for one hue color is $50 here (A19 shape)

#

you'd be insane to pay that though

clear ferry
#

These GU10 CT ones are $9 each

scenic radish
#

also i called some business the other day and was hit with the cisco callmanager music lol

hushed basalt
#

$89 from Apple

#

$70 on the street

scenic radish
#

oh from 'straya, are ya?

clear ferry
#

Have you gotten around to NFC payment in the us yet @scenic radish ? Last time I was there the store people were still getting used to chip, three years after we introduced it

scenic radish
#

street price

#

yeah i've been using NFC payment for years, ever since Google Wallet was a thing actually

hushed basalt
#

Americans are weird

#

You still pay people in cheques

scenic radish
#

when google wallet existed pretty much only walgreens took NFC payments, and the cashiers looked at me like i was from the future

clear ferry
#

We didn't get Google pay until this year, but we have NFC bank cards for... Three years maybe

scenic radish
#

also, google pay used to be google wallet

hushed basalt
#

Wow you're all behind

#

We've had nfc payments for like 8 years

clear ferry
scenic radish
#

i've been using NFC since like 2012

hushed basalt
#

It means that Visa and mastercard are making bulk money though

#

So it's nothing to brag about

#

Everything just becomes 1% more expensive

#

People have credit card rings here

#

They look like tools though

scenic radish
#

lol wtf

clear ferry
#

I wanted one

scenic radish
#

i wanted a moto razr and never got one 😔

#

i was so jealous of my friends who had one lol

clear ferry
#

Wtf was that strange phone the us kids had in the 00s

#

Sidekick or something

scenic radish
#

uhh hang on

#

wtf is a JFIF? lmao

clear ferry
#

Sounds perverted

#

Some furry file

scenic radish
#

there we go. just changed the file extension lol

jagged mantle
#

Just a little interested, but you guys/girls that are active her often. How young was the youngest guy/girl you've seen working with home automation at home in this community?

low harness
#

17 that I know of. IIRC

scenic radish
#

17?! automating their parents' house?

jagged mantle
#

well im 15 xD

#

and I'm automating our house but my mom isn't that happy about it 😂

scenic radish
#

that... is hilarious lol

low harness
#

Then I did not RC.

jagged mantle
#

dad bought an Tellstick net some years ago and i absolutely hated the GUI and wanted something else and that was when i found home assistant

#

and now im trying to talk them into moving onto zigbee

#

well my first message on this server was 2 months before i turned 14 so, 13 would be the youngest xD

clear ferry
#

I didn't automate my house, but I hosted servers in our basement when I was 13 😂

#

Back in ye old 1997

#

Or early 98

jagged mantle
#

i host minecraft and ark servers every now and then when they are needed

steel urchin
#

same, love both those games

#

i remember being a kid on dialup, after 7 days of pirating visual basic 3 my mom picked up the wrong phone and ruined my life

low harness
#

Look at mister dual landlines over here.

steel urchin
#

lol well, it was a mistake by the telephone company that we never corrected

#

i stole most of my computer parts from compaq 🤣 every time i went to visit my uncle i'd take another part

clear ferry
#

We had dialup from 93, ISDN from 95 and cable modem from early 98

#

Then we got fttp in 2003 or 4

jagged mantle
#

Never used dial up xD

low harness
#

Don't be sad.

steel urchin
#

heh you're not missing out

clear ferry
#

Dialup was mostly dead by 98 in Norway

steel urchin
#

except the anticipation of that interlaced jpg pr0n!

clear ferry
#

😂

light trout
#

We had dialup untill 03 @clear ferry

clear ferry
#

Never knew if it was male or female until the very end @steel urchin

steel urchin
#

lol

clear ferry
#

@light trout WTFrick

steel urchin
#

yeah the US has shit telecom and networking

low harness
#

I think we got ADSL in -04 or -05.

light trout
#

Lived 40min west of Lillehammer, things took long to get there

steel urchin
#

lillehammer!

#

i loved that show 😛

clear ferry
#

We had DSL from 2000 now that I think of it

steel urchin
#

great to see a lot of those people in Norsemen on netflix... also a funny as hell show

#

i hate that domain names are so expensive these days

#

i remember buying dot com domains for like 80 cents

#

just bought 1 year domain for $30 :S

#

not to mention the one i REALLY wanted was going for $500k 🙄

#

and has been parked for 13 years

clear ferry
#

I bought my domain in 2000 I think, didn't start paying for it till 2015 😂

steel urchin
#

yeah a few domains i wish i got the lifetime registration for back when that was a thing

eager crest
#

just got a .eu for 15€/10 years

steel urchin
#

i mean i can get a .sucks for a few bucks, but who wants that

eager crest
#

isn't .sucks >100$?

#

and for .de i pay 16 cents per month

steel urchin
#

the price can vary per domain

#

regardless of tld

#

but still... just illustrates how stupid it all is these days

#

i used to buy domains for FUN

eager crest
clear ferry
#

What was that strange free domain with ads included in the mid 00s ThonkEyes

eager crest
#

idk

clear ferry
steel urchin
#

heh i still use a few of those for some junk community sites

clear ferry
#

I have used dyndns since 98 I think, great product and super free domains

#

I have atleast 10 homelinux domains

steel urchin
#

for this lil project i want it to at least have the appearance of professionalism 🤣

#

keyword "appearance"

clear ferry
#

Go .xxx then

steel urchin
#

lol

clear ferry
#

Give any one species too much rope and they'll f*** it up

#

🎵

low harness
#

I forgot about .tk. I had one of those. Never heard of Tokelau either before or after...

clear ferry
#

Sounds like a specialty dish from Malmö @low harness

low harness
#

It... ... ... it really does!

clear ferry
#

My Swedish is impeccable

low harness
#

Served with Kartoffel in a Rollebör.

clear ferry
#

I ate Wallenberger when I was in Borås now

#

Loved it

low harness
#

That’s awesome. With butter, I hope?

clear ferry
#

There was no butter, only the patty and mash formed like a potato, and lingon of course

low harness
#

You have to go back and do it right. It should be drenched in melted butter.

#

I’m getting hungry...

clear ferry
#

Agreed, making homemade kögarpytt when getting home 😂

steel urchin
#

Damn I don't even know what you're talking about but drenched in butter sounds good

clear ferry
#

We do a lot of butter in Scandinavia

#

None of that margarine bullshit or can't believe it isn't butter

low harness
#

For those not hungry yet, a Vallenbergare is a ground veal patty made with like 30% cream and fried in breadcrumbs.

clear ferry
#

The boxty from Ireland is probably one of my favourite dishes

clear ferry
#

Since I saw @strange vapor typing 😂

low harness
#

Why not just replace it with the wire?

strange vapor
#

There's a tourist trap down near where I grew up called Muckross House, and they have a working old style farm. As you walk through they're going through every stage of making soda bread and butter from milking the cows and making the flour, through to cooking the bread and making the butter.

#

And you get to sample all the end results.

clear ferry
#

🤤

strange vapor
eager crest
#

error missing wd40

clear mirage
#

I've seen that one

strange vapor
#

Tis an oldie but goodie

jagged mantle
#

where can i order one like that lol

strange vapor
jagged mantle
#

so thats not how it's supposed to look? 😂

clear ferry
young sigil
#

Can I get G and B nuts to go with that?

scenic radish
#

Little late, but I got a .casa domain for $2/year lol

jagged mantle
#

why isnt nabucasas domain nabu.casa?

scenic radish
#

not sure, but the remote access domain names are nabu.casa

wet pilot
#

@light trout moving here because its unrelated to HA but it looks like GitHub has a GraphQL interface that might be useful. Their schema is really confusing though. I'm having a hard time Grocking it

light trout
#

Have no idea what that is 😛

wet pilot
#

fancy api that lets you span rest endpoints in one call

light trout
#

Too fancy for me, give me a phonebook!

strange vapor
#

@light trout Want some punchcards with the phonebook?

scenic radish
#

rolodex maybe?

light trout
#

Sure why not

hushed basalt
#

I bought my firstname.ninja domain the other week

#

It's great having an uncommon name

#

Phonebooks? Bah

#

I just pick up the phone and ask the operator to patch me through

unreal orbit
#

Someone paid money to add a banner that pushes down all the channel names? That... is kinda dumb

ocean mirage
#

I couldn't reach the upper channels before

light trout
unreal orbit
#

Just interesting that paid "features" make the user experience worse.

vast dove
#

What resolution you running @light trout ?

light trout
#

1080 on that. (it's in protrait mode)

vast dove
#

@unreal orbit Just hide all read channels and also hide channels you done use, Easy peasy

#

aha

#

Maybe i should switch my landscape 5120x1440 to portrait 😄

#

then you can add more channels

unreal orbit
#

Maybe we should add a #channel-suggestion-channel channel where people can suggest more channels that we can add

light trout
#

I tried, not much response on that

vast dove
#

Maybe add one of those for each category??

unreal orbit
#

and a category suggestion category/channel

scenic radish
#

i still vote we merge everything into a single channel

unreal orbit
#

people would still post in the wrong channel

vast dove
#

#frontend and #backend all you need

vast dove
#

wow thats a wall of text

unreal orbit
#

could also go the way of blocking people from posting until they pass a code of conduct test

scenic radish
#

also that was obviously a joke about one channel lol

ocean mirage
#

just do what I do and have every channel except this one muted ;)

unreal orbit
#

@scenic radish jokes are not explicitly permitted on this server. Please refrain from attempts at humor in the future.

scenic radish
#

Command '.jokes' was invoked by: Villhellm

clear mirage
scenic radish
#

alright, this is pretty funny (from the python docs):

>>> import sys
>>> sys.ps1
'>>> '
>>> sys.ps2
'... '
>>> sys.ps1 = 'C> '
C> print('Yuck!')
Yuck!
C>
hushed basalt
#

Look what I found

scenic radish
#

wut dat

hushed basalt
#

It's an old lego robot thing

#

Back from when I was like 12

#

It just had a single inbuilt stepper motor

hushed basalt
#

Basically you build a little car around it

brisk furnace
#

is there anyone that's familiar with partition structure in linux?

#

I had a drive setup as /dev/sda1,2,3

#

then I deleted 1,2 and tried to resize 3

wet pilot
#

O_O

brisk furnace
#

didn't work, now I'm stuck with partition 3 at the end of the drive

#

and no partitions in front of it

#

is there a way to fix that

#

lol..

wet pilot
#

you'll find if you reboot your system is hosed

brisk furnace
#

well so the good news is I use 2 drives

#

one that I boot off of, one that I store db/etc on

#

I didn't mess with the boot drive

#

just the second one, I wanted to make one big partition instead of 3 smaller ones

#

so it boots fine and sees the partition 3 but I can't resize it to take up the whole drive

wet pilot
#

what filesystem type are you using?

brisk furnace
#

ext4

wet pilot
#

no lvm?

brisk furnace
#

nope

wet pilot
#

you'll need to use something like parted to grow the partition and then resize2fs to grow the filesystem

#

it will always be /dev/sdX3 though

brisk furnace
#

i booted off of fedora live workstation

#

would command line have gparted or parted?

wet pilot
#

it might. you can install it though

brisk furnace
#

i'm ok with always sda3, I was just really worried I butchered the entire drive

#

ou okay it has parted

#

thank you @wet pilot going to google what commands to use to expand the partition

#

stuff like this makes me super nervous - not sure why I put myself through this

hushed basalt
#

This is why I avoid linux :D

wet pilot
#

linux gives you a saw'd off shotgun, its up to you to not shoot yourself in your face

scenic radish
#

I'm rather enjoying Linux.

steel urchin
#

@brisk furnace you should be able to resize and reposition easily with gparted

#

if you don't have a gui, there are ways, just need to research how to reposition the partition and then extend it, but def possible to do with ext4

wet pilot
#

parted and resize2fs

steel urchin
#

teach a man to fish

wet pilot
#

i gave the commands, not the flags 😛

#

narrow down the google searches some

steel urchin
#

😄 we got you lil buddy!

#

(for now, just rtfm some)

wet pilot
#

heh

#

now if it was LVM i would dive in further because that is confusing to most

hushed basalt
#

From my professional experience, something being difficult and complicated doesn't necessarily make it good

steel urchin
#

yeah lvm is a bit advanced for a hobbyist

wet pilot
#

linux really isn't that difficult

steel urchin
#

heh... i'd hope not, because i've spent a career making difficult and compilcated things easier 😛

#

linux TODAY isn't that difficult

wet pilot
#

true

steel urchin
#

but there's a lot of underlying technology that is black box to probably most current users

wet pilot
#

and its a lot more stable than windows server these days

steel urchin
#

like how kernels work, module loading, filesystems, etc

#

i do have to give props to hyper-v though, that shit is FAST

wet pilot
#

yep, just watch your windows updates

hushed basalt
#

I'd much rather spend my time and energy in higher areas

wet pilot
#

paying to be QA for M$

steel urchin
#

for most people that's perfectly fine @hushed basalt

#

actually, better than most

#

with cheap cloud storage solutions and all the DRM distribution systems (spotify, itunes, mobile stores, etc) recovery should be easy

wet pilot
#

nice

hushed basalt
#

I run rclone too

brisk furnace
#

@steel urchin I googled around a bit but took a break! Partition 3 starts at block 16gb was having issues moving the starting block for partition 3 (was only able to change the end)

steel urchin
#

yeah ijust didn't like the 1-way sync, and prefer docker containers so i found some tools and slapped them together

brisk furnace
#

Managed to have it fill the entire remainder of the drive but just missing that 16GB gap at the front - looks like I need to move it but that may alter uuid

steel urchin
#

@brisk furnace peep what @wet pilot posted earlier and see if that leads you in the right way

brisk furnace
#

I'll take a look! Thank you both. I'm sure a bitore googling will get me over the line

#

Bit more*

wet pilot
#

nice container @steel urchin i might take a look

steel urchin
#

aye nice... if you're familiar with rclone and rclonesync it's really straightforward!

#

so.. i have to say my favorite purchase of 2019 has to be my robovac.... the QOL it provides is just unrivaled

thick dragon
#

Yeah, for sure @steel urchin . This your first one?

steel urchin
#

hehe no not by far

#

i've contributed heavily to docker and rancheros

#

under a different moniker

thick dragon
#

A workmate convinced me to get one almost a decade ago now with a very simple argument. I was like "Why would you spend that much on a vacuum cleaner!" His simple, and utterly effective response was, "Don't think of it as spending that much on a vacuum cleaner, think of it as spending that much on never having to vacuum again".

#

I went out and bought one less than a week later 😛

steel urchin
#

100%

#

oh, lol now i get the context

#

yes, my first robovac

#

and i stand by your friend's statement

#

came home from a christmas trip for business, and the house was vacuumed and mopped the wood floors, nice vacuum lines in the carpets, and it felt so amazing

thick dragon
#

I don't even have my new Roborock in Home Assisstant yet and I'm loving it over my 8-9 year old Roomba.

steel urchin
#

yeah i got the s50, awesome hardware

thick dragon
#

Haha, the first time I came home after the vacuum had run I was so scared. I swore that I'd been visited by aliens because of all the "carpet circles".

steel urchin
#

haha "who broke into my house and cleaned it?!?!"

thick dragon
#

I just need to work out zone restrictions for the mopping function on the S50 now. My tiled area goes straight into my carpeted area, so don't want any accidents 😛

steel urchin
#

yeahhhhh i waited a few days after "mopping" multiple days (since i was remote), and THEN cleared the zones and vacuumed

#

that way i was out of water and didn't have to worry

#

but, you can put down magnetic strips to act as walls

#

i'm thinking of getting a roll of magnetic ribbon

thick dragon
#

Yeah, that'd probably work. I've already got a linoleum/plastic end cap for the carpet that a magnetic strip could go on top of easily.

steel urchin
#

i don't plan on permanently affixing it

#

just roll it out when i need that accuracy

#

because let's get real, drawing no-go or area boxes on that app is not 100%

thick dragon
#

I guess mopping is a more manual exercise anyway with needing to change the tank, so could easily roll that out when I need to mop.

steel urchin
#

yeah, it was the first and only time we've done it... i need to do more testing, but i'm excited to have something at least rub wet material across the floor once in a while

#

ok so i think the new house will have all the fixes done by thursday mid-day, and then i can finally dig into home assistant!

#

well.. no i lied.

#

i can start digging into drywall 🤣

brave panther
thick dragon
#

Ah, new home life? I just bought my first home too. Had my dad over 2 weekends ago to help me do some drywall digging and mount my TV 😛

steel urchin
#

nice! congrats man!

#

this is my 6th house though... a bit of trial and error already gone through 😛

brave panther
#

my Secret Santa recipient will be receiving a ESP8266 / Sonoff "bridge", configured to be a Wifi AP, async web server, and MQTT broker, instructions for how it works, and a link to a Github repo. 🙂

steel urchin
#

badass @brave panther!

brave panther
#

"Under $20" they said. AliExpress they did not take into account. 🙂

steel urchin
#

dude, i'm jealous!

thick dragon
#

Haha, I hope you work somewhere where all that will make sense @brave panther 😛

brave panther
#

They said they were into "Home automation, DIY, and tinkering"... I actually got excited to be their Santa. 🙂

thick dragon
#

Very cool!

steel urchin
#

oh that's awesome

thick dragon
#

I bought a Pop! Vinyl for my Secret Santa. Super original!

brave panther
#

😄

hushed basalt
#

I got someone a google home mini

#

$40 on clearance

steel urchin
#

i'm on sabbatical and don't have a secret santa 😦

thick dragon
#

@brave panther Just noticed a labelling issue in your Sonoff config. IP <-> MAC.

brave panther
#

Thanks 🙂

steel urchin
#

someone hire @thick dragon for QA

thick dragon
#

Funnily enough I used to do QA for game development. So that'll be a "no" on that for me. Happy managing my team of analysts 😛

brave panther
#

Gonna finish up a couple things then shove this to Github if anyone is interested in the code.

steel urchin
#

hahaha yeah i really feel bad for QA folk... usually my highest turnover

#

@brave panther absolutely

brave panther
#

Could probably add more and more features like configurable from the web interface but meh, it's just a thing to get them interested. 😉

steel urchin
#

i don't plan on doing much diy automation outside of node-red scripts

#

but i love seeing projects

brave panther
#

To be fair, Tasmota makes life VERY easy.

#

I'd rather not just flash it with Tasmota, that's the lazy way out haha

steel urchin
#

😛 sounds like the gift was for YOU!

brave panther
#

at least this way, they can start thinking about other things to do (Access point, web server, MQTT broker, etc) with their ESP8266

#

Heck. BEING their Santa was my gift.

#

I enjoy making things work. Ever since the cliche of being a kid and "taking things apart to figure out how they worked"

steel urchin
#

ok so a random video just popped up on the youtubes on tv... dude walking through his "smart" kitchen... a camera inside the fridge is dumb af to me, and who the hell wants to start their oven from their phone?

brave panther
#

Smart toaster? Literal toast notification.

steel urchin
#

yeah actually he just showed that too.... so dumb

brave panther
#

Old school: "File's done!"
New school: "Toast's done!"

steel urchin
#

heh i'll go for the filet

brave panther
steel urchin
#

oh FILE's done

#

i read that as filet's done

brave panther
#

Violet's dumb

steel urchin
#

i may or may not be jonesing for these omaha steaks we just got in

brave panther
#

Funny thing is, meat man stopped going door to door and instead sells it on website, makes tons of money.

hushed basalt
#

I'd like to be able to start my dishwasher from HA

#

Especially if I had solar

#

Oven not so much

brave panther
#

"Alexa, tell my wife to wash the dishes."
"Okay."

steel urchin
#

i don't get it, but maybe i'm old now

brave panther
#

dish washer

steel urchin
#

no i mean starting the dishwasher from HA

brave panther
#

Hmm. Maybe it's a nightly thing? Like every night, at 8:00, the dishes are all used and need to be washed. So it's something that could just happen. Idk.

hushed basalt
#

I always use delay start on my dishwasher

brave panther
#

I stopped wondering why and now just think of how because people always have a reason.

steel urchin
#

oh i agree with that sentiment

#

i mean i fyou want your toilet to be connected to your wifi, then fine

hushed basalt
#

But if I had it on HA i could set it to run when it's been X hours since last run and everyone has left the house

steel urchin
#

"alexa, squirt water into my butthole"

#

i mean do it

hushed basalt
#

But more importantly if I had solar, I could set it to run when there is surplus power

steel urchin
#

i'm the kind to do dishes all at once

hushed basalt
#

So besides the 11 litres of water and a dishwasher tablet, it's effectively free to run

#

I want two dishwashers two. Or atleast a dual drawer

#

Small batches more often

steel urchin
#

lol damn dude

#

sounds like you have a story to tell

brave panther
#

Oh wow. IoT bidet.

#

bidet_of_things.bathroom_toilet: SQUIRTING

slim laurel
#

Hi guys its been a while

#

how is everyone doing?

#

Love how much HA has changed

#

I hadnt touched my config in like a year

hushed basalt
#

@steel urchin lean is lyfe

#

Small batches make huge improvements in pretty much everything

#

Say software for example. People have moved away from waterfall development to continuous integration and deployment. One commit at a time.

ocean mirage
#

tell that to my work

wet pilot
#

and lots of people say they use agile but its just waterfall in disguise 😄

ocean mirage
#

agile is just a buzzword for managers

#

none of them know what it means

wet pilot
#

pretty much

#

and adds a lot of extra meetings

hushed basalt
#

Yeah most people suck at lean, theory of constraints, TPS etc

#

If it's not done holistically with support from the very top it's usually just massaging vanity metrics.

#

I'd recommend this to all you devs out there

#

Plus "The Phoenix Project" and "The Goal"

#

If people just start throwing "agile" at everything they're usually missing the point. Make everything more agile! Sprint sprint sprint!

#

One piece flow, kanban etc are tools to achieve a goal. Not goals themselves.

steel urchin
#

i've worked at the shoddy agile places, and ran the fun agile places 😉 lots do it wrong, but when you find a place that works as a solid team it's pretty amazing

#

like, 20-releases-a-day amazing

hushed basalt
#

I do 20 releases a day in HA sometimes :D

#

God bless cicd

#

I look forward to the day HA has automatic config reloading without restart though

steel urchin
#

yeah i was noticing that in the docs, thought that was strange

clear ferry
rancid root
#

6 hour long power outage for the first time since I moved, generator's fuel should die at any moment. RIP me

clear ferry
#

We had 2 days power outage one winter

#

Thankfully it was only -15c outside

hushed basalt
#

When the power dies burn atxbyea for warmth

#

The alcohol content should be high enough

#

I remember back in the overlap of peak irc and adsl, people used to host their own "radio"

#

Where they'd stream their winamp to a proxy server and everyone would play that stream

clear ferry
#

The fat content should keep it burning for a long time

clear ferry
#

mmm, tmux is so handy, why have I been switching between ssh sessions all these years 🤣

low harness
#

Wow. You've been missing out.

#

Tmux is the backbone of my workflow for everything.

clear ferry
#

yeah, I know

low harness
#

Just don't forget to switch from ctrl+b to something... not stupid.

clear ferry
#

I like control+b actually

#

because I use it on Itanium-systems

#

so it is in my fingers anyway

clear ferry
#

Wuhu, Christmas bonus secured

clear ferry
#

now that I finally learn tmux, the downside is that most sites I work are either off the internet or dark sites overall, so getting tmux installed will usually be a challenge 🤣

low harness
#

Yeah... screen is more well spread, but inferior.

scenic radish
#

i also received my christmas bonus yesterday

last dirge
#

jelly of the month club subscription?

#

it's the gift that gives all year

hushed basalt
#

@clear ferry can you just tmux on your local shell

clear ferry
#

I see no reason why not

hushed basalt
#

Then ssh etc inside each window

last dirge
#

does it work with the windows Linux subsystem?

hushed basalt
#

Should do

clear ferry
#

WSL, haven't heard that name in a long time

hushed basalt
#

I have wsl2 on my laptop but haven't had time to try it yet

#

Been too busy learning the java scripts.

clear ferry
#

I just ssh from powershell to a linux box

#

problem solved

hushed basalt
#

Wsl1 was just close enough to real Linux to shoot yourself in the foot

#

In theory wsl2 should be a lot better

#

in theory the dinosaurs should have stayed in their cages in Jurassic Park

low harness
#

There's a pyton tmux clone floating around somewhere. That should be fairly portable.

clear ferry
#

Getting stuff into dark sites... is..... somewhat cumbersome, if possible

low harness
#

If you run tmux locally and ssh in each window you lose the persistance, which is a major advantage of tmux/screen.

raven atlas
#

is there a channel where people share their lovelace views?

#

would love to look at them and maybe get some inspiration

velvet horizonBOT
clear ferry
#

there is also a lot on reddit

#

a lot

#

with giphys showing off cool stuff

clever mortar
#

The Facebook group likely has a wall of such things too

clear ferry
#

Facebook 🤢

#

🤣

#

I can proudly say I have never even had a facebook account

scenic radish
#

@copper sequoia ☝️

#

you were right, conclusive evidence here

last dirge
#

looks like tmux works in the windows subsystem

#

now I just have to figure out how to use it 🙂

clear ferry
#

WSL 🤢

#

no evidence at all, lies all lies @scenic radish

hushed basalt
#

This is the guy here officer

#

He doesn't even have a facebook. Definitely a crack pot

clear ferry
#

He... might be sane!

last dirge
#

in tmux can you suspend/detach a terminal window where you're shelled into another host?

low harness
#

yes

clear ferry
#

aye

#

it is super nice

last dirge
#

how?

low harness
#

ctrl+b d

last dirge
#

the hotkeys don't seem to be recognized when I'm shelled into another system

low harness
#

then $ tmux detach I think

last dirge
#

oh, have to let go of control

#

ctrl + b d vs ctrl +b, d

low harness
#

Run tmux attach to resume

clear ferry
#

hotkeys have worked fine for me from both a powershell ssh session and putty

#

or just tmux a for ease 🤣

low harness
#

Or just the up arrow after a while, when tmux attach is the only command you ever run in the first shell

clear ferry
#

🤣

wet pilot
#

😛

last dirge
#

this is a neat tool

clear ferry
#

Oh lawd, I have converted yet another lost child process to your process list grant him wisdom to do great things with your creation tmux

steel urchin
#

I've yet to fully go away from screen. Haven't had any valid use cases for me to jump over to tmux

low harness
#

Vertical. Split.

#

But maybe screen does that too nowadays?

wet pilot
#

it does

scenic radish
#

Wait, so there's a vertical stack card for my terminal? Dope

low harness
#

And horizontal - which makes more sense on a modern screendisplay

clear ferry
#

Had a customer who had a 38 inch curved desktop display

#

It was awesome

#

But not for me

#

I prefer multiple physical screens

clever mortar
#

Multiple 38" curved 4K displays... 👍

clear ferry
#

I did set up a 9 screen broker machine poc many years ago

#

That was sweet

#

9 X 19" if memory serves right

boreal pewter
#

Mh can't find a good 38" curved 4K display, curious of the price

#

But honestly 1k+€ would be too much 😄

spare gorge
#

Just getting started with HA. What is the best way to make the interface more pleasing? I haven’t done any of my own configuration and am letting the app do it. I have a couple lights and my devices. It it’s quite ugly.

wet pilot
clever mortar
#

And ... take the time to read the channel topics before posting please 😉

steel urchin
#

so amazon owes me about 11k right now to pay for my hourly rate

#

fucking hope they crash and fail

unreal orbit
#

boreal pewter
#

He worked for months for free? 🤣

steel urchin
#

i've about 30k of packages that aren't getting shipped out properly, lost in transit, or whatever... and they literally are doing NOTHIG about it

#

that's only 60 hours for me

#

so... far from months

fallow galleon
#

It's the first time I hear from a seller. so your stock is in their WH?

#

I honestly don't know how it works

steel urchin
#

no i'm a buyer

#

and i couldn't tell you where anything is, no one is helping

fallow galleon
#

😮 30k packages

#

buying

steel urchin
#

new home, furnishing everything from scratch

boreal pewter
#

🤷

steel urchin
#

at least i'm not sleeping on the floor anymore

#

wifey was unhappy about that lol

clear ferry
#

Norwegian post has lost my handcrafted Japanese chef knife

tough vault
#

Hey evurrbuddy, I have a hardware question, embedded style - I got a non-spec keyfob working with my car - Won't work in the ignition, but the buttons for lock, unlock, precondition, panic, etc all work. This is fine. Here's my idea - I want to stuff it in the trunk with a (insert controller here) with a GSM radio and Google Fi SIM, and use it to unlock, lock, and kick on the climate control. So here's the question - What's the best practice for a connection over a metered network to control something like this? MQTT?

clear ferry
#

Thankfully they shipped insured

steel urchin
#

yeah well supposedly i'm getting a refund, but it can take up to 24 days for most of these items since they're very high dollar... and i'm already close-ish to my credit limit

#

and no way i'm going to pay off 30k for items i don't have in my possession

#

first world problems, i know

clear ferry
#

My work credit card has a $50k limit, I have no idea why 😂

steel urchin
#

cuz ballers have to ball!

clear ferry
#

My personal one has $4000

scenic radish
#

i actually have a $50K credit limit on my personal card

fallow galleon
#

@clear ferry you know about whetstone?

clever mortar
#

Work credit card... limit 🤔

scenic radish
#

i just kept asking for credit limit increases every few months and they kept obliging

clear ferry
#

@clever mortar theoretical atleast ThonkEyes

scenic radish
#

eventually it became a game to see how high i could get it

clever mortar
#

I'm not sure mine actually has one, though... if I bought a boat the boss would "have words"

scenic radish
#

took me a while to reach the $50K threshold

fallow galleon
#

I read that higher limit gets your better score.....

clear ferry
#

@fallow galleon about a stone to sharpen knives?

scenic radish
#

it does. lower credit utilization

clear ferry
#

Credit score is such an American thing

scenic radish
#

i am nowhere near the 10% threshold for "excellent"

#

ever

fallow galleon
clear ferry
#

Noice

steel urchin
#

actually it helps your score, but hurts your liability, which means you likely won't get other lines of credit issued with other lines that already have high limits

clear ferry
#

I got the loan for my house alone, 100%, if the wife was to be included I would only have gotten 1/3 😂

#

She earned less than 1/4 of what I earned at the time

clever mortar
#

Yeah, last time we sorted out mortgages, it was easier to not include the wife... which felt bad 🤷

clear ferry
#

I pay everything in our stuff

#

I'm probably old fashioned

steel urchin
#

No that's smart

wet pilot
#

we've are joint on everything but i'm primary on the house and she's primary on the car which is kinda funny because she cares about the house more and i care about the care more

clever mortar
#

We're joint everything, except the mortgage (though joint on the house deeds)

steel urchin
#

I do the same, this is the first time in like 15 years I've had debt, and it's only because I'm not paying a cent for something not in hand

clear ferry
#

These days I'm the only one with income while she finishes her master's though

steel urchin
#

I dunno how my friends don't go insane with their debt pile

wet pilot
#

conditioning?

#

student debt normalizes the feeling

clear ferry
#

Student debt ThonkEyes

amber bramble
#

i'm going insane with my debt pile 🙃

clear ferry
#

Also something very American

wet pilot
#

yep, its bad and everyone should feel bad

amber bramble
#

house, car, new roof, new furnace, student loans, hospital bills

strange vapor
wet pilot
#

ugg, furnace is on our list but we've been hoping it limps along for a few more years

clear ferry
#

Hospital billsThonkEyes

amber bramble
#

ours started shooting fire out the front of it because the heat exchanger had a huge hole in it

#

that was a fun discovery

wet pilot
#

ouch

#

ours is in the attic, would probably set the house on fire before we noticed 😦

amber bramble
#

yeah don't have a baby in america, even after $300/month insurance premiums we still owe the hospital something like $10k

wet pilot
#

got lucky with our insurance for the baby

clear ferry
#

Cost me $40 to have a baby, including five nights at the hospital 😛

wet pilot
#

$0 out of pocket for baby

light trout
boreal pewter
#

lol how that atxblyat

scenic radish
#

@light trout my thoughts exactly lol

amber bramble
#

yeah the furance one was interesting. It melted the wire for the ignitor and shorted it out against the frame, so it got stuck in a cycle of trying to light and start the cycle and then shorting and cutting out, and repeating

#

I found it and threw some electric tape around the wire to get it working and monitored it while it was running

clear ferry
#

Electric furnaceThonkEyes

amber bramble
#

made it through the rest of saturday and most of sunday and on the last run before i shut it off for the night I went out to the garage to check on it and it was blowing fire a few inches out the front of it

#

gas furnace, but electric ignitor

clear ferry
#

You Americans are something special

amber bramble
#

electric furnaces suck

wet pilot
#

"heat pumps" basically runs the AC backwards

#

but i have gas heat

scenic radish
#

yeah electric furnaces are terrible

clear ferry
#

We only have wood ones in Norway, unless you are a multi millionaire, then you might have gas

#

Newer stuff is mostly pellets though

scenic radish
#

gas is very common in the US (at least the midwest)

amber bramble
#

i love heat off of a wood stove

#

but i don't love having to keep a wood stove filled and burning lol

#

my wife grew up in a house with only wood heat

clear ferry
#

We primarily have heat pump

#

But wood when it creeps below -20c

clear mirage
#

I got lucky when i bought my house - a week before i closed the hot water heater started leaking. Sellers replaced it at cost

scenic radish
#

I also got a new water heater shortly before close

#

They also paid for a home warranty which covered 50% of the furnace cost when I needed to replace that within the year

#

$900 for a new 66,000 BTU 80% Lennox furnace

#

Installed

clear mirage
#

Nice. Yea one the things i did was put in water softener system, since we have some hard water where i live. even on city water

scenic radish
#

Thankfully I don't have hard water

#

Good ol' lake Michigan

clear mirage
#

Lol. Yea the thing that sucks that i pay about $60 a month for just me..

scenic radish
#

I'm not sure how much my water bill is since it's rolled into my monthly dues

#

But $145/month for HOA dues is incredibly low so I can't complain

#

(condo, not a house)

clear mirage
#

Ah. Thats not too bad. when i was in a condo mine was $180

clever mortar
#

Water bill... gotta love living in a place where there's no such thing 😉

scenic radish
#

Well technically I do have it, it's just not transparent since it's in the dues

wet pilot
#

lol my HOA dues are 250/year

scenic radish
#

House?

wet pilot
#

they also do jack shit, so there's that

#

yup

scenic radish
#

That's why

#

Condos usually have higher dues because that includes exterior maintenance

wet pilot
#

eh, its still really low for the area

clear mirage
#

but when i sold my condo i used some of the money from the sale to put down on the princaple , my mortage went from $859/month to $644

wet pilot
#

that's why rental companies are snapping up all the houses

#

we're about to lose the ability to have a 2/3rds vote 😄

clear mirage
#

That sucks. No HOA where i live now. which is nice so i can have as many LEDs as i want and no one can complain

#

When i was in my condo, one of the projects they did was re-do the driveways, and do some drainage work, and theres about 60 units, everyone was assed $7000

wet pilot
#

yeah...that would be a dispute 😄

clear mirage
#

one thing they did do was for the new driveways, they did the curb cuts so no bump when pulling in

wet pilot
#

that's nice at least

#

420k actually doesn't sound bad for that amount of concrete work

clear mirage
wet pilot
#

but also sounds like something that should come from the general fund and not a 1-time assesment

scenic radish
#

Eh if there's not enough a special assessment is needed

clear mirage
#

Yea, the units were bulit in the early 90s, so it was time for that kind of major work

wet pilot
#

sounds like poor planning then 😉

clear mirage
#

lol a few years before i moved in there i think it was 2011 or something they just replaced all the roofs, and i belive that came out of the general fund

#

what was annoying though was when i had replace the windows, i had to pay for those, and of couse match the style, which added another couple hundred bucks to windows

wet pilot
#

lol wow, was it actually doing anything anymore? 😛

clear mirage
#

lol i doubt it. my current home was built in 2003. what was happing was that i would turn it on and it would make a buzzing sound

wet pilot
#

hmm, mine is probably original to the house and it was built in 98...add another thing to the list

clear mirage
#

yup. ah the joys of home ownership. I think the furnace was replaced at some point, but proablly next thing to replace will be the ac unit

wet pilot
#

i got the water heater replaced under the home warranty but they didn't want to touch the ac/heater

scenic radish
#

i don't have a garbage disposal

#

neither do my parents. i feel like we're the only people in the US that don't have one

clear mirage
#

ah. one of the goals when i replace the ac unit is that i want to move it a few feet from its current location so i can do my planned addtion

#

i know a few people that dont, its not uncommon

wet pilot
#

heh depending on how the lines are run that could add $$$$$

clear mirage
wet pilot
#

they'll have to re-run the power and refrigerant lines :/

clear mirage
#

where you see the door that leads to garage, i want to do a 10x10 addtioton and come down to the furnace vent, where the bottom window i (which is currently a half bath) and put in a mudroom/laundry room.

#

i have a laundry room but its in the basement which is annoying. I want to the addtion so that i have direct access from the house to the garage

inner vault
#

My old house had laundry on the top floor with the bedrooms which was amazing, now it's in the basement two floors away from the bedrooms, I'm contemplating that reno, but we just did a major kitchen overhaul and need to rebuild some reserves

scenic radish
#

yeah second floor laundry is nice

#

personally, i would prefer a single story house with a basement

#

so really a ranch with a basement i guess

clear mirage
#

yea next house for me. but as long as i have a basement, i'm happy.

wet pilot
#

i would love a basement but they're not common in this area

inner vault
#

I really like walk out basements but those pretty much only exist if you live on a hill haha

scenic radish
#

yeah i wouldn't want a walk-out basement, just a regular one

#

kind of defeats the point IMO

clear mirage
#

What was nice though is that this house came with a finished basement

#

and they used a drop ceiling and not drywall

scenic radish
#

drop ceiling is nice in a basement

#

IMO there's no other way

clear mirage
#

Nope. but the current floor plan is this - I have to go out my garage and enter the house through the main door

fallow galleon
#

Old house here with drywall. I have no way to run ethernet to my TV 😦

inner vault
#

Our basement is poorly finished, drywall ceilings and they used 2x3s as firings making low ceilings even lower =/

fallow galleon
#

That's a weird design. @clear mirage

clear mirage
#

@fallow galleonyup annoying though.

fallow galleon
#

The garage location, AND with no connection to the house

clear mirage
#

Yup. Thats why i want to do the addition

scenic radish
#

yeah at that point it might as well be a fully-detached garage lol

clear mirage
#

My house was actually the spec house for the small sub thats behind me, and when they did the basement they used this cubicle-like materal for the wall, which was odd.

golden salmon
#

hey guys just joined the chat, working on redoing 1 side of a two family. ripped down to studs and power and 200ft of cat 6 installed

clear mirage
golden salmon
#

That would be a nice large addition

#

btw that was 2000ft*

clear mirage
#

yea, then above that i would also like to enlarge my master bath, since it sits right above the the current half bath

scenic radish
#

ah yeah i like that

strange vapor
#

Front part of my place was built in the 30s, and an L shaped extension added in the 80s. Big valley between the original roof and new roof. Seriously considering filling in the valley next year and giving myself an upstairs for an extra bedroom and man cave.

#

And putting in some proper insulation while I'm at it.

scenic radish
#

+1 on the insulation

golden salmon
#

about to get closed cell spary foam in attic and turn it into a room in a 200+ year old split family home

clear mirage
strange vapor
#

Plus some nice triple glazed windows. My mother got them installed down at home last year, and they really make a difference.

golden salmon
#

double hung+

scenic radish
#

i prefer casement

#

better seal

#

although no way to use a window a/c

strange vapor
#

There's a local company doing triple glaze where they put a layer in which fogs up the window if you supply current. A few simple relays, and that could be controlled from some app which shouldn't be mentioned in this channel 😄

fallow galleon
#

Is anyone familiar with AC thermostat wiring? I think I have "C wire" on my AC but I want to make sure before I run it to the thermostat

clear mirage
#

Its amazing how much of a difference new windows make. I know i'm going to have to that in a few years.

wet pilot
#

did that as one of the first things in our place

#

windows and doors

golden salmon
#

@fallow galleon I installed one once a quick google search explained how all of the wires work and how to identify C wire. If i remember correctly it was blue but i would double check

strange vapor
#

In the case of my parents house, the windows that were replaced 30yo single glazed with wooden frames. A sheet of clear plastic would have been an improvment :/

wet pilot
#

22 windows in this place 🤢

fallow galleon
#

@golden salmon The colors are all messed up.....

golden salmon
#

@strange vapor applying plastic over old windows today after work

scenic radish
#

@golden salmon it's not always blue, color doesn't mean anything

#

@fallow galleon trace it back to where it's at on the furnace control board

fallow galleon
golden salmon
#

@fallow galleon is that the control board side?

scenic radish
#

see what's connected on the furnace control board

golden salmon
#

find one connected to the transformer

fallow galleon
#

This is AC side. The control is upside down inside the unit.

#

Not connected to furnace.

strange vapor
#

I have to upgrade the heating system as well. Currently using an oil burner, and the boiler is older than I am. Just upgrading the boiler would probably be a big help, but looking to see what more sustainable option I can put in.

clear mirage
#

@wet pilot i have 11 windows in mine. and they're all casement except for 2 which are a double hung.

strange vapor
#

The way planning permission is going here, if you're doing any extension to a house, you have to be increasing the efficiency of the house as well. Which is fair enough, but they can carry it too far.

fallow galleon
#

@golden salmon From the drawing on the manual, I think one of the wires going to the conpressor is the C wire, but I want to measure it to ensure.

clear mirage
#

Yea that process i'm not looking forward too, i actually went to school for architecture so i have some background knowledge about that kinda stuff. but heres a iso view of the addtion

golden salmon
#

somewhat of a frontend newbie here. What do you use to make the mockups?

#

blender?

clear mirage
#

I used google sketchup

golden salmon
#

cool looks nice

strange vapor
#

@clear mirage How are the house built where you are? Woodframe? Brick?

clear mirage
#

@strange vapor I'm in michigan, so typically wood framing.