Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API

From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "menu"
-
So I just got one of those pop ups saying YOUR COMPUTER HAS BEEN HACKED.
I decided to call the number, while firing up a Linux virtual machine, running Linux Mint. I customized the home button to look like the Windows start menu logo, and proceeded to let that scammer connect to it.
He was so confused, considering the script he was reading off of was meant for windows. He opened up terminal, and started typing in "tree" and told me that's how many viruses I have.
😂😂😂21 -
When you accidently open the bios menu on your smart watch when you're just trying to turn it back on 😂14
-
Another reason why I'm not a web developer... Having a user choose their year of birth with a drop down menu is a pain. I did it from 1900 - 2017 rip my fingers.91
-
Who the fuck thought this feature would be a good idea?!
*holds the power button because want to reboot*
*presses reboot in the tiny menu*
*walks away to return in about an hour*
"Are you sure you want to reboot?" *cancel and OK buttons*
FUUUUUUUUUUUUUUUUUUCK.5 -
Saw a McDonald's today that's asking to be hacked - their menu sign's IP address is right there on the bottom of it (original image at https://i.imgur.com/P3sFGHE.jpg):18
-
So, rage time.
A few months ago I inherited a big Wordpress website, with around 750 pages.
The client has reported the main menu is broken.
Upon looking at the code it appears the previous "Wordpress Developer" (ahem ...) attempted to rewrite navigation system - no idea why.
As part of the 4000 class below is a screenshot of part of the file where he's determining if the current menu item is active, within a loop. Whilst the whole if statement spans 409 lines - the code basically continues exactly the same downwards.
Shameful :/23 -
Have been working on a frontend with actual stats for the DNS server I'm building. This is the result so far (real stats, red blocked domains are marked by me (in redis) as surveillance domains), thoughts?menu18
-
when you open devRant and in the menu u see this pretty pretty green thingy with numbers inside..undefined theylikemelikemeitellyou noitsnotanappfornurds noimnotonethephoneallthetime youhaveyourstupidinstegram4
-
Although she hates HTML, I had my girlfriend try to (re)create some kind of interface as a challenge. She remade the Mirror's Edge Catalyst menu - and she did well, I guess. (ofc her code is dirty and stuff - and it's far from responsive, but damn it looks smooth xD)14
-
Small update on my UWP File Explorer:
Got some nice work done on the Navigation Box. A right click (Or long tap on touch displays) gives a context menu with subfolders, as opposed to the Classic application which had a drop-down button (This is not as friendly for touch, in my opinion)
A left click navigates to that folder.
Been a bit sick from my surgery, so not much progress these past few days, but I'm still happy with this.14 -
My first rant was about this topic.
I once made a program using C++ which would allow you to make HTML pages.
I made a menu using switch () like this:
1. Add Title to website
2. Add Image
3. Add New Line
4. Add paragraph
Etc..
This was the most useless and stupid thing I ever made5 -
Work your ass off for a month, packaging new software and deploying them. No one says anything.
One of our guys uploads a new autoupdating food menu provided by another company to our intranet. Takes a few minutes.
”OMG! You should be rewarded!”
”Employee of the month!”
”IT award of the month!
”Have my babies!”
:|8 -
So I’m working on an app with a friend who is designing it and I spent a week building a custom segment control as a menu bar. He said that it looked nice but he got inspiration to make a tab bar instead 😑
Cheers to the dev life2 -
Friend brings over a Windows 8 all in one laptop.
Friend: Can you fix my laptop
Me: I'm a programmer
Friend: I thought you worked with computers.
Me: I do... but I'm not tech support
Friend: Please?
Me: (reluctantly) Fine.
*many hours later after attempting to get the PC to boot from a USB. WHY DOES THIS PC NOT HAVE A KEY TO ENTER THE GOD DAMNED BOOT MENU AND HAS NO BOOT ORDER SELECTION?????!*
Friend: Have you fixed it?
Me: No
Friend: You suck at computers
Me: ....
Never spoke to him again.8 -
I'm editing the sidebar on one of our websites, and shuffling some entries. It involves moving some entries in/out of a dropdown and contextual sidebars, in/out of submenus, etc. It sounds a little tedious but overall pretty trivial, right?
This is day three.
I learned React+Redux from scratch (and rebuilt the latter for fun) in twice that long.
In my defense, I've been working on other tasks (see: Alerts), but mostly because I'd rather gouge my freaking eyes out than continue on this one.
Everything that could be wrong about this is. Everything that could be over-engineered is. Everything that could be written worse... can't, actually; it's awful.
Major grievances:
1) The sidebars (yes, there are several) are spread across a ridiculous number of folders. I stopped counting at 20.
2) Instead of icon fonts, this uses multiple images for entry states.
3) The image filenames don't match the menu entry names. at all. ("sb_gifts.png" -> orders); active filenames are e.g. "sb_giftsactive.png"
4) The actions don't match the menu entry names.
5) Menu state is handled within the root application controller, and doesn't use bools, but strings. (and these state flags never seem to get reset anywhere...)
6) These strings are used to construct the image filenames within the sidebar views/partials.
7) Sometimes access restrictions (employee, manager, etc.) are around the individual menu entries, sometimes they're around a partial include, meaning it's extremely difficult to determine which menu entries/sections/subsections are permission-locked without digging through everything.
8) Within different conditionals there are duplicate blocks markup, with duplicate includes, that end up render different partials/markup due to different state.
9) There are parent tags outside of includes, such as `<ul>#{render 'horrific-eye-stabbing'}</ul>`
10) The markup differs per location: sometimes it's a huge blob of non-semantic filthiness, sometimes it's a simple div+span. Example filth: section->p->a->(img,span) ... per menu entry.
11) In some places, the markup is broken, e.g. `<li><u>...</li></u>`
12) In other places, markup is used for layout adjustments, such as an single nested within several divs adorned with lots of styles/classes.
13) Per-device layouts are handled, not within separate views, but by conditionally enabling/disabling swaths of markup, e.g. (if is_cordova_session?).
14) `is_cordova_session` in particular is stored within a cookie that does not expire, and within your user session. disabling it is annoying and very non-obvious. It can get set whether or not you're using cordova.
15) There are virtually no stylesheets; almost everything is inline (but of course not actually everything), which makes for fun layout debugging.
16) Some of the markup (with inline styling, no less) is generated within a goddamn controller.
17) The markup does use css classes, but it's predominately not for actual styling: they're used to pick out elements within unit tests. An example class name: "hide-for-medium-down"; and no, I can't figure out what it means, even when looking at the tests that use it. There are no styles attached to that particular class.
18) The tests have not been updated for three years, and that last update was an rspec version bump.
19) Mixed tabs and spaces, with mixed indentation level (given spaces, it's sometimes 2, 4, 4, 5, or 6, and sometimes one of those levels consistently, plus an extra space thereafter.)
20) Intentional assignment within conditionals (`if var=possibly_nil_return_value()`)
21) hardcoded (and occasionally incorrect) values/urls.
... and last but not least:
22) Adding a new "menu sections unit" (I still haven't determined what the crap that means) requires changing two constants and writing a goddamn database migration.
I'm not even including minor annoyances like non-enclosed ternaries, poor naming conventions, commented out code, highly inefficient code, a 512-character regex (at least it's even, right?), etc.
just.
what the _fuck_
Who knew a sidebar could be so utterly convoluted?6 -
Day 1 of my CIT major:
Professor: "...and if we use the right mouse button to click on any file, we can access a complete menu of secondary actions."
It's going to be a long semester.3 -
So my friend, who owns a restaurant, asked me over 6 months ago, if i could redesign his homepage. I told him "sure why not" and since we're friends i didn't want him to pay me any money.
He told me what his thoughts about the design were and i told him that i needed the menu, some decent pictures of the restaurant, the "about us" story and the credentials to the server.
He didn't know the credentials to his server and i told him to ask the person, who made that page to send me the information i needed, but he kept on saying "could you call her because blah blah". Well, i did but she couldn't give me that info without asking the owner. So i met him and told him "hey i told you so, because it's completely normal not give sensible information to unknown people and besides that she told me to tell you that you should give her a call, because she hasn't got your new phone number". Two months later i got an email with the credentials, but still no menu and no pictures.
Four days ago i made a transition page, because i didn't want to publish the page with stock images and without menu, so i wrote him again whether he wanted design #1 or #2. Got a text at ~21:00 saying "design 2, but you need to publish it at 22:00".
I mean wtf?! He assured me he would call some people he knows to get those things. I told him, that it would be free, because of our friendship, but no support from him and he keeps stressing?! He knows i've got a full-time job and my studies going on, so my time is really limited and he keeps fking around like that?! Man it pisses me really off...12 -
First thing every developer should do when buying a new computer is to download chrome using the built in downloader
1. Just click on start menu
2. Search for "chrome downloader"
3. Click on the downloader icon
4. From here it should be easy :)13 -
My rant on CSS in general, including z-index (a cruel practical joke) and the "secret menu."
https://medium.com/@c09b6133a238/... -
Last night I met up with some old colleagues for food and drinks to have a catchup. Things have been stressful in work, was great to get out and have a bit of a rant and just relax ... until I saw the menu.
Hamburger:
xyz dressing / sauce, crispy onions ... and cheddar cheese.
That sir, is a fucking cheese burger, and just piss poor documentation. How have you managed to stay in business with such misleading information and false advertisements in your menu.
Thank you for ruing my evening!6 -
Client : hey why does your app minimize once I receive a call? Fix this ASAP! Also why does it show *that*? I have not turned anything on!
Me : Sorry, not possible (explains), you might want to contact Google (for the lolz). Also, the feature is shown by default, you can turn it off via Menu - Settings - Navigation - xxx.
Client : Can you make the incoming call popup smaller when using your app?
Me : Unfortunately no, that's not something I can do. Contact LG.
Client : I have been to Menu - Settings - Map - XXX and the feature is still shown, why does your software not work? Also *this and that* is not shown anymore!
Me : You turned off the wrong thing... *jumps out of the window* *contemplates life* *cries* *dies*1 -
@dfox would it be possible to have the menu open when swiping from the left edge? (E.g. Slack, Stack Exchange)
The menu button is quite high on larger phones, hard to reach with me thumb.6 -
Does anyone else think the top menu bar on applications is way too big on ubuntu 18.04? Also, am I the only one who has a lot of ransom freezes in the os? I know its a beta version, but c'mon!17
-
That awkward moment when you learn about callbacks and lookup tables and your whole menu logic goes from a 2 page long switch-case to 3 lines of code... 😂2
-
Dude: Hey, can you help me with my website? It's for the final year project (IT and Hardware related degree).
Me: Sure, let me see.
Sends a .txt file with two <html> tags, not even closed.
Dude: Can you fix it so it appears with a menu on the top and news on the middle?
This guy got his degree and I'm pretty sure he doesn't even know how to enter to the BIOS of a computer.
He probably doesn't know what a BIOS is.3 -
Customer: The pages x and y are not displayed in the menu of my website.
Me: I've added another menu level. This level wasn't planned. Your pages will now be displayed.
Customer: Do you think I have too much menu levels?
Me (what I want to say): YES. You have too much of EVERYTHING! Too much menu levels, too much useless pages, too much bad formatting, too much different font colors in one fucking sentence! Your website is crap at all.
Me (what I said): No, it's okay.
I hate customers.2 -
For the first time in ages I decided to order a takeaway.
Had a quick check on the takeaway's online menu. My order total was going to be £15.60.
I called up to order and the total was apparently £21.40.
I queried this with the member of staff and mentioned I got the prices from their online menu.
I was told the online menu was "slightly out of date".
When I got into the takeaway to pickup my order I got speaking to the owner. He said the menu on their site was from 2009. He stressed updating the menu was on their list of things to do.
Lol :)7 -
Idk man. I can't be the only one that thinks the new iPhone looks stupid, can I? It's too glassy and glossy. It looks like a makeup case or something my sister would use to hold mascara.
And WTH is with the border-radius on that bottom menu bar? Like, either choose to make it a background strip like a normal nav menu or leave it out, but don't just give me more of that weird recta-bubble shit.9 -
@dfox maybe add a donate button? at this point i would deffinatly support this thing. i think you deserve it plus it will help you make this even a better place without been stressed out from monitization, which somtimes can ruin the whole thingy...
put it in the side menu or something3 -
iOS 11 you buggy piece of shit!
Layouts breaking all around, can’t figure out if it’s in landscape or portrait mode, lock menu disapearing, minimizing apps breaks them...
Oooh, you invented a GENIUS NEW option to turn mobile data on from launch control, but WiFi and Bluetooth buttons don’t turn these off, but disconnect from current network... WHOSE SMART ASS IDEA WAS THAT? BURN IN UX HELL ASSHOLE!
Haven’t seen a worse update since Vista...6 -
1. I am reading a rant.
2. I get a mega urge to check my ++'s.
3. I don't want to go to Menu > Profile.
4. I comment on the rant.
5. I check my ++'s.
6. I delete the comment.5 -
Let's install some Addons! Hmm where is that menu item... oh could it be called Extensions? No? Wait... maybe Plugins then?
Maybe it's inside of a Settings window. Oh there's nothing called settings in this endless menu I think. Or is it called Preferences? Options? Properties? Configuration? Ugh and should I look in the File or Edit or Extra menu in this App, Application and/or Program?
Maybe I can Search for it?
OH YOU FUCKING NAMED THAT FIND INSTEAD OF SEARCH, YOU PRESUMPTUOUS PRICK, I CAN'T FUCKING FIND ANYTHING IN YOUR BLOATED GOO OF A GUI.
*scrambles back into his bash-shell like a hermit crab, making soft defensive noises*9 -
Pressing every key on your keyboard because you don't remember how to open the boot option menu
You know we all do that.7 -
It happened just now.
Yes, I put "there is no need to be upset 10 hours" on governmental terminal.
#hackerman
How? Well, I discovered that it was web ui, so random menu category -> random external governmental website with Google map on it -> you know the rest.5 -
Okay, windows, it's cool that you're getting a dark themed explorer and overall UWP-Fluent Design improvements but...
What's up with this context menu, which has a button saying "close [context] menu"?
(this is made up of screenshots, not a recording - the actual animation is much smoother)17 -
Skyrim SE looks great, never would've guessed being able to draw d*cks on the main menu would become a feature....3
-
every day I get phone calls from some idiot to moan about something I fixed.
I had a job to copy a site and use it for another company, with everyone's consent. I do it and found the original was garbage. hard coded functionalities. limited control over which pages appear in the menu and so on.
problem is the site administrator doesn't understand the system and made pages visible on the menu that shouldn't be and so on. these never showed up before because it was broken.
now she phones every day because she setup her pages wrong originally and tells me stuff like, why did you change this, it worked before and crap.
I never expected she would have setup the pages incorrectly so I never thought this would happen.
lesson here is if it's broken and you're the only one that's noticed, just bloody leave it.1 -
Microsoft, you can't sneak this past me! I notice you're putting rounded corners in specific parts of your OS, and I don't like it. It's inconsistent with your design and your slow roll-out of the rounding makes things round in some areas (such as the context menu in the calculator app) and square in other areas! (such as the context menu anywhere else)
All I'm saying is either do it everywhere, or do it nowhere.
(I realize the terminal is not an official application YET, but it's a good example)11 -
Is anyone else abusing the Windows 10 start menu search as command prompt? 'cause I do, all the time.14
-
FUCK
Have you ever worked with people that constantly asks you what to do? People who are in the same spot as you, I mean.
- Hey, you should start debugging this while I finish this menu
+ So what's failing?
- I don't know man, but there's a bug
+ But where?
- You should look for it, I'm trying to link this to the controller
+ How can you not know?
- Do you know?
+ Where should I look for it? Here?
- ...
(One crappy solution after) + Here it is, I'm moving to something else
- ...11 -
One of the things I really hate on Windows (and Microsoft software in general) is that the keyboard shortcuts are localized therefore are different from 90% of the apps that I use on a daily basis.
Two examples of this (EN-US vs PT-PT):
- "Save" is "Gravar" while "Underline" is "Sublinhar". This means that whenever I press Ctrl + S to save a doc in MS Word I underline a word instead of saving the bloody document.
- "All" is "Tudo" so when I want to select all the itens on a folder in the File Explorer I have to press Ctrl + T, the same shortcut I press in pretty much every single tabbed app to open a new tab.
This is terrible for the user experience because different languages provide different keyboard shortcuts to the user which goes against the concept of the usefulness of a keyboard shortcut: perform an action from anywhere without having to know its menu or menu description.11 -
well finally start work at main menu at my new 2D game and without main menu there is no bug 😱😱😱😱😱😄😄😄😄😄😄2
-
"There needs to be a Home option on the side menu, people won't know to click on the company logo in the top left."
What sort of fucking moron doesn't know that?
"The website is slower to click around than I'd expect."
No shit. Do you remember the part where you said we had to build it in WordPress?3 -
You know the UI/UX is bad when you have all kinds of navigation controls in your app
- Side menu
- Navigation bar with 4 bar buttons
- Tab bar buttons
- Floating menu button on the lower right2 -
Actually I'm pleasantly surprised about Windows' stability nowadays. It's capable for running for up to a week with no stability issues, whereas systemd on the other hand.. let's just say that my Arch containers could do better right now.
Data mining aside, damn man.. Microsoft is improving for once! Is this the so-many'th unusable/somewhat stable switch? I mean, it's not like we haven't seen that happen yet! Windows 98, shit! Windows 2000, kinda alright! Windows Me, shit! Windows XP, kinda alright! Windows Vista, oh don't even get me started on that pile of garbage! Windows 7, again kinda okay! Windows 8, WHERE THE FUCK DID THAT START MENU GO YOU MOTHERFUCKERS?!!! Windows 10, well at least that Start menu got fixed. Then it got into some severe QA issues, which now seem to have gotten somewhat fixed again.
I'm starting to see a pattern here! 🤔13 -
To create your avatar: go to the menu (top left icon) on the main feed, tap "profile", and then tap "Build Avatar". Enjoy!3
-
Our team is developing a online e-commerce application. Since the owner uses Last Pass and doesn't like the extension icon in input fields, he asks the developer team to install the extension and ensure Last Pass was disabled for all input fields, password and usernames included, across the site. It was unacceptable to ask him to disable it though the extension menu.6
-
*enters in restaurant*
After 15sec new notification
*Write your review for this place, to help others*
At least let me see the godamn Menu first.
Fuck you google3 -
omfg. who the heck thought it would be a good idea to not use text in a nav menu, but image files. as in, the list items contained a span tag which was then given a background image via CSS. And to put the cherry on top, the color change on :hover was not produced with said CSS. Nooo, the image file is actually a GIF that's being played / activated when you move the cursor over it. FFS afhdchfsghd!!!!!6
-
< !-- features request -->
1) I think we should have a left swipe menu open action.Every time I want to open menu I have to go left top of screen.
2) preview of attached image if possible
3) Open images in posts directly without going into post and then image
4) auto play gif !??
5) Make rant favourite without going in ? Like a star symbol I suppose !
Just few thoughts ! Happy ranting ...😊5 -
Would be really nice if devrant had a built in plugin for our IDE's- kinda like a scroller menu on the side :P We could rant in the office without forgetting it later. I'd call it "real-time ranting".4
-
So my parents got speakers integrated into their monitor. A few years ago (like 3-4) they made me turn off the sound because it annoyed them since all they did were playing some shitty flash games and some office work. Now they needed the sound back on and this is how it happened.
1. Confirm they plugged the right cable in. I know them so I knew that could be a problem
2. Made them download Teamviewer because I know they can't even doubleclick without guidance
Now the juicy part was to tell them they need to turn on sound on the monitor. As I was watching via teamviewer I saw them trying to click on the menu items from said monitor. Took me 5 minutes to explain that their mouse can't do shit on that because they need to navigate with the buttons underneath the monitor.
Turned out they couldnt get things right and I had no idea what they were seeing because they explanations went like "All I can see is Main Menu and Exit." - "Is that really all dad?" "Yes thats all. Main Menu, Brightness and Exit" turnes out the middle part is interchangable like "Brightness, Saturation, etc..."
After 2 hours I gave up and told them to pick up my speakers tomorrow -
While testing on IE11 today I noticed a smiley face in the upper left corner that brings up a context menu with the options "Send a smile" and "Send a frown".
Turns out that is how you send browser feedback on IE11, the frown being the ability to report a site, and the smile to give positive feedback on the browser.
Turns out you can't send negative feedback for the browser, so I sent positive feedback. What did it say?
"What did you like?"
- How fast google chrome downloaded.1 -
When an application leaves a context menu item floating on top of all other Windows and you have no idea which process is the culprit!9
-
Arch that I've had for a month
Applications: Firefox with riot.im chat, custom one-line music menu, vim markdown preview, gotop, vim with .zshrc, vim with README in Markdown, vim with python code
Bar: Polybar
Background: https://github.com/LukeSmithxyz/...
Arch Linux, i3 WM14 -
The hardest part about writing an app is getting anyone to find it :( on that note, please help? <3
If you have little ones I promise they'll enjoy it! it might even get you an hour or two of quiet coding time.
Tap the top bar on the main menu that says 'My First Puzzles' ten times to get prompted for a secret code (3hfazJUD) to unlock all packs free :)18 -
And today on My Strange Addiction: Browser Tabs and the People That Never Close Them. - seriously, when you have 38 tabs open and your sandwich menu is red, just stop. It takes all of a minute to close Chrome and restart it.15
-
To this day I still don't know how the hell Nvidia makes some of the most powerful graphics cards available, yet manages to somehow also write the shittiest software among them. Somehow not only their control panel application takes an eternity to start, their context menu option makes that run like trash, and even Windows Explorer doesn't go unaffected.
But the solution as always: throw more hardware at it. Maybe that's why they make such powerful cards.9 -
Windows 10 now let's you step through a options menu, which shows automatically after the new update, to select which kind of tracking you want to have. This makes it way more transparent for not tech savy people:)10
-
Well this has been unexpected.
Just bought metro exodus cause it will have Linux version and well i installed it via proton well because its fast to download now.
I turn it on.
30 fps in menu on low.
Well shite. This is not good at all.
I OC the GPU.
32 Fps in menu on low.
I notice there isnt ACO next to my GPU name in DXVK_HUD.
Huh interesting.
Maybe they deleted that.
I check the code.
Nope still there.
I dont have it enabled ?
I look at my enviroment file.
WTF. Its Off.
*Turns it on*
Restart.
Turn on ME again.
45fps in menu without OC. WIth OC its 50 fps.
Wooooha. Now thats lots of FPS.
I turn it up to high details.
Runs OK but you just have to disable motion blur in config file. Its fucking cancer.
Average of 55fps. :O14 -
Proof that there is no drug testing at Apple:
- Xcode 10 moved code snippets in a transient spotlight-style window.
The only way you can show snippets is if you have your editor window in "browser mode" vs "document mode" and then the dumbass button with { } on it shows.
If you go into the help menu in the menubar where you can search the other menus, typing in "Snippet" shows only "Create Code Snippet" under "Editor" menu.
So to make it painfully clear, they hide the snippets under a button on a window in a particular window mode. Then, because they have now fucked up the use of Snippets, the "Create" capability becomes a "how do we do that?". This did not make them reconsider their approach... oh nooo... instead they sloppily stuff it in the regular menus all by itself... and do not put a Show Snippets near it. And conversely they don't put a "+" or "-" button in the snippets window.
So here is what happened... someone said "having the snippets in the code editor window is a pain" and someone half-listening heard "windowpane" and pulled out their stash of LSD... everyone took a hit ... and now we have a fucked up hidden button and an orphaned menu command.
I'm going to have to change my username to "XcodeDevTeamAreMorons"3 -
I googled - "What does refresh from windows right click menu do?"
I got a reply - "Search instead for why the hell it is there in first place"2 -
I fucked again...
This is second time I've accidentally executed sudo poweroff on test server via ssh assuming it was my machine :(
It's all because my mind was not stable as we were testing few issues on test server and at the same time from client side someone was doing the changes from Admin side(Wordpress) and we saw menu and few text got disappeared.
Such a bad day. smh11 -
When your daily scrum takes an hour because your senior developer co-worker gives unnecessary and incredibly detailed updates...
"Well, first I tried hiding the button, but it wouldn't come up when I needed it to, so then I made an options menu, but the sliding transition was difficult to implement, so then I..."7 -
I nervously clicked the join dark side button in the settings menu, then instantly like life got better.4
-
A few days ago, in my windows machine, I was looking at the Task manager's processes. I was like, "I don't need Cortana. It is using so much RAM already. Why not delete it?"
So, I used "Iobit Unlocker" to force delete Cortana & everything seemed okay. But after 1 day, creating new folder option is gone. Now I have to use CMD and MKDIR to create new folders.
The start menu search is also gone (I guess, That's what Cortana was for).
My context menu became buggy. Some menus show sometimes, sometimes don't. "Open with VS code" option is also gone sometimes.
I don't know what will happen next.
Keep my "Windows machine" in your prayer :/22 -
To the Microsoft Edge users,
If you have been using it and missing the "Search with Google" menu in the context menu (when you right click), I have created an extension for it.
You can get the extension from here: https://github.com/tahnik/...5 -
If anything taught me that garbage collectors aren't the one true answer for memory management then it's got to be modded minecraft
It takes around 10-20 seconds only to disconnect from a game and go back to the main menu.
You also get memory leaks, which result in several second long freezes when the GC kicks in, that happen every 15 seconds.1 -
Today it happened. I saw a real hacker. It was so awesome, he knew how to open up a special menu in his browser that showed some weird text that only a computer genius can read. And when he edited the text he managed to hack the look of the website! He was only 13 years old. 😮
-
This is a student helper app I coded and designed for our university that is written in Dart and flutter. For now it supports fetching the course schedule for a given student and the cafeteria menu. What do you guys think of the UI? Any recommendations for improvement or tips for working with flutter in general?25
-
The designer of a new version of an app sent me the the new designs. I immediately noticed the menu-icon in the bottom right. (In a tab bar)
This is not common and even discouraged by design docs of iOS and Android. So I told him that and he thought we could try it.
After scrolling through the designs I saw the screen where the menu was open; the close button was also on the bottom right. I told him that users are not used to have a menu close button on that position. He said "Every other company is doing it wrong, so we're here to make that difference".. The only thing I thought was 'Okay, so Google is doing it all wrong all the time.'.
So now it's in the app and I don't like it.19 -
My mom woke me up at 6am because the tv sound was not working..
I tried almost everything, use the tv control, mute button, menu tv configuration..
even checked different inputs using my Nintendo switch and super Nintendo's and it didn't work..
Couldnt do shit.. so I had to use the old reliable!
turned off the tv and then turned on ..
It was like magic! fuck everything!3 -
"Microsoft team foundation" is my current motivation for keeping me wake up in the morning. This is just a small part in their header menu. You can do better than this!
-
Looks like despite 20-30 years on the market all popular text / spreadsheet editors are still loading whole file to memory.
What the fucking wankers. WTF are they doing whole day besides changing menu layout and icon colors ?
Clearly development today is lead by bunch of idiots from marketing department accompanied with HR hiring social network self made models.
What a fucked up world.
Let’s add AI to our software but fails to open 150MB csv file.
Great job everyone. Great job.4 -
Every Website seem to has some glitches... and you can't ignore them like non-web-devs do... i wish i could look up the menu on a local restaurant-website without going crazy about the buggy slider or the misaligned address-div
-
At a chocolate museum: some quiz to tell you the best chocolate kind to try and suddenly:
wait...... I can actually mark stuff....
......... Thinking
...... Can I get a context menu?...
..nice!!!.... Let's click search with bing.
And we have an internet explorer! xD
Unfortunately the pc was in French and my French can be described as one could say rather basic or maybe more as pretty bad xD (and I didn't want to break a museum) so I did not go further ;)4 -
When college professors want students to do college portal's works.
ACCEPT THE FUCKING WORK.
DO NOT CHANGE THE INITIAL REQUIREMENT WHILE I'M WORKING ON IT.
DO NOT CHANGE MY WORK WITHOUT ASKING ME OR AT THE LEAST NOTIFYING ME.
YOUR PORTAL LOOK HORRIBLE NOW WITH SHIT TIER MENU WHICH I SUGGESTED IN THE FIRST PLACE THAT IT WOULD LOOK GOOD THIS WAY. AND NOW YOU'VE MADE IT LOOK SO BAD MY EYES HAVE CANCER.1 -
I love how clients can ignore missing menu in their existing project, pages not updating because of fucked up cache, having three different versions of jquery and half of the code being spaghetti on fire - but they get anally retentive about margins not looking like on the wireframes on the new project.7
-
I just saw an ad about a "new" tablet PC. The tablets are shown with the Windows 8/8.1 Start Menu, while the text says they're running on "Windows 10.1"...2
-
UX: we need to add a close button to the filter menu.
Dev: wtf, why?
UX: the users cannot figure out how to close it. -
Decided to go back to windows for a bit after not using it for about 6 months (on physical hardware) and literally forgot there was a start menu, minimise button, taskbar and that the window controls are on the right...
I have done the impossible and almost forgotten how to use windows, not sure if this is a good or bad sign9 -
Why has Google implemented those stupid menu bar buttons across the bottom of their apps. Isn't the YouTube app over jammed already. With most android phones using on screen buttons, you have to reach your thumb over the bezel, nav buttons and menu bar just to make a scroll motion for your content. I've sent Google feedback multiple times to of course (typical Google) to no avail. Let iOS have lower third menu buttons. We don't all have an S8, which as I see it is the only way this is alleviated.15
-
I recently started using Linux on my desktop.
I just love how when I see some minor thing I don't like about the operating system I can just change it myself!
Want to remove the menu icon? Simple change to the settings. Want your downloads folder to be clean? Simple cron job which asks you if you want to clean your downloads folder every day.
Man I love having the freedom to screw up my operating system!9 -
"Hmm, I have one hour left to hand-in my complete program via Moodle. I can still do something.
Let's implement a cheat when a user types 12oatmeal at the menu."3 -
Messing with HTML/CSS for the first time. Gonna have a dropdown menu where it's empty in the header. JS(Jquery) will be used.8
-
@dfox Just an idea and don't know if anyone would be interested but what if there was another menu option underneath rants for "Showcase" or something where people share their creations and projects?1
-
When the client wants an onclick menu, complete with animations and responsiveness, for a menu with only four items.2
-
As I am working with WordPress for the really first time I am making horrible experiences now.
My client wants a simple submenu on the sidebar if the user is logged in else he want the login form to be there. Easy peezy done with php and just good old plain html. Maybe some JavaScript to make the login process asynchronous.
But fucking bitch - NO. As I found out after searching and digging. I have to create a menu in wp-admin first. Then add a menu-widget to the sidebar. And then install a plug-in to make the links only visible for logged in user. Wtf?
WordPress takes all the joy in doing web development for me. I won't do that anymore. I will force all new clients to use proper tools to make their shit work for them. And as I am the expert in this things I am the one who suggests the right tool.
Fuck this shit.9 -
My colleague has spent 3 days writing a responsive menu that has 5 items in it with no nesting that needs to move to a sidebar on mobiles.
I think that should be maximum 30 lines html and max 40 lines css. Or at least around that sort of area.
He has 150 lines html, 200 lines css, and is not even finished yet. He also made 2 entirely different menus for different screen sizes instead of using media queries...
The reasoning from all my colleagues is that its because the menu needs to use css grid (it doesn't they just randomly decided we can't use flex, float or online).
Working with people that give reasons for their garbage code that literally makes no sense every day gives me a headache....6 -
Unpopular opinion: I actually quite like the Windows 10 tile start menu thing, even though I'm on Linux.6
-
Acquainted with the previous logos the new Android Studio logo for v4.1 is annoyingly difficult to locate from the taskbar menu.8
-
Boss: hey can you loop through all the entries in the data base (PHP) to make a menu of everything?
Me: me sure thing, shouldn't be a problem
10 min in playing with the database...and I remove the table...FUCK ME?!!??!!!
good thing we backed up the night before 😂😂1 -
Didn't knew that by pressing WIN + . opens emoji chooser.
And google added emoji menu item to context menu.7 -
CSS + Noob + Import html
Hey guys
Need some help here.
Is it possible to include an HTML file inside another HTML file without an iframe? I wanted to create the structure of the page in one file and include it inside another HTML (for example, have one index that dynamically includes an HTML file in a section, called by the menu OR having the menu, top and footer in one or two files and include them in all the other pages...)42 -
Customers thought it was funny that the obvious abbreviation for for a thing today was "ASS". They joked about that being a column in a menu.
So I did it.
They've got their very own "Ass" menu item in production.7 -
Spotify app for Android got an update. In the old version, there was a dedicated button to show the queue so you could reorder it. Now, it's hidden in a menu and takes 2 clicks to see you queue. What the fuck guys.1
-
My menu bar in MacOS was cramped, looked online and found out that an app can fix it.
Holy shit. Does everything on mac cost this much?10 -
Had a legit argument with a manager about the text in a drop down menu. I argued that it should actually state what the option was for because I care about the user experience... Management wanted to conceal several business logic steps behind an unrelated option in the same menu because of a literal interpretation of the process and the client's request.
Interfaces should tell the user what is going on...2 -
I dual boot windows and Linux. I use Windows primarily for light gaming on the weekends.
Somehow, the windows updates have successfully managed to break my grub menu, and my Linux partition is booting into Grub Rescue mode.
Right now tolerating the windows updates, which have been painfully going on for the past 2 hours now. Later, I'll have to deal with fixing my Linux partition boot.5 -
I'm not saying that windows' Bluetooth is shitty but my Linux connected even before windows realized I had plugged in the dongle. And well Bluetooth headphone won't work... Windows doesn't wanna connect... Solution? Unpair then pair again with pin 0000. Linux: left click on Bluetooth menu > connect.3
-
NO MICROSOFT FOR FUCK SAKE NO!
I have a fucking 15inch screen and that left side menu is eating 25% of it! IF you gonna throw in a new "Creative" design, make the damn menu re sizable, NO I DO NOT WANT TO HIDE THE LABELS AND MEMORIZE YOUR STUPID ICONS!
At least do what Gitlab did, a nice small menu that DOES NOT EAT HALF THE DAMN SCREEN!
Oh, did I say anything about sub menu hell that pops up whenever your mouse hover over any of the items on the left? Yaaa... that goes to a brand new rant!19 -
On our Android tablet app, we had to have the hamburger menu on the bottom right corner (normal top left). It sorta became the floating action button...3
-
@dfox, this menu does not scroll on my phone, Sony Xperia Z-something (4?), but I guess the list ends with About...
Great new UI! 😀20 -
I mean, the developer just didn't even fucking care that the annoying menu is in the center of the screen, wtf (reader mode save me)6
-
Why have so many fucking websites the signup form in the start page but you have to click in the menu to get to the login?!
I signup only once but I have to fucking log in every single time I go to the page!!!11
Annoying...2 -
I was doing a demo and went to quickly launch PGAdmin from Start. I hit the Start key and typed "pgad" because that usually works as an application launcher for "PGAdmin". Cortana decided to ignore the program in the start menu and instead showed the audience info about about PGAD.
A whole room full of people now know about
PERSISTENT GENITAL AROUSAL DISORDER
Thanks Cortana.11 -
Hello, I am new to DevRant!
I was fed up with Windows 10(broken search, start menu etc), hence I installed Ubuntu on one of my PC's.
Now the issue is that my Ubuntu System boots very slowly!
I have a Docker Container + Some apps in startup! It used to boot up very quickly IDK after a week of use it has gotten considerably slower!
Pls Halp!17 -
Client just asked if I could make a dropdown menu appear when a navigation item is hovered over. ON MOBILE.2
-
Ok, HOW I can remove Microsoft Edge from windows?
And how I can change completely language to another? Just changed from my native -> English. And now half of apps are in my native and half is in English?
And lastly is this true? Microsoft spams some f*cking Candy ____ saga games on menu selection all the time??21 -
I am going to stab a brick wall. I am at my university trying to install Arch Linux, but the connection is WPA-EAP and wifi-menu does not work. I need it installed by class tomorrow or else I'll have to use Windows. I don't understand how to set up a wpa_supplicant file. I'm sure it's simple for PSK's... But I don't know what to put for "eap" Linux is making me so pissed today. (but I still love her) I am really done with this2
-
be me.
be sad that you can't find your favorite Greek Food online.
offer your local Greek Restaurant that you do their web stuff.
make a nice modern website.
show it to the greek guy.
"Oh please look at this website, I like it more"
shows you a site build with tables, and menu-shortcuts only linked to pdf files.
cry in a corner.1 -
Why isn't the follow button more intuitively placed, without going through a separate menu? I found it just by accidentally pressing the three dots.1
-
Why the hell do we always have to go into the settings to set a sleep timer in Google Play Music... Can't Google just put a button in the menu where the song is playing.....
Also you can't open the left panel from main music page coz it causes the song to change....
PS: My First Rant1 -
Dear Game-Devs,
if your game takes some time to load that's fine but please do NOT let me press a button after starting the game and THEN start loading the menu for some time and instead load the menu immediately! What's the point of that? If I know it takes some time I want to start it and maybe get a coffee and when I come back everything is loaded...6 -
Something you can do even if the (windows) PC is locked. Win+i to bring forth the funny menu (if I recall correctly). From there you can do stuff like invert colours and zoom extremly1
-
@dfox feature request, as part of the menu links in a rant, if you could add open in web version.
Why?
Sometimes links aren't clickable on my devrant version (using latest Android version am on Lollipop 😧)
Sometimes really large images don't load
So I usually copy link then paste in my browser6 -
So, today timestamps within my database saved me. I have one titled "created_at" to indicate when the item was originally created.
Today a large client called up to complain that they have 296 bookings but only 288 menu choices (each booking has a menu choice). Basically, saying I'd "programmed it wrong [sic]" :(
After taking a quick look at the date the client originally added the menu and the date the missing bookings were created, I made a discovery.
It turned out the client was at fault. They had set an event (customers book events and bookings have a menu choice) live without associating the menu. This meant the event had been live without a menu for customers to book.
I simply compared the timestamps of the missing bookings to the date the menu was originally added. The customer most likely made the event live for period (I estimate ~45 mins), realised they hadn't associated a menu and then added it afterwards. Of course at this point it was too late as people had already booked.
No need for a huge email either. I condensed the above into a 5 sentence email.
Timestamps are soooo useful1 -
just finished after a full day's work, headed to a bar. their menu is not on paper but an ipad app and it crashed the very second I selected "drinks".2
-
What is your least favorite Website "feature" ?
Mine is those off page menus that slide in from the side. They lag like crazy and freeze the entire site. God forbid if click the menu button more than once. Forbes places comments on the off page sidebar which is just pure hell.5 -
When you your computers graphics card keeps crashing the computer.
I get 7 seconds before it crashes. About 5 are used up from typing in password and loading...
The next 2 seconds involve me trying to type in device into start menu... Next I will type in manager.
I am at the anger level where I am saying audibly "I will destroy you" "Arch is next" "Screw you Intel" "You have failed this city"
Real anger rising! 😠😡👈✂🗡🔪🔪🔫🔫🏹⛏🛢🛠🍺🍸🍹☠☡☢📵❌10 -
Just came across a site with TERRIBLE CSS and some sort of event handling to block the user from accessing the dev tools.
So in my Chrome, no F12 and no Ctrl+Shift+I.
Well, guess what. The Tools menu in the title bar also contains a link to Developer Tools.
Me: 1 Them: 010 -
rushed an arch install in a vm with 2gb of ram
there is no menu bar
wtf
my mouse dontveven work after i login
what the fuck
imtitred gutds13 -
Other than the obligatory “Hello World”, what was the first program you had ever written, Personally and also Professionally?
For me...
PERSONALLY: Fibonacci Calculator.
PROFESSIONALLY: Menu System.7 -
The new devRant upgrade is great! So cool that everyone can easily get to podcasts from the menu. Comments interface nice improvements. devRant rules!
-
So recently i started using sublime merge. Found the ui kinda useful to review and stage files. Today i was double checking my staged files in smerge and bam! staged files worth an hour disappear! I am pretty sure i didnt click anything. It has to be sublime merge... right?? i could see an undo reset option in menu which didnt work.
Going back to good ol git cli. fuck git ui clients5 -
Why was this even possible? Someone managed to make a GTK application in PHP, yeah a GTK application in PHP. I have no words...
https://kksou.com/php-gtk2/...5 -
I'm thinking about placing my menu button at the bottom instead of top right since the phones have become essentially larger than our hands. What do you guys think?6
-
Dude. Listen.
The deployment didn't go 100% well, fine. The main menu got fucked up, fine.
But no one gives a fuck when you send an 15 words long email to 6 persons just whining about the fact that no delivery go well on the first try.
Learn to shut the fuck up sometimes. -
As simple as it is to implement, the tell sign of a good application is a custom right click context menu. I swear every-time ones offered I smile.7
-
I decided to try shell scripting by making myself a nice configurable menu using dmenu that I can add commands to and that isn't cluttered with desktop entries. Worked suprisingly well tbh5
-
I use mainly linux at home, but I have to use Windows at work. I don't hate Windows, but at least once per day at work I accidentally try a keyboard shortcut from my Arch + i3 setup and either end up with some random program from the start menu running (Windows key used in i3) or I flip one of my screens sideways... Nothing detrimental, just enough to be aggravating.1
-
I just spent way way too long trying to get my Bootstrap navbar to not be a giant ugly grey block.
And somehow I've set my website to shrink on mobile devices, so all that fussing over a hamburger menu... bloody pointless.
#growingpains21 -
It's awesome when one of your favorite apps removes one of your most used features!
Edit: Jk the feature's still there, just buried in a menu making it almost not worth the effort to use the feature.
Fuck you Spotify 🖕🏻7 -
When you have to awk tell your boss that having that tenth icon in the header menu is not really UX friendly I feel like I punched a puppy cause his face fell and a small part of him died...
Any UX designers/engineers here? :(
What's the thing that annoys you about UX designers? Or designers in general? Just this is my first job so I don't wanna annoy any developer...
Sorry this is so random.. Anyways have a lovely Sunday evening..3 -
It had to happen eventually...
I'll just check my history, and I'll be real careful not to choose 'clear history' which is right next to it..
You'd think there would be a confirmation box "Are you sure ?"
But no !
I don't suppose there is a way to get it back is there.. ?7 -
The 'Not Junk' menu in Outlook contains 'not junk' (as expected) and what...?! Nice one, Microsoft!1
-
!rant
I really like the Material Design guidelines that Google has released with Android 5.0, and maybe, @dfox, you could make the status bar match a darker tint of the app's color, as this color is also used on the recents menu and on my keyboard, and it really (IMO) makes an app stand out.
Thanks!9 -
Got a new Mac from work, wanted to do some magazine editing so downloaded Scribus.
I begin to panic because most of the top toolbar icons were not visible. I figured it was bugged.
Okay, calm, it's still vaguely usable with shortcuts and menu. But damn this sucks.
Oh,
They just haven't adapted the program to work with system wide dark theme.
That, that would be why.5 -
My Top 10 most useless keys (#1 is worst):
1. Stop (the media key).
2. Pause/Break. (I understand this has historical usage, but I personaly have never used it.)
3. Page Up
4. Page Down
5. Scroll Lock
6. All those little shortcut keys along the top (above the F-keys) which open things like IE, My Documents, email etc.
7. All the modifier combinations of back tick (it in itself is useful, but WTF is a split pipe supposed to mean!? Or a ¬ !?)
8. Right Windows key.
9. Insert. Again, it has historical significance, but it's completely useless! Especially when you press it by accident.
10. The Menu key which opens the context menu.
I know some people will probably say 'the [blah] key saved my life once...', but I just rebind these keys with AHK. (http://autohotkey.com)7 -
Joke:
A linux programmer walks into a restaurant, orders some food from the menu, and asks for a fork. After a while all the programmers at that restaurant start asking for forks. -
After using Devrant for some time.
me: (closes devrant)"lets do something else."
Swipes through the app menu and opens devrant again. 😑 -
Let's see what's on the menu today:
* Web Application Catastrophe Special *
Includes, but not limited to:
- Orphaned server processes in the configuration management cluster
- Microservice back-end architecture with no API documentation
- Poorly implemented cache microservice with no documentation
- Stale data causing everything to be shown as down in production, despite everything running fine
Cost: 1 developer's sanity -
The nostalgic feeling you get when you find an old PC running Windows XP, and you start going through the accessories and games start menu folders, always have to start up the good old MS Paint :35
-
Anyone else have this happen? Has happened twice already where the menu covers the feed and no matter what I do I cant remove it to go back to the feed(clicking rants, swiping, etc)4
-
Github's issue reference menu can't even fit all of the duplicate issues for the one you just opened, you twat.
Stop wasting my time.1 -
fuck, took me a whole hour to debug an issue in my game that causes the start menu to switch right to the game itself, only after an hour i realized that i named the start game method as a default start ( a default method that executes at the very start of the scene). feeling so dumb now.
-
Not so much a rant.
I just love the feeling when you test a site on mobile and you can't help but say to yourself, "Damn, I'm good" because the menu is just so usable and scales beautifully.1 -
Locked out of machine...
Email to open ticket...
Ticket confiration in email call number pls...
Calls number, dial options menu...
Option 3 ... Presses option 3...
Please leave a voicemail describing your issue...
Rinse repeat3 -
Firefox Quantum broke mouse gestures of any kind in Linux by forcing the context menu to come up on right mouse down, instead of up.
Lots of people love Quantum, but without a viable mouse gestures extension, it's unusable for me. I downgraded back to 56 until this issue is resolved.3 -
Stop posting feature requests. Go to the hamburger menu and select 'About'. You'll find the email address for ideas in there.3
-
The 'hamburger menu' is now like, and industry standard for basic UX everywhere.
Am I the only one who feels that it in its entirety, sucks?
the way iPhone implements its commands on the bottom or the way windows used to (before it gave in to hamburgers in UWP) implement charms was a way more efficient and elegant way to show commands..
I cant think of a better way without sacrificing screen space, but this for sure isn't the best way to handle commands.6 -
So i'm making a menu for my friend. He shows me a menu he made on his iPad, all in Chalkboard SE (identical to Comic Sans), lined up using tabs and spaces, and asked for the same font.
I'm not joking.2 -
Windows => MacOS
Edge => Safari
taskbar => dock
File Explorer => Finder
Cortana => Siri
start menu => launcher
Control panel => system preferences
Notepad => Text Edit
Task manager => Activity monitor
Visual Studio => Xcode
command prompt => terminal
paint => preview
Disk Management => Disk Utility
Action center => Notification Center
everything is one app. just the name is the difference14 -
Fuck DataGrip, and it's an unintuitive interface, which asshole came up with the idea to remove the import menu option in favour of a drag and drop bullshit, and while I am at it fuck your documentation that is never accurate. You are a tool to speed up my work not create more tasks dummy!2
-
1. Open a couple of tabs in Google Chrome.
2. Close one of them.
3. Try to reopen it from the titlebar right-click menu.
Has anyone else ever notice that you have to right click the title bar twice to get "Reopen closed tab" to work in Chrome on Windows, or am I just crazy?7 -
Android force-updated itself without my permission and it appears they've removed the "open applications" menu altogether. If not, it's well and completely hidden.
Getting fucking sick of my phone and other devices being at the mercy of Mommy Microsoft, Daddy Google and Auntie Apple. Fuck them. I have zero control over my electronics anymore.
EDIT: It's there, but it only works if you're already in an app - not from the home screen. Because that makes fucking sense.3 -
Need UX opinion.
I need to make a menu which is a single point for everything. Hierarchical menus is the default nowdays, but they get tedious as the entries' list grows and clicks-to-goal can become high af very quickly.
By "single point for everything" I mean that there's only one menu, as tiny (screen-space-wise) as possible, containing hierarchy of options.
What are other options?
What's your opinion on radial menus? I often see them in games and various eye-candies. Radials would solve the overflowed-list problem with classic menus (as radials can have multiple layers of items around the core) and they seem tiny. And I can easily imagine them in touch-enabled devices. How bad are they irl? Are they used in web or just in native apps? What are the trends?
I did my share of research but there's surprisingly little info covering this tool :)5 -
How the heck does nvram magically forget your boot entries while your system is up...
Worst reboot of windows I've experienced in a long time, ugh.
The boot/*.efi files are still present but no entries in the menu... -
I just hate the word "menu" today
Even worse: menues
The Internet is a fucking restaurant!
Kill it!3 -
So we develop several apps for Android.
And since the whole company is full of .Net developers we´re using Xamarin.
That piece of software alone is worth more than one rant.
But today someone called and said he updated to the latest version he got from our server.
But now one of the menu points in the settings menu is opening the wrong mask.
I´m like ... what? Who fucked that one up now. Ok...
I look at the code and, I didn´t expect it to be honest, but it looks alright.
The menu point has the correct id. The function "OnOptionsItemSelected" looks for the correct id and opens the correct activity.
Just to be sure I also check the activity.
Everything good.
So I start up an emulator. Deploy the app in debug. Works correctly.
Create a self signed apk and install it on the emulator. Works.
Repeat the same with a tablet and my personal phone. It works.
Then I install the apk from the server and would you look at that.
It opens the wrong mask.
So it seems only if the app is compiled on the release server it shows that strange behaviour.
And for the love of my 1080ti I can´t figure out what causes it...
Thank you Xamarin! -
Went to a food stall, ordered the dishes(very simple and must have dishes in any food stall) in menu, and they replied it not yet available.. coming soon...
I immediately thought that IT world has affected the food industry too..
Now, they have coming soon and TODO in their Menu..
Imagine, waiters telling:
"Sir, the dish you ordered is currently in beta testing phase, and we are working to push it into prod soon. Meanwhile, enjoy the existing features(dishes) provided by our restaurant" -
So I'm making a little CMS for a website generated by iWeb from Apple which is ofcourse shit. I just discovered that they include a 6000 lines javascript file with nu purpose except generating the menu from a feed.xml(which includes to other js files). And the most frustrating thing is that it lowers fontSize if you add more text than the viewport. Fucking hell. I'm looking for a way to dismantle this shit.
-
New update available on your phone...
Wait people to teste it before installing. It look stable, ok i will install it
After the update
Fucking shit the clock is on the left side 🤮 what the fuck is this shit android... The settings menu is now a ducking mess. The finger print scan is so slow i can cooke an egg before he unlock the phone. The multi tasking screen is like iphone and look like a garbedge. Some applications rushing running.3 -
Is there a way in LineageOS to reboot directly into twrp? I remember in the old times roms would include an "advanced restart menu", but I cant find that anywhere.
I am always sweating, if my phone is going to get wiped, whenever I have to access twrp via "wipe everything" boot menu, because I can never know if something deleted twrp and it will actually wipe my phone.6 -
backend-dev : *takes time to config the menu module to specs*
"it works but the front-end guy justs needs to fix 1 or 2 css details"
boss - "nah i'll just buy an other module" -
I wish multiple notifications would just be condensed into one on my phone... The notification menu gets cluttered by the separate replies and ++s.
Maybe instead have something like "devRant: 2 replies, 1 mention, 1 ++"?2 -
!rant (first post!)
Feature request: an option to subscribe to the comments of a rant without leaving a comment yourself. What happens now is that some rants get spammed with "following" comments by people who are waiting for an update from the OP. This causes the thead to be spammed.
My idea is to put a button in the options menu to receive notifications for that rant.6 -
So this horrible client micromanaging every single thing in the application now suddenly asking me where a menu should go! I'm like why are you asking me that now I think you should take the menu and shove it up your ass?3
-
Anyone else here trying to access the menu of any service display they come across. Can't help it ;)
(Or trying to find an outgoing link if the display is set to a certain website.) -
at work....
windows: please restart to use newly installed tool
me: *opens menu and sees "update and restart"* NOOOoo this takes longer than usual
me: well see y'all im gonna go get some breakfast2 -
So first reflex in looking what Electron development looks like was making a Hello world app. So it just makes a window saying "Hello world".
Then I proceed to editing the menu, and the quit option is "Goodbye world"... and I realized, or at least I thought... this is a bit... grim?1 -
My uni uses a drop down menu to show different course times to select which course to go to. And they sorted them by alphabetical order instead of time. What the actual fuck.
-
Microsoft has released Visual Studio 2019 version 16.6 with a new IntelliSense Linter to help C++ developers efficiently clean up code.
The tool IntelliSense checks code on the go, using squiggly lines to highlight problems and Lightbulb actions for suggested fixes.
The feature can be enabled in Visual Studio 2019 version 16.6 from the Preview Features within the Tools > Options menu.
Source : https://devblogs.microsoft.com/cppb...1 -
Something about MVC. If one clicks on the UI to open a menu, is the event sent to the controller which updates the view or does the view "just display the menu"?5
-
!rant
Can you buy ++ ? I saw something in the avatar creation menu. If you can, does it then show up next to your name or is it just used for avatar cuatomization?3 -
Idk if it's my putrid chunks of fingers but Play Music's options button always jolts the scroll bar and rarely brings up the menu and I need to fucking complain to somewhere!2
-
Been working on a particularly elusive HTML menu sizing glitch for over a year now, trying to get it to appear consistently enough to track down its cause. Finally a) got it to happen in a browser so I could hit it with Chrome Inspector and b) figured out what was probably causing it and fixed it.
And then...
*happens again*
*cannot reproduce the issue, but bossman can*
me --> *commits suicide*5 -
PM "So how am I gonna make a sitemap for this app to show the client when there is no menu and everything is usergenerated content"2
-
Has anyone else installed Ubuntu 18.04 and have their themes not working (I'm using arc thenes), and the top bar menu options like file, edit, etc not appearing? I can't find fixes.
AND WHY IS 18.04 SLOWER WITH GNOME?!
This better all be fixed by the final release. Also by slower, I mean animations, opening certain apps, like wth.6 -
Holy shit. Its been like 3 hours to get this motherfucking PC boot from the pen.
Cant get the boot device menu, and Ive tried all the F keys and changed the boot drive.
The mainboard is an asus p5ql pro in case someone knows how to help.
I just want to install w10 on my ssd... fuuuuuuuck.1 -
Ok It's my last term in CS and guess what I have the knowledge as same as some one in high school i rly don't know what to do nAw any suggestions20
-
Anyone else pissed off by the lack of screenshots on tutorials that tell you how to change display language on things? No?! Just me then..
Happened once or twice I needed to change display language from xy to english so I know what am I clickin.. and tutorial was all like 'go to menu tools settigs and find the language settings under advanced tab'..
No pics, nothing on how to get 'there'.. How the fuck am I supposed to get to the menu to change the language?! Oh, right, just click away and hope for the best :/ FFS!!2 -
Feature request: if everyone tagged memes and funnies with, say, meme, that way we could have a special feed for those. Some like em, some dislike em, everybody wins!
If a rant is really a meme, and it is not tagged as such, the downvote menu could include a "It's a meme" selection which would promote it to that feed. Whadda y'all say?3 -
Today I was going to wipe an server used for testing purposes, I thought that all vms are just tests that has been left over from restored backups.
Was in the raid controller configuration ready to format the drives an couple of menu navigation away, a colleague came looking for me and said an website was not working, strange...
Turns out that one VM responsible for hosting our internal websites was on that machine -
I Paid 32€ for this world atlas.
When I'm in the Premium area I can only see maps in a craptastic quality.
When I download your "Online Globe" software thing I can't make it flat, but can draw on it (it's buggy, slow and weired to use) and your menu from 1990 I guess don't has a print option.
And when I want to use your digital Version of the atlas I would need a license for 4€??? -
I want a devRant iPad app.
All it really needs to be is a streaming feed with the slide-out menu static on the left. I'd be happy with that.
Pretty simple, but obviously not critical. I just hope it's on the //TODO list. I'd enjoy it (especially if it supported multitasking).
But don't feel as though you should support the 12.9-inch Pro because lol fuck that monstrosity.8 -
Feature request
Can you make the menu bar slide when i swipe from left to right and the reverse
I always have to go to the other end of my screen to open the menu -
Wondering if y'all could help.
I'm trying to set up a VPN on Ubuntu that has been provided by CyberGhost.
I'm trying to do it via the VPN menu in Wi-Fi, but whenever I attempt to connect, it either says the service stopped or nothing (checked the logs, it's unknown...)
Anyone had this issue and solved it?
Thanks10 -
Moves taskbar to top of the screen; hides start menu button. Opens laptop in lecture hall and hears a whispered "woah, he's using that Linux thing!"
I didn't correct him.3 -
As odd as it may be, but when I find an old 5000 line kshell script on an old build server that has its own built in menu happiness fills me.3
-
Question, any guides anywhere on how toggle options in drop down menu's are supposed to look like ?
Just I was using an application that has a toggle menu option, and it doesn't tell you its a toggle!
It does change its name, but of course, you don't know its going to do that because it looks like any other menu item..
So, what is the standard way of showing toggle menu options, in a drop down menu.
Eg. Not a static toggle !!!8 -
trying to learn how to style text for a menu/sidebar. went here first: http://w3schools.com/w3css/...
i used the css file they linked, and oh my god
http://w3schools.com/w3css/4/w3.css3 -
I've always thought Gedit (Ubuntu text editing software) doesn't have Redo feature as the shortcut Ctrl + Y didn't work. Just realised it's Shift + Ctrl + Z
Lesson - be humble and look at the provided menu items. -
Last Windows update corrupted all system UWP (or how to name "updated" settings) applications and start menu does not work at all, awesome.
Reverted to a safe point, installed update again, same result 🤷♂️5 -
This was in 2001 on a legacy AIX core ops server. I got tired of waiting hours for the last page of a print job to debug totals. So, I added a print menu option to print it to an HTML file on a share served up by a wab server and send me the email link. Took two years to catch on but when it did, we eliminated all nightly print jobs and took the paper budget down by 90%. All because I was too lazy to keep reloading my desk jet with paper to debug reports and I forgot to take it off the menu.
-
Just red about a great UI framework for react called AntD.
Immediately visited their site, saw the burger menu being on the right side, and closed it quickly 😂3 -
Doing client work can really be a pain in the ass. Especially clients, describing something very specifically (e.g. "I want my customers to have a menu like PRESS 1 FOR SALES when calling our business number"), and when given the name ("so, an IVR-system?"), discarding the solution, just because they didn't know what it was called.
I hate working with idiots.1 -
Devrant app bug report:
You can see the type content selection menu through the UI
To reproduce:
1. Have the rant of the week banner
2. Open type selection menu
3. Close the rant of the week banner
4. Now the menu is behind the rants5 -
When you swipe in from the left to show the side menu on Dev Rant and nothing happens... Yeah that.2
-
*plugs in Sun Microsystems Type 6 keyboard*
Okay, several questions:
- Why is my Compose acting like Super?
- Why does Meta no longer exist?
- Why does Menu no longer exist?
- Why is Num Lock stuck on?
$ sudo dpkg-reconfigure keyboard-configuration
> Sun Microsystems Type 6
Thats better. -
i learned how to make radial menus on canvas :) from knowing nothing at all about anything related to canvas, i got a working menu in about 6 hours2
-
Knowing where to touch to get rid those annoying layered popups (like subscribe, disable adblock), menu bars, etc that appear when browsing (mostly) news sites.
-
!rant
I'm dreaming of a web language that is as close to the English language as possible.
Imagine:
<html>
nav bar with 5 links
slider with 3 images that runs automatically
Section with 3 images next to each other
Paragraph with first word in red
Footer with menu and sign up form
</html>
This would be the shit!6 -
@dfox I think that it would be more comfortable to mark as viewed a notification once you open the notifications menu.
What I mean is that, you don't actually have to click on the notif, enter the rant, and get back to the menu to leave it as seen.
I find having to click on every notification very tedious4 -
Feature request: please allow the app to work in landscape and rotate. I can't get to the hamburger menu in bottom right due to broken screen3
-
@dfox I'm not sure if this is entirely kosher, but if you added an option in a menu somewhere to watch a video or two to support Devrant, I'd partake every day or two.5
-
Probably a bug @dfox
I've been providing my feedbacks through the Feedback menu. However, I'm writing this issue in here just to know if I'm alone.
-------
Issue
-------
Platform: iOS
When I clear the notifications and refresh the timeline for new rants, the notification badge shows a number. But there is no unread notification when I go to Notify. This has been occurring multiple times now.9 -
Anyone having issue with browsing this weekly topics?
I can't go into this week's 3 Wishes specific feed.
Tried by clicking the tag and browsing Weekly Rants menu. Both directed me to last week rants.
I can only attach screenshot of weekly Rants list. Clicking and ending up at last week feed is not possible with screenshot alone.
If you guys also have same issue, I'll open a ticket.7 -
When did you first learned about that under the share menu there is a save image for image rants? :)3
-
@dfox is it a known issue to have crashes on iOS when visiting the notifications tab?
If not here’s what I can gather: When opening the notifications menu, app will crash after the devRant logo wobbles 3-4 times. After reopening the app and repeating the process about 3-5 times, the app will load into the notifications menu. However, when tapping on any individual notification, it will often crash after the same 3-4 wobbles of the devRant logo.
Now, I’m not a mobile developer (Nor a react developer, if you guys are using react) but here’s some things that I would think might cause this:
- An unhandled exception?
- If you use multiple server instances, they may be out of sync?
Not sure what it could be tbh. But I hope this helps, keep up the great work!7 -
Microsoft understands we're pissed about low QA performance on updates. They're gonna bleach the Start menu and add a couple more buttons to the UI. https://theverge.com/2020/7/...10
-
Just spent an hour salvaging some code from an app project I abandoned so I can reuse it in the future and add what I salvaged to a portfolio of small things I've made.
It was a simple multiple player name menu that generated player objects once the user was done entering names.
Loads of potential future uses.
No point letting it sit inside an abandoned project even if it is somewhat trivial to reproduce. -
Cooperation with a graphic company is like a never-ending story. Return them styles to fix something, they fix the thing, but also break few other things. 😒
Now they fixed colors of links in main menu, but also made the text color in a context menu same as its background... 😫 -
JIRA Task:
Description
As a Client, I want to have on my left-side menu link to the FAQ page.
On the page should be:
How I verify my balance?
Bla bla bla
How can I see my personal details?
Bla bla bla
How I logout?
Bla bla bla
-------
Do anyone know if this is contagious ?4 -
Who knew you could make (more or less) everything dark mode in windows 7?
I wish windows 10 could also give the explorer a dark mode... As far as I know you can only use high contrast mode to do that which is ugly af. Why add a dark mode to the settings and start menu but not for the windws explorer?11 -
How to write drop down menu with check box in java swing and I should also be able to add check boxes dynamically
-
Can we acknowledge how devrant sucks in terms of UX/UI? I mean, the desktop feels like a lazy copy of a mobile app whereas the mobile web version doesn’t even have a menu( not even including the many other issues on mobile). Feels like the devs of devrant are more focused on ranting about their own job than coming up with a better design/ functionality and / or adding PWA support and are forcing us to use their app9
-
Passwordless Unix login leading to a console menu. You can then FTP in for free and remove ~/.login . Boom ! Shell access! And I already had a superuser access from another "dialog" asking to confirm a dangerous action with the superuser's password. Boom! Root access !!
-
What's the point of a 'Check for new version' menu if it doesn't tell you that a new version is out, and that you have to manually fetch it and install it?3
-
OMG, what have I done? I've maxed out the Windows 10 start menu size and filled it with tiles, only to realize that I've basically turned the menu into *Windows 8 Metro Home Screen*. By choice. This is scary.2
-
I'm super bored, but I think I found a good way to spend my time.
https://theitsloth.github.io/contex...
https://theitsloth.github.io/editor...
https://theitsloth.github.io/tabbed...
p.s. Code quality varies between meh and awful. -
Does master degree really matter or if I take some courses will be better if I'll not go through academic life10
-
I would end up on top of any other trend thing needed by humanity.
Possible outcomes:
- building better AI's, building better robots
- neural networking
- quantum computing
- robot dating service
- artificial life
- holodeck design and construction
- free energy (any kind)
- running a private space shipyard
- research into new and unknown technology
And last, if nothing works, I would open up a deli on Mars. The robots would make the food anyway, I would probably only program the menu and fix them when they malfunction. -
Little question: is it just me that does not get the notification when browsing with the browser? If I go here (https://www.devrant.io/feed/recent) I see no notifications in the top left icon (the one that opens the menu) but if I go on the app, BAM! new notifications waiting.
This has been happening only recently, is it just me?7 -
I was working on CakePHP as part of class project. I had to demonstrate AJAX. So I created some text files filled with random Wikipedia articles. On drop down item change, my AJAX handler would fetch the content of corresponding file and return it back.
But the problem was, it wasn't returning just the file content, but the whole HTML document. So the calling page would get another set of header, menu, footer and all! There was no time to fix layout for AJAX calls as it was added at last minute before the presentation. So, I just hid the duplicate menu etc using CSS and went for the presentation. It passed with flying colours.
So, if you can't fix something, just hide it! 😂 -
Best prank of me? I think: Making a screenshot of the desktop and setting it as the desktop background. It was funny to watch people trying to move the items. We also locked the screen and moved the unlock window almost out of view (windows xp). They tried opening the browser or the start menu, nothing worked...1
-
Wtf plunker. I decided finally when asking questions it would be convenient for devs to answer when they have example in plunker or some other platform where can code be edited and exectured. And I cannot do simple thing - create a file. Wtf. Now I am googling for tutorial how to create a file in plunker. Wtf idiots. File creation should as easy as clicking right mouse button and creating fucking file. And now it opens browser contect menu wtf !1
-
I have a function called evil_js_cleaner because there is a js menu plug-in that a colleague made me use as part of a new standardized font end template . When using the js menu , it would put a bunch of extra garbage into my php _REQUEST array.1
-
https://webapps.stackexchange.com/q...
The answer is kind of there.
When you check your amazon messages (Which if you haven't done it before, you will find it difficult, since it isn't listed in your menu options..) and you want to reply, the reply button option only exists in the second tab, not the first !
Don't be like Amazon, include options in both tabs..
Oh, and make your bloody windows bigger !!!
See following pictures..4 -
Does anyone know if it's possible to make the gnome quick menu (the one in top right corner) into an "icon" to put in the dock as the start button as windows?
-
Problem with touchscreens.
Look away from phone for a minute and when I turn back to find I somehow navigated to a settings menu.
Oh crap! Did I change anything?!
Factory reset phone just to be safe. -
For WordPress devs:
We have a multisite structure and I have created a menu on one of the site, how to use that menu on another subsite, googling didn't help :/ please guide -
Just updated my OP2 to the 3.0.2 through the bootloader, because it wasn't capable of installing it through the OS... I guess that was because I was running the Beta.
When it was done I got the lovely option of "Reboot" or "Yes". I pressed Yes, which sent me to the menu.... ? Well then the reboot option in this menu might work? Got "Reboot" or "No"... I guess someone forgot the meaning of yes and no :P (forgot to take a picture :() -
used bootstrap, and the found a prety elastic side menu animation, turned out it can'twork with the best css fw.. fml
-
Sat through a phone menu/jail about 5 options deep just to find out the call center was closed. We make smart applications, can't we raise this information to the top when the caller starts smashing the "zero" button a hundred times?1
-
Coming home fully energized to work on a collaborative project, turn on linux pc (quite old, but works best with git), open github, start git pull, open vs code, click on reminder to download new version -> open new chromium tab (takes longer than normal...?), open start menu
....
....
? ... pc frozen😔😥
forcing shutdown, restart ... wifi gone😓? oh come on!!😑😣4 -
I have problem to set a menu. I want to open a menu from an ImageView, because I want to use a specific image on the ToolBar insted of the ActionBar. I can't found any tutorials
-
When you're testing a website on the iPhone and in order to clear the cache you have to go through settings menu just to try a fucking tweak out.
Is there any way on the iPhone to do it quickly? < iOS11 you could tap refresh 5 times. ARGHHH2 -
Am I missing something? After going through the Manjaro installation process, turning on the computer and selecting the operating system in the grub menu, it never allows me to boot successfully. I even reinstalled the os and same result. It always says something like this when booting... 😒6
-
A close button for a filter menu, according to UX, users could not figure out how to close it... We guessed those sames users also do not use windows, linux or mac os... WTF
-
So I decided to install windows 10 and I'll use it for quite some time. I want to make it as usable as possible.
So, does any of you know how to permanently remove all those shit apps that pop up in my start menu?
And how to remove Cortana and Edge?
I'll be thankful for any help D:1 -
Hey is there any iOS dev who can help me with this?
Is there any way to trigger a context menu in UIKit with only tapping the view instead of tap and holding? 🤔 -
Is this really possible to apply CRUD operations on expandable listview through menu items ... Please help !!!2
-
Got jQuery machine test 3 hours later.test includes plugin development and menu generation from json. I am an angular dev. Should I go through anything else other than official docs and ancient youtube videos?1
-
JFC, who thought that handling multilingual menus like that is even remotely a good idea?
When you add menu item in one language it will show up in EVERY language regardless if it's translated or not. Every godforsaken module that's supposed to fix it breaks something else and the only way to make it work is patching the FREAKING CORE.
And what's worse people in issues ticket have the GAL to question if showing menu item only in its given language by default is the intuitive approach.
Plus there's no way to preview menu structure in any language other than default admin language, except adding language switcher to admin pages manually, that shit should show up automatically the moment I enabled menu localization.
FUCK Drupal8+ and its "We integrated that module in the core! Except we shaved off half the functionality!" approach.
And if you want me to use Drupal Console, then FUCKING FIX IT, it's been uninstallable for the past three months! -
(please tell me what I should do to improve!)
So I got some info from devs around the community of DR and I did what they said! I have done a lot to it!
I added an @user system, the feed detects links (I'm about to make that cleaner), and it also detects hashtags in the posts as well but I'm thinking about just adding a hashtag bar in the post menu.2