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 - "get set"
-
Manager: We need to setup the security in the Mexico server
Dev: You mean that 3rd party firewall add on?
Manager: Yes
Dev: And set up the billing on the Mexico account?
Manager: Yes
Dev: lol, sure thing I’ll create the ticket
Manager: What’s so funny?
Dev: Nothing
Ticket: Build wall and get Mexico to pay for it.15 -
Boss: lets set the domain to <productName>1.com.
Me: ok ... why 1?
Boss: ... because its version 1 of the software.
Me: .....
Boss: People will get it6 -
How to get free dark theme?
1) Set theme to blindingly white
2) Go to settings and turn on invert colours.
3) Profit15 -
You ever sit down to start working on a project, get all your imports and variables set up, and then just completely lose all motivation to even press a key?11
-
I'll get to my four words in a sec, but let me set the background first.
This morning, at breakfast, I fired up my trusty laptop only to get a fan failure warning.
Finally, after the three year old is asleep tonight, I'm able to start dismantling the case to get to the fan. I'm hoping it just needs cleaned out.
Hard drive, memory, and keyboard spread out over the kitchen table. I'm not even halfway done.
Guess what? Now I'm one of the lucky 3500 people to have a power outage at 9 pm. Estimated restore time: 2 am.
Sigh.
"All those tiny screws"
And a three year old in the house...18 -
Got my front end friend (also my irl best friend) to agree on me setting up a vm/vps on one of my dedi's with a sub domain so he can learn to work with servers.
He agreed on me leaving root access for myself in case he couldn't figure something out and I (a Linux server engineer myself) would have to help him out.
He seemed so excited, will set this up when I get home 😊6 -
Stallman heart failure recipe:
1. Start your UBUNTU LINUX(don't add the GNU part) and set up your .NET Core environment.
2. Download VS Code, the superior text editor for those that do not wish to have carpal tunnel.
3. Open the terminal inside your VS Code instance while inside a .net core project.
4. Type emacs -nw and watch emacs come to life inside of the terminal while living inside of the heretic vs code editor.
Wait for stallman to get a heart attack or a stroke from this.12 -
*In teams meeting with client*
Manager: Yes we can do all of that and it will be actioned very quickly. We will make all of these feature requests top priority. We will set aside everything we are currently working on in order to get this done!
Dev: ...Are you writing any of this down?
Manager: I don't need to, I always remember everything!
Dev: Just so you are aware, I'm not writing anything down. You're going to need to create a ticket with requirements spelled out for each one of these promises you're making otherwise they won't get actioned by the team.
Manager: I know that!
Dev: ...
*Later that day*
Ticket Title: Action client feature requests TOP PRIORITY!!!
Ticket Description: *empty*
Dev: ...13 -
I worked on a company with an open floor plan where you would get a desk assigned depending on the type of project you worked on. All the desks were modular an you would get a desk with a cube with a set of drawers, or with a locker-like cube with a single space and door. When this guy started, he was assigned a drawer set. Around the third day he went around the office asking anyone with a locker to trade cubes. He finally got one. He filled it up with liquor bottles, cans of juice and several types of glasses. He would prepare himself cocktails during the work day. Once he was enjoying a Coca-Cola and whisky mix when the HR boss came around to ask what he was up. He offered the guy a drink.4
-
To improve our user's "experience" I suggested to my boss to add a status page showing...well, the current status of our services. Everybody was up for it, so I go off and implement a basic version + automated monitoring backend, get lots of positive feedback, all seems fine.
Then it starts:
Boss: "Can you get it all set up by this Saturday?"
Me: "Uh, today is Wednesday and I've never set up all the stuff needed on a proper server before"
Boss: "Well, you still have a few days. Please also contact your coworker to get it all hooked up in our launcher"
Me: "I'll try, can't make any promises though"
Contact my coworker and tell him what the plan is. I had already given him access to the repo and he is positive to get it all hooked up (I doubt he ever cloned my repo, let alone ran my code)
Spend all Friday getting my stuff set up on the production server, feeling pretty good thanks to the many tutorials.
Contact the boss Friday evening:
Me: "All up and running"
Boss: "Thanks, but we decided to go with a basic HTML page instead. We can just manually edit that, should be enough.
Me: "..."
In the end my stuff was never used, the server I set up was finally taken down a month ago. The gratitude you get when not hacking together some absolute shit that causes problems when you don't add <br/> tags at the correct places to prevent an ugly overflow, cause the coworker was too lazy to implement some form of line wrap in the launcher. I'm not saying my stuff is the best of the best, but at least it was professional looking to a certain extent.8 -
I applied for a backend job. Somehow i ended up doing frontend. Ok whatever the pay is alright and i dont mind doing js. But then i see the backend team doing absolute horseshit, stacking up overhead and not even fucking documenting the endpoints, i get mad.
And now our sysadmin left so there is no fucking server and i cant run locally because of 9trillion config files (remember the overhead part?) and the pm is nagging me to get the site done WHEN THERE IS NO FUCKING SERVER. WHAT DO YOU WANT FROM ME, SET IT ALL UP AGAIN? THATS NOT MY FUCKING JOB YOU IMBECILE FUCKFACE.8 -
Now, instead of shouting, I can just type "fuck"
The Fuck is a magnificent app that corrects errors in previous console commands.
inspired by a @liamosaur tweet
https://twitter.com/liamosaur/...
Some gems:
➜ apt-get install vim
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
➜ fuck
sudo apt-get install vim [enter/↑/↓/ctrl+c]
[sudo] password for nvbn:
Reading package lists... Done
...
➜ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin master
➜ fuck
git push --set-upstream origin master [enter/↑/↓/ctrl+c]
Counting objects: 9, done.
...
➜ puthon
No command 'puthon' found, did you mean:
Command 'python' from package 'python-minimal' (main)
Command 'python' from package 'python3' (main)
zsh: command not found: puthon
➜ fuck
python [enter/↑/↓/ctrl+c]
Python 3.4.2 (default, Oct 8 2014, 13:08:17)
...
➜ git brnch
git: 'brnch' is not a git command. See 'git --help'.
Did you mean this?
branch
➜ fuck
git branch [enter/↑/↓/ctrl+c]
* master
➜ lein rpl
'rpl' is not a task. See 'lein help'.
Did you mean this?
repl
➜ fuck
lein repl [enter/↑/↓/ctrl+c]
nREPL server started on port 54848 on host 127.0.0.1 - nrepl://127.0.0.1:54848
REPL-y 0.3.1
...
Get fuckked at
https://github.com/nvbn/thefuck10 -
Dev: We need a better name than “Data” for this class. It’s used for displaying a set of tiles with certain coordinates so maybe TileMap would be a bit more declarative?
Manager: No I don’t like that. Data is perfectly fine, this class is for managing data so it’s perfectly declarative you just need to get better at reading code. If you have to change it then DataObject or DataObjectClass might be a bit more specific.
Dev: …14 -
My life in a nutshell.
I've been stuck in this timeless loop for 10 years, anyone that relates?
1. Set alarm before going to bed.
2. Alarm rings, I turn it off.
3. Wakes up late.
4. Work from 08 AM to 4 PM.
5. Take the train back home
6. Plan what to do for the rest of the day.
7. Come home, do everything except what was initially planned.
8. Watching time goes by while doing non-productive things.
9. I feel alone, watch porn to fill this void.
10. I get depressed and unhappy afterward
11. Set the alarm for the next day.
12. Repeat.11 -
Just had my first evening/night of being the on call/standby server engineer.
I'm quite tired but it's a fun experience.
Having to set an alarm at 3am is something I've gotta get used to though 😅
Only a few calls and a few server thingies that I had to look into!7 -
First tor relay is up and running. Works well, all good.
Want a faster one as well (nearly 1gbs) and trying to set it up but the control port won't get its fucking ass up. No clue what's going wrong :/
Probably missing something but idk what.
Grrrrrr.15 -
Fuck today.
Today I was supposed to go into work and set up a dozen or so units for beta testing (its been a year and a half coming)..
Got up nice and early to get a head start on things. Stubbed (and broke) my motherfucking toe, then spilled my cereal milk on my laptop.. subsequently spend the following 2 hours tearing down and cleaning my poor little lappy. Get her all put back together, starting to feel a little better about the day. Push the power button, and fucking nothing but a tiny little fan noise for half a damn second.
With this luck I don't even want to move, lest a magic falling anvil decides to adorn my head..7 -
New dev couldn't get his laptop set up and screens working. After a day struggling I walked over and recommend he plug in the power cord......3
-
It's raining in Chennai, India.
Flooding in quite a few areas.
The areas hit bad are where the IT companies have set up shop. More rain is expected .
If you know guys from here please check and see if they're OK. It was almost impossible to get back home from work for many people last night.
Uber was charging 600% more for a ride.
Hope you guys from Chennai are safe.8 -
Elixir:
solution = problem |> process |> process_more |> finalize |> format
Java:
New class() implements quantum mechanics; get(); set(); get(); set(); super.fuckshitup(); throw new nonsense 300 line error and crash6 -
So my in-laws got a new computer 😑
Yup you know where this is going. Ok so after I transferred all of their data set them all up etc.
They wanted to use "word" and could I set it up for free for them. I said no Microsoft office is not free you lost your license and disk and your old computer is trashed so the better choice would be Google services . So I explained the value of using Google drive, docs,sheets etc.. today and told them how much better it is everything would be on their Google drive so if I got hit by a bus they could get a new computer again and still have access to their data etc... So they said great and so I did.
Two weeks later... Can you set up word for us on our computer. Me annoyed at this point " sure no problem"
I made a shortcut on their desktop to Google docs. Them: oh boy this is great see John all you have to do is click on google docs to go to word! Thanks so much!
🤫🤓5 -
Manager: we require people to work in the office but we'll give you a space to get as comfy as you want.
Me: *walk into the open space office, set my mechanical keyboard, plug in my noise cancelling headphones, start coding and mumbling every now and then*
Manager: keyboard is distracting others and we don't allow headphones as we want to be able to speak to you when we feel like it.5 -
Apartment owner tells me to get out for a few hours while he repairs some stuff around the house . Get laptop , get wallet , go to kfc , go to order , only have money to get a large coke and a coffee , set up laptop , start working on my 2D game project , one hour later hobo comes in and begs around for 2 mins , before the guard catches him , he goes to order instead and gets a large duo bucket with coffee ...fml being a poor dev before paycheck...2
-
When migrating from MySQL server to MariaDB and having a query start returning a completely different result set then what was expected purely because MariaDB corrected a bug with sub selects being sorted.
It took several days to identify all that was needed on that sub select was “limit 1” to get that thing to return the correct data, felt like an idiot for only having to do 7 character commit 😆4 -
I develop apps for a medical school. You'd think the students would be pretty bright, but it legitimately scares me that some of these people are going to perform brain surgery.
I guess the moral of the story is you're not too dumb to get that dream dev job - if these morons can be doctors, you can do what you set your mind to. And you can feel good knowing your mistakes won't kill anyone!9 -
Two years ago: company exec (Mac fan) buys a Surface Pro to show off our .NET application to customers as he travels. Hands it to me (I build releases) and I iron out a few Win 8 bugs since we'd always used Win 7 before. Get it set up, get to like the device a little, he takes it home... and returns it within 24 hours because he didn't mesh well with Windows. (Again, Mac user.)
8 months later he buys a Surface Pro again. I install our latest release, verify that everything is working as expected with hardware we normally don't use, and give him a controlled setup that will just work when he's at a customer site. Once again, he returns the Surface within 24 hours because he can't get used to Windows.
At least we verified Windows 8 compatibility, I guess.1 -
"If you are on Craigslist to get a sofa, and you see one for free. You think there’s something tragically wrong with it – maybe there are bedbugs. But if you see a sofa on there for $2,500, you think ‘oh man, that sofa must be amazing’. It’s the same thing with art – you set your own value." - Jessica Hische18
-
My wife and I just put an offer on a house, 7 try and this offer was accepted. We're trying to get our financial approval together, she's a nervous wreck and keeps asking me if that's any news because I'm dealing with the bank. So I set this up.
She called me after a couple hours to tell me the dog house had called to confirm my reservation.3 -
Not really hacking, but my roommate says otherwise. So we share a router in the apartment and I’m the only one that really knows how to access it, so of course I change the password and tell no one (not like they’ll try to get in anyway).
Occasionally set roommate likes to get blackout and play music very loud at 2am. To be petty, on those occasions I set up an RPi Zero to connect to the WiFi, restart it, and sleep for a minute, and repeat. He’s still convinced we are getting DDOSd, and suspects nothing.
Reason I don’t just set parental controls - he gets more frustrated when the WiFi appears for 10secs, the music is just about to start and shuts off again. So he gives up quicker. Otherwise, he resets the router and I have to set up everything from the start.3 -
I pranked my friends ex, nothing bad, just fun. First i screen shorted is desktop, flipped it and made it his new desktop. Then flipped the resolution, so my upsideiwn bf was cool. Lastly I change his mouse behavior, I set it for reversed.
Fun right? A typical person might get a lil pussy and have to fix it. Some might even fix it themselves. Regardless have a lil chuckle.
He smashes the monitor and keyboard, left them, both in a pile.3 -
!rant
My older sister needed a new computer for college, so I helped her get and set up a brand spankin' new MacBook Air(don't kill me, it's what she knows how to use and she doesn't want to learn a new OS) and now I get her old (mid-2009)MacBook Pro :D
time to install Linux on this bad boi6 -
1. attach a debugger
2. create a set of breakpoints
3. perform an action in the UI
4. breakpoint is hit. F9 to jump to another breakpoint
5.
...
.......
...........
................
....................
nothing............
even more of nothing.....
......................................................
6. Kill the app. Restart. Repeat. Nothing again. Repeat it all ~5 times. Give up.
7. Go get some tea.
8. Come back with a cup of hot tea
9. the _next_ breakpoint is now hit (º . º)
10. F9 - yet another breakpoint is hit.
11. contemplate your own mental state, considering the #69 -
I feel like I'm in an abusive relationship with Ubuntu.
I love it but whenever I'm with it it screws up my environment and doesn't work when I need it to.
I go back to Windows reluctantly and get everything set up and stable. I'm happy, but not excited about it. And then, within a few months, I get that thought. Maybe if I put enough work in I can make Ubuntu work for me as my main environment.24 -
Conversation I had with a coworker today:
me: When transferring an object from C++ to QML you have to set the parent of the object. If you don't QML thinks it can just delete this object.
coworker: So if you don't set the parent of the object then the orphans get Anakined?
me: Yes1 -
Getting corporate VPN access:
PM: Here's the program to get in, it should work.
Me: Won't install.
PM: sorry old version, here is the new one.
Me: Can't get in
PM: create a ticket
Support: Not sure, just try again
Me: Still won't work
Support: We forgot to set some attributes in your account, should work now.
Me: Nope.
Support: We are investigating.
*two weeks later*
Support: should work now.
Me: No it doesn't you stupid f***tards.
*gives up all hope*3 -
Google has a password reset procedure so intense, that even if I can sign into my recovery account and give them the code from there, use 2 factor auth and give them the code from there, tell them my recovery phone(s) number(s), give them my mother's father's mother's late cousin twice removed daughter's maiden name, and whatever other security measures were set in place, I can't get a fucking password reset. Thanks Google, fuck you.3
-
So I finally graduated and got a job with a startup. I had to move to a different province to join it.
Hmm, ok sure. I spent a month planning and buying stuff, rented an apartment etc.
All set right? Plot twist.....
Just about 15 hours before moving there, I get a call that investors backed off from investment and my position was cancelled.
Wtf? Did it just happen? I even rejected a big company offer for this and I am unemployed still!!! Can't believe what can happen sometimes....7 -
Signed up on Trello, got everything set up there and everyone has an account.
But my dear PM, why the hell are you still sending out a screenshot of your bloody spreadsheet bug tracker and ask everyone for updates????
Fellow devRanters how do I get (force) my PM to use a project management system instead of silly tables?11 -
Disable Windows 10 Auto Updates
1. Run gpedit.msc
2. Set "notify for download and notify for install" according to this screenshot http://i.imgur.com/VjpeDHWh.jpg
3. You will still get an annoying popup saying "get updates" but windows will never autoinstall them and autorestart your machine.13 -
PM: "so I need you to deploy this new application to some new server. The deadline is in 2 days"
Me: "yeah I can do that, is the application ready and has been tested? Have the servers been set up properly by the IT guy?"
PM: "yep, all is set up and good"
Couple of hours later I try locating the server, only to find it didn't exist.
Me: "the server you mentioned earlier, is doesn't appear to exist?"
PM: "it definitely does, IT guy said he set it all up"
I dig around a little more, but this server definitely doesn't exist. The IT guy was on holiday for a week, so we had to wait for him to get back; delaying the release. On the morning the IT guy got back,
PM: " I though you said you set up that server for the application, we've had to delay it now!"
IT: "I just set it up this morning. Like I said in the email to you before I Ieft, I will have to do it first thing when I get back after holiday"
Turns out the PM had asked the IT guy to spin up the server, but never bothered to read his response. Assuming it was done he told the client he'd have it deployed in a couple of days.
The application was deployed successfully later that day, but not before the PM blamed us two for its delay.1 -
I have worked with a handful of very green devs in the last 10 years. A common theme has emerged.
They don't heed any of my advice.
An exercise to the reader:
If you have a Windows machine, but need to work in a Linux environment, what would be your first instinct how to proceed?
In this exercise, you are as green as it gets. You have very little professional development experience, let alone server admin experience. And your lead dev has suggested setting up a VM.
1. Set up a Linux VM
2. Use a live CD or set up a dual boot system
3. Pay for a cloud server and set it up from scratch
I have no idea how this person intends to get any work done on a remote, terminal only, Linux server. That is if I can even get their environment into a sane configuration.15 -
How long will it be before clients "get it" the web is a fluid medium it can't and shouldn't be fixed like ink on paper. Unless I do your website as a set of jpegs, you dickhead.3
-
Gaming on Windows vs Linux:
Windows:
After installing windows, and downloading Minecraft, I was able to run it at a solid 60fps while stretched across 3 monitors
Linux:
After installing, and spending many, many hours trying to set it up to detect more than 1 monitor, I admitted defeat and decided to play on just one. This monitor was also set at a weird resolution, which I briefly fixed, but then broke again immediately. I downloaded Minecraft and after running it, I was able to get a somewhat solid 7fps (10 if I was lucky).
On the bright side, it was able to run a terminal based game just fine on linux.34 -
Get yourself a proper set of peripherals (mouse, keyboard and chair), you will be using them quite a lot, so don't skimp out, it's you livelihood, so take care of it 🙂1
-
So these motherfuckers... they have stored the queries to generate the reports... fucking guess where. Just guess.
They stored the queries AS FUCKING STRING DATA IN THE TABLE. And you know how they get the parameters? A FUCKING JOIN WHERE THEY HAVE STORED THE PARAMS AS DATA IN ANOTHER TABLE.
So you query set the params to query to get the query to get that is joined with a query to get the reports.
If God is a programmer after all y’all are fuuuuuuuuuuuuuucked4 -
love my new baby <3
base set up: antergos/gnome
Additions: i3 gaps/polybar , getting deepin to play with, mpd+ncmpcpp, gonna get cava.
Don't know all of the specs yet,
16 GB ddr3 mem (??rpm)
256gb SSD
1TB HDD
Asus
also worth mentioning that gnome plays well with toutchscreen 😎
this puppy is gonna serve me well8 -
Sometimes in my code, I'll set a variable to "Jesus" so that when testing, I get to tell myself "Time to find Jesus"
-
Devs: Can we please get adequate hardware to do our job correctly? Please, just a new set of larger monitors.
Lower management: Sure, this is going to be easy.
Upper management: Wait what? This will cost us around 500€ times 10? Any maybe in the end other departments will want that to, so make it times 100.
We're a 4+ billion company ... but yes, please, I love scroll bars and they make my work so much faster.4 -
I swear to God if “Microsoft testicle supprt” calls me one more time I’m going to flip. I think it may be time to set up a sandbox and get the fucks to “fix my computer.”
It would be a shame if instead of payment for their “support” their computers became infected with ransomeware...
I know what I’m doing today.10 -
Just a package machine into which you'd put the number of your package then get it. Apparently it runs Ubuntu and it's not set to start automatically. Damn part of me wanna connect a keyboard and find out what it has to offer.9
-
"I found this tool that we should use because I'm a manager and its simple enough that my tiny little manager brain could set it up!"
Oh wow good for you, Mr. Manager! And what, praytell, does the tool require?
"All proprietary and cost-ineffecient products: MSSQL Server and Windows IIS! What do you mean we have to get the data out in order for it to be scalable? Look at it! I set up a website by clicking on an EXE i downloaded from github!"
Amazing, Mr. Manager. So you violated our security practices AND want to pocket even MORE of our budget?
Kindly fuck right off and start suggesting things instead of making people embarrass you into stoping your fight for your tool (has happened on more than one occassion).3 -
Thanks fot this very informative email Samsung.
I have English set as my language and I live in sweden. WHY ARE ALL THE MAILS I GET FROM THEM IN KOREAN?26 -
😜BOSS in office : Okay guys, today we are going to play a game.....
When I say a name of the fruit, you run to the right side of the hall....
And when I say any color, you run to the left side of the hall....
One who runs on wrong side will not get the increment...
got it ?
Employees : Yes Boss, Got it.
Boss : Okay...Ready, Set...
. ... ....
..... "ORANGE" !
Employees : Ayyo papi nanmaga 😳😳😰😰😡😡 😛2 -
For this year I have four main tasks I have set myself:
1. Don't lose my job
2. Write a few toy programming languages
3. Blog about said languages and things I learnt at work
4. Get married
I'm pretty excited about most of those but would love some tips on how you guys have overcome challenges in similar endevours4 -
I've got this customer who for some fucking reason won't change their DNS to point to our new servers, but wants to fucking stay on that old piece of crap, where we have to ask our sub-provider to generate a CSR to send to our customer to use to sign a certificate to send to us to send to our sub-provider. Because yeah, that's so much fucking easier than just pointing your domain to our new system, and get SSL set up automatically. For fucks sakes! And also, your certificate expires tomorrow, and since our idiot sub-provider hasn't responded to my email about CSR in a week, you basically have no option. So get that thumb out your butt and just switch the DNS!
-
Why the fuck this moron thought it was a good idea to set a global onClick event in a react component and make it have the desired behavior for EVERYTHING instead of the only click he wanted to get?
7 places you can click were triggering redux dispatch and ajax calls that should only work on one place... Fucking hell...4 -
Kotlin makes the development experience so much better. Humans are creatures of habit. Some don't want to change what they already know. RIP to those who still start their project in Java and do not want to adapt in this competitive world. :/8
-
@dfox @trogus Hooked me up with a second set of stickers! Thank you sir now i get to trick of my 3d printer 😁 Lol i took this picture forever ago and forgot to post2
-
Bit of a bitch to get set up, but I made a SASS auto-recompiler with file watching. Windows was being a total ASS and sends the change event up to 4 times in my testing for a single file save action. It also renders the file unwritable for that time, throwing errors.
I literally had to add debouncing to make this work, but it's kinda nice now.6 -
Estimate for writing a custom WordPress plugin:
1 hour - Learn the API the plugin will support
1 hour - Review how plugins are written
60 hours - Set up XAMPP only to find that the version with PHP 7 no longer supports MySQL but something called MariaDB which my host doesn't support and then uninstall XAMPP and install MAMP only to get really frustrated setting it up and beat myself for not just buying that $99 Windows Pro upgrade so I can install Kalabox with HyperV which is much easier than all of this and why doesn't Kalabox have a way of supporting Windows Home because not everyone buys Windows Pro or can afford a Mac or has time to screw around with 100 possible Linux distros to figure out which one will work best and then buy gasoline and matches and set it on fire and watch it all buuuuuuurn such pretty fire.8 -
- So you just installed ubuntu 18.04, what to do next?
- step one:
sudo apt-get install ifupdown
- step two:
sudo apt-get purge netplan.io
You are all set!17 -
I had to set up a Raspberry Pi just to display a webpage since it is inexpensive and I didn't have enough budget to get a case for it so I present my homemade case. Lol. It's zip tied to the box within another box.5
-
Guess I'll fuckin try again tomorrow.
Building a cross platform c program. On Linux side, just using a makefile. Today I tried using visual studios "clone" feature for git. It just downloads the files and makes them available to the editor, it doesn't make a project, obviously.
But this has some disadvantages. For one, you can't build, or run. Two, you don't get any project properties. My project needs to set the character encoding to Unicode. Can't do that without a project.
So I use their tool to create a project from existing code. It didn't really work. The build profiles were janky at best and I still couldn't set the character encoding.
Ended up just deleting the whole thing.4 -
I am at a hotel and these fuckers are blocking outbound connections to port 22. They are also blocking access to any websites mentioning proxy or vpn, seriously fuck them. I managed to get a VNC connection open to one of my servers and I am now trying to set up a VPN tunnel to my servers so I can fucking do my work. >:-(6
-
Writing a truly crossplatform terminal library is the biggest pain in the ass.
And you thought windows was bad. They have a proper API with droves of features, freely allocatable screenbuffers, scrolling on both axes, etc.
Fucking xterm vtxxx compatible piles of shit are the problem.
Controlling kinda works eventhough the feature set is pretty bad. The really fucked up thing is reading values back. They literally get put into the input buffer. So you have to read all the actual user input before that and then somehow parse out the returned control sequence. Of course the user input has to be consumed so I have to buffer it myself. Even better is when you get a response with non printable characters which the fucking terminal will interpret as another control sequence. So when you set a window title to a ansi control sequence it would get executed when queried. Fuck this shit but I'm not giving up. I will tame this ugly, bodged together dragon7 -
I get an email about an hour before I get into work: Our website is 502'ing and our company email addresses are all spammed! I login to the server, test if static files (served separately from site) works (they do). This means that my upstream proxy'd PHP-FPM process was fucked. I killed the daemon, checked the web root for sanity, and ran it again. Then, I set up rate limiting. Who knew such a site would get hit?
Some fucking script kiddie set up a proxy, ran Scrapy behind it, and crawled our site for DDoS-able URLs - even out of forms. I say script kiddie because no real hacker would hit this site (it's minor tourism in New Jersey), and the crawler was too advanced for joe shmoe to write. You're no match for well-tuned rate-limiting, asshole!1 -
1. Go to my setup
2. Lights off
3. Lamp on
4. Door closed
5. Headphones on
6. Run zone.bat or zone.sh depending (yes, I have a script - it puts on music, at wherever I am in the album, changes sound & display settings, and a few other things.
7. Set breaktime alarm (I forget otherwise)
8. Code
9. When breaktime alarm goes off:
9a. Get a ginger beer and since biscuits
9b. Eat
9c. Repeat from 74 -
Recently got back into Blender to get those 3D modeling Skillz. Lemme tell you what those keybindings do NOT fucking stick in memory over long periods of time.
I felt like someone had detached all of my fingers, shuffled their order, and instructed me to type an essay. Not to mention the new UI, which I love for sure, but is unfamiliar to me.
Anyways, I've always wanted to make a multiplayer VR hangout sort of game set in Disney world so that's my unobtainable goal and reason for doing this.
Yay.9 -
Me and my friends are having a all nighter coding sesh, because the presention day was near, then my friend's mom ordered some pizza. We had set a rule where, everytime someone finish a functionality/module, that someone can get one pizza. I can totally say it was a productive night, and the presentation went unexpectedly well.1
-
Oh man, I fucked up...
I was doing after hours work for client, setup website with https.
Can't work over sftp with current user,so I give it the same user ID as apache, get files transferred and shit.
Go back to change uid, set wrong uid, now my user is ntp, I can't get into root, can't set password...
I fucked up
Tail between the legs, sent email to clients support, asking them to fix my user fuck up, waiting for reply -
Taken partly from an article I just read.
Russels paradox is a problem discovered by Bertrand Russel in 1901 when studying set theory.
He describes a set that contains all sets which do not contain themselves. The set of all pornstars does not contain itself for example, so it can be include in Russel's set, as well as many others.
But what about Russel's set itself? It doesnt contain itself so shouldnt it be included as well? But that would mean it DOES include itself which means it DOESNT belong to the set. And it would keep switching like this, monotonically, forever. Hence the paradox.
If it is monotonic then where we begin in the sequence doesnt matter. So lets do away with that bugbear.
Now if russels set IS the set of all sets that dont contain themselves then we get a paradox.
However if russels set merely *has* as a single subset, all sets that dont contain themselves, then shouldnt russel's set with one level of indirection, contain itself?15 -
Today was a good day.
I was told to use in-house BitBucket runners for the pipelines. Turns out, they are LinuxShellRunners and do not support docker/containers.
I found a way to set up contained, set up all the dependencies and successfully run my CI tasks using dagger.io (w/o direct access to the runner -- only through CI definition yaml and Job logs in the BitBucket console).
Turns out, my endeavour triggered some alerts for the Infra folks.
I don't care. I'm OOO today. And I hacked their runners to do what I wanted them to do (but they weren't supposed to do any of it). All that w/o access to the runners themselves.
It was a good day :)))))
Now I'll pat myself on my back and go get a nice cup of tea for my EOD :)3 -
Me: "Omg, I'm so not sorry you didn't get a response to your 2:00am text sent to my private phone number about that super duper not important thing that a four year old could solve... but my girlfriend gave me a wrist band thingy that puts my phone on silent whenever it thinks I'm sleeping."
Product Owner: "And you can't set it up properly!? Your title says `señor software engineer` for god's sake!"
Me: "Yeah, it does. This is a hardware issue, though."
...is what I told her and she bought it. 🤷♂️2 -
First day went great. Got my laptop all set up. I still have no idea what I’m doing. Imposter syndrome really set in as of yesterday. Looking at the code base and seeing all of the code made me feel stupid. I understand I won’t know the whole code base.
It’s also my first developer job. I just feel stupid. I’m super eager to learn. But I feel like I’m going to ask a lot of stupid questions as well.
Idk how to feel. I guess a fraud would be the right answer? How can I get more comfortable at my new and first developer job?9 -
!rant
"What's the best browser that doesn't devour all of my HW resources?"
Seriously guys, Opera GX. You can set how much ram and cpu it eats, and it only eats that much. Yes, even to the point of it being unresponsive and laggy, because it keeps itself within the boundaries you set.
Seriously. Regardless of the number of tabs.
Also, it looks nice.
Downsides: You forget WHY it lags sometimes, so you get irritated, but when you remember, the irritation turns to smile.
I am not a paid shill, i'm just a user and I use it primarily and only for that single feature.28 -
Can anyone recommend a nice set of DnD dice for a gift? It's for my boyfriend's younger sister. She's just getting into it and we're all playing on her birthday.
There's cheap sets everywhere and I'd like to get her something of nice quality.8 -
I think I'm getting crazy...
Yesterday evening I finally thought it was a great idea to set up Gitlab CI to let the server build (ng cli) and deploy (via FTP) an Angular5 SPA on commits on the master branch.
BUT...
The npm package "vinyl-ftp" thinks it is pretty fucking funny to just randomly stop in the middle of uploading files or just upload some files with 0 bytes in size.
WHAT THE HELL?
After some hate infested trial and error, it seems that the more parallel channels I set up, the more chance I get that all files are correctly uploaded, but never all.
If anybody here happens to be some kind of mighty byte bender and knows what to do, I'd be thankful. But I will probably try out a different client in the docker image...1 -
Grabbed a case off of the backlog, and noticed the estimate was set to 100000 hours.
Time to get a coffee before tackling this task.4 -
So it looks like my 80+ yr old grandma finally managed to get hang of her touch screen smartphone. She was recently set up with WhatsApp.
She has called me quite a few times today and when i ask what's up, she says she is just testing it out. It's so cute *-* and makes me happy to know she has learned to use it and called me.
I wonder how it must feel for her to be able to use this technology which was probably never even imagined during her young age. -
If you spend a lot of time looking with computers then PLEASE use a blue light filter to reduce strain in your eyes as well to help you sleep well.
My favorite program for this is "redshift" and can be set up with this one liner
apt-get install redshift && redshift -O 300015 -
Dear IT troll: I am not some idiot user. I FUCKING WRITE SOFTWARE! I actually CREATE CAPABILITY! I don't create "content", I'm not some fucking suit that pumps out PowerPoint/Excel/Email all day long. I don't need to be handed a consumers screwdriver, hammer, and wrench set. I need to be able to set up the technological equivalent of MY OWN FUCKING FORGE AND ANVIL! Do you get it? Do you understand me? Give me administrator access and go the fuck away. While you're at it, please quarantine this pile of silicon onto a limited access network if it makes you feel better. My development system doesn't need to connect to the wealth of bullshit in your precious little dumbed down corporate Wiki-wannabe Sharepoint system. Keep my creative space away from Test and Prod networks while you're at it. Just give me the goddamed tools I need to do my work and fuck off!8
-
Got contacted for a job "interview" by a company because they were looking for "people with my skill set". All my profiles say I am a fullstack web dev with experience in frontend js frameworks and js and php backend frameworks.
Come in to find the "interview" is an exam. Ok, fine. My brain could do with some exercise.
After the basic IQ type questions, I get the web dev exam.
It is 95% of the questions are about CSS and HTML basics.
WHAT. THE. ACTUAL. FUCK.7 -
Microsoft Teams lets you set a light gray text color that looks like faded text in the dark theme but is invisible in the light theme.
And it lets you set a dark color that looks faded on light and invisible on dark theme.
Thanks. Now I get to argue with my team about it.9 -
I've been trying to get my job to start using Git cause they currently don't use any version control. So today I told my supervisor that I was going to set us up our server so we can host our own repositories and he was like no need we will just set your computer up so you can vpn in from home. I'm like wtf? why go through so much trouble to set that up? That still doesn't solve the problem of accidental file overwriting.-_-3
-
Me: *gets a payout from my old job*
Me: ahhh now to spoil myself, let's get some pixel buds and a day dream set and maybe a nice bottle of whiskey.
eBay: YO! We have that MacBook you've been looking for going really cheap at the moment!
Me: ... I hate myself...
Why does stuff always go on sale when I've spent my money ;-;2 -
I fucking hate the process of setting up IDEs and compilers! All the build files, cmake files, tasks, all that shit.
I undrerstand it's integral part of coding, but fuck, why does it always take so long to set up a stupid project. Just let me start coding ffs.
Sometimes I get so frustrated that I rather write a bash script or run the compiler commands in the shell instead of going through the hassle of setting all this up.2 -
Six months ago I was at the store wondering why on earth I passed up this cool LEGO set. I hadn't spent money on myself in a while, so I got it. I never got around to building it for several reasons, so I decided to put it in storage last night.
Imagine my shock when I go to put it away only to find the same exact set staring up at me, just dusty because I also had to put that one away because I couldn't find the time or space to build it.
I'm usually very good about tracking the sets that I buy. I double checked my list before I accidentally bought it the second time, and I must have forgotten to add it when I bought it the first time.
It is an expensive set, even for LEGO, but the return date for both has long since passed. Which means I get to build two blacksmith shops after I retire in 40 years.5 -
Thanks for the reminder, wk17. To get unstuck: *pomodore*. Set a timer for 30 to 45 minutes, under which you are only allowed to concentrate on a single thing. No email, no looking up why your editor doesn't find declarations, no tuning of the red color of your terminal that is to bright, no compulsively opening devRant.
Time's up, do whatever for 5 to 10 minutes, and repeat.1 -
So I just had a bit of a shower thought. Suppose you could get the linguists to break a language down and define all the rules that make up that language as if it were a protocol - exceptions included. If you get an arbitrary string of text, could you match against those rules, then break that down to the information it contains, and use that information against a new rule set to construct a new valid sentence containing the same information. Would you just have made the ultimate translator?16
-
Gotta love recruiters... Got contacted for a position a couple days back through LinkedIn, talked a bit back and forth, and set up a call for today.
I get up early for the call, prepare and then I get the call.
Caller: "So have you graduated yet?"
... Fucking look at my LinkedIn, can a degree be completed in a year? Yeah, thought so...2 -
>be me, a student taking Discrete Math and probability
>Professor really loves hearthstone, gives out a problem set that is hearthstone themed
>Somebody posts the problem on the hearthstone subreddit
>1464 karma
>354 comments
>A few commenters wrote down their answers
>A week later
>9 people get caught cheating.
>Turns out the commenters did the problem wrong. Professor took screenshots of the comments and told the graders to check if the submitted homework matched the picture3 -
Security in defense is a joke.
New hire does not have accts set up told him over and over!
He decides to go into a classified area and just try. Common last name with first initial.
Guess what he was able to get in because no one changed the default password!
Yep now someone with an interim clearance got access to a machine that goes from unclass to secret and then top secret!6 -
Who the fuck comes to the idea of printing the local IP address on the Fucking screen?
Yes, I know that it is not remotely accessable (only when there is no port forwarding set for that ip), but think of that this way: Someone manages to get in that network. Without scanning the network, you would have your first victim. You could analyzer the traffic of that victim and find more victims. And so on8 -
"But using XYX is better and it's not hard to set up!"
No, fuck you and your recommendations.
It's too time consuming to set up that blazing-fast minimalistic modular shit, because I know I'll want to configure it to perfection until I bang my head against my tiny keyboard when I have finally realised that all the config I went througu only achieved the same outcome as the 'bloated' software I was originally using.
So, fuck you.
I'd rather get on with my life and get some work done.
It's not like I wasn't aware of XYZ in the first place; I'm not using it because I know what's more important to get my shit done.2 -
Got WHMCS installed. Got most things set up, then I notice "Spam Control" and wonder what it can do..
Set it to check for phrases, and I enter "viagra" as the phrase. I click add.
Now I can't access Spam Control anymore, I just get an "Oops, something went wrong!".
Got dammit.1 -
In 2020 I want to achieve:
- develop a proper custom deployment tool (for job)
- get my boss to finally approve of me doing code reviews (we have 0 reviews 🙄, tiny company)
- never have to work on WordPress ever again
- develop or set up a company internal package repo (alt. to NPM)
- get a new contract
- get 3 open side projects done
(non-dev)
- buy some more furniture and make the appartment finally cozy and a happy place to live
- finally get over the negative thoughts of that antisocial ex
- go indoor climbing 3 days of the week, to get rid of those developer fat cushions... 😅6 -
> be me
> studying 1.5 years liberal arts stuff and general education class at community college
> transfer to a 4 year university.
> realize I need a major
> Realize I also I wanted to 9ne day have a family.
> realize family would need money
> "struggling actor" not a great choice
> pray about what I should be doing
> get distinct impression that instead of attending the session on majors at the college of fine and performance arts to go to session with the college of Science and engineering.
> hear pitch for computer science.
> signup for introduction to programming taught with c++.
> A couple semesters down the line take 3 classes all at once Discrete Math 1, Linear Algebra, and database design and administration.
> around week 6 realize that all 3 classes revolved around sets and set logic and set math.
> realize rdbs's are "applied" set math and that Each class a little more "applied" than the former.
> Be genius at SQL and set math
> havereally smart database teacher mentored me
> get introduced to the recruiter at the career fair.
> get interviews
> get flown out for 2md interview
> get internship
> do work, and get project back under budget
> a job offer
> finish senior year
> start as a "real" developer supporting business data and analytics.
> ???
> profit.3 -
!rant
Freelance web developers: please talk about yourselves.
How much experience did you have at the beginning?
How did you get started and was it much work to get set up?
How do you find a constant stream of clients?
Do you make a living wage just from your freelance work?
Any other information you'd like to share is appreciated.18 -
I'm looking for a distro that is more modern than Ubuntu 16.04, not the shithole that Ubuntu 17.10 is and works, practically, out of the box with my xps 9560.
this 17.10 update thing is driving me nuts. the plot twist is.. if I don't get it set up before tomorrow I'll just switch to windows.17 -
PM and CTO (direct boss) are always too busy to answer questions. CTO goes for hours without responding when I need him to clarify some task or to get access to something so I can set up something else (configure some server, whatever). PM is more available, but doesn't have the technical knowledge. CTO comes after hours asking me how the task is going, and refuses to make a call so we can communicate more effectively about stuff (whereas I never deny that to anyone when they need my help). Then, when I get late on tasks, CTO comes to me like "man, if you get stuck, ask for help". Like what is even the fucking point of asking for help if nobody will answer?
This is so fucking frustrating.1 -
The monitors came in today. 2x 24" Dell P2419HC monitors. Picked up keyboard from Best buy this morning. Let's get this set up going.
Oh and if you care to know, the laptop on the floor is HP Pavilion running Elementary OS with a 128gb SSD. It runs really well but battery life is a misery. I've had it for over 8years and I still use it. Love it!! 😍7 -
Do you suffer from low motivation ? For three easy installments of $79.95 plus shipping & handling , the secrets of overcoming low motivation can be yours . Act now , don’t delay !
Operators are standing by & the first caller will receive a free set of dollar general steak knives in a faux wood gift box , excellent for regifting for that team party or potluck where if you’re lucky , you might get tofu .7 -
I don't get why people set their alarms every 5 minutes, instead of every minute with 5 minute snooze... It's waking up or lying around and getting angry at your phone that way14
-
Oh,I have learned a lot, I would not say from programming but from the career as a whole
Never get peer pressured
Always show empathy
If in a leading position, taking care of people is your top priority
Overconfidence will destroy a lot of good work
People by definition will always remember your mistakes
Never get over involved in the company you are working for, it's just a job
Your health is more than important
Nobody knows everything
Always be humble
There is a lot of bullshitters out there
Success is relative
Competition is high and there is always someone with better skill set, so you will suffer if you don't accept that -
So just saw an email from our team's vice manager about need to improve code quality by using some new system.
Well that set me off on a huge rant about all the issues I see in my team and what exactly needs to change... (just some new sytem he's pushing isnt going to help)
wonder if i might get fired... even though i m right...
And so much for my plan to update docs... I've forgot what I wanted to do...2 -
> Develop puppet deployment module for hip new mail server
> set vm so taht it simulates cheap ass requirements of 1 core, 1 gig ram
> finally get to the webserver part, need to generate own dhparam.pem
Meanwhile my beard is becoming more and more grey3 -
It's so frustrating to see how PHP images for Docker are nicely set up, well documented, come with Apache or Nginx, almost ask you to let them pay your bills, while you get almost nothing from Ruby, and when you think you finally made something that works, it behaves like a fucking drunk irish3
-
And then, looking for the source of a bug in the code .... I randomly found this:
public bool IsOperationStarted { get; set; }
public bool IsOperationStartedTrue
{
get { return IsOperationStarted == true; }
}
public bool IsOperationStartedFalse
{
get { return IsOperationStarted == false; }
}4 -
Gotta love the IoT.
They set up a new surveillance camera in the company, that can stream live footage over the network and that little shit picked the IP adress of a coworker one day AFTER being set up.
Hurray for static routing. Hurray to the person who didn't disable DHCP on the router (Should probably configure my PC to use a static IP as well lel)
Anyways, this happened outta nowhere when I, the only guy who knows shit about IT and is usually present at yhe office, wasn't there and could not connect remotely.
The other, remote programmer, who set up the network, could guide the coworker to get a new IP but, he was worried that we got ourselves an intruder.
Since nobody told me yet that we (should) have static routing, I thought there was a mastermind at work who could get into a network without a wifi-access point and spoof the coworker in order to access the some documents.
The adrenaline rush was real 😨
Scanning the network with nmap solved the mystery rather quickly but thought me that I need to set up a secure way to get remote access on the network.
I would appreciate some input on the set up I thought of:
A raspberry Pi connected to a vpn that runs ssh with pw auth disabled and the ssh port moved.
Would set up the vpn in a similar fashion. -
We're doing a huge demo in half an hour for a governmental branch, and for some fucking stupid reason I decide to tinker with the deployment setup. And yes, all our staging environments went down, including the environment set up for the demo. Managed to get it up and running again though 😅3
-
i hate ios storyboard
its a disaster
its not Version controllable, also its not as good as android xml layouts where you can just copy paste someone else xml to get a view exactly like his
right now I have to clone a git repo, to open it in xcode, just to see how the guy has set up one of his textFields so that I can create a textfield like his3 -
-Rant-
How do you (not) secure your Rest based web service?
1. Chain it to shady organic authentication system built by a hoard of monkeys high on Tequila.
2. have secret keys that get copy pasted into config flat files, and index them on your code search engine.
3. make the onboarding extremely platform specific that you need 500 environment variables, 50 scripts, 5 fancy device presses and a tap dance to make a GET call to the service.
4. fish through 500 rotating log files that the authentication system generates for each API call made.
5. Leave traces all over the host so if you have to start over, you should sudo rm -rf / and set fire to your computer. -
Stupid Google fucks.
I finally discovered why I have such a low DMARC pass rate. If your DMARC policy is set to "none," and you send something to a Google Group, the stupid fucks intentionally rewrite the return path of your messages. This breaks DMARC alignment, SPF and DKIM in one go. They only do the correct thing if your policy is set to "quarantine" or "reject."
Google must get a hardon from playing bad net citizen.2 -
Write a bridge that converts an arbitrary set of CLI params into a JSON that is to be converted into an object of arbitrary type. In a strongly typed language.
And it's midnight already...
Man, I need to get some sleep! Afraid my swelled brain might go POOFFT!3 -
So just went for an interview that a slimy recruiter set up, 'yes they want experience in C#', great! Finally get back on top of my rent, sort my life out. Get to the interview, fucking C++ job...
I've had enough.3 -
So I have figured out that Microsoft loves Dungeons & Dragons.
Because there must be some mechanism in visual studio that uses some botched up version of the D&D rule set.
"user clicks a button, computer rolls dice, gets a 6, 6 means you are lucky".
"user clicks another button, Computer rolls dice again, gets a 10, now I crash".
Please remove this feature Microsoft, it is very hard for me to actually get anything done, not to mention getting it done before the deadline.4 -
Set up an Ubuntu AWS ec2 instance running nodejs reverse proxied by nginx, kept running by pm2 and SSL provisioned by certbot.
I know that sounds like nothing but buzzwords but it really felt awesome to get a little node app stack sorted out!4 -
My father has an old powermac (G5 I believe) and wants a modern lightweight OS since apple dropped support a while ago. I proposed Linux and my father seemed intrigued to try it out. Tomorrow I get the machine and get to set it up.
I was thinking of Elementary OS, since he is an Apple fanboy. What do you think about that decision?
Never used or installed it before, but how hard can it be?
*obligatorily mentioning that I use Arch Linux*6 -
One of the admins in our school is developing a digital class register. He already set up all the users but randomized the passwords to lock all students out. But he also implemented a password reset.
He was kinda pissed when he found out (the very next day) though. Now he locked us out again.
At least I can leave the school next year knowing that they'll get a sick new application -
Its a very simple algorithm for me:
Start with a deep base edm track.
Get a green tea.
Start work. The mood is now set.
(If frustrated): go out for a smoke and continue again.
(If frustrated again): see ur managers face and start lashing out code at ur ide.
(Optional if at home): random faps do help.1 -
As a gun owner and an avid FPS player, and one day (when I get the time) a builder of such games, please may I set something straight?8
-
I fucked up my MySQL installation...
AGAIN!!
Whenever I really feel like programming in my free time (which became really rare), I fuck something up and spend half of the night fixing it. Once it’s fixed I’m done, don’t wanna do anything anymore..
I should just start programming and set up the infrastructure afterwards.. at least I would get to do some programming then..9 -
Dark theme tip for windows users
Use magnifying glass set it to 100% then options invert colors. You'll get everything dark themed now but no missing stuff like you would get from a high contrast dark theme.5 -
Yesterday I had to register my new credit card with a national payment app (MobilePay) and it kept giving me error 32, which says "a technical error happened please try again"... Real fucking useful u peace of shit app 😠
Turns out, after a bit of research, that it will sometime crash if you language is not set to a european language. Guess what? I had mine set to English... English (US)... 😧
Like, what the fuck is that? Why would you check if a person might be from EU, be checking the language setting?
Get your shit together 😑3 -
Intel 8085 micro-processor, anyone?
In my graduation, one of the semesters had Intel 8085 programming in the curriculum. It's because of that dev-kit I understood what assembly-level language means.
A simple scenario of adding two numbers would result in half a page long sequence of commands that literally didn't excuse any mistakes.
It made me understand the semantics or basically what we get taught as "middle level" languages.
We had to memorize the exact pins of the thing and had to draw it from memory. And we had to learn the instruction set it had.
Later we had to learn Intel 8086 but its instruction set was way too complicated and I gave up on it.
I know it sounds geeky but I randomly remembered it today.13 -
Not my hack but when I was in university, for one test we had to find all 3 digits number that satisfied current set of criteria. Friend of mine knew from earlier that solution is one number and written program that just prints that number. TA give him 0 points and he get in fight claiming that not only his solution was good but also most optimal one.4
-
Close all internet shops tabs, find yourself a nice chill music like Erykah Badu or some ASMR record, measure your time (I use toggl) and have your tasks for today well planned. And set yourself deadlines. Short deadlines. When you fail to fit in one, you get to punish yourself in a mild way. When you do your tasks on time you get candy :D or some other shit like a good coffee or go out somewhere
-
I get to make icons for our products displays. I made some demo ones using Inkscape. Export to PNG. They look really sharp. Making them have a similar color set as our company logo. Boss likes them so making more.3
-
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 -
Okay so this question is directed towards anyone with SQL experience. Is MySQL bad to start and bad for beginners? It seems intimidating if Im being honest. and Im confused on how to set everything up and get started and working with SQL and Databases in general15
-
Had a 5 hour call today, where we wanted to set up a system from one of our subcontractors in our own environment. Struggled forever to get the backend up and running.
Turns out that some dependencies were hardcoded as local file URLs...
No, our linux machine does not have C:\Users\<username> 🙄 -
!rant, need advice
I have no idea where to start with freelancing.
My girlfriend's been wanting to get some stuff but due to some issues hasn't been able to and has been extremely hesitant about bringing the topic up.
So to surprise her, I decided it'd be nice if I could freelance on the side and rake up some money so she can get the things she wants and I can spoil her (she's been through things and honestly deserves it).
So if you guys have any suggestions on where to start freelancing, that'd be great. I can do graphics and web design and just set up an anonymous Fiverr account but never had any luck with it.6 -
Interviewed with a company, it was a direct hire SQL Dev/Analyst role(ETL,BI etc). Had three interviews in a row all of which went great. We laughed, I was able to answer every technical question with no problem. Each person clearly enjoyed the interview, I ended up going over the specified amount of time set aside for the interview... Still didn't get the job. They said "There is no doubt he can do the job, but we don't think he's passionate enough about the position." What?!?! So confused. It's also odd to me because every job before this If I had an in person interview I was offered the job... I don't get it.4
-
Every time I try to use TypeScript for something, everything I learned a month ago is deprecated. Tsconfig keeps changing. The way to get and set up definition files has changed like 5 times now. From downloading, all the way to referencing. Can we please just settle on something now?1
-
Day 7 of devWholesome...
Happy November guys! It's a new month which means new goals! Set some goals for this month that you want to get done. See how much you get done this month. Mark your calendars for deadlines of things you want to get finished. Don't forget to keep up with the work you already have. Comment below what your goals are this month! And as always make the most of your day! -
How to replace rEFInd bcuz M$ locks linux out of your system if M$ installed first.
-----
This will be long so get your salsa ready.
-----
1. Get your rEFInd from sourceforge
Since we are installing INTO windows, dl the zip.
2. extract to a folder.
2-a-: Install themes if you want any or edit the config if you want/need to, at this stage.
3. open a cmd as Admin and cd to the refind's folder.
4. mount system volume
`mountVol S: /S` will mount it to S:
5. use xcopy to copy as system
`xcopy /E refind-bin-x.xx.x\ S:\EFI\refind`
6tynice: go to System volume and to the refind folder
`S:`
`cd EDI\refind\refind`
7:Set rEFInd as Windows Boot Manager
`bcdedit /set {bootmgr} \EFI\refind\refind\refind_x64.efi`
(It's possible to use ia32 or aa64 for different architectures)
At this point, try plugging a linux thumb drive and restart your computer. Windows Boot Manager should be deactivated and should show refind.
You can use mouse and keyboard to select an OS boot or just set config to start one automatically unless you are holding a "power" button.
rEFInd also offers "fallback" boot for linux, which boots the efi from rEFInd and not from syslinux.4 -
Does anyone else fall into the 'TODO' trap? I just finished my website (using jekyll) and I've got a stable build that I like and I should probably start writing content for it but at the same time, it would be cool to set up a better color scheme and refactoring the css into sass. Anyone else get caught in the trap?3
-
How to run PHP in a container :
1. Begin a docker file for an existing php cron app (when all you know is php, everything looks like a php app)
2. Set the FROM.. Apt get update .. Do composer install
3. Builds the image
4. Discover I need git
5. Add git to apt get install step
6. Builds the image
7. Launch the php script
8. Fatal : use of undefined constant SOL_UDP
9. Opens the source code of the third party. The there's no mention of where that constant is from.
10. Spend many minutes online to find what's missing.
11. Find the PHP sockets page about that option. Digs into the documentation to find out that's missing from the installed PHP.
12. Find out I need to add a step to install the socket extension in my docker file.
13. Build the image again
14. Execute it, finally it works
15. Remember why I hate php
(for brevity I've omitted the even more complex part of having to set up zlib)
How to install node js in a container image:
FROM node:8
ADD package.json
RUN npm install7 -
So, project needs vive headset + unity.
Set up done, unity project made, set up, plug the two, start tweaking, fixing stuff... Aaaaand need to tweak the script. Double click, MS studio comes up... Need to reactive the license...
I don't have a personal license (and I never will get one either, given how many times microshit has been a major pain in my glorious ass, I tend to avoid their shithole of products at all costs. Somebody else actually gave me access for this project.
So, that doesn't work, goes to download a free version, aaaaaaand apparently my level of access doesn't allow me to install this one.
... UrghhhhhAAAAAAAAAAAAAAAAAAA
Notepad++ it is. 😶2 -
Dashlane is the worst password manager to use. I was trying to set up categories and since it does not have a simple selection box change feature I had to grab almost 100 at a time to change. Unfortunately after changing them I realized I had a duplicate and I clicked on that one to delete it. The system was still selecting all 100 (it uses a slightly gray color to show what is selected rather than a clear check box type feature) and it deleted all 100 passwords. It never asked me a question or gave me an undo feature. The interface is very difficult to handle.
Further, to set up a second user and grant them access to a large number of passwords (in this case my wife I wanted to give her access to 128 passwords), you must click them one at a time and then when you set it up they cannot get their own master password. Very cumbersome.1 -
I ordered a Ticwatch C2.
It comes today, I plug in the charger since it's dead whenever I get it, and the charger works for all of 5 minutes; just long enough to set it up.
Immediately after setup, it shuts down and flashes the batter symbol every time I try to turn it on.
And if course, with the kick ass luck I have, the fucking charger stops working.
Nothing like having to wait two more fucking days to use a fucking product.7 -
It sucks so much when you want to learn and expand your skill set but can't because you cannot find any good resources.
I've been trying to get started with MVP and RxJava for android and have got nowhere yet because of unavailability of good starting codes/tutorials.
FML.5 -
Finally took the time to start learning Angular 2. I wanted to do it right so I set up the development environment with webpack. Man does Angular 2 take a lot longer to get setup properly versus Angular 1. I mean it's worth it to do it properly but it was a lot more labor intensive getting a good dev environment setup than I had anticipated.4
-
don't you love that moment when you are trying to set up a test environment but end up spending 3 days trying to get one little service to work?
I can't seem to find any auto dns that works with minimal configuration to use with vagrant or docker... -
How can Javascript, one of the MOST WIDELY used and MATURE languages with A MILLION CANCEROUS FRAMEWORKS, NOT have a basic collections class? Are data structures not important in Javascript?
I've been struggling all night trying to get Sets working - surprise, they're utterly useless in Javascript cause you can't define the set comparator.
I just lost it when I found out THERE ISN'T EVEN A QUEUE. WT-ACTUAL-F15 -
Assigning me to another project because my current project is soul crushing is only helpful if you ever let me stop working on the current one. Otherwise I just have a new set of meetings to attend where my only contribution is that I didn't get anything done, and probably won't today either.
-
God fucking dammit.
I spend the entire day trying to get [this piece of shit] (https://github.com/php-ds/extension) to work and at the end of the day its tests pass, but when I try to instantiate a set, I still get bloody errors.
I mean, am I not punished enough for having no guidance in learning PHP and knowingly having to create an absolute monstrosity just because I don't know how to do it better.
Fuck it, I'm just gonna go cry myself to sleep now and only will start feeling like a failureagain, when I wake up.
sorry for bothering you with my problems.6 -
- Sign up to a new platform.
- Get asked to set a new password for it.
- Ah, I don't have time to think about a new password cuz I can't rely on my hamster equivalent brain to remember it.
- Same password it is, that I've been using for the past decade for every other platform.15 -
When you use an Android app on daily basis, upgrades every time when you can, then you remove and reinstall it and get a very different UI and feature set. What kind of black magic is this?
-
I'm trying to convert a legacy .NET Framework web api to .NET Core, the project and its supporting libraries are in awful conditions and to make things worse at a certain point someone has the genius idea of introducing Uncle Bob's "Clean" Architecture into a part of it so stuff which could simply look like this
public string doStuff(string input){
// Do the stuff
return output;
}
becomes a convoluted mess like this
public class StuffDoerRequest {
public string Input{get;set;}
}
public class StuffDoerResponse {
public string Output{get;set;}
}
public interface IStuffDoer {
public StuffDoerResponse Execute(StuffDoerRequest request);
}
public class StuffDoer {
public StuffDoerResponse Execute(StuffDoerRequest request) {
// Do the stuff
return new StuffDoerResponse() {
Output = actualFuckingOutput;
}
}
}
Edit: sorry for the lack of indentation, apparently DevRant trims leading whitespace7 -
Friday: Expectations vs Reality
Expectation: Work on work for half the day then work on side projects for the rest of the day. Consider it a good day.
Reality: Work on work for whole day. Then have your boss set the expectation to have a project completed by Monday morning that you know will take 3 more days. Hence making you work the weekend to try to get it done in time. -.-4 -
A recruiter set me up with an interview for a company I really liked and I thought it went pretty well. But I tried following up with him and he refuses to answer my 3 emails or pick up my calls. It's fine if I didn't get the job but this is the first time a recruiter just completely ignores me without giving me any feedback. Has this even happened to anyone and how do I deal with this?5
-
Our help desk person set up our software in a virtual machine on some cloud provider and you know how they give you a drive labeled temporary with a text file in warning you how the files will get deleted? Well for some reason they put the database files on that drive.
Luckily the server was for a small internal project and restarted a few days in so the users didn't loose too much work. -
I don't know if my boss just wants me to learn how to use a new internal deployment process or just likes giving me unnecessary low-value work to take up time...
I could and have just copied the program via SFTP and unzip it to set it up....
(This is a testing and does not need to be in production...)
I have better things I could be doing and just want to get this done and closed but ... -
I've been using an arch based distro that really required pretty much nothing in terms of know-how to get it set up. Tonight, I randomly checked the ~/.bashrc file today and found some cute aliases.
# Help people new to Arch
alias apt-get='man pacman'
alias apt='man pacman'
alias helpme='cht.sh --shell'
alias please='sudo'
alias tb='nc termbin.com 9999'1 -
Developer: You can’t just change the build process
Me: I set the “Get Sources” step to clean the build directory
Developer: Yer exactly you can’t do that
Me: It should build from a clean source though
Developer: Yer well it works so don’t change it
Me: Ahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh2 -
Time to get going properly with ansible, consul and docker swarm.
Idea is first to convert tinc to a container, which automatically sets itself up based on previous consul announced tinc nodes.
Consul to keep track of all the nodes with prometheus too and hopefully auto attach to grafana.
Ansible to set up new nodes right with DO API, announce to consul, pull docker images and join the docker swarm master.2 -
React native is such a pain to get started with! I feel like Ive wasted way too much time just trying to set up a functioning example. I'm too stubborn to give in. I'm about to rage code right now lol6
-
Im not sure if im a good or bad person by allowing my users to set a weak password.
They get to use almost whatever they want, but it may be bruteforced easily.
I let users decide their own security on that point.4 -
I feel very terrible. Attending meetings, not able to say anything, I get anxious, my face gets red and heart starts to race. I was never able to get through this situation. This is a big thing, if I set up a meeting to discuss, due to the anxiety I am not able to question anything. I could make a difference that every now and then I ask something basic but due to anxiety I couldn't understand the answer and end up saying yes to thess things although I couldn't understand.
I tried preparing for the meetings but that doesn't work as generally something comes up that I didn't expect and I get so nervous.7 -
Do any of you, especially freelancers, get paid in bitcoin? How do you set that up so it’s easy for clients to pay and for you to get paid? How do you convince clients to pay that way?5
-
Power adaptor down, will get replacement, but having to set up a small Dev environment on the wife's laptop...
Could be worse, I suppose... -
In Java, I use dummy variables to set breakpoints and get around the return unreachable compiler/Eclipse check2
-
rant/!rant
So I just started working at the beginning of January and I have no fucking clue about anything especially Web development.
But now I have a week to figure out how in the world I am going set up a workflow for some secretaries so that the higher ups get a printed coupon with a password on it, so they can log into our WLAN via a captive portal that I also need to set up.
I am thinking about a website that takes a list of names and settings (probably excel or smt) passes them to the WiFi management softwares API and then generates some PDF file for download that just needs to get printed.
Did I mention that I have no Dev tools (I have notepad, yeah the one without ++), no test environment, no prior experience and no clue how to do it?
But somehow I love this challenge and am glad that my colleagues don't send me to get coffee but let me work.
Am I insane?4 -
And here I am again, reading test cases that basically boil down to:
$testCase->foo = "bar";
$this->assertEquals($testCase, "bar");
$testCase2->foo = null;
$this->assertNull($testCase2->foo);
Why would anyone feel the need to write these kind of tests? They don't do anything. If I set up my mock a certain way, of course I will have that data, esp. if the unit under test only applies the data AS IS. (Funily enough through another component that already has the relevant dummy tests in place making these tests extra redundant and obsolete.)
You would think that one test case with dummy data suffices, yet no, there are like 30 examples that lie to you about apparent business logic cases, yet in the end the way you set up the mock decides what you will or won't get.
What's the point?6 -
VSCode is doing really strange things to my language server, in such variety that I'm starting to suspect that it's simply incorrect because it's very unlikely that I'd misunderstand so many distinct things at once.
- The trace level is verbose, yet VSCode absolutely spams the LS with trace: off requests
- the capability update request I used to set file watchers never gets a response even though the standard clearly states that all requests must get responses or progress reports quickly, and I'm not getting file updates even after vscode responds to a file system change. By the way, if file watching is a capability, why can't I set it in the protocol handshake with all the other capabilities?
- my semantic token provider (used for syntax highlighting) is simply ignored, no requests, no errors
- the debug console is spamming editor internal errors2 -
Does this ever happen to you?
You try to add a feature in your app/product.
Somehow your brain can't comprehend the problem and you sit there toiling away.
A few days later you get that faint hope/idea. And with vigorous dedication you set out to implement and everything just fits in! -
When client for past few days tells you how important that new feature he wants is, and you should get to it asap.
But then when you actually start working on it after discussing it, specification creation and preparations, with mind set and focused, he tells you:
- 'Know what? I will need that change in the old feature before that. You can postpone the new feature by one day.'
So... How was it the most important thing in the universe again? -
Need some advice.
A few programmers told me when I started programming that instead of learning many languages, just focus on one that I am comfortable with and try to get really good at it.
But when I look at other people's resumes or Devrant profiles, most of them have multiple languages in their skill set.
That's why I have been exploring different languages but haven't found the one yet that I think I like the best.
What should I do now? Explore more?6 -
I just built a website with Hugo. And I love it. Got a request for a certain set of pages but because of the workflow the one thing I could dynamically load wasn't worth a whole wordpress site.
So I built it with Hugo instead. I played with it a little last week so I could get around but I got good this week and damn it's powerful.
I think I'm in love. I wish more projects at work could be built in Hugo.12 -
Spent all week 40+ hours attempting to get my companies application up and running using the documentation written by one of the developers. Mind you, 20+ hours pulling and replacing files. Get to the end and nothing works, contact the developer that wrote the set up guide, and he has no idea how to fix and at some point admits her forgot some steps in the documentation and doesn't know what they are. Spent over 6 hours in troubleshooting meetings with that dev and another dev and made no progress. The documentation devs answer to try and fix it every five minutes, "do an iisreset". Fuck you and the camel you rode in on.3
-
Had an idea for a Webb app tonight that I could use to test some new things out. Didn't get round to the new things but 3 hours later I do have my IDE set up, quarter of a billion npm modules and a gulp flow so complicated it feels like the file system is a rubicks cube...
-
I keep thinking that I need to set up my site for a portfolio or something, but then I remembered that I'm really bad at coming up with designs.
Have tried to look up some other sites for inspiration, but I always get these really impressive sites that me feel even more potato :c2 -
Can someone explain me if and when should I use get and set in C#? And what are the advantages compared to for instance "value = 1"?3
-
Looks like window updates will be faster. Windows Updates Are Set to Get Less Annoying http://makeuseof.com/tag/...
-
BossMan asks me to set up meeting with head engineer tomorrow about integrating 3rd party software. He thinks it bada bing bada boom and the software will get be implemented but I know better he doesn't even know what one of there many products he wants. How do I not embarrass myself in front if the head engineer? I am a full stack student and hope one day to work for this company in a dev role. What should I do?
-
Ok so this has been asked before I guarantee it buuuuuuuut.
I've been meaning to set up a Minecraft server and was curious if any other devRant users would wanting to join in and/or help pay for upkeep?
(Don't need to pay but it would help out if it does get some traction!)
Just comment if you would like to and if I get enough interest I'll look into setting it up :-)4 -
Refactoring some horrendous old ass (ruby) code and I come across
`schedules.each |do|`
okay. Where does `schedules` get set?
`schedules = [create_schedule(args)]`
Cool. An array that never has more than one object in it. Good code, guy.2 -
How do you do bootstrapping of blanko machines?
Imagine you get a linux/BSD/osx machine and you want it set it up to a defined state to be prepared for further setup.
Like users
ssh config
Sudoers file
Config management client or credentials
Software like vim, htop and tmux
A simple shell script sounds a bit archaic to me and i was wondering, if there is a better way...
Makefiles also came to my mind but still... Unsatisfactual4 -
Trying to setup a fucking google tag manager to get the fucking google analytics working.
Few years ago it was a 10 minutes work. Now I'm already at 4 hours. Fucking sick
WHY I say why I have two fucking equals accounts, FUCKING THE SAME.
And one is working the other one doesn't give a shit about my analytics.
Ehi, Tag manager, I just set up a Tag called "YourMother" related with its trigger called "Fuck" using same extra variable called "anal"
Can you just show it in my anal-ytics, fucking please?9 -
Learning Java for the new position I start in a lil over a week. Biggest struggle migrating from PHP is wrapping strings in quotes ONLY...no apostrophes lol. I guess I formed a bad habit. Also slightly frustrating is that you can't overload a method and set defaults. I guess you get that with Kotlin but this company is going to switch away from Java to GoLang and React, so I guess I won't really get to enjoy Kotlin.
-
I hate installing things with pip. It has to be the worst set up for a package installer. About 75% of the time something I'm installing fails and I have to look up why. Coming from npm and yarn where it just works I can't stand the disconnect I get when trying to get into something and I have to configure stuff for the first 3 hours before I can actually do anything.2
-
"feel free to choose which ever size pixel you prefer because you get the same great experience on both we don't set aside better features for the larger device"
-Google7 -
Am I missing something here? Lets Encrypt auto renews SSL every 90 days....BUT it will fail if you have .htaccess re-direct set up to https. So you would have to switch off the https redirect, manually renew, then switch it back on again. Thats fucking crazy. I can’t find a way round this. The hosting co set this up but are encouraging people to buy one of theirs when the renewal fails. a cunning plot to get more of their own SSLs. Any ideas?7
-
After waiting a while for another programmer on another team to provide a web service that I needed to call from a client side web form, I received word that it was ready. I could not get it to work because CORS headings were not being set correctly. After contacting them and letting them know, I got an email update to the team letting everyone know that they were waiting on me. After explaining that CORS headings were not there, I just built a PHP page to proxy the request, results and set the headers correctly so I can move on. I will remove it when they get their side fixed... if they ever do.
-
When the framework you're using decides to work in UTC after 5 years of using default system timezone. And instead of giving you the option to change timezone, hardcore enforces it by:
os.environ['TZ'] = 'UTC'
time.tzset()
For people who don't know python.. It basically tells your code that your system time is set to UTC (ingnoring the right timezone)
Now we get one bug after another because of this undocumented shitty change without changes in how time fields behave in different client timezones.
😒🔫
(Don't get me wrong, using UTC is logical however not in an existening application and forcing devs to rewrite all code that handles time fields)1 -
We wouldn't need [a partner] to go international. We can just get interns internationally to help us set up the systems there!4
-
I think I am too stupid to get fail2ban working...
It's installed, configured, it reads from the logs, testcases work, regex works, manual banning works, BUT IT DOES NOT BAN AUTOMATICALLY!
WHY THE FUCK
I litterally tried every tutorial to set it up on the first 3 Pages of ddg.
Well now I blocked those two aggressive ips just with iptables...3 -
Dev planning
- set timeline for feature for 2 weeks
- share timeline with everyone involved
- project manager calls and says it's taking too long
- dev adjusts timeline to 1 week
- project manager call next day asks for a new feature to be included in the 1 week timeline
What the f*** is wrong with these ppl. People don't seem to get the concept of schedules, timelines and organizing work. It's not like there is an abundance of resources (only few devs available ) with limited budget and salaries -
Is it just me or is Node a pain to set up? I'm trying to make an Ionic app and every time I've tried installing Node, all necessary packages, etc I always get errors.4
-
I find goals for developers to be pure busy work and almost impossible set meaningful ones.
You can't set ticket based goals, because one ticket may take a week or an hour. You can't really set learning goals, because how do you measure 'learning Svelte'? And if that was your goal, what'd be the point of the outcome?
You can set goals like, ensure all tickets have at least one unit test... but then you get tickets that need to get out yesterday and you get people knocking on your door while you're trying to create meaningful tests.
But we often have a meeting to teach everyone how to set goals, then we have to sit and invent goals that satisfy someone in the org, then twist our usual daily work into some BS about how we're working towards the goals in 1:1s and then the whole thing is forgotten by H2, if not sooner. Just to be resurrected in Jan/Feb of next year.2 -
I had a project partner that was clueless at programming even though she wanted to specialise in programming. So when I suggested that she use the internet to get suggestions for a game UI, she ended up copying everything off a forum.
The code wasn't even working, it had a different set of lib from ours and she spent 2 hours on that code wondering what was wrong.
I almost killed her for having a higher gpa than mine4 -
Fun story
tl;dr; analog FTW!
so we've just had a nice game. A few teams internationally gathered together in the aws gameDay. We had aws accounts set up [one per team] and our goal was to maintain our t2.Micros to deal with incoming load. The higher the latency - the less points we get, the more 5xx - the more points we lose. The more infra we have, the more points we pay for it.
So we are quite new in aws, most of us know aws only in theory. And that's the best part!
So at first we had some steady, mild load incoming. But then bursts came up and we went offline. It's obvious we needed an lb w/ autoscaling. Lb was allright, we did set it up and got back online. We also created an autoscaling group and set it up.
Now what we couldn't figure out is how the f* do we make that group scale automatically, as a response to traffic! So we did what every sane person would do - we monitored LB's stats and changed autoscaling group's config manually 😁
needless to say we won the game w/ 23k points. 2nd place had 9k.
That was fun!3 -
What are some good awards for a software development competition?
Budget: $1200
Some context:
We are organizing our flagship event with six tracks - each has its own set of talks and events. For the Software Development track, we are organising a Battlesnake competition and would love to get some ideas about the awards.
P.S. We are giving them general event swags too, but need something relevant to software dev as an addition
P.P.S. Giving money directly is not an option due to some administrative stuff12 -
Well fuck...
Korora 26 finally came out and I wanted to install it on my new laptop. I'd previously put Ubuntu MATE on there, with Cinnamon kind of tacked on, but it wasn't great, mostly because it wasn't Korora.
Unfortunately, Korora (and Fedora) still have a bug in the installer where it will complain if your /boot/efi partition is not on /dev/sda, which in my case it was on my M.2 drive. However, I was able to eventually get it working.
But when I booted it up and tried to log in, it would take me back to the log in screen. I logged into a TTY, where I was reminded that when I had set up my Ubuntu install, I had chosen to encrypt the home folder.
Not knowing how to set up the eCryptFS with an existing encrypted home folder setup, I opted to wipe the drive and reinstall from scratch--I had a backup of most of my files from the Ubuntu installation. However, I lost some very important documents that I'd set up since then.
Fast forward to today where my laptop won't boot unless it is either a.) unplugged with just the battery or b.) plugged in without the battery, with a different power cable from the one I got with the computer.
Thankfully the people responded quickly after I mentioned I was having issues. Hopefully it doesn't get worse... -
I‘m currently trying to get an SFTP user for our school's webspace (preinstalled WordPress, don't hate it - it's "great" for non-"it" people) and our network administrator means that he can't create one for me because I would have access to all files on the server.
WTF, you can create SFTP users on Linux and restrict their access and even set a home directory.
Yeah, now we need to forget about themes and plugins in WordPress.
(He said that he also can't create an FTP user)1 -
So i keep thinking why don't people make reminders of a goal they want to follow.I mean i use it all the time it helps me be more organised.
** Do remember i am a NOOB in web Dev and would like to get better**
++// Any suggestions are greatly appreciated //++
So i came up with a Web App where
" we enter something we want to set a goal based on and the time duration we want it to run it for."
What's the best part " reminder is displayed in terms of a calendar with some animation (where we click on the date to show that we have lived up to that goal for that day)"
The page would also have a counter like a clock which would tell the user who has logged in if or not they are Procrastinating or actually following their set goal. -
Ah yes back from school, back into trying to get Arquillian to work. After trying to build on Jenkins (just for a test if they fixed some of the Problems) suddenly it wont even build properly, because they removed the datasource that my Arquillian tests were running on. Great. Not only are my tests not working now, but the whole fucking thing won't build and trying to get a datasource into the Arquillian Container is a pain the ass.
I've set it up according to multiple tutorials. But it always tries to read a non existant datasource... Why, why, why the fuck do I have to do this shit. I fucking hate everything related to JBoss. It... never... works. -
When you've fully set up a CMS for a project and you still get messages asking to edit the content... 😕3
-
Pull request of the week: (In simplified version)
a = getVariable()
...
getVariable() {
[Some logic]
a = thisValue
.. or ..
a = thatValue
return a
}
🤦♂️🤦♂️
Tried my best to write a polite comment -
Any native app devs know if this is possible, before I go away and start messing about with shit.
I want to build a companion native app to my web app for the sole purpose of receiving in app push notifications.
So you set all the shit up on the web app and then the native app is just to get push messages. I currently send sms messages with the Twilio API but would rather the app solution.1 -
Started working on the game I want to make. Decided to go through the android publishing and it took like an hour to get it all set up. CI/CD not easy with game engines either.
-
I have lost track of the whys, but I'm writing something that loads a datastructure not unlike specifications of C types (plus struct single inheritance and generics) from any DLL-s tossed in the same folder, then organizes them into a pretty database. Now I just gotta keep gradually broadening the scope until I get to the feature set of the modern C# type system.rant what is this not gonna halt another project at least i can show off my mathz i could've went with lua i really should stop writing in the tag row why
-
I'm 37, been a PHP Web Dev for 12 years. I love doing it but am concerned as I get older, I'm falling behind. I'm not exposed to different tech in my job but am doing courses to vary my skill set (AWS with Docker, vue.js etc)
Is anyone else here over 40 and doing dev work? Any obstacles you found? Or younger peeps, what’s your opinion of older devs? Should I be concerned?7 -
Few months ago we move into a new Building, Company buys new Polycoms for 2 of the boardrooms - fancy ones with the Skype for Business and stuff.
Provision the boardroom accounts get them set up and all is working well.
Director asks if we can swap 2 boardroom phones around because their dept. just got a remote user and video calling would be awesome.
I set to work changing sign in details, provisioning accounts, assigning licenses, etc which is a long process because 365 needs to update throughout.
Finally get everything right, time to login... Failed...
Login fails on the Polycom, my laptop & an android tab - all 3 with different errors.
Decide to test account by logging into the web version in OWA - logs in perfectly.
Why Microsoft?? Why must you make it so hard? Why not just work?2 -
If you think about it logically devrant is really just an RPG game with a lot of griding. You set your avatar and you play. Now eventually we're gonna get an update where an unbalanced feature is added...2
-
I'm facing something strange, I have set the following headers in Nginx to return:
strict-transport-security: max-age=31536000; includeSubDomains
vary: Accept-Encoding
x-content-type-options: nosniff
X-Firefox-Spdy: h2
x-frame-options: SAMEORIGIN
x-xss-protection: 1
But I only get them when I browse root of my website, but if I go to https://website.com/subPage
those headers are not returned, now I did set them only on
"location / {}"
Any other headers I am missing that needs to be set?
in nginx, but how do I force it on all sub pages, or there is no need?2 -
Java8: "the prevoius 2 api set of handling datetime were cumbersome, and not friendly so we introduced a whole new set of api's from jodatime"
(Looks at the new api trying to figure out how to get milis difference between a date and a timestamp, wants to kill everything and everyone in sight)
If i have to Google every simple date operations someone needs to pay -
I just set a admin password for my old dlink dir655.
Oh, you'll need to restart, sure
Now this fucking thing is stuck in a bootloop and I can't get a new one until tomorrow.4 -
s it just me that finds WCF cumberlicated? I'm having trouble to get my client up and running every time we set up some sort of new service solution at work. All these service references and classes that cannot be resolved just cause a meltdown in my head. GGGGGGGGGGGGGNNNNNNNNNNNNNNHHHHHHHHHHHH! *going mad*4
-
Got bored while pushing a large unity project, set Nice=-15
Works like a charm.
Actually, a GUI tool would be nice, something like xkill that sets the nice value of the owner of the clicked window to a really low value, for when you just want to get something done quickly. -
Stop fucking wasting my time! When clients ask for something or how to do something and you set about providing a succinct and precise answer to their enquiry, then the second email comes saying, that’s not what I meant, and then a totally different unrelated enquiry follows as way of clarification. Just fuck off, your enquiry may now get answered in a week or just get completely ignored. Cunt. Think before you spew bollocks at me in an email.
-
When you eventually get a 10yr old hardware to talk with the new pc104 stack!
Has to be the most complex set up I have ever seen!
Only taken me a month to understand what was needed from mutex's to knowing the address registry to read from...
To then only find out it's only a small cog in a much bigger system 😢2 -
Last week I had a meeting to get us all on the same page for today's prep meeting... Tomorrow we have the actual meeting to be followed two hours later by the meeting review meeting... Culminating in decisions that drive the direction of a set of upcoming meetings... Which will all have prep meetings and some have further review meetings...
I'm so excited...2 -
I got a question about the devrant api.
I’m trying to query the 1000 most recent rants with the /rants endpoint. Trying to get 50 rants per request.
After about 550 rants queried, the api response starts being essentially empty, but the success flag is set to true.
Am I running into some underlying limit preventing me from viewing more rants?7 -
I’m now in my third try at attempting to set up reasonably priced shipping for a small volume ecommerce website. First it was UPS which charged more to ship than the product was worth, and ended up just dropping it off at USPS for local purchasers. Then it was USPS but apparently I chose the wrong WooCommerce plugin because it’s meant for high volume (but doesn’t say so in the description). Now I have to get the plugin maker to swap it to Stamps.com and I have to set up a whole new account there and no idea if it’ll even work. FML.
-
Here I try to install a package locally. If the package doesn't install, I try to install every single word of the output from the failed install. Maybe one of those words will install an unmet dependency.
function install() {
need=$1
apt-get source $need && cd $need
c="./configure --prefix=$HOME/tmp"
m="make && make install"
eval set $($c)$($m)
if [ -x "$(command -v $need)" ]
cd ..
return 0
fi
for i
do install $i
done
}2 -
*The one where he breaks ssh*
TL;DR: Minikube's dick is too big, and my ass wasnt ready.
So there was a time about 2 weeks ago where i wanted to try and set up a minikube cluster using SOP, and that actually went okay, aside from having to move over to a completely different server after discovering that my processor doesn't support virtualization.
So i set it up on my other server, and everything immediately starts going to shit; i can no longer run commands without processor latency. Also top shows 200% CPU usage. Maybe i should stop... NAHHH... so i continue on, and the biggest fuck up was starting up the nginx pods. I have 6 of them, and the moment i try and stand up my custom container which was the WHOLE POINT of this whole exercise, i lose ssh access and cant get back in. I go over to the server and kill the minikube and virtualbox processes, and everything's back to normal.6 -
If I get a nice capture/tuner card, do I need any other strong specs in its computer, other than RAM, to set up a myth box?
-
Fighting to get a code repository up and running at my current company.
There is no central repository at all; people use their own local files and hope nobody else made changes. At least one product had to be retired because nobody could find the firmware source. I didn't even bother with git, I set up an SVN and showed them how basic and easy it was to use. They all agreed it was simple, and then continued to not use it. Facepalm.3 -
I hate windows man. But I needs it for me games. I just wanted go set up my gaming rig to work double time as a nas. I set up a hostname and all for it but I can get it to be recognized by other device even on the same network.5
-
I have a question about how to set up TensorFlow and use Node.JS for MongoDB CRUD. Help!
Cool, have that question on StackOverflow, because this isn't. If you have nothing to rant about you probably are still missing uncountable hours in training to get on a level where you can rant. Fuck off. Choke on a horse dildo. Get it through your thick idiot skull that devRant isn't your beginners bingo bongo chit chat.6 -
I am going through a really demotivated phase right now...
Don't get me wrong, I love what I do but I just can't seem to set the intention I need. I know it's just a phase and the love and drive will come back but right now, I just feel I'm going through the motions...2 -
😤 So I just got a flat tire at night and have incomplete set of tools to change a tire. Good thing my father helped me. It was tiring and gruesome. I suspected someone intentionally did it in the parking lot beside the mall.😡
I'll buy tomorrow a crocodile jack and complete set of tools. Also, I will practice more on changing tires because my father did not teach me and I just learned through self study. But self study isn't enough, gotta practice some more. I hope you will get some lesson to my mistakes. -
Been waiting for pur internet to get set up for a while now. We've finallu beem connected. Initially we thought we'd be stuck on a ADSL2+ connection with a max possible download speed of 20Mbps. Then we found out we could get cable through a different ISP, so we went with that. We were expecting a decent downloas but not this... this is just great!11
-
Germany set a minimum wadge of around 1.8k€ without taxes the month... Now every business which would normally pay more pays 1.8k€... Thanks, Germany, for getting into financial trouble when retired...
What's your best strategy to make a company get into trouble when you're not there?3 -
So I'm in a situation where I have to send a big set of data (from a numerous set of profile), but I can't because the framework used has been thought for sending few data (from an only profile) and then get a timeout.
I should take it as a challenge, a hard one but a challenge. Gonna be funny (and tiring too I guess)1 -
I know it's all for good reason, but man are there so many hoops to jump through to get a web server set up through HTTPS. registering the domain, getting the SSL certs, configuring the DNS, setting up the firewall rules.. what a pain6
-
Working with a client (who is a "techie") to authenticate mailchimp for their domain. After a week of fumbling about and with pressure building, the domain registrar claims to have set the correct DNS settings and to get pressure off him, he writes an email saying,
"CNAME has been added ask mailchimp to propagate on their end". FML -
Just spent 3 hours on a bs problem
I just start acceptance testing a node.js api.
I'm using frisby
I have logged the export method return data and it is correct
I am loading it into the set header function as the accept-type
On frisby side I run the test and it spits out that there is no accept-type
I really don't get why anymore. Came so close to a blind fury. -
Fuck netlogo,
Fuck the way you have to code anything in there, you can't even access an element in a list or string using list[index] but you have to use "item index list".
Netlogo is aimed at kids so it also avoids using math symbols like it's a sin to use them.
You make variables with "let name value" and "set name value".
It's a huge pain whenever I get a assignment which I need to make in netlogo again.
Fuck netlogo.1 -
How does Spring Boot/Data create a MongoClient/Template Bean to a **remote** database that requires password, certs, other configs?
These would be set in application properties but how does it get translated to the Beans?
I went through a lot of examples is like @Autowired MongoClient client
And then they just use it.
And I'm like wtf?7 -
Decided to try the beta build of WP 5.0 today to get a feel for Gutenberg block development, but it's not building confidence. Following the examples in the Handbook (Link: https://wordpress.org/gutenberg/...) and it's failing when trying to set up the rich text editor because apparently the object it relies upon is undefined. Been trying to track down the code for the basic paragraph box for an hour or so now so I can see how it's doing things, and haven't turned up anything useful.
-
I’m fucked off tonight.
I’m having to pull a very complex data set out of dB and loop through results in a table.
Easy, done, but one of the Columns I’m pulling out needs further broken down. It’s a comma delimited string.
I can’t get the data, and inside the same loop explode that string so that the contents can be handled independently.
Raging! I have foreach loops inside foreach loops and arrays inside objects that are inside arrays.
I’m going to bed furious.2 -
When you have high performance set, yet your lame CPU won't get above 0.75Ghz, so you have to constantly reboot to hit the 3.50Ghz jackpot1
-
Long time....loooong time since I got on here. That said, I'm just gonna jump on this like everyone else. You know the drill.
MS just bought GitHub. Fucking. GitHub.
I just pulled an all-nighter a day ago to set up a DigitalOcean droplet for the first time. I'm sorry. I just don't trust Microsoft. Look at the Halloween memos and everything they've done. Then they try to (literally) buy trust. It doesn't work like that, at least not for me.
I see people comparing users talking about moving to GitLab to the people who said they were leaving the US after the 2016 elections but never did. That's the difference here - I set up my first GitLab install.
I dislike the thought of the buyout so much that I want to ignore the fact that it's happening. But gotta get through. GitHub could easily take the way of SourceForge and GitLab prevails. -
so here i am, recreating the same code.
i'm using an acceptable solution for running this on a linux system.
they updated it so blkid won't display information without root now, a dozen times. ok. fine. i get it blkid can also SET the id.
so.
lsblk -fJ
nice command, gets me the info I want.
implementing, recognizing the implementation.
good code.
why the fuck do I have to rewrite a relevant utility that bypasses google's shittiness ? why ? WHY ?2 -
I understand the desire to self host repos. I get it. I really do. But this is the 14th self hosted gitlab account I've had to set up. =/ My password manager will start complaining to me soon.2
-
Okay I'm probably going to get flak for this but...
WhatsApp chats are apparently e2e secure. Except when you back them up, right? Why not, when you create a backup (iCloud, google drive, whatever), have the app generate a password protected key pair and use that to encrypt/decrypt the backup?
When restoring the backup, use the password you set for the key et voila! While at rest, that backup is still encrypted.
Or have I missed something completely?2 -
Some people like to spring clean, rearrange their house, wash their car, build shelves, or some other chore.
Me? I just spent a couple or so days manually "syncing" the packages on my 2 laptops. That is, making sure that `apt-mark showmanual` and `dpkg-query -l` shows the exact same output on both of them, by manually apt-marking / apt-get installing / removing the exact same set of packages as manual/auto and ensuring the exact same set of "recommended" / "suggested" packages are pulled as dependencies on both.
The end result is a sysad's ideal - I have wasted countless hours making sure absolutely nothing has changed. But hey, my package list is clean, and if aliens from a software dimension abducted one laptop... I have an exact clone ready. -
Damnit I am an idiot. I am making a downlader for talkpython lectures and ive managed to get the "user_tpt" (auth key) well when I'm set up the request I sent it in the header when its supost to be in the cookies. I couldent figure out why it wasn't working so I left it for 2 days and now just when I open it I see my mistake1
-
!rant
Woohoo! Finally managed to set up ipv6 tunnelling on my openvpn server, now all my clients can reach ipv6 resources too!
The only hiccup is that I have to manually specify an ipv6 address to each client beforehand, or they won't get one automatically, but that seems to be an OpenVPN-related issue.
Still, feeling great! Finally figured this out :D1 -
Fuck maven. For fucks sake. If you want to install something in js project, you do yarn add ... and shit works. If you want to install on linux you do apt-get ... If you want to install ANYTHING on windows in fuckin 2020 you download it and it has an .exe.
But not maven. Oh nooooo. You need to do all the bullshit with configuration, set shitty paths and just pray for someone to shoot you.
Don't punish me for Windows. It's a God damn corporate policy not my sane choice...33 -
Fucking AWS Elastic Beanstalk took a week of work to get fucking mounts set up. They invented their own version of docker compose that is missing half the features so I had to work my way from hacking their scripts to include options they don't support, to restarting the whole fucking docker service on every fucking deployment and now the shit finally works. How can most StackOverflow answers just say restart docker, this shit is not ok! I fucking hate sysadmin work. I want to code :(
-
when you get a set of metrics from another dev, on a database you don't know, to add to a BI dash and the next week their manager changes the metrics (for consistency) and the other dev is unavailable.
-
I need to build a mock-up site to demo a concept what's the fastest way to get set up?
Need a db, login and sorta like devrant collab or actually Kickstarter... Or actually pretty much like them except not for funding products8 -
Since my question, in all likelihood, won't get answered on StackOverflow, I hope I can ask it here instead. I hope that's alright.
So, I am currently developing a Feathers + Nuxt boilerplate, and am using localStorage to store the jwt.
But I noticed if I set the localStorage with the jwt manually, it will act as if I'm logged in, bypassing the entire login-function. So I solved this by using an iframe with a script that clears localStorage (and log out the user, if logged in) when something changes in the localStorage (by using the eventListener "storage"). (I am also observing the iFrame if someone deletes it, in the console, and re-inserts itself).
My question is if this would carry any security risks? Like, would this be a bad thing to do, security wise? Is it alright to leave it alone and let users/visitors to set the jwt manually?9 -
when you stare at a function for a solid hour, unable to understand what it is doing, and then you realize that it's a basic get/set and you were overcomplicating it. I'm way too tired.
-
😢... Built a mobile app with React Native, the app implements Navigator api in JS to get coordinates. It works perfectly on 6.0 and below, but fails on 7.0 to be specific, Nokia 2 (it returns the same coordinates regardless of the location). How to go about this? What other library can I use to get coordinates?
PS: I have checked the permissions and they are set. -
I've set one of my contacts' ringtone to the "IT Crowd" (I haven't actually watched that series yet) "NO! God please NO!" audio bit so I know when that specific person is calling me... I'm glad I don't get his calls anymore, or not as often as they were...1
-
WTF new Chrome devtools breakpoints faded away and put inline within the code and for every one you set you get extra 3 for free... ???1
-
Not really a rant, but I quit the job I hated for one that pays more and will also give me a set schedule so that I can actually get some coding done for once! (Last job had me on random open or close shifts and that shit fucks with your head after a while) I'm so stoked. Looks like I might finish my projects before Christmas after all, whooo!
-
Accountability Post: I'm 6 Lynda.com tutorials into a 17 tutorial set to rebuild my full stack skills and try to bring them to more current standards. Also looking at additional course paths but feeling a bit overwhelmed when I think of the time it will take just to get through them, let alone all the practice. I must do this, though, and more frequently, even, if I intend to successfully work in this same field for the next 21-ish years until I can retire.1
-
To me, programming, designing systems, reviewing work, it's all easy.
Perhaps that's because of the challenge I've set myself. To find a like minded that I can get to know -
I'm expecting my StackOverflow questiion to get shut down and some mod to want to piss on my corpse ( https://stackoverflow.com/questions... ) so I'll ask this here too. Anyone set up the open source Jenkin in a DR environment? I'd like an Active/active hosting solution but everything I read points to Cloudbee's... Post your answer on SO if you want, I'll vote up whatever looks good, but in case it does get shut down by the assholes with a god complex, please @ me :)5
-
I am thinking about working on an app using which users will be able to create a survey or a set of multiple choice or sorting in a particular order questions amongst their friends or colleagues and at the end would get a response about which option received the most votes or which is the most preferred order.
The responses will be anonymous even to the creator of the questionnaire.
Is this idea good enough to work on? -
No internet! I have been without home WiFi for a week now and I can't download big files over my hotspot as it is expensive. I need to download a Raspbian image for my Raspberry Pi but it is ~1 gigabyte. Been needing to get my Raspberry Pi set up to turn it into a server for a site I am currently creating.6
-
!dev
So, today until Sunday, a fairly general strike is going on based on how our government wants to set up our pension or something..
Now I have to call and wake up my friggin' dad to bring me to work, and probably come and get me too...
That's not all, even.. most people still go to work by car, generating a lot of traffic...
Will I be too late at work today? Probably.
Fucking A! -
When after registration on some website you get your password, that you just set, send back to you in an email. Why the fuck do they store and transmit passwords in plain text.4
-
!Rant .. I need some quick help and didnt know where to go.. so fellow ranters please help...
So I have created an sql trigger which is supposed to add a kill to a doctor whenever one of his patients changes state to "killed" . But I dont know how to just get the one row that is updated. As it looks now : The doctor get patientKilled ++ for every patient he ever had before as well... How can I solve this ?
USE [AD17_Hospital]
GO
/****** Object: Trigger [dbo].[PatientKilled] Script Date: 2017-10-21 19:51:32 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER TRIGGER [dbo].[PatientKilled] ON [dbo].[Patient]
AFTER UPDATE
AS
BEGIN
declare
SET NOCOUNT ON;
UPDATE Doctor set PatientsKilled+=1
FROM Doctor d
INNER JOIN inserted p
ON d.DoctorId= p.DoctorId
where p.PatientState='Killed'
END4 -
Somebody out there please tell me why I'm uploading a 17 MB file and PHP isn't showing a $_FILES array? It's just not there. I've set the max post limit and the max upload limit to 128 MB. The files are going to get way bigger than this. Why does this server like hurting me?23
-
So I've been tackling the Multer package with express and react, Christ what a nightmare so far. I can't get anything to work.
- Images as array string in mongoDB check
- enctype on the form, check
- state for the field set to an array, check
- type file check
- express configuration based on the Multer docs check
Everything as far as I can tell is as it should be, yet nothing gets saved.
FFFFFF9 -
Gah !
Trying to broaden my skill set by learning angular 2 ( no experience of prior angular )
But this is turning out to be harder & more frustrating than expected.
Any advice on how to get started with angular?4 -
Help needed.
Anyone who has worked with OpenBazaar REST APIs. I cannot seem to get any response from the endpoints even though I think I've set the server correct. Any sort of help would be highly appreciated.
P.S. (Rant) the docs and the "helpful slack community" are total shit. -
When work says here you know java fix this Javanese application, you have to use this editor with these tools we will give you java 7 your tools need java 8 but that's okay we will install that later not give you admin on your box and not set your path to use the java 8 Jew included with the JDk and wouldn't give the standard Jre because I don't have a business case even though I just need java 8 to jun the tools. Oh well I guess I get paid for trying to figure out how to get it to run without permissions and with a virtualized development application1
-
I'm learning C#, and the whole properties thing with get; and set; is weirding me out... So many unnecessary mistakes could be made by accidentally using = instead of ==...13
-
Working on HTML, we had to create a navigation bar at the top of the page so we could make it simple for people to get around.
I took maybe 10 minutes trying to figure out why the links wouldn't spread out across the top of the page instead of the unordered list I set.
Turn out I had page breaks, forcing it to stay as a list and not how I wanted it to work.
I head desked...1 -
I don't understand how Facebook can restrict my account when I'm following *their official guide* to make a WhatsApp bot (which entails creating a business manager account and all that tralala) which basically makes it impossible to continue through the guide to get the WhatsApp bot to do what I want it to do (I only got as far as having it send a demo text and set up some of the account BS).
Needless to say, I went for the Discord bot approach and got it to do what I needed.3 -
Where can find an all in one guide to set up/configure a ELK environment manually from the tars (not yum, apt-get, docker image)?
I am following the component docs from Elastic but not sure how each component integrates with each other or how to set the mongo connection (DB is not local)5 -
Hi.
i will be quitting web languages untill i get the whole concept of javascript then learn typescript or react
this will take a while due to typescript but now i know nothing about web development and im learning one by one.
set aside the cringe because you will see a whole new person after a few months. bye :)2 -
Fuck me Amazon cert manager is so fucking complicated. Just do it all for me; why do i have to providing a route 53 entry (TECHNICALLY 2 IF I WANT MY NAME CORRECT) BEFORE I set up my load balancer??!! I should be able to test a load balancer first and then add on tls, not have to get a cert all set up and then sit on my fucking ass when the load balancer shits itself1
-
I want to develop a Web App for fun, but can't quite get my mind set on something interesting.
Any app suggestions I could try to make?
--This just for training purposes.2 -
What the Fun Javascript Part 2
With reference to my old rant : https://devrant.com/rants/1445754/...
An explanation to this...
In JS whenever it sees '==' it has a set of rules that it follows before comparing quantities...
One such rule is...
When we compare a number with a boolean using '==' it first converts boolean into number then compares the two quantities...
So in this case..
When we convert true to number we get 1 and when we compare 1 and 2 they are obviously unequal hence we get false...1 -
Embedded systems : That sounds frustrating, especially after putting in so much effort to ensure everything was set up for your coworker. It might be helpful to check in with him to understand if there were any obstacles or misunderstandings preventing him from using the new testing framework. Sometimes, direct communication can help clear up any issues and get things back on track!
-
Ever since i added cloudflare to my site i get this error. everything exploded and the site no longer loads (i had to set cloudflare so i can use gitbook docs so im forced to use cloudflare even tho i dont want to use it). Anyone had this problem before and knows a fix?5
-
Linux: sudo apt-get install IDE dev-libs etc
Windows: install wxMSW, extract compressed binaries, set environment variables, set preprocessor/project settings in VS2017, set search directories, etc.
Why is it so ANNOYING to set up a simple GUI development library for C++ on Windows? -
What's the point of Docker Hub's automated builds? It's often faster to just set up a CI build to do the same thing, and it's the same amount of effort to get going.
It's way too damn slow. -
What is the best way to set up two monitors? Every single configuration I try, I end up having to turn my head left/right on such a regular basis that I actually get a sore neck. :(9
-
I was finally able to set up a server with my coworker's help in our work office. After struggling trying to get CoreOS to work, I quit and just went with Ubuntu Server 16.04. It's a SFF PC that we had lying around. The purpose is to run applications in Docker containers for QA, demo, and performance testing. I can say it was truly a productive day...
-
I am creating a new android app and I am also a web developer and i know that links are also set to be opened in new tabs and whenever this action will happen, my browser might get stuck or might call intent service.I want to get the links which it wants to open in new tab and whenever this happens I can programm my browser to handle this event.3
-
Learning C# coming from Java...
What's the fuss about properties? As i see it, theyre only usefull for binding, as else they just work as syntetic sugar instead of getter/setter methods.
But properties are also limited to give response back, like a successfull set, unless you start throwing exceptions..
And if a set property has if(age>5){this.age=age} then if i pass the property a 4, you will never know as a user that it failed (again, unless you start throwing exceptions)
Im kinda feeling like i want to use get/set methods until i need to bind, then of course use property ?? Am i all off here?25