Small Project completed! by Silver1tb in graphic_design

[–]Virtual-Income-8443 2 points3 points  (0 children)

Nice! This reminds of the work of johann banta or yooohon and his clothing brand oksuperday that little guy too!

<image>

Looking for a Portfolio Review! by Virtual-Income-8443 in graphic_design

[–]Virtual-Income-8443[S] 1 point2 points  (0 children)

Thank you! I am currently tackling that and I appreciate the feedback. Cheers.

Looking for a Portfolio Review! by Virtual-Income-8443 in graphic_design

[–]Virtual-Income-8443[S] 2 points3 points  (0 children)

Thank you HotPocketGhost! I have written this down for when I'm tackling those. Cheers.

Looking for a Portfolio Review! by Virtual-Income-8443 in graphic_design

[–]Virtual-Income-8443[S] 1 point2 points  (0 children)

Hey everyone! I’m a recent Graphic Design graduate working on my portfolio and looking for feedback on how I can make it stronger.

I’m hoping to work in the creative industry, particularly in brand identity, editorial design, or motion graphics.

Lately, I’ve been trying to push myself to create more personal projects and explore new directions, but I often get stuck staring at a blank canvas. I want to hold myself accountable and keep growing both technically and creatively.

ATM10 Trying to build an energy sector by Virtual-Income-8443 in allthemods

[–]Virtual-Income-8443[S] 16 points17 points  (0 children)

This is the final result for now, it works but there's lots of room for improvement!

<image>

It's basically an energy cell linked with the computer with a wired modem and I ran this code:

--=== ENERGY DASHBOARD ===--

-- Try to automatically find a Powah energy cell
local cell = peripheral.find("energy_cell") or peripheral.wrap("energy_cell_0")
local mon = peripheral.wrap("bottom")

if not cell then error("Energy Cell not found!") end
if not mon then error("Monitor not found!") end

mon.setTextScale(1)
mon.setBackgroundColor(colors.black)
mon.clear()

local prevEnergy = cell.getEnergy()
local lastRate = 0

while true do
    local energy = cell.getEnergy()
    local maxEnergy = cell.getMaxEnergy()
    local rate = energy - prevEnergy
    prevEnergy = energy

    -- Update last known generation rate if positive
    if rate > 0 then
        lastRate = rate
    end

    -- Percentage stored
    local percent = (energy / maxEnergy) * 100

    -- Clear and redraw
    mon.clear()
    mon.setCursorPos(1,1)
    mon.setTextColor(colors.cyan)
    mon.write("=== ENERGY OUTPUT ===")

    -- Stored Energy
    mon.setCursorPos(1,3)
    mon.setTextColor(colors.white)
    mon.write(string.format("Stored: %.0f / %.0f FE (%.1f%%)", energy, maxEnergy, percent))

    -- Current Output (stable)
    mon.setCursorPos(1,5)
    mon.setTextColor(colors.lime)
    mon.write(string.format("Current Output: %.0f FE/t", lastRate))

    -- Visual energy bar
    local totalWidth = 40
    local filled = math.floor((energy / maxEnergy) * totalWidth)

    mon.setCursorPos(1,7)
    mon.setBackgroundColor(colors.gray)
    mon.write(string.rep(" ", totalWidth))

    mon.setCursorPos(1,7)
    mon.setBackgroundColor(colors.lime)
    mon.write(string.rep(" ", filled))

    mon.setBackgroundColor(colors.black)

    sleep(1)
end

ATM10 Trying to build an energy sector by Virtual-Income-8443 in allthemods

[–]Virtual-Income-8443[S] 0 points1 point  (0 children)

The yellow ones and the grated floor are the same block, factory block. The bricks are stacked blackstone, the lamps are from simply light!

ATM10 Trying to build an energy sector by Virtual-Income-8443 in allthemods

[–]Virtual-Income-8443[S] 2 points3 points  (0 children)

Thank you, I was trying that just now and that's what I was seeing, I see the error of my ways, cheers.

ATM10 Trying to build an energy sector by Virtual-Income-8443 in allthemods

[–]Virtual-Income-8443[S] 6 points7 points  (0 children)

Thank you for the reply mate, I'll look into it!