Masthash

#Grid

ppk 🇪🇺
1 day ago

So #css #grid template definitions can have fixed values (100px, 30%) or flexible ones (fr).

I see the auto value as a flexible one, even though it isn't called that in the spec.

Objections?

CelloMom On Cars
1 day ago

Build, baby, build.

"To get on the path to #NetZero, we must rebuild most of the physical energy #infrastructure of this country. And we need to do it with unprecedented speed.

It took us about 150 years from the days of Edison,Tesla, and Westinghouse to build today’s #grid. Now we have to double the grid’s electricity generation, using only new, clean resources, in just three decades."

#EnergyTransition
https://www.motherjones.com/environment/2023/04/electrify-everything-scope-data/

IT News
4 days ago

Vehicle-to-Grid Made Easy - As electric cars continue to see increased adoption, one associated technology tha... - https://hackaday.com/2023/05/25/vehicle-to-grid-made-easy/ #electricvehicle #vehicle-to-grid #vehicle-to-home #batterypack #greenhacks #opensource #inverter #battery #modbus #grid #can #ev

#numpy feels a bit like another, harder, language to learn beyond #python :(

A first attempt at a "sand simulator" but it seems too hard...
#py5 #Processing #creativeCoding

import numpy as np
import py5

def setup():
global grid
py5.size(500, 500)
grid = np.zeros((py5.width, py5.height), dtype=bool)

def draw():
py5.set_np_pixels(grid * 255, 'L')
update_grid()

def update_grid():
for i in reversed(range(grid.shape[0]-1)):
row, next_row = grid[i], grid[i+1]
sand = row == 1
next_row_empty = next_row == 0
falling = sand & next_row_empty
row[falling] = 0
next_row[falling] = 1

def mouse_dragged():
x = py5.mouse_x % py5.width
y = py5.mouse_y % py5.height
if py5.is_key_pressed:
grid[y-2:y+3,
x-2:x+3] = 1
else:
#grid[y, x] = 1
grid[y][x] = 1

py5.run_sketch()

#numpy feels a bit like another, harder, language to learn beyond #python :(

A first attempt at a "sand simulator" but it seems too hard...
#py5 #Processing #creativeCoding

import numpy as np
import py5

def setup():
global grid
py5.size(500, 500)
grid = np.zeros((py5.width, py5.height), dtype=bool)

def draw():
py5.set_np_pixels(grid * 255, 'L')
update_grid()

def update_grid():
for i in reversed(range(grid.shape[0]-1)):
row, next_row = grid[i], grid[i+1]
sand = row == 1
next_row_empty = next_row == 0
falling = sand & next_row_empty
row[falling] = 0
next_row[falling] = 1

def mouse_dragged():
x = py5.mouse_x % py5.width
y = py5.mouse_y % py5.height
if py5.is_key_pressed:
grid[y-2:y+3,
x-2:x+3] = 1
else:
#grid[y, x] = 1
grid[y][x] = 1

py5.run_sketch()

code and a black window with white pixels accumulated in the lower part a bit like an histogram or a landscape with a mountain and some spikes (towers?) on top
Egor Kloos
1 week ago

#CSS #Grid #Masonry layout on #Safari TP (v170) is a lot better, but still some issues with switching the columns layout within Grid.
https://codepen.io/dutchcelt/pen/PoRKQob

CelloMom On Cars
1 week ago

@CareyontheRoad

Some days the news is grim. But here is a piece of cool news:

"[Dutch] #offshore #wind farms close to Borssele and Egmond aan Zee were powered down to a maximum of just two rotations per minute on May 13.

