HackerTrans
TopNewTrendsCommentsPastAskShowJobs

krzepah

no profile record

Submissions

Are we allowed to brevet oauth2? Microsoft does

worldwide.espacenet.com
1 points·by krzepah·5 yıl önce·1 comments

comments

krzepah
·3 yıl önce·discuss
I agree with you, the caching mechanism and ways to communicate with the API from your scripts would have been way more interesting to read about
krzepah
·4 yıl önce·discuss
Be honest, try to give them other options as soon as possible, give them a number their future potential employer can call. Maybe even write something
krzepah
·5 yıl önce·discuss
lmao :')
krzepah
·5 yıl önce·discuss
Hi !

Am I missing something ?
krzepah
·5 yıl önce·discuss
Direction out of touch with the importance of cultural well-being. At this point I'm not accepting talks with companies that do that and point them to their online onboarding and processes. If they are so lonely that they value what they see more than the work done then I have other companies and other priorities.
krzepah
·5 yıl önce·discuss
When I read things like that it pulls me away even further from continuing CS. How blind are you that you do not realise that forcing a software execution is not ransomeware ?

I'll tell you what's wrong here : Docker is a fantastic technology but it simply couldn't find a suitable market tactic.

Now it resolves to this shitty practices. I don't even know how you can begin to think that it would add ANY burden to them NOT to run the update on your computer.

And here is my problem : It's my computer, I decide what is ran on it or not.

Next day we have some idiot getting keys on the docker update system and we simply have built a technologic crash because suddenly nobody can decide wether that update is ran or not.

Keeping control away of the user is the most stupid thing there is.
krzepah
·5 yıl önce·discuss
I've got another one : It's your device, you shouldn't be locked out of it because of some update that now requires you to authenticate to whatever online service they have the fantastic idea of coming up with.
krzepah
·5 yıl önce·discuss
The most stupid thing I can think of is that the downloader changes version less often that the said software. So you download your "downloader" which points you to the latest version of the software.
krzepah
·5 yıl önce·discuss
Not related to this, but I got locked out of my apple account few days ago, this means : loose of everything I bought, cannot update any software. Only way to retrieve said account was trough a SMS system that was locked on a non mobile phone. They nicely allowed me after to use my email account for it (which was already linked), and promptly asked me to a new number.

To my surprise, this account status went back to it's original state (which mean I STILL have to re-do all of this process) and I'm still locked out of it.

But they took my money, they took my phone number. And they are happily locking me out every few because they basically do wtf they want.

I'm not buying any apple product anymore and I'm making sure everybody I know about knows about it. This company is a lie. These people are doing racketing in day light.
krzepah
·5 yıl önce·discuss
Microsoft has trouble with UI design and it only got worse. Think about the "help" buttons that are on win system preferences, instead of directing you to the option they send you to google or bing. It's ridiculous.
krzepah
·5 yıl önce·discuss
fun fact comment, Asimov thought about this, I'm quoting the short part that is relevant from this article on wikipedia :https://en.wikipedia.org/wiki/Foundation_series "One key feature of Seldon's theory, which has proved influential in real-world social science,[3] is the uncertainty principle: if a population gains knowledge of its predicted behavior, its self-aware collective actions become unpredictable."
krzepah
·5 yıl önce·discuss
What I dislike about heavy test process is that you basically might be writing b*lshit until your product owner validates the implementation.
krzepah
·5 yıl önce·discuss
You are making judgments about OP using Docker. But from my point of view you are a true pain to work with because you do not containerise your work. Anytime I'd have to work with one of your creations I'd have to go figure what you are using, set it up and make sure it works. That's a waste of time and you are promoting that very fact because you were unable to figure any usage for it. I doubt OP has only "read some blog post about it somehwere" It's literally wide in usage by a lot of companies. "People who like Docker often seem to be working in larger teams, which is totally fine and they're probably right to use Docker." -> it's actually about that, it is useful is scaling that's true, but it's also very useful just to share the env your software should work with. And I'd dare to say that giving a Dockerfile is now standard practice.
krzepah
·5 yıl önce·discuss
"Just use the same Python version and a roughly similar PostgreSQL version in development and production, and you're good to go" -> And that's more time than it would take to re-use that Dockerfile and docker-compose that i literally wrote once and go to once in a while.
krzepah
·6 yıl önce·discuss
Hi,

Having a React / Vue whatever in addition to your Django server allow you to split the "View" from the "Model-View-Control" paradigm that Django respect, when you have django & react, Django is only "MC" and react becomes "V"

Simply put, when you are in the template paradigm you are producing HTML files, when you are using React you are generating HTML.

For instance, I'm not building up an "account" page, i'm building up a "detail" page that can be reused with a query that I'm passing in. That query is a function that defines the call to Django. Eventually I'm passing parameters to the component to drive it's behaviour.

I'd simply suggest you to go learn some react, it is difficult and it takes time, but it will allow you to see more solutions to problems that you might be handling in the "industrial" way (eg: writing 10 templates and having some jquery mixxed in the html)

I've been working with django and react for a while now, and i'm now used to 100% coverage without much hassle and very good productivity (dare I cite my boss :) )
krzepah
·6 yıl önce·discuss
"I don't want to go full SPA with Django as this defeats the purpose of Django IMO" -> What is this "purpose" ? Django is here to help me model my database, handle few permissions and bring few API up online, I see no problem with having a PWA in front of it. Are you trying to get all of your website server rendered ? In which case you could do that without having to worry about integrating it with Django... TBH after 5 years of react and 8 of Django, i'm just not mixxing them up except for the front-end calling a query on the back-end (which both can be served at the same domain using nginx) ;
krzepah
·6 yıl önce·discuss
It is not. If you intend to have a react front-end then this front-end becomes the "V" in the MVC, while django becomes only the M & C;

Having something cohesive is much more reliable than having some template there, some js there, some template there again.

If you stick up to one way of doing things, testing and debugging becomes trivial because you are not mixing up three different way of doing something