super key is like the linux version of the windows key or the command key on the mac. It lets you use keyboard shortcuts. More info here: help.ubuntu.com/stable/ubuntu-help/keyboard-key-super.html.en
@OS-Advertising18 күн бұрын
i bought flowbite and it is the most solid tailwind component library out there, their JS library is also insanely useful the every component not only looks good but also actually works... they have so many beautiful blocks and there theming is also very easy to use, 8/10 i just wish that all of their components and blocks were available as react components too they are working on it but its still in progress They even support dark mode and have a WYSIWYG editor and datatables and charts plugins now
@JakeTheDevvАй бұрын
Outstanding work man, you'll get far knowing what you do. It definitely looks super sleek and clean! Modern is absolutely correct, you took the top off with this :D
@surfer_silverАй бұрын
Hi. Looking fwd to more htmx /alpinejs videos
@sharaths2294Ай бұрын
i tried but the keyboard shortcuts are very hard to remember. I am more a mouse guy when i need to move around and never liked vim because that..
@shadowstackАй бұрын
It took me a few days to get them down tbh
@anuj7286Ай бұрын
Thank you for great tutorial.
@wens-costaricaАй бұрын
What happen when you run npm run build? I try to do that but the files doesnt load the code well
@shadowstackАй бұрын
Hey there, can you show me what kind of output you get in the terminal or link me to a repo you’re using. I’ll be happy to take a look. If you can run npm run dev then npm run build should work fine also
@133289ifyАй бұрын
Ah so Ubuntu with wallpapers. Pretty nice...
@shadowstackАй бұрын
There is much more here than just themes. Lazyvim, lazydocker, lazygit, a great terminal experience and windows management, common front and back end languages, neovim. I think of it more as a desktop image for web developers
@VimalMistry10Ай бұрын
Resolution of monitor?
@shadowstackАй бұрын
Hey there this was captured on my desktop computer which is 2560 x 1440
@Baksa81Ай бұрын
Does this work on Linux Mint?
@shadowstackАй бұрын
The documentation specifies Ubuntu but you could give it a go
@newdev76Ай бұрын
no, only with fresh ubuntu install .
@milanbuliАй бұрын
I am interested in battery life. Is it still couple of hours when you do development or maybe that time is improved? I was hoping it would be at least 6 hours damn.
@shadowstackАй бұрын
The battery life isn't much of an issue tbh. When I mention the "couple of hours" that is with screen brightness maxed, and many high demanding apps running at the same time (Docker, FInal Cut Pro etc). This is not a normal scenario for working off power. My initial reactions here nearly a year ago might've been over blown. In normal use 6 hours is for sure obtainable
@InSaneRoGer112003Ай бұрын
same here using it for 2 weeks truly an amazing experience i use zed as my editor though
@shadowstackАй бұрын
It seems like a great way to transition people into Linux! I've tried Zed also and I like it
@InSaneRoGer112003Ай бұрын
@@shadowstack after using zed i realized i dont need those 100 extentions i installed on vscode , zed with lazygit does all the things i ever needed. Life is simple now
@migu-lozaАй бұрын
Never used Ubuntu, maybe I should look into it.
@shadowstackАй бұрын
Yes! It's worth a look. Maybe try it in a VM if you're not sure if you'll like it
@migu-loza2 ай бұрын
Neat!
@LastToP2 ай бұрын
Hey, how does it feel after almost one year?
@shadowstack2 ай бұрын
Hey there, I’ll likely make another video when they announce the m4 Macs which is rumored to be any day now. My MacBook has run everything flawlessly and I have no regrets. It’s a great laptop that you can use like a desktop because it’s so powerful.
@LastToP2 ай бұрын
@@shadowstack Thank you for the feedback! I appreciate it!
@AkaiFist2 ай бұрын
Great video brother, keep going 👍
@myph12 ай бұрын
lost as soon as you pulled a terminal out of thin air.
@shadowstack2 ай бұрын
🤣Its not magic, just a shortcut for macos to open up a terminal window. You can do the same on windows / linux which also have good terminal apps. The windows terminal app on the microsoft store is actually very good if you're on windows!
@mikoajkaleta68562 ай бұрын
I'm new to Astro. Are there any templates for other kind of websites like blogs, portfolios etc?
@shadowstack2 ай бұрын
Yes! Many are on Astro’s website: astro.build/themes/
@mikoajkaleta68562 ай бұрын
Holy shit this is DOPE
@awethebird2 ай бұрын
alright now try to add the hover animations (I'm pretty sure OSX had it)
@bmxandcode2 ай бұрын
I would like to see is form, where I'll send the auth token with the post/patch request
@TinaCMS2 ай бұрын
Thanks for using Tina. We love this video so much we've linked to it from the official site's Astro page - great content! 🦙
@Germplanting2 ай бұрын
Great explanation, was wondering how I would go about setting this combo up.
@mikem-zz4ui3 ай бұрын
of course I thought this was going to work. astro import layout can't be found after install, can't opt out of sending data either
@shadowstack3 ай бұрын
Hey there. I just cloned this project again and installed with "npm install" and ran it with "npm run dev" and saw no issues with the layout import or the data fetching. If you have a code repo with your code on github I would be happy to look at it
@wobsoriano3 ай бұрын
Awesome!
@markoaleksendric78503 ай бұрын
Good stuff on Astro! Keep it up.
@scrumpyhat47113 ай бұрын
Epic theme! Could you guide me through the process of replacing the "siteName" in the src/components/Nav.astro file with a custom logo for the navbar? I have two logos: darkLogo.png and lightLogo.png, and I want them to have the same size and orientation as the "siteName" (positioned on the left side). These logos should switch appropriately between light and dark mode.
@shadowstack3 ай бұрын
Yes that is possible! Use both images in the src/component/Nav.astro as either an import from an assets folder or using the public folder (no need to import if from public just src="image.jpg") and use tailwind classes to toggle the images similar to how src/components/DevicieMockUp.astro. The Dark image would the class "dark:hidden" and the light mode image would have "hidden dark:block"
@scrumpyhat47113 ай бұрын
@@shadowstack worked like a charm, very cool theme
@jarrodhatting75853 ай бұрын
I'm currently working with your Astro Tailwind Flowbite template and have a question about the "/projects" page. I'm trying to customize each project (Project1, Project2, etc.) with unique content. I've created separate components (ProjectsCards.Astro, ProjectsCards1.Astro, etc.) for each, but the cards are still replicating across all four columns. Could you point me to where in the code this replication is happening so I can eliminate it?
@shadowstack3 ай бұрын
It sounds like you're trying to adjust the `src/pages/projects.astro` page. You'd want to delete the block where we map over the projects (data.projects.map()). Delete that code starting with the opening curly bracket and then import each project card and render them as a component. Keep in mind the parent div uses grid classes to render the projects into columns using tailwind (grid md:grid-cols-2 sm:grid-cols-1 gap-8) so that can be adjusted accordingly. Here are the docs for that, hope this is helpful! tailwindcss.com/docs/grid-template-columns
@jarrodhatting75853 ай бұрын
@@shadowstack thanks i'll give it a try..
@MikeJones34 ай бұрын
Awesome template for someone new to Astro. Thanks fro sharing! My one issue is trying to do a simple text page. I have a privacy policy I am trying to add, and not sure how to do a simple page with just heading and text that fits into the theme and format.
@shadowstack4 ай бұрын
Well you could build it out like any of the other pages and use heading tags and P tags for the text. If its something like a privacy policy and wont need to be updated often that seems like the cleanest easiest way. You could also use Markdown and import the layout in the front matter so that way you could use the same page layout with just a simple clean text file (.md) but things like page title are not set up for markdown files. Here are the astro docs on importing a layout using a markdown file: docs.astro.build/en/guides/markdown-content/#frontmatter-layout
@geraldalanraj4 ай бұрын
Is the m3 pro 18/512 enough for Data Science, machine learning and AI tasks?
@shadowstack4 ай бұрын
I would say so! Unless you're given specific requirements for specific software, so it might be worthwhile to check out software that you'd likely use before you order
@janguiano84 ай бұрын
Thanks Bro.
@ffzz0074 ай бұрын
I am using astro with vue js and i need to make state persitent between my vue component
@Pratibhachoudhary-y8q5 ай бұрын
It's not working
@RahulGuha-lq8bo5 ай бұрын
3-4 hours?? What are you doing?
@nikhilthomas92825 ай бұрын
Hey Leabs! Am looking forward to buy a new MacBook as am a CS student. Do you have any recommendations?
@shadowstack5 ай бұрын
@@nikhilthomas9282 pretty much anything in the M series of chips will work great. If you’re anticipating heavier tasks you should upgrade the ram. And to avoid storage issues I’d say 512gb is the minimum storage amount. The MacBook Airs are portable and less expensive while the MacBook pros are more money but they have better thermals and a much better screen. MacBooks on apple’s refurbished store are also in great shape if you want to save some money
@nikhilthomas92825 ай бұрын
@@shadowstack Hey there! I ordered the MacBook Pro with M3 pro chip, 18gigs of ram and 512gb of SSD. Took your recommendation on storage and ram! Thanks bro!
@nikhilthomas92825 ай бұрын
I bought it using the University Student discount
@shadowstack5 ай бұрын
@@nikhilthomas9282 Awesome I have a similar config, enjoy!
@nikhilthomas92825 ай бұрын
@@shadowstack Thanks! :)
@nickwoodward8195 ай бұрын
didn't populate my global.css, but did partially break my tailwind config, presumably because I've now got a config.tailwind.mjs and .js file
@itsTarik5 ай бұрын
great video man , I selfhost it in Coolify + Hetzner VPS but is it the best tool out there ?
@rhysrittgers21836 ай бұрын
I get to npm run start and get the response "'DISPLAY' is not recognized as an internal or external command, operable program or batch file." not sure what to do but I would love some guidance!
@shadowstack6 ай бұрын
Are you trying to build the local development on windows, or what OS? What I would try first is deleting the node_modules folder in the directory and running npm install again (maybe something didnt install fully). Also you could try this: forum.magicmirror.builders/topic/12543/installing-magic-mirror-on-windows-10/2
@rhysrittgers21836 ай бұрын
@@shadowstack I’m on windows but thank you I’ll try that
@gadgetboyplaysmc6 ай бұрын
Kinda sucks that astro doesn't have persistent layouts.
@hokage27786 ай бұрын
im starting web dev jun, planning to buy mba m3 13inch 16/512 or mbp m3pro 14inch 18/512. what will be better for me?
@shadowstack6 ай бұрын
Hi there. Both are more than capable for web development. What it comes down to is the screen and bulk mostly. The pro has the better screen but is a bit chunky and heavier and more money. It’s total preference, I went with the pro and have no regrets
@Jaber_Dev6 ай бұрын
The thing I'm most curious about is knowing the pin sit in the files stored in your Chrome Mony Work Laringing Can you share with us about these sites that you use to learn, make money, and things that help you be productive in your work?
@Literally-daredevil6 ай бұрын
Please do more astro updates
@sena0056 ай бұрын
Hi ! I am going to start computer science engineering next year. I can't decide between two options. 1. m2pro 16/1 2. m3pro 18/512 AI development is attracting me. Maybe I can use it for this field. The M3pro with 1 tb ssd is very expensive. Will 512 ssd be enough for me for 5 years? What do you recommend ?
@shadowstack6 ай бұрын
Hey there, to be honest either machine would be ok I think. If you went with the 512GB SSD you might need to use an external storage drive down the road if you start running out of space but they are so fast these days the only real inconvenience is having to plug it in. The M2 pro and M3 pro both handle local LLMs pretty good!
@sena0056 ай бұрын
@@shadowstack Thank you for your answer ! ✨ I have one more question . Can external stroge driver cause trouble like computer lag ? Can it be as efficient as an ssd on the chip ?
@shadowstack6 ай бұрын
@@sena005 SSDs are very fast and they don't cost too much these days. I have a samesung T7 I used to back up files and have never had an issue with it!
@69elchupacabra697 ай бұрын
Title says "Web Developer's Perspective" when in fact this is more of a content creator's perspective
@shadowstack7 ай бұрын
Good point, as someone who does both I needed a machine that could also do both. The reality is web development doesn’t need as much power so I leaned into how well this runs more demanding software like Final Cut. My day job is web development and I do touch on my work flow with build tools so I think the title is ok
@HunterY0zz7 ай бұрын
Je pense que tu n’a pas bien regarder si tu dit que t’est connectiques ne sont pas rayées si tu regarde les arrondis des connectiques la peinture part je le vois juste en vidéo donc bon et sa peut importe le mac et la couleur mais sur le noir sa se vois facilement pareil la bande du coin du mac donc la bordure en angle la ou t’ouvre le mac avec 1 doigt cet bordure la pareil sa s’écaille rapidement
@willielewis25487 ай бұрын
Can i learn coding and run virtual machines with MacBook pro 18gb and 512gb? I've never attempted coding before i don't know where to begin.
@shadowstack7 ай бұрын
yes this machine is more than capable I'm a professional and it does everything I need it to
@willielewis25487 ай бұрын
@@shadowstack Thank you for answering my question. Greatly appreciated!!
@leodwivedi7 ай бұрын
show local install on docker mac m1/m2
@shadowstack7 ай бұрын
ill try and get to this
@leodwivedi7 ай бұрын
@@shadowstack thanks bro 🙌🏻
@ialimijororakotoniaina32747 ай бұрын
Thanks sir for the review, I was hesitating if 18GB would be enough as a developer with a lot of chrome tab opened haha
@haydonge53287 ай бұрын
Great script that works!!!
@TaD3o7 ай бұрын
i got the error: 'An error occurred while installing pg (1.5.6), and Bundler cannot continue. In Gemfile: pg' tried the alternative ' rails db:system:change --to=postgresql' but got exactly the same error :(