Ben Awad
Ben Awad
  • 1 156
  • 63 138 785
What Programming Font Should You Use?
I like programming.
Fonts tried in this video
1. Menlo
2. Comic Shanns
3. Fira Code
4. JetBrains Mono
5. MonoLisa
#benawad
----
Follow me online: voidpet.com/benawad
Переглядів: 33 061

Відео

My App Has Been Nominated For App of the Year
Переглядів 73 тис.7 місяців тому
My App Has Been Nominated For App of the Year
My Startup Got Funding
Переглядів 102 тис.Рік тому
My Startup Got Funding
My App has More Complicated Animations Than Yours
Переглядів 91 тис.Рік тому
My App has More Complicated Animations Than Yours
Technologies I used to Code My Backendless App
Переглядів 145 тис.Рік тому
Technologies I used to Code My Backendless App
How I Designed my App that Got 100k Downloads
Переглядів 102 тис.Рік тому
How I Designed my App that Got 100k Downloads
Notion AI Scripted This Video
Переглядів 30 тис.Рік тому
Notion AI Scripted This Video
After 13 months of building a Website, I switched to an App
Переглядів 160 тис.Рік тому
After 13 months of building a Website, I switched to an App
Technologies I'm Learning in 2023
Переглядів 193 тис.Рік тому
Technologies I'm Learning in 2023
Worst Coding Interview of my Life
Переглядів 149 тис.Рік тому
Worst Coding Interview of my Life
I Pitched on a Creator Shark Tank
Переглядів 92 тис.Рік тому
I Pitched on a Creator Shark Tank
Coding an Auction House
Переглядів 130 тис.Рік тому
Coding an Auction House
How I went from making coding tutorials to thirst traps
Переглядів 234 тис.Рік тому
How I went from making coding tutorials to thirst traps
What 3 months of nonstop game dev looks like
Переглядів 184 тис.2 роки тому
What 3 months of nonstop game dev looks like
Taking a Coding Interview Blindfolded
Переглядів 60 тис.2 роки тому
Taking a Coding Interview Blindfolded
I Coded Cuddling Into My Game
Переглядів 111 тис.2 роки тому
I Coded Cuddling Into My Game
Technologies I'm Learning in 2022
Переглядів 236 тис.2 роки тому
Technologies I'm Learning in 2022
Why I'm NOT making an NFT
Переглядів 99 тис.2 роки тому
Why I'm NOT making an NFT
Why I'm Making an Emo Neopets
Переглядів 85 тис.2 роки тому
Why I'm Making an Emo Neopets
Coding The Next Pokemon
Переглядів 138 тис.2 роки тому
Coding The Next Pokemon
Coding Interview with Dan Abramov
Переглядів 639 тис.2 роки тому
Coding Interview with Dan Abramov
Why I'm Moving to a Boring City
Переглядів 125 тис.2 роки тому
Why I'm Moving to a Boring City
I’m leaving my startup.
Переглядів 162 тис.2 роки тому
I’m leaving my startup.
I Coded My First Invite Only App
Переглядів 171 тис.2 роки тому
I Coded My First Invite Only App
Handling The Business Side
Переглядів 239 тис.2 роки тому
Handling The Business Side
Fired My Designer
Переглядів 191 тис.2 роки тому
Fired My Designer
Coding the Next Discord - 32 days in
Переглядів 151 тис.2 роки тому
Coding the Next Discord - 32 days in
App Design Gone Wrong
Переглядів 161 тис.2 роки тому
App Design Gone Wrong
My Next Startup is NOT a Joke
Переглядів 187 тис.3 роки тому
My Next Startup is NOT a Joke
Intermediate React.js Coding Interview (ft. Clément Mihailescu)
Переглядів 309 тис.3 роки тому
Intermediate React.js Coding Interview (ft. Clément Mihailescu)

