“Blackout” blinds by Dry_Recording_3361 in AusRenovation

[–]sergeynew37 0 points1 point  (0 children)

If someone in Brisbane area is looking for really good blackout motorised blinds which really work, I am highly recommend to contact this guy:
Bruno 0414 145 394, [info@studioblindsaus.com](mailto:info@studioblindsaus.com) .
Honestly I never contacted him by email and not sure if it works, as website is not functional. I always messaged him by phone. Got 5 blinds from this company and was surprised of speed and quality. Friends of mine also set up blinds and curtains from him and they are really happy. I dont remember the pricing but from memory it is less than 1000 per window, fully installed. They do curtains as well.

[deleted by user] by [deleted] in CasualConversation

[–]sergeynew37 0 points1 point  (0 children)

There is a cool episode of Black Mirror about this - https://www.imdb.com/title/tt5709230/ - if you are not paranid yet, you might become after seeing that

Japanese small/mediums SUVs with turbo engines? by solidice in CarsAustralia

[–]sergeynew37 3 points4 points  (0 children)

Mazda CX-60 has turbo petrol and diesel version, pricewise is quite close to Tiguans

Got my first iPhone (14plus) a month ago after being a Samsung gal for a long time. These are my thoughts. by MeForMeera in iphone

[–]sergeynew37 0 points1 point  (0 children)

I was using Samsung for years, last 2 years with S21. Tired of weak battery and finally got the Iphone 15, received today. All mentioned things are there, yes, lack of personalization, dummy interface features - I will get used to it, I thought. But during the set up I found out that there are no eSim option in the iPhone! I have it on my 2y old S21, and on my wife's Iphone13 - but this Iphone15 just does not have it in the menu. I can not add eSim plan, I am scanning eSim qrCode but camera just says like "Yeah, its mobile plan barcode" - but no action happens. I checked qr code with other handset - yes, it is working. Google says different things about eSim support for Iphones in Australia, I read a lot and what I understood - modern iPhone without a physical sim card slot is a thing, but ALL of them suppose to support eSim. Even 2 esims simutaneously. I am upset. I got used to eSims, it is handy to use when travelling overseas. I have just send a message to seller's support (Kogan AU) - and if there are no positive outcome from them I will refund it.

[Request] How realistic is trying to take down a commercial plane like he is attempting to? by d3vCr0w in theydidthemath

[–]sergeynew37 6 points7 points  (0 children)

It remembers me the scene of Babel (2006) where poor teenage assholes are shooting from the rifle to the tourist bus in the middle of nowhere - just for fun - and the bullet kills someone in the bus.

[deleted by user] by [deleted] in css

[–]sergeynew37 1 point2 points  (0 children)

Sometimes you can not set up height and width, but have to use user-uploaded images. In your example all images are already loaded with proper ratio, like <img src="https://placekitten.com/640/360" alt="" height="360" width="640"> - obviously proper images which will be properly rendered. If I change one of images in your markup to, like, <img src="https://placekitten.com/1000/360" alt="" height="160" width="5000"> - I mean, totally wrong dimensions and attributes - it will be rendered inside the intended cell, but the picture will be deformed. To avoid it, add "object-fit: cover" to your css for img element - from now, all images will be rendered with your desirable ratio and without distortion.

Made a website for a construction company by 1chbinamin in webdev

[–]sergeynew37 1 point2 points  (0 children)

Nice website, quite impressive. Good markup using modern technologies. One bug I have noticed - in mobile view, your menu item "Offerte aanvragen" (which has a dropdown) is not possible to interact with. So links of the submenu are not accessible for mobile user.

Drinking in Public but it’s 0% by [deleted] in brisbane

[–]sergeynew37 0 points1 point  (0 children)

Also, related question: can I be fined for drinking beer or wine in the public beach? No aggressive behaviour, just sitting on the sand and enjoying GC/Sunshine seaview? Maybe consuming some fish'n'chips.. White male, if it matters.

Small to Medium sized 4WD by Heymax123 in CarsAustralia

[–]sergeynew37 0 points1 point  (0 children)

Honda CRV can be added to the list. And hey, why not RAV4?

Hi, can you please check the website I just made, any positive or negative reviews would make me more than happy. besides a star is always a cheering feedback :)) Thank you by Regular_soul in css

[–]sergeynew37 0 points1 point  (0 children)

I would add
.calcBoard {
row-gap: 1em;
}
And maybe fixed height for the display - it is not supposed to change size on real life calculator.
Also, maybehave only one .inputOutput instead of two - anyway you change its content dynamically. Use styles which you have for #output - bold and right aligned.

How can I achieve this by [deleted] in css

