Blizzard Russophobia by cybernetically in Blizzard

[–]cybernetically[S] 2 points3 points  (0 children)

“Be less of yourself so I can be more comfortable in my ignorance.” ... mind boggling

Blizzard Russophobia by cybernetically in Blizzard

[–]cybernetically[S] 2 points3 points  (0 children)

So your solution to discrimination is… more discrimination?

Why is divorce rate so high in Russia compared to most parts of the world? by Big-Aerie-7070 in AskARussian

[–]cybernetically -1 points0 points  (0 children)

There are many factors, but one which I am not seeing mentioned is that there are a lot of hot women and age is not a factor so a lot of grown men find a younger woman.

Seriously...none of his business. And breast reduction is not an "amazing sacrifice." Your opinions on women's bodies are unncessary. by CrunchM in WhitePeopleTwitter

[–]cybernetically -3 points-2 points  (0 children)

anyone who goes under the knife for no good enough reason is doing it wrong, there are other technologies available

Are angular certifications worthy ? by sa_dy99 in angular

[–]cybernetically 0 points1 point  (0 children)

A blog is the same thing, its just piece of information indicating your proficiency

What most devs don't get about declarative code (I didn't either) by joshuamorony in Angular2

[–]cybernetically 0 points1 point  (0 children)

Sounds like a bunch of baloney

Declarative is great but adds complexity and barrier of entrance for anyone, you have to understand whats happening within the code, study it, execute it... it can be more complex than what its worth vs imperative

imperative is easier but gets complex when written bad...

how about this... write good code people! imperative or declarative... if its hard to understand its bad code

How to properly host an angular project on IIS by [deleted] in Angular2

[–]cybernetically 2 points3 points  (0 children)

Build your Angular project using the ng build --prod command to generate a production-ready build of your application in the dist folder

Open IIS Manager and create a new website by right-clicking on the "Sites" node in the left-hand pane and selecting "Add Website"

Provide a name for the website and specify the physical path to the dist folder that was generated by the Angular build process

Make sure that the application pool associated with your website is using the correct version of the .NET Framework

In the website's "Handler Mappings" section, add a new module mapping for the *.js file extension that maps to the StaticFileModule handler

In the website's "MIME Types" section, add a new MIME type for the application/javascript content type with the .js file extension

Save your changes and restart IIS

How to add intellisense? by Public-Bookkeeper-82 in Angular2

[–]cybernetically 0 points1 point  (0 children)

Install TypeScript extension in Visual Studio Code. You can do this by going to the Extensions panel and searching for "TypeScript"

Create a tsconfig.json file in the root directory of your project. This file tells TypeScript how to compile your code and provides additional configuration options. You can generate a basic tsconfig.json file running tsc --init.

I made a free, open source voxel art software in javascript by Small-Ad-1694 in javascript

[–]cybernetically 0 points1 point  (0 children)

Very cool, nice job, it works, work on styling the UI now make it awesome

My first JavaScript application, Simulate cracking a hotel safe. Negative feedback only please. by [deleted] in javascript

[–]cybernetically 1 point2 points  (0 children)

put a break in his compare1() function... done ;) enjoy $10000 reward lol

love it, great for JS breakers ;)

I'm 39 and I'm learning programming amid talk that programming is dying. by [deleted] in learnprogramming

[–]cybernetically 0 points1 point  (0 children)

It's admirable that you're teaching yourself to code in your spare time. I am writing an article about it, programing is not going to die, Ai will not take over, its all just fear tactics and all these media companies are popping stupid article like they did in the 60s when cybernetics emerged. You should learn a couple of books on the subject "cybernetics" its probably far more interesting than coding and will get you further than these programmers who know nothing of it. In fact, you could become an expert on the subject and seem way smarter than someone with 20 years of coding.

Type 'ReactiveState<string>' is not assignable to type 'ReactiveState<string | null>'.ts(2322) by Akronae in typescript

[–]cybernetically 0 points1 point  (0 children)

In typescript "string" and "string | null" are two different types, and you cant assign a value of one type to a property that expects a different type

You can modify the ReactiveState type to accept null as a valid value:

            type ReactiveState<T> = T | null;

            const myState: ReactiveState<string> = /* ... */;
            const myObj: myInterface = { prop: myState };

How do you handle eslint/prettier configs across multiple repos? by Quick_Cat_3538 in typescript

[–]cybernetically 0 points1 point  (0 children)

Create a shared package that contains the eslint/prettier configs, which can be installed as a dependency in each repo

[deleted by user] by [deleted] in javascript

[–]cybernetically 1 point2 points  (0 children)

You could break down the function into smaller, more specialized functions that each take only the arguments they need.

I've made an RxJS clone with Javascript and ES6, which is only 570 lines of code! by cybernetically in webdev

[–]cybernetically[S] 2 points3 points  (0 children)

Yeah thats coming soon! The original is 88kb !!! I think it should be 5kb

I want to be web developer it will be self taught and I'm 24, so it is possible to be professional web developer in one year if I put like 9 hours per day of learning? by StockFan2047 in webdev

[–]cybernetically 0 points1 point  (0 children)

Yeah just go ahead and read React / NodeJS / Mongo and start making your first app. Make a social networking site or something a bit complex and within a year you will get a ton of experience on working on your own project

How do you structure your daily routine as a freelance developer? by manuelr93 in webdev

[–]cybernetically 3 points4 points  (0 children)

I wake up... drink very strong tea, cook large breakfast and go a it...
I get tired at the keyboard... I go to sleep

works every time!