КОМЕНТАРІ

  • @lebenebou
    @lebenebou День тому

    what happened brother. you can tell us. I know that analogy didn’t come out of nowhere

  • @soheilasr1326
    @soheilasr1326 2 дні тому

    Bro we all thought you left youtube like your other projects

  • @DaminGamerMC
    @DaminGamerMC 2 дні тому

    after trying so many fonts, my opinion, before watching the video, is the best font is Jetbrain's called: "JetBrains Mono". Edit: he actually mentioned it i did not expect it.

  • @GhumioDeveloper
    @GhumioDeveloper 4 дні тому

    Very informative and helpful

  • @SuperLazyCat
    @SuperLazyCat 5 днів тому

    you already upload it to github.....of course they are going to use your code to train on. THATS THE WHOLE POINT TO MAKE LIFE EASIER WHY IS EVERYONE SCARED OF SHARING INFORMATION.

  • @zb2747
    @zb2747 5 днів тому

    Good to see you Ben

  • @ayushiadarsh6011
    @ayushiadarsh6011 5 днів тому

    I was wondering why can't we use recursive component for the second challenge.

  • @ethan82714
    @ethan82714 6 днів тому

    I've never been very font of any of these

  • @kitanddaniel
    @kitanddaniel 6 днів тому

    "Just code completion" is not a strong enough argument to recommend a code generator tool. I would ask, how have your coding habits changed by using the tool? Do yo feel your skill has improved by using it? Has it helped you find errors in your code?

  • @Moneyman077
    @Moneyman077 6 днів тому

    I am here 5 years later third day into my coding journey. I quickly learn that you can learn the basics then from there you can get so much information online. Furtmore, when you know the basics you don't need to reinvent the wheel: Copy and paste! lol

  • @avnishjha7876
    @avnishjha7876 7 днів тому

    He filmed this on a potato

  • @onee
    @onee 7 днів тому

    Obviously Comic Sans. 😂

  • @user-ym4gt5ck5t
    @user-ym4gt5ck5t 7 днів тому

    blondes when the get slapped: class Solution { public: vector<int> maxSlidingWindow(vector<int>& nums, int k) { deque<int> dq; // Deque to store indices of elements in the current window vector<int> res; // Result vector to store the maximums of each sliding window // Iterate through the elements of the array for(int i = 0; i < nums.size(); i++){ // Remove elements from the back of the deque that are smaller than the current element // as they are not useful for the current window while(!dq.empty() && nums[dq.back()] <= nums[i]) { dq.pop_back(); } // Insert the current element index at the back of the deque dq.push_back(i); // When the window size is at least 'k' if(i >= k - 1){ // Remove elements from the front of the deque that are outside the current window while(!dq.empty() && dq.front() < i - k + 1) { dq.pop_front(); } // The front element of the deque is the maximum in the current window res.push_back(nums[dq.front()]); } } return res; // Return the result vector containing the maximums of each sliding window } };

  • @raulvictortrombin6776
    @raulvictortrombin6776 7 днів тому

    Hey Ben ! Can you make a new video of the overall changes since it ?! Haha

  • @Excalibaard
    @Excalibaard 7 днів тому

    The only correct answer is SeriousSans -> comic shanns doubly forked

  • @33v4.
    @33v4. 7 днів тому

    dude comes back to talk about fonts made my day ngl

  • @kmylodarkstar2253
    @kmylodarkstar2253 8 днів тому

    Hi Ben, what do you think about light themes and eye care? did you ever noticed that is hard to read with dark backgrounds? on the other hand we have so much blue light emission when working with light themes... I mean 8 or more hours by day is something we need to check.

  • @n4p3r0
    @n4p3r0 8 днів тому

    What domain?

  • @dpgwalter
    @dpgwalter 8 днів тому

    Commit Mono is where it's at.

  • @nan5715
    @nan5715 9 днів тому

    Thank you, I had insomnia and I slept like a baby

  • @eliteintelectual.9948
    @eliteintelectual.9948 9 днів тому

    Shave your face bro

  • @darian.rosebrook
    @darian.rosebrook 9 днів тому

    I use comic mono. It’s the best

  • @swiftrealm
    @swiftrealm 9 днів тому

    SF Mono. No looking back.

  • @henryvaneyk3769
    @henryvaneyk3769 9 днів тому

    Inconsolata is my favourite. Been coding for 34 years, so my eyesight is not so great anymore. Fonts matter a lot to me. The most important part is that a coding font must show a very visible difference between 0 (zero) and O (uppercase o). And I absolutely hate ligatures.

  • @Ninjaah_
    @Ninjaah_ 9 днів тому

    i use monocraft.

  • @mohidenadam
    @mohidenadam 9 днів тому

    neovim + FiraCode = Chad

  • @n_165
    @n_165 9 днів тому

    My favorite coding font is Times New Roman...

  • @joeljededemekong5628
    @joeljededemekong5628 9 днів тому

    JetBrainsMono

  • @fluttterdev1k
    @fluttterdev1k 9 днів тому

    In my code, I store the refresh token inside an HttpOnly cookie. Every time a user wants to open the website, it checks if the refresh token cookie is expired. If it is expired, the user is logged out and asked to log in again. If it is not expired, a new access token is created and the user is taken to the homepage without being asked to log in. The access token expires after 15 minutes, and at that point, the refresh token inside the cookie is checked again. If the refresh token is still valid, a new access token is created automatically, and the API request is made. Is there a problem with this approach?

  • @himanshubhenwal1175
    @himanshubhenwal1175 9 днів тому

    it's either SF Mono or nothing

  • @alexgusev8118
    @alexgusev8118 9 днів тому

    This video is fully generated by AI

  • @ivan.jeremic
    @ivan.jeremic 10 днів тому

    Wait, I noticed that you looked younger before you took a break from UA-cam. Then, you appeared to age significantly in some appearances on other channels, but now you look young again. How did that happen?

  • @ganumba11
    @ganumba11 10 днів тому

    HES BACC

  • @wdestroier
    @wdestroier 10 днів тому

    I use IBM Plex Mono

  • @ithahu4988
    @ithahu4988 10 днів тому

    times new roman user here

  • @dariusduesentrieb
    @dariusduesentrieb 10 днів тому

    Thanks to you, I finally took some time to find my out what my favorite font is, and it's Fragment Mono.

  • @JoelJosephReji
    @JoelJosephReji 10 днів тому

    aren't all the photos from DHH's Twitter profile?

  • @ClariNerd
    @ClariNerd 10 днів тому

    I use Papyrus personally.

  • @bronzekoala9141
    @bronzekoala9141 10 днів тому

    Call me satan but I actually use a proportional (non mono) font for coding (the ubuntu font). I found that I can read code much faster in it which outweighs the occasional misalignment of stuff. Also it saves some horizontal screen space. Misalignments don't even happen that often because it's rare that lines are horizontally aligned by the number of characters. Mostly it's just tabs or repeating sequences at the start of the lne which occupy the same length anyway.

  • @alexmercerind
    @alexmercerind 10 днів тому

    dhh pictures lmao

  • @adamlahchimi-zb9rc
    @adamlahchimi-zb9rc 10 днів тому

    Guess who’s back 🎉🎉

  • @ohwow2074
    @ohwow2074 10 днів тому

    The last one looked the best. The default one for VS Code is good enough but annoys my eyes lol.

  • @chunkspiggle3916
    @chunkspiggle3916 10 днів тому

    Bro's channel was a ZIRP💀

  • @fdov4
    @fdov4 10 днів тому

    LOL, loved your video and after the conclusion: GIVE ME MY 3:56 OF TIME BACK

  • @aveshlutchman8573
    @aveshlutchman8573 10 днів тому

    SpaceMono is solid for everything from your terminal to coding.

  • @pereerecodes
    @pereerecodes 10 днів тому

    I use jetbrain mono

  • @SerheyST-qb2ei
    @SerheyST-qb2ei 10 днів тому

    Hi. Help me through difficult times. I really need financial help. Please donate to me a Tether. USDT trc20: TE6kSGJyUui8qWmC5Zew89u95sHv8uNFrV Thanks🙏

  • @sumitkachare6628
    @sumitkachare6628 10 днів тому

    Come on Ben, who cares about font, show us some real engineering videos 😄

  • @mihirphadnis2
    @mihirphadnis2 10 днів тому

    you forgot Victor Mono ben...

  • @Franmaisterful
    @Franmaisterful 10 днів тому

    😂