- 20
- 125 138
Rudy Faile
เข้าร่วมเมื่อ 14 พ.ย. 2015
Dell Optiplex SSD Replacement [Easy/Fast/No Tools] - Less than 5 minutes.
An SSD in one of the machines I use in my homelab failed and since I had to replace it anyway, I thought I'd film it and share it with y'all.
This is a Dell Optiplex 9020 but in general the replacement should be similar on other Optiplex machines and the concepts should be applicable to almost any computer.
This is a Dell Optiplex 9020 but in general the replacement should be similar on other Optiplex machines and the concepts should be applicable to almost any computer.
มุมมอง: 258
วีดีโอ
General Who?
มุมมอง 1772 ปีที่แล้ว
RIP a boss that took me two days on launch week. Really nerfed, or blood is stupid strong.... maybe both :) #eldenring #gaming
How to compile Raylib from scratch and set up your first projects (Windows / C ) in 15 minutes
มุมมอง 43K3 ปีที่แล้ว
Raylib is an awesome framework for programming games with. Sometimes people tend to run into issues compiling it, or forcing themselves into an IDE that they don't necissarily want to use. This video will show you how to compile Raylib from scratch, and compile your first project with it. Raylib Website: www.raylib.com/ Raylib GitHub: github.com/raysan5/raylib Raylib Discord: discord.gg/VkzNHUE...
How to: 2002 Suzuki Intruder Motorcycle Stock Exhaust Modification
มุมมอง 32K4 ปีที่แล้ว
A cheap way to get a better, louder sound from your exhaust pipes. All you need is a Drill and a 1/2" bit at least 12" long. #suzuki #intruder #exhaust #mod #vtwin
4coder getting started tutorial
มุมมอง 16K4 ปีที่แล้ว
In this video I walk through how to use 4coder to create your first project, even if you have zero experience. Commands used in video: - ALT X - command viewer - CTRL O - open directory or file / backspace to "cd .." - CTRL N - create new file - CTRL S - save - CTRL COMMA - change active panel More here: 4coder.net/docs/bindings_index.html#default_bindings Edit: .* in the blacklist patterns doe...
WordPress Mobile App: What does this XML-RPC error mean and how do I fix it?
มุมมอง 8K5 ปีที่แล้ว
In this video I talk about what it means if you see an XML-RPC error of any sort when trying to connect your self-hosted site to the WordPress mobile app, and what you can do about that. WordPress XML-RPC Validation Service: xmlrpc.eritreo.it/ Check the XML-RPC Endpoint of your site
WordPress Mobile App: How can I get fast support if I have a WordPress.com paid plan?
มุมมอง 825 ปีที่แล้ว
Commonly folks reach out in the WordPress mobile app for non-mobile app related questions. If you have a self-hosted WordPress site, and your question is about your site and not the app, you'll want to head to the WordPress.org Support Forums at: wordpress.org/support/ Or your hosting provider if they offer support. If you have a question about the app, feel free to ask directly within the app ...
WordPress Mobile App Common Questions: What is my site address?
มุมมอง 1285 ปีที่แล้ว
WordPress Mobile App Common Questions: What is my site address?
How to connect a WordPress.com site to the WordPress mobile app
มุมมอง 4105 ปีที่แล้ว
How to connect a WordPress.com site to the WordPress mobile app
How to Connect a self-hosted WordPress site to the WordPress mobile app.
มุมมอง 3.1K5 ปีที่แล้ว
How to Connect a self-hosted WordPress site to the WordPress mobile app.
[WordPress.com] How to create a submenu and submenu items
มุมมอง 1215 ปีที่แล้ว
[WordPress.com] How to create a submenu and submenu items
I was stuck in this mess for 2 hours Ur a savior man Goddamn nice tutorial
@@a18saswatsahu88 awesome. Glad it helped.
Thank you so much. Your video is the only one that works for me. It was so helpful and great
Thank you for this short but useful tutorial. Got raylib compiled now in C++ WOOHOO!
@@fixiple2722 nice!
gcc main.c -o game.exe -O1 -Wall -std=c99 -Wno-missing-braces -I include/ -L lib/ -lraylib -opengl32 -lgdi32 -lwinmm when i run this command it doesn't produce excutable with name of game.exe but it produces file with name of pengl32.exe, is there any issue here? greate video by the way, amazing explanation.
Nice and concise. No fuss, no mess 👏
Thanks, sir. You are awesome 🙂🙌. It also works perfectly with C++ and g++. You've got a subscriber!
Thank you so much for this tutorial bro, you were super helpful
How do I do it with cmake? I opened command prompt in src folder and typed "cmake .." This should've given me a dll file (instead of .a file), but I got include errors. Basically cmake can't find files it needs to include from raylib/cmake, although that directory is present with all the files
awesome tutorial! is there any way to get the exe to run without a command prompt opening up in the background?
@@garethwong-n8c yeah. It’s a compiler flag. If you can’t find it let me know and I’ll look.
this was massively helpful, thank you
@@aarondevelops you’re welcome :)
so I want to use c++ instead of c, what compiler flag should i use in place of std=c99?
interactive_new instead of just new_file 😂😂Who's going to take this editor seriously? 😂😂
Thank you, I did this with Raylib 5.0. The "MinGW-W64-builds" link for the exe does not work, I found "github/niXman/mingw-builds-binaries/releases" and got the "x86_64-14.2.0-release-win32-seh-msvcrt-rt_v12-rev0.7z" version. After this I compiled Raylib and did everything else like you showed and ran the first program.
It gives me error 404 not found when I click MinGW-W64-builds :(
Never seen intruders with an exhaust on each side like that. What exhaust is that?
Pretty sure it was stock
My intruder 1400 has a pipe on each side.
This changes nothing about the video, but if you want to know more or found the mixing of MinGW and GCC confusing, this is for you: MinGW isn’t a compiler. GCC (GNU Compiler Collection) is the compiler and it’s included with MinGW. What is MinGW then? It’s a minimal set of tools and libraries common across GNU-based OSs, but tailored for Windows applications. Minimalist Gnu for Windows = MinGW. It gives you the development environment you have on GNU + Linux, but allows you to create native Windows applications on Windows as well as on GNU + Linux.
Great explanation! For what it's worth, I was aware of this when I created the video (and I think I kind of mention it when I discuss gcc and compilers in general) but didn't want to confuse beginners too much by getting too deep in the woods with the nuances of development on windows. Thanks for your clarifying comment!
thank you so much :) to make things even easier, choco install mingw installs mingw with one command in the terminal (execute it as admin)
Folks might not have choco installed. This guide is assuming someone has nothing that's why the first step is checking your system's path.
@@rudyfaile oh sorry, I thought that's already by default installed on newer Windows versions
@@PySnek it’s possible! If so, it’s not something I’m aware of 😁
The best explanation I found so far explaining how to actually compile the library.
Why not just grind off the rivets and pull and the baffle out .... sounds waayy better
This one still works on version 5.0. Thank you for making the compilation easy to do.
Bro does it work for you that said run.ps1
@@kira2curly nope, it didn't. I just decided to manually type in the g++ (i'm using c++ so I used g++ for the terminal) everytime It can work if you tinker with the powershell security though, but uhhhhhhh I don't wanna and I'm not privy enough on how to do that
Is there going to be a GNU/Linux tutorial?
very nice video! I have a question, how do I compile my game in release mode? so I don't have the console window show up.
It's a compiler option. Check out github.com/rfaile313/draw_game/blob/master/compile/win/run.bat#L23
@@rudyfaile thank you :)
Thank you so much! Its a very short video but yet so easily understandable. Its the only turtorial that worked for me.
did you have to re-jet the carbs??
no
Is it similar if I do this for c++? The only difference i know of is using g++ instead of gcc and not using std -c99 i guess. Please let me know if there are any other changes i gotta do.🙏🙏
No😭 One day I had raylib working without inlcuding the lib/include folders. It was just #include <raylib.h> But I don't know to do it anymore, I added the lib/include to my windows variable PATH, but it isnt working😭
type this in terminal and hit enter it should work fine gcc -o main.exe main.c C: aylib aylib\src aylib.rc.data -s -O2 -IC: aylib aylib\src -LC: aylib aylib\src -lraylib -lopengl32 -lgdi32 -lwinmm -std=c99 -Wall -mwindows no need to add any sort of file or folder just make sure raylib is installed in default directory (i.e C:/raylib) and copy paste basic_core_window.c to main.c
@@Ashwin_1198 Never thought I would get a reaction. I chabged c++ built in library and added raylib there. But thanks for this command, should come in handy🤌🏻🫶🏻
Thank you!
hey is it similar procedure for c++
@@RandomJeevanYT Yes
Could you please help me how to change to c++ . Are there any changes ? . Thank you for reading ❤ hope i get help from you❤
After a WHOLE day of trying I got to your tutorial and it worked tysm!!! earned a like.
Only by watching this video I was finally able to run my first raylib exe. THANK YOU SO MUCH! One question though: Is it possible to surpress the popping up of the shell with all the info text showing up...?
Found sollution myself: Run gcc compiler with option -mwindows.
Is it possible to get the file bar at the bottom like in emacs?
Absolutely awesome tutorial!
Thanks this really helped.
Great video dude. Helped so much!
wow , just wow , after spending 2 days as a beginner trying to work with raylib , this is the only video that helped me out , it was smooth as it could be and nothing went wrong in my case , thanks a lot. i wish the instruction were more beginner friendly in github , maybe its just me but i feel like working with any external library is going to be painful as a beginner , i was really about to give up on C and move on with C++ , just because i could use code blocks and just make a simple gui with wxwidget without having to all these things ( i dont have have problem with doing these stuff , i just hate that there isn't a clear guide this like )
Absolute life saver. wasted 4 hours until I found this. so simple just copy your own dir structure into your source folders. created this make.bat file if anyone wants to use it. good for vscode from the terminal. @echo off REM Check if the correct number of arguments is provided if "%~3"=="" ( echo Usage: make.bat "<source_c_file>" "<output_executable>" "r" or "c" echo r - compile and run echo c - compile only echo if using powershell, use "./make.bat" to call the batch file exit /b 1 ) REM Get the input C file, output executable, and action from command-line arguments set mainCFile="%~1" set gameExeFile="%~2" set action=%~3 REM Set the GCC command with the necessary flags set gccCommand=gcc %mainCFile% -o %gameExeFile% -O2 -Wall -std=c99 -Wno-missing-braces -I include/ -L lib/ -lraylib -lopengl32 -lgdi32 -lwinmm REM Perform the specified action if /i "%action%"=="r" ( REM Always compile before running %gccCommand% REM Check if the compilation was successful if %errorlevel% equ 0 ( REM Run the game executable cmd /c "%gameExeFile%" echo run and compile successful ) else ( echo Compilation and run failed. Please check your C code and compiler setup. ) ) else if /i "%action%"=="c" ( REM Compile the C program using GCC %gccCommand% REM Check if the compilation was successful if %errorlevel% equ 0 ( echo Compilation successful! ) else ( echo Compilation failed. Please check your C code and compiler setup. ) ) else ( echo Invalid action. Use "r" for run or "c" for compile. exit /b 1 )
So after the first hole in the baffle there is two more plates or one i drilled thru the outside and another..?
It’s been a long time but I remember there being 2 after the outside plate, it's possible i'm misremembering though. With the 12" bit you should be able to take it all the way down and find out.
does it also work with c++ or no?
I see no reason you can't make this method work with C++
how could i do if i wanted to move all the .c file in a src file and then compile? if i try it says it can't find raylib, even if i change the command line or the include/raylib in just raylib
I am wondering if you would do a tutorial for getting it to work in Code::blocks which is my IDE of choice. I am going to have a go doing it the way you said, but then I am going to try and get it to work in Code::blocks, but I will probably mess up LOL.
Thank you very much, this is one of the rare ones that is actually helpful.
<3
what if no plugin is causing this?
This was very useful, thank you!
Can you, please, make the screen even more smaller. 👎
Very nice.
Thank you!
finally i found one that works, man i love u
im sure this would be a great tutorial if i could only hear what you're saying
Turn your volume up?
I am not using earphones and i can still hear perfectly clean. the audio is low but if you just max out the volume
i have look for so many tutorials and i still cant figure out how to get mingw32-make PLATFORM=PLATFORM_DESKTOP to work...