[#Migration models] provide predictions about when and where #birds will be, two days in advance, [giving] #grid operator TenneT time to guarantee the #stability of the high-voltage grid."

#RenewableEnergy #EnergyTransition
https://www.cnbc.com/2023/05/17/dutch-claim-international-first-as-north-sea-offshore-wind-farms-powered-down-to-protect-migratory-birds.html

isaac
2 weeks ago

Globally, the movement to electrify every building and transition the #grid to cleaner #energy is underway. But it is extremely unorganized, and disorganization is a bad fit for such a large infrastructure system -- the natural gas #pipeline network.

With Climate and Community Project i propose that we think about nationalizing the gas system when the #utilities begin to sell their pipelines, and use ownership to implement a managed transition.

https://www.climateandcommunity.org/building-decarb-natural-gas-problem

brad m
2 weeks ago

Biden’s got a plan for ramping up #energy #transmission
“Now the question is how much of the plan can be passed through a politically fractured #Congress — and if the answer is none, how much of the plan can be pushed through via executive actions” https://www.canarymedia.com/articles/transmission/bidens-got-a-plan-for-ramping-up-energy-transmission #grid #infrastructure #permitting #energytransition #wind #solar #cleanpower #decarbonization #DOE #FERC

@Moon if you need #Tensor core performance or raw #CUDA power, you'll basically only have #PNY since they are the sole manufacturer fir #Tesla, #Quadro & #GRID GPUs.

CelloMom On Cars
2 weeks ago

But are the #FossilFuel focused Tories up to the task?

"The report warned that #NationalGrid was struggling to cope with the number of new #CleanEnergy projects applying to connect to the #grid, which have surged to 50 a month from 50 a year over the last decade leaving many projects with a 10 to 15-year wait to provide the #UK #energy system with clean electricity."

#EnergyTransition
https://www.theguardian.com/uk-news/2023/may/15/uk-could-unlock-70bn-a-year-in-renewable-energy-report-claims

Kevin :ve:
3 weeks ago

The US #DOE to allow designation of “National Interest Transmission Corridors (NIETS)” for rapid development of the required expansion of the power grid to allow clean renewable energy to be shared throughout the country. The Biden admin targets 2035 for zero emissions electricity.

#energy #climate #climateemergency #climatecrisis #grid

https://www.power-grid.com/td/us-doe-seeks-info-on-where-transmission-is-needed-most-and-how-to-build-it-quickly/

Jaap Burger
3 weeks ago

400 MW of additional capacity to connect renewables to the distribution grid - flex as a suitable non-wires alternative, demonstrated by 🇬🇧 grid operator UK Power Networks (splitting into a 'wires company' and a legally separate system operator)

#grid

https://www.ukpowernetworks.co.uk/news/uk-first-large-scale-flexibility-product-enabling-more-green-power

André Koot 🐧
3 weeks ago

René Rindermann, CISO of E.ON shows the challenges caused by the energy transition.

#eic23 #eic2023 #digitalidentity #grid #idpro

Josiah Winslow
3 weeks ago

I first learned of the grid-template-rows #CSS trick from a #YouTube video by Kevin Powell. https://www.youtube.com/watch?v=B_n4YONte5A

This works by transitioning a one-row #grid layout's height from 0fr to 1fr.

I used to use a max-height trick for the same effect. But this is better.

Leschmaltz
3 weeks ago

The way to fix this is simply to harden the #grid. We have to run our economy on #electricity, and the grid has to be resilient enough that it stays on even when the weather is bad. We have no other choice. Making everyone buy generators or batteries is a horrendous tax on the poor we can’t afford. #ElectrifyEverything #ClimateChange #Equity https://www.nytimes.com/2023/05/06/business/energy-environment/backup-power-generators-climate-change.html

George Wiman
4 weeks ago

Posted for reference: EVs won't overload the grid (and the grid is being improved while we're building them).

To simplify, ask yourself what the radiator in an ICE car is for. And what the brakes do with the momentum you paid for, when you use them.

#ICE #EV #Grid https://cleantechnica.com/2021/10/30/no-evs-arent-going-to-overload-electric-grids/

Threadbane
1 month ago