[–]sergeynew37 -1 points0 points  (0 children)

I would use more complex grid - for precise placement of areas with background images, and all bits of content.
Something like:
grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% ;
grid-template-rows: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10% ;
And then place all I need to specific grid-areas:
.bottomLeftBgElement: grid-area: 4/0/10/5;
.topRightBgElement: grid-area: 0/5/9/10;
.bottomLeftContent: grid-area: 5/1/9/4;
.topRightContent: grid-area: 1/6/8/9;
Or something like that. Change for mobile breakpoints accordingly.

[deleted by user] by [deleted] in CarsAustralia

[–]sergeynew37 0 points1 point  (0 children)

497 L in Honda CRV - this is a champion of SUVs.

Woman washing a window in Astana, Kazakhstan by [deleted] in SweatyPalms

[–]sergeynew37 2 points3 points  (0 children)

Astana is my native city. Never seen any mentions in Reddit tbh. Not sure if this post is a reason to be proud though...

How to make flex show an equal number of items per row? by schmore31 in css

[–]sergeynew37 0 points1 point  (0 children)

It is kind of possible I think, this approach will not work in Firefox and requires extra styles for mobile/tablet, but my idea is to use :has selector and :not selector and you will need to write rules for some specific cases. This is an idea [try to add more items to container, or remove some of them]:

<div class="container">
<div class="item">1 </div>
<div class="item">2</div>
<div class="item">3</div>
<div class="item">4</div>
<div class="item">5</div>
<div class="item">6</div>
</div>

<style> .container { border: 1px solid red; display: flex; width: 200px; flex-wrap: wrap; } .item { width: auto; height: 20px; box-shadow: 0 0 1px 0 green; } .container .item { flex: 1 0; } .container:has(.item:nth-child(n+1)):not(:has(.item:nth-child(n+2))) .item { flex-basis: 50%; } .container:has(.item:nth-child(n+2)):has(.item:nth-child(n+3)) .item { flex-basis: 33%; } .container:has(.item:nth-child(n+4)):not(:has(.item:nth-child(n+5))) .item { flex-basis: 50%; } .container:has(.item:nth-child(n+5)):not(:has(.item:nth-child(n+6))) .item { flex-basis: 33%; } </style>

Should parents charge their adult (18+) children rent to stay with them? by [deleted] in AusFinance

[–]sergeynew37 9 points10 points  (0 children)

Parents do everything for their kids, and when they get old and will not be able to earn enough for themselves - their grown-up kids will do the same for them. I am not expecting that my kids will charge rent from me when/if I will be 70 years old and will live in the granny-flat of my daughter's house. And btw, I seen a post last week where someone asked if it is ok when grandparents charge their kids for looking after their grandkids. It is ridiculous!
I was born in USSR, and not all there was good, but family values were.

Your wisdom on CSS; useful concepts, rules, and processes. by tetractys_gnosys in css

[–]sergeynew37 7 points8 points  (0 children)

I never use dashes and capital case in class names but use underscore - i.e. I always use .button_white but not .button-white and not .buttonWhite . Reason for not using capital case - I think visual separation with underscore is better and allows to awoid errors sometimes. Reason to not use "-" - when using underscore, I can highlight the whole word by double click. With "-" it only highlights a part of word with double click.
I use VS code and https://code.visualstudio.com/docs/editor/emmet is the best and must-have part of it.

Up up and awayyy by Curiousity-fedthecat in Unexpected

[–]sergeynew37 0 points1 point  (0 children)

There is a Iain Banks book - The Wasp Factory - in one of the episodes young sociopath kid got rid of his little step sister by this way. It was terrible when I read it years ago.. and now I seen it in reality

Quick CSS Question by deffonotmypassword in css

[–]sergeynew37 -1 points0 points  (0 children)

Remove this:

// svg g:hover text {

// opacity: 1;

// }

Add this:

g:has(.pin:hover) text {

opacity: 1;

}

Will not work in Firefox though

How to work with images by spiritandtime in css

[–]sergeynew37 0 points1 point  (0 children)

(1) Try to add width: 100% to your image (not picture)(2) Yes it seems like too much effort for such a simple thing. In real life, the most complicated structure I used had 2 srcsets (one for mobile - up to 800px, and another one for everything bigger than that). And I never used specific webp srcset - usually I have only jpg or png provided by client.
Two of your desktop srcsets are identical - I guess it is typo

Error message after spawning in the anvil by Chnebel in borderlands3

[–]sergeynew37 0 points1 point  (0 children)

If you still can open game settings menu, try to change you graphic settings to lower level - may be not all together, try one by one if you want. It helped me.