|
First of all, I know it's a bit late, but welcome to the community. Know that your experience is not unique, is not even rare, but is generally par for the course. There are very serious pluses and minuses to being a dev, but let's talk about something else first: soft skills.
By and large developers tend to regard logic, efficiency, and technical ability as positive traits. This is not the case with people in the lion's share of other disciplines, and over time this leads to many devs being a bit more reclusive and less invested in the work of others; to the point where the caginess of programmers is pretty much a stereotype. Now, this caginess is not reserved for "outsiders", but rather anyone that does not meet each individual's bar for competence. This is the first primary contributing factor in the response that you've received, and don't be so self-centered as to assume that how people interact with you has everything (or anything) to do with you.
Now to where my own caginess might show: the things that you're complaining about are actually the job. Yeah, writing code is nice and all, but it's not the hard part of the job. Expressing yourself in code is a baseline, and every knowledge domain is different, so each new project will, largely, throw you right back into a pit of not knowing what's going on, not having a foundation in the subject matter, or generally not being sure of where to immediately go. This is entirely the reason we have an SDLC and why the things that may not have seemed terribly important in school are very important in practice.
You're also not expected to know everything, despite how it might feel at the moment, but you are expected to be able to figure things out that are in the knowledge domain of the company that you work for. You are expected to understand some patterns and practices when it comes specifically to engineering, but that's part of the trade. Never, ever, play "smart" when you're lost: questions are invaluable, ask them!
Learn to provide realistic estimates (the Scotty rule can help...) so that you don't always feel under the gun. Sharpen your research skills; Google is the ultimate expression of RTFM, and being able to read up on APIs or even check source on GitHub is a gigantic leg up. Utilize it without shame or fear.
When you don't have a current project, experiment. Play with a language or technology. Look for holes that you can plug. Make a space for yourself within the organization.
"Never attribute to malice that which can be explained by stupidity."
- Hanlon's Razor
|
|
|
|
|
It's a shame that a great answer like this that obviously took some time and effort has not been recognized an upvoted. Here's 5!
"Go forth into the source" - Neal Morse
|
|
|
|
|
I'm unsure if I understood everything correctly. Is the following correct:
1. A Text encrypted with PRIVATE_KEY can be decrypted only(?) with PUBLIC_KEY
2. A Text encrypted with PUBLIC_KEY can be decrypted only with PRIVATE_KEY
Thank you very much for help and sorry if the question is stupid...
It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|
Yes, those two statements are correct.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thank you very much!
It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|
Close. Depending on your use case, you will have a PUBLIC ENCRYPT and a PUBLIC DECRYPT key. These are completely separate key sets that are associated with PRIVATE DECRYPT and PRIVATE ENCRYPT keys respectively.
Generally, you encrypt a hash with your PRIVATE ENCRYPT key to provide a digital signature, as it can be verified using your PUBLIC DECRYPT key. For actual message encryption, your PUBLIC ENCRYPT key will be used to encrypt it so that only your PRIVATE DECRYPT key can decrypt it.
With the PKI model, you can freely hand out your public keys (or they are stored in a central repository, such as on a domain) while your private keys needs to be properly secured to prevent compromise.
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
Thank you very much
It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|
Hi !
The logical to remember with Public , Private Keys is about 2 crypting channels.
From both sides, 2 differents Keys will operate.
Like all cryptos, one can be reverse , not the other.
But the A to B, B to A must transmit all datas, and verify them.
Look at what can be switch : ( What is surrounding ? )
Computer A , Computer B
Keys A , Key B
Private function crypto
Public function crypto
Clock from A(all in) , Clock from B(all in)
checksum A , checksum B
while you ensure no errors of receiver .
The work is all done.
It's "pair" working.
modified 23-Aug-21 21:01pm.
|
|
|
|
|
Message Removed
modified 11-Feb-18 10:35am.
|
|
|
|
|
I got -50 points around for this article Improve-the-Way-of-Writing-Functions . But as per the code project documents when author gives down vote author should give proper reason. Please help me if I am wrong.
|
|
|
|
|
This has nothing to do with this forum. Also, giving reasons has been debated many times and it's not going to happen because the reasons would either be rubbish or people would be put off voting.
This space for rent
|
|
|
|
|
Also disclosing reasons would invite privacy issues for the #voter
|
|
|
|
|
If a solved code is correct is it reevaluated ?
|
|
|
|
|
People downvote for all sorts of reasons, it's annoying when your answer is given a bad rating just because the poster didn't understand\try the code, or whatever, but overall those votes are countered by the better votes you get.
I looked at the last few answers you gave though, and I guess a reason you're getting so many low grades is because you're not properly formatting the code in your answers so it is hard for people to follow. Learn how to use the "pre" tags, or paste your code into the solution box so you get a pop-up asking how you want the pasted code to be formatted and select the appropriate option.
Do this
$(document).ready(function () {
var select = $("#<%=lblMultiSelect.ClientID%>");
var senddata = select.val();
var txt = $("#<%=listBoxValue.ClientID%>");
select.change(function (e) {
$.ajax({
type: "POST",
url: "CS.aspx/GetCurrentTime",
data: '{name: "' + senddata + '" }',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function(response) {
alert(response.d);
}
});
});
});
function OnSuccess(response) {
$.each(response, function (i, el) {
});
}
not this
$(document).ready(function () {
var select = $("#<%=lblMultiSelect.ClientID%>");
var senddata = select.val();
var txt = $("#<%=listBoxValue.ClientID%>"); //<
|
|
|
|
|
|
If a persion gives wrong statement against a good answer how can provide down points
|
|
|
|
|
Do not worry about points. They do not mean anything.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Thank you for your comment as well as you others are also started like you
|
|
|
|
|
I am trying to browse through my articles submitted sometime back. However I am getting message as - This article is still being written and is not currently available for general viewing.
Can anyone help me how to recover my submitted articles.
Thanks
Kishan
|
|
|
|
|
Have you published the article? What I think of this is that you have not yet published the article and are currently viewing the draft.
Secondly, if you have published it, and still see it: It might be because you have tried to modify it sometime in past, and you are being previewed the latest draft. To check if that is the case, go to "My Articles" and see the Drafts. You will find it there, also, if you published the article, the older version will still be visible to general public.
For future posts about Article Writing, try contacting the admins here, Article Writing Discussion Boards
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
Should I have to begin with replacing ASCII with something new like Indian Standard Code for Information Interchange? Please give tips.
|
|
|
|
|
|
Thank You for this
Would it help in building Internet in Hindi as Chinese and Japanese did in their respective languages?
|
|
|
|
|
|
Sorry, I've no idea of Ruby.
There used to be video games and cartridges with text written in Japanese/Chinese languages.
Have you ever wondered if there were Hindi characters from the beginning instead of English characters in programming and all over the web? I'm asking this.
It might be like 'Reinventing the wheel'. Getting to origin from where these English knowing people started.
If I learn the basic of programming development, then I can create programs independent of regional languages present on earth. Then requirement of knowing English would not be necessary.
|
|
|
|