#texas #grid
Metaphorically speaking, the evil leader of TX have sent children down to work in the mines again, as nothing is done to repair their rickety power grid or even tap into functioning power grids in other states, not even to save people's lives. They allow bitcoin miners free rein to suck up all the energy they want on the cheap. Climate change denial, financial chicanery, unbridled capitalism, and bribery. It's a whole nother country.
https://theweek.com/in-depth/1022698/how-voracious-bitcoin-mining-is-messing-with-texans?utm_campaign=afternoon_newsletter_20230417&utm_source=afternoon_newsletter&utm_medium=email&refid=565376B6D89C5E5A0C7738AE7F171B55

AI6YR
1 month ago

Groups are suing #FEMA for helping to rebuild Puerto Rico's #power #grid without instead going towards #renewable power, saying FEMA did not consider options like "rooftop solar, which is cheaper and more widely distributed, and can better endure intense storms. " https://www.washingtonpost.com/climate-environment/2023/04/11/puerto-rico-power-grid-lawsuit-fema/?utm_source=mastodon&utm_medium=mastodon

Fabrizio Calderan
1 month ago

For absolutely no reason here is a hexagon made of responsive hexagons in #CSS, using #Grid layout, variables and trigonometry!

The magic is ✨
aspect-ratio: calc(1 / cos(30deg));

https://codepen.io/fcalderan/full/YzJVvBx

A hexagon made of 19 smaller hexagons.
Mr Rikxx
1 month ago

PlayStation Plus Monthly games for May are:

Grid Legends
Chivalry 2
Descenders

#PlayStationPlus #playstation #grid #chivalry #descenders

PlayStation Plus Monthly games for May
Colin aka ManiacalV
1 month ago

I have a DIV container. Inside that are a series of DIVS, one for title and one for form input.

The container is set to #css #grid and I'm using 2 cells per row.

I want to zebra stripe this, but also use @media to change to display:block and remove a border, so it will collapse and look pretty on phones.

Is this the best way to do this or am I being overly stupid?

Daniel AJ Sokolov
1 month ago

A couple of years ago, #Yukon #Energy Corp wanted to build a gas power plant. That was turned down by the government for political reasons.

Inevitably, Yukon Energy needed to find other sources for #electricity. The Territory is the fastest growing part of Canada but not connected to the North American power #grid.

So they're renting more and more diesel generators. I doubt that's better than a gas power plant.

https://www.cbc.ca/lite/story/1.6821291

CelloMom On Cars
1 month ago

Where local change can bring #SystemChange:

"The theory of #bottlenecks could amount to a hopeful strategy for supercharging the fight against #ClimateChange."

Upgrading one crucial #interconnect can strengthen the entire #grid, for instance.

"The same logic can also be applied to #FossilFuel infrastructure, but in the opposite direction. One argument for protesting against oil and gas #pipelines is that they’re bottlenecks."

#ClimateSolutions
https://www.newyorker.com/news/annals-of-a-warming-planet/the-climate-solutions-we-cant-live-without

Graphic, pile of ashen blobs at the bottom, flowers at the top, connected by a bottleneck. If you read the article the graphic makes total sense, otherwise it's just a pretty thing to catch your eye.
Dr Chris Clack
1 month ago

#EarthDay aka my daughter’s birthday is another reminder to keep up getting #cleanenergy on the #grid. We can’t let them (all children everywhere) down, we can’t fuck this up; we have to achieve #netzero!

JustBlameWayne Social®
1 month ago

@patriotgirl

The #World’s Most Powerful #Tidal_Turbine’ starts to #Export #Power to the #Grid | A tidal turbine weighing 680 metric tons and dubbed “the world’s most powerful” has started grid-connected power generation at the European #Marine_Energy Centre in #Orkney, an #archipelago located north of mainland #Scotland.

The news marks another major step forward for the U.K.’s nascent marine energy sector.

