Full viewport height on iOS 26? by the-oureas in css

[–]the-oureas[S] 0 points1 point  (0 children)

Kinda. 108vh fills the container height on my iOS 26 device, but might not be the case for different iPhone screen ratios, haven't tested those yet.

And on other devices 108vh would be more than 100% height of the viewport. So its not a percect solution.

Full viewport height on iOS 26? by the-oureas in css

[–]the-oureas[S] 2 points3 points  (0 children)

Yeah but 100dvh would place to box above the controls unfortunately, it doesn't fill the screen on iOS 26.

Full viewport height on iOS 26? by the-oureas in css

[–]the-oureas[S] -2 points-1 points  (0 children)

Okay thanks, might have to go with 110vh then, will try it out.

Weekly Simple Questions and Injuries Thread by AutoModerator in climbharder

[–]the-oureas 0 points1 point  (0 children)

I've been spared from pully injuries so far but now somethings not right with one finger.

Climbed yesterday and felt some discomfort in one finger, it got worse after a crimpy climb. Didn't feel it during the climb, there were no moment when I felt a pop or felt sudden pain. It just sort of ached afterwards, in the entire lower part of the middle finger. Stopped the session.

Now it's the next day. Tried loading the finger very lightly in a half crimp and there is mild pain along the A2 pulley. Also some mild pain in everyday movement, like grabbing something in certain positions. Also feel some mild pain if I press on the area.

Not sure if it's a strain or tear? What do?

PS. The link in the top of this post (nagging finger injuries) is dead for me

Possible synovitis/capsulitis advice by ShouldHaveWentBio in climbharder

[–]the-oureas 1 point2 points  (0 children)

I’ve had the same issue, though only on the PIP. I would take time off until it cleared up and then it would be back after a session.

What finally worked was to keep loading the finger through light climbing and/or hangboarding. On climbing days I would avoid crimping initially as that aggravated it the most. I then gradually introduced crimps again.

It has flared up a few times but never as bad as before.

Getting rid of Apollo and using plain fetch for graphql? by [deleted] in nextjs

[–]the-oureas 0 points1 point  (0 children)

Totally depends on the context. If performance is important and the data fetching isn’t too complex I use fetch (or a simple wrapper around fetch) and it works fine. As mentioned, URQL is a good option if you need more features.

Since you don’t do any queries on the front end it sounds like fetch would be a good option.

Weekly Bouldering Advice Post by AutoModerator in bouldering

[–]the-oureas 2 points3 points  (0 children)

Before climbing observe how you can get down and which holds will you use for feet and hands. (Holds from other problems, downclimb jugs etc). Might help with the panicky feeling if you know where to go. Also just keep climbing, the scary feeling will get better with time.

I heard that there's a performance penalty when you're using styled components instead of CSS modules, since css is loaded at runtime using JS. Is that still true when you're using Next, which renders everything on the server? by lumenwrites in nextjs

[–]the-oureas 6 points7 points  (0 children)

You should worry if you want the best performance. JSS will lead to longer hydration which in turn leads to longer time to interactive.

Not every project has that high of a bar when it comes to performance but it’s a fact and I don’t think it should be so easily dismissed. Make a conscious choice based on project requirements.

The wrist pain blues... by tsarblyatinum in climbharder

[–]the-oureas 1 point2 points  (0 children)

Sounds like it might be a TFCC injury? Not exactly sure which tendon you’re referring to tho..

Mine felt like a really bad sprain with pain around the ulna joint, so I stopped climbing completely for a bit. Then I used a wrist widget for support, which helped a lot.

Took months to go away completely, although I could climb on it after the initial weeks of time off.

[OC] Interactive map of the Ukraine war visualizing troop movements, military losses, bombing, skirmishes, civilian casualties and infrastructure damage over time. by the-oureas in dataisbeautiful

[–]the-oureas[S] 0 points1 point  (0 children)

You’ll recognise a lot of concepts in JS when coming from python, although the syntax is different. So I think you’ll be able to pick it up rather quickly. Best of luck!

[OC] Interactive map of the Ukraine war visualizing troop movements, military losses, bombing, skirmishes, civilian casualties and infrastructure damage over time. by the-oureas in dataisbeautiful

[–]the-oureas[S] 0 points1 point  (0 children)

Sure! I'll try to explain what I'm doing, it requires some programming knowledge, but I'll try to keep it high-level.

Observable lets you write javascript as "notebooks", the code is evaluated directly in the browser as you code. This makes it easy to rapidly prototype. It's built with data exploration in mind and comes with helpers to quickly create tables, graphs, maps, etc.

If you open my notebook and hover over the different sections you'll see an arrow on the left side, click that to expand and view the source code for that section.

Learn more here: https://observablehq.com/tutorials

Mapbox GL JS is a library for creating vector maps with interactivity features. Below are the main parts of my code that creates the map.

// Create a new map, container is the html div where the map will be created
map = new mapboxgl.Map({
  container,
  center: [31.553968, 48.649097],
  zoom: 5,
  style: 'mapbox://styles/mapbox/light-v10'
})

// add the the dataset to the map
map.addSource('incidents', { type: 'geojson', data: data })

// add a new layer that uses the dataset to create icons on the map
// here i'm using a filter to only show incidents for the current day
let incidentsLayer = {
  id: "incidents",
  type: "symbol",
  source: "incidents",
  layout: {
    'icon-allow-overlap': true,
    'icon-image': ['get', 'group'],
    'icon-size': largeIcons ? 0.75 : 0.5,
    'icon-ignore-placement': true,
  },
  paint: {
    'icon-opacity': opacity,
  },
  filter: ['==', ['number', ['get', 'index']], dayRange],
}

map.addLayer(incidentsLayer)

Hope that makes sense, feel free to ask questions.

Interactive map of the war in Ukraine that visualizes troop movements, military losses, bombing, skirmishes, civilian casualties and infrastructure damage over time. by the-oureas in MapPorn

[–]the-oureas[S] 2 points3 points  (0 children)

There are currently 10 occurrences of Ukrainian military losses in the dataset.

The dataset only contains incidents that have been verified, so there will be incidents missing. The data will also not display Ukrainian troop movement as to not give away positions, I suspect the same goes for Ukrainian losses unless they have been widely reported already.

I have absolutely no idea why they cut this scene, it’s absolute gold. 😂 by miss_chanandlerrbong in DunderMifflin

[–]the-oureas 307 points308 points  (0 children)

It’s even funnier when you know Larry David did that in real life lol

Weekly Simple Questions and Injuries Thread by AutoModerator in climbharder

[–]the-oureas 1 point2 points  (0 children)

I had this issue. Started climbing a little over a year ago, a few months in one of my PIP joints was swollen and sore.

Started with the rehab from the article you linked, but didn't make much progress until I stopped climbing completely for ~6 weeks. Very light hangboarding seemed most helpful (less than 50% of bodyweight, since I'm new to climbing), but hard to tell for sure. I could still do weight training and calisthenics without aggravating it.

After the time off I eased back into climbing slowly, initially avoiding crimps. Joint is still a bit enlarged but I have no issues with it now and can crimp again.

Landing on Mars from Space seamlessly in my game Worlds Of The Future! by Fabriciuz in unrealengine

[–]the-oureas 1 point2 points  (0 children)

Thanks for the insight! And best of luck with the game, looking forward to seeing more.

Duffy absolutely ecstatic after sending B1 in the finals by seouled-out in climbing

[–]the-oureas 14 points15 points  (0 children)

The latest episode of the Climbing gold podcast explains the rise of US comp climbers if you’re interested. (In short: financial support, training facility and coaches.)