If you want to pick up coding I can help with advise and exercise and stuff. If you commit to it, we can help you past the roadblocks so you can learn how to do it.I've looked into some basic coding stuff before. I would love to learn it, but it seems daunting to me, and im not even sure where to start or whats going to be able to teach me coding efficiently without me getting overloaded with info.
I write BIOS for the storage servers (poweredge bios technically)Are you fixing Dellserv or whatever they have hopefully upgraded to now?
I started the Learn SQL module on Codecademy. So far it seems pretty straight forward, its just something I would have to do for a while to remember all the commands.If you want to pick up coding I can help with advise and exercise and stuff. If you commit to it, we can help you past the roadblocks so you can learn how to do it.
I started the Learn SQL module on Codecademy. So far it seems pretty straight forward, its just something I would have to do for a while to remember all the commands.
I am all about fake it till you make it. I broke into IT with just an A+ cert as a contractor, my first gig was deploying Symantec encryption on thick client computers in hospitals. Yeah its pretty easy stuff, but I was intimidated coming in, I was working with people that had been doing IT for 10+ years or more that ended up losing their jobs from cuts and were getting work however they could.
Then I went into being a field service tech at one of the hospitals I was working at. The FS manager liked how I was interacting with people and they needed another tech so he asked about me and my recruiter offered it to me.
Then I got into more of the EHR application side of things and I am level 2 support over that now. I just learned shit as fast as I could and googled stuff I didn't know.
class Foo {
// ctor
Foo() {
{
// process data
void Process() {
MyProvider provider = new MyProvider();
MyData data = provider.getData();
...
}
}
class Foo {
private MyProvider _provider;
//ctor
Foo() {
_provider = new MyProvider();
}
// process data
void Process() {
MyData data = _provider.getData();
...
}
}
Why?Prefer the first
Disagree.It's not wrong, too many variables to say that
public Foo (MyProvider prov)
{
this._provider = prov
}
We're already doing this in our other (dotnet core) app. This particular example is from an old ass Windows service application. Granted, we could do DI 'manually' but it isn't worth the trouble.ShakyJake
Dependency injection is SOOO much nicer than the old styles.
Try to push your team towards it.
That's not possible. Unless you're not coding.I don't work in a world where unit tests exist.
I do code. We don't have unit tests like the ones lendarios is talking about, not possible for what we write.That's not possible. Unless you're not coding.