In an announcement Wednesday, Scottish engineering firm Orbital Marine Power explained how its 2 megawatt O2 turbine had been anchored in a body of water called the Fall of Warness, with a subsea cable linking it to a local electricity network on land.

It’s expected that the turbine, which is 74 meters long, will “operate in the waters off Orkney for the next 15 years,” the company said, and have “the capacity to meet the annual electricity demand of around 2,000 UK homes.”

https://www.cnbc.com/2021/07/28/worlds-most-powerful-tidal-turbine-starts-to-export-power-to-grid-.html

JOBS FOR ALL WORLDWIDE!

CONNECT Today for EARLY #INVITE. TastingTraffic LAUNCHING SOON! WELCOME TO THE FUTURE OF ADVERTISING! | If it Tastes Good, You Gotta LOVE IT! (Patent Pending). Upon launch all will be notified.

JOIN TODAY: Come visit one of the 1ST DECENTRALIZED SOCIAL NETWORK ON THE PLANET. https:/WithBrains.com/@DavidV

* Software Architect (PhD) Supervisor
* 25 Years EXPERT BLACK BOX TESTER
* Founder of SEO (Search Engine Optimization)
* Founder of RTB (Real Time Bidding)
* Founder of HFT (High Frequency Trading)

https://Withbrains.com/@Davidv ® (Decentralized SOCIAL Network | Signup for Early Invite);
https://TastingTraffic.net ® (#International_Tech_News);
http://JustBlameWayne.com ® (Just Blame Wayne & Post it);
http://Davidv.TV ® (Big Faith | Christianity RAW 101) are not affiliates of this provider or referenced images used. This is NOT an endorsement OR Sponsored (Paid) Promotion/Reshare.

@patriotgirl@liberdon.com 

The #World’s Most Powerful #Tidal_Turbine’ starts to #Export #Power to the #Grid | A tidal turbine weighing 680 metric tons and dubbed “the world’s most powerful” has started grid-connected power generation at the European #Marine_Energy Centre in #Orkney, an #archipelago located north of mainland #Scotland.

The news marks another major step forward for the U.K.’s nascent marine energy sector. 

In an announcement Wednesday, Scottish engineering firm Orbital Marine Power explained how its 2 megawatt O2 turbine had been anchored in a body of water called the Fall of Warness, with a subsea cable linking it to a local electricity network on land. 

It’s expected that the turbine, which is 74 meters long, will “operate in the waters off Orkney for the next 15 years,” the company said, and have “the capacity to meet the annual electricity demand of around 2,000 UK homes.”

https://www.cnbc.com/2021/07/28/worlds-most-powerful-tidal-turbine-starts-to-export-power-to-grid-.html

JOBS FOR ALL WORLDWIDE! 

CONNECT Today for EARLY #INVITE. TastingTraffic LAUNCHING SOON! WELCOME TO THE FUTURE OF ADVERTISING! | If it Tastes Good, You Gotta LOVE IT! (Patent Pending). Upon launch all will be notified.

JOIN TODAY:  Come visit one of the 1ST DECENTRALIZED SOCIAL NETWORK ON THE PLANET. https:/WithBrains.com/@DavidV
Earth Notes
1 month ago

Second Enphase AC Battery Home Storage (2021-09-15) - And then there were two! 40 minutes to double our grid-coupled storage. #storage #grid #selfConsumption - https://www.earth.org.uk/Enphase-AC-Battery-2.html

Wind power is soaring. A new report forecasts that global wind energy capacity will exceed 1 terawatt (TW) by the end of 2023 and double to 2 TW by 2031. The report also highlights the challenges and opportunities of integrating wind power into the grid, such as transmission and interconnection.

#windpower #terawatt #grid

https://electrek.co/2023/04/14/global-wind-energy-will-exceed-1-tw-by-the-end-of-2023/

Felipe 🛸
1 month ago

What about if we bring this guy back as a visual AI interface model? 🤪

#AI #robotics #grid #interface #redeemtime #code #UI #GUI

Definitely Dr Dieterlen
1 month ago

I'd be a lot more panicked about AI taking over the world if I had reliable internet, cell service, and power grid. Maybe one out of three?

#ai #aihype #grid

Hypx
1 month ago

We can avoid this by switching to hydrogen powered vehicles. At some point, de-copperization will be necessary, and that means even the power grid will have to be scaled back in favor of less resource intensive and hydrogen supported microgrids.

#hydrogen #greenhydrogen #renewablehydrogen #fuelcell #FCEV #hydrogencombustion #grid #powergrid #microgrid #copper #EV #BEV

IT News
1 month ago

New Renewable Energy Projects Are Overwhelming US Grids - It’s been clear for a long time that the world has to move away from fossil energy... - https://hackaday.com/2023/04/17/new-renewable-energy-projects-are-overwhelming-us-grids/ #grid-scalestorage #hackadaycolumns #renewableenergy #gridstorage #solarhacks #solarpower #powergrid #windpower #energy #grid

Lemmy
1 month ago

For anyone who is making beats and has access to a Norns, the script Cyrene by 21echoes is really interesting.

It's a port of the Mutable Instruments Grids code, which auto-generates beat patterns. The author has added a new shuffle mode which takes normal drum machine (or human-played) shuffle to a whole different level. You can get some nice dragged-style beats and other unusual rhythms.

I made a DIY Norns a while back, and a matching Grid.

https://llllllll.co/t/cyrene-a-drum-sequencer-based-on-mutable-instruments-grids/31648/127

#beats #norns #drum #grid

A home-made Norns music computer, based on a raspberry pi, with custom bamboo enclosure.
Also a matching DIY Grid midi controller, also made using bamboo.
CelloMom On Cars
1 month ago

"The Biden administration has approved a major high-voltage power line designed to deliver #renewable #energy from the Mountain West to population centers in the #Southwest. "

#Grid #EnergyTransition #Montana
https://www.kunc.org/regional-news/2023-04-16/feds-greenlight-major-transmission-line-that-will-deliver-wyoming-wind-power-to-the-southwest

oneguynick
1 month ago
Amber Weinberg
2 months ago

TIL we can pile stuff on top of each other in the same grid cell w/o absolute positioning?!

https://web.dev/6-css-snippets-every-front-end-developer-should-know-in-2023/#3-grid-pile

#css #grid #frontend #development

Inautilo
2 months ago

#Design #Inspirations
How web designers can be inspired by architecture · The similarities between the world of architecture and the world of digital design https://ilo.im/11rrzm

_____
#DesignPrinciples #Architecture #UxDesign #UiDesign #DigitalDesign #WebDesign #VisualRhythm #Grid #Typography #Font #Color #Light

@ppk this is why I refuse to learn grid; table layouts still take up half my brain

#flexbox #grid #css

ppk 🇪🇺
3 months ago

Since I'm now writing #css #grid and revising #flexbox, there will come a time pretty soon where I'll have to keep both systems in my brain's RAM at the same time. That means there will be little room for anything else.

ppk 🇪🇺
3 months ago

Writing outside for the first time in too many months.

That also means that I'll be working on new chapters for the #css book instead of revising old ones.

And that means I have to continue with #grid Sigh ... I like grid, but it's such a HUGE topic.

On the positive side, if this chapter is done the entire layout part of the book will exist in some form.

Suggestion for igx-grid group by row template #development #IgniteUI #Angular #Grid #FOSS 🤘💻 @infragistics @KonstantinDinev

https://github.com/IgniteUI/igniteui-angular/issues/12752

These simple changes can make #AI #research much more #energy efficient

"They found that #emissions can be significantly reduced if #researchers use #servers in specific geographic locations and at certain times of day. Emissions from training small #MachineLearning models can be reduced up to 80% if the training starts at times when more #renewable #electricity is available on the #grid, while emissions from large models can be reduced over 20% if the training work is paused when renewable electricity is scarce and restarted when it’s more plentiful."

https://www.technologyreview.com/2022/07/06/1055458/ai-research-emissions-energy-efficient/

Thiemo Fetzer
3 months ago

What is the #EnergyPriceGuarantee?

#EnergyPrices are regulated in the UK by Ofgem which sets a cap two things:

Unit rate = price for each unit of #electricity and #gas.

Standing charge = how much you have to pay to be connected to the #grid.

The standing charge you have to pay even if you dont use any electricity or gas.

Ofgem announced a huge increase in the cap because - well, #Putin and #ukraine

The UK government intervened. They "capped" the cap.

Well, only the unit rate.

Unit rate and standing charge for natural gas as per the 2021 Ofgem price cap, the 2022 October price cap and the Energy Price Guarantee EPG.

The standing charge as increased in line with recommendation from Ofgem. The unit rate for gas was lowered. It would have increased to 0.145 £, more than tribling from 0.04 £ in 2021, to only double to 0.1£.
Téotime Pacreau
3 months ago

Adaptation accessible et web-responsive du poster de #JosefMullerBrockmann de 1957 (Juni-Festwochen Zürich)

Le style Suisse des années 1950 se démarque par son côté “neutre,” avec une esthétique universelle et transfrontalière, idéale pour véhiculer clairement des informations.

À retrouver sur : https://teotimepacreau.github.io/SwissInternationalStyleResponsive/

#Grid #Typography #SwissTypo #SwissType #InternationalTypographicStyle #SwissInternationalStyle #AnonymousStyle #SwissInternational #Rastersystem #Helvetica #Brutalism #CSS

Joseph Muller Brockman 1957 responsive adaptation
OG poster
Ricky de Laveaga
3 months ago

In 2023, USA #battery #storage capacity will likely more than double. Developers have reported plans to add 9.4 GW of battery storage to the existing 8.8 GW of battery storage capacity in the #grid, typically near #renewable #wind and #solar projects 🌬️🔋
https://www.eia.gov/todayinenergy/detail.php?id=55419

ppk 🇪🇺
4 months ago

@SaraSoueidan Oh yes. The #flexbox charter has about 70 illustrations, the other layout chapters about 80 in total, with #grid not yet written.

Sir thalon :klingon:
4 months ago

Ich hab zwar mittlerweile mit der tollen Hilfe von @viviana den Fehler behoben, aber eigentlich ist das so wie es aufgebaut ist, keine gute Lösung.

Im Desktop-Layout sollte es so aussehen:

A1 B1
A2 B2

Wobei A2 und B2 am oberen Rand aligned sein sollen.

Im mobilen Layout soll es so aussehen und auch das #HTML in der Reihenfolge sein, damit Screenreader etwas sinnvolles ausgeben:

A1
A2
B1
B2

Kann man das irgendwie machen?

#CSS #Flexbox #grid
@devnull69

Helen Czerski
4 months ago

Over at The Fully Charged Show, the most common question we get about the arrival of electrified transport is "Can the grid cope?". I've been super-keen to cover the UK's National Grid for a couple of years and we FINALLY made it happen. So what's it like, this grid of metal connecting the whole country, and how will it change to prepare for mass uptake of electric vehicles? Have a look at what I found out in today's FC episode: https://youtu.be/HMIHAJfhJOU #FullyChargedShow #ElectricVehicles #Grid

Picture of a deep tunnel
Egor Kloos
4 months ago

Thanks to @pawelgrzybek for the heads up that the @webkit team have released #Safari TP (163) that now supports #CSS #grid Masonry by default. Sure is buggy, though.
Works nicely on the firefox nightly.

https://codepen.io/dutchcelt/full/PoRKQob

A screenshot of a layout that demonstrates the new masonry layout in CSS grid.
Dave Mackey
4 months ago

One of the harder parts about #css is it's accumulation over time. It's one thing to go in and architect the system yourself, it's another to be thrown into an existing project where the code has accrued over time.

I ripped out a bunch of #flexbox and related code and replaced it with #grid and the dang boxes are aligning side-by-side now.

One would think positioning in CSS should be simple/foundational - and it's definitely the latter but often not the former.

Inautilo
4 months ago

#Design #Development #Evolutions
The guide to responsive design in 2023 and beyond · Responsive design isn’t about media queries anymore https://ilo.im/10tc2d

“It’s about time we change our mindset and take the full potential of modern CSS.” — Ahmad Shadeed

_____
#UiDesign #WebDesign #ResponsiveDesign #FluidDesign #Frontend #CSS #Grid #Flexbox #MediaQuery #ContainerQuery

Bluszcz
4 months ago

I managed to configure #obs to stream #bitwig using #obs with the help of #jack and #asio4all. I realized that I am using windows mostly trying to mimic #linux...

Inspired by @polarity I will be learning a bit of #grid today, https://www.twitch.tv/devcarpet but I do not recommend anyone to watch it haha

Michal Bryxí 🌱
4 months ago

Ever got confused about all those align/justify/content/self grid&flex positioning classes in #TailwindCSS?
Fear no more! I built a demo app that allows you to play with all these in real time & show you what will the result look like in which situation.

Demo: https://justify-this-align-4-tailwind.netlify.app/
Source code: https://github.com/MichalBryxi/justify-this-align-4-tailwind

#CodeInPublic #OpenSource #Grid #Flex #CSS

Justify this Align 4 tailwind app screenshot
Kriszta Satori
5 months ago

The #Ukrainian president, Volodymyr #Zelensky, says that nine million people in the country remain without #electricity as a result of repeated #Russian #attacks on the national #power #grid. In his nightly video address, Mr Zelensky said that while repair workers had reconnected many people in recent days, power #shortages and #blackouts remained a problem.

#Transformers are like trust—months or years to build, seconds or minutes to destroy. There's lots of the latter going on with Russia blasting #Ukraine's #grid, and increasing substation attacks across the U.S.

In both countries, transformer stockpiles are dwindling.

Read about Neo-Nazi plotters with high-powered rifles + fentanyl-laced suicide necklaces, how the $1.7b funding bill in #Congress fails to boost domestic supply, and more in my latest from the #energyfront: https://spectrum.ieee.org/transformer-stockpiles

miggi
5 months ago

Closing my work Figma and opening my personal Figma for today while on break. LoL. I'm working on a new community file / grid explainer for making presentations. #figma #design #grid #typography

What is something about using grids in design that you would like to know about?

A screenshot of Figma showing a number of type sizes and a 12 column, 6 row grid for presenting.
Peter Müller
5 months ago

Im dritten Teil der Serie dreht sich alles um die Gestaltung von responsiven Layouts per CSS:

Webtechniken lernen 3: Responsive CSS-Layouts mit Media Queries, Flexbox und Grid
https://pmueller.de/webtechniken-lernen-3-der-neue-kurs-ist-da/

Der Kurs wurde für diese Neuauflage komplett überarbeitet, aktualisiert, gestrafft und um neue Inhalte erweitert.

#CSS #Responsive #Flexbox #Grid

Kriszta Satori
6 months ago

Good evening from London. #Russia has fired a barrage of #missiles at targets across #Ukraine for the eighth time in eight weeks.

Significant #disruption to the power #grid was reported, mainly in the east. In the south, #Odesa was without #electricity.

https://www.bbc.co.uk/news/world-europe-63863138

GraniteGeek
6 months ago

There was lots of alarming reporting a month ago about New England maybe facing power problems this winter - cue the "we need more gas pipelines!" folks - but the latest forecast says, "Nah, we're good."
#electricity #power #grid

https://www.concordmonitor.com/winter-grid-new-england-OK-49069128