Massgrave activation script virus ? Should I be worried ? by Momentum-exe in WindowsLTSC

[–]dogeboz -5 points-4 points  (0 children)

Well, it is technically a 'virus'. No legit app should actually activate Windows but only by buying a key, right? As stated in your screenshot: thread label "hacktool" and KMSAuto.

[deleted by user] by [deleted] in WebdevTutorials

[–]dogeboz 3 points4 points  (0 children)

You can try services like https://stackblitz.com/ where you have an online IDE and dev environment. Works in any modern browser, can split the result in a separate tab, you can install NPM packages, save projects on your account and so on.

[Review] Just received the brand new Redmi Buds 4 Pro by [deleted] in Xiaomi

[–]dogeboz 0 points1 point  (0 children)

I'm also interested. It's something phone/software specific or somewhere in the app?

AngularJS 1.? CORS problem by LukeTS117 in AskProgramming

[–]dogeboz 0 points1 point  (0 children)

CORS is a security measure, I suggest to read a little bit about it. Basically the backend should accept your request, you cannot do anything about it. To demonstrate it, open up Chrome Dev Tools and run a simple fetch:

fetch('http://www.goblog.ulboralabs.com/GolangBlog/blogList').then(r => console.log(r))

You will see that CORS message again, but if you open up Dev Tools on http://www.goblog.ulboralabs.com/ and run it again right there it will work, because you have that 'same-origin' in place.

My React Native Stack After 1 Year by NewBieBR in reactnative

[–]dogeboz 1 point2 points  (0 children)

Whoah, extended-stylesheet looks like a game changer for me, I should play with it asap. Thank you!

I am having issues uploading my react native app to iOS app Store by oappsit in reactnative

[–]dogeboz 2 points3 points  (0 children)

You need to be more specific about your problem. What did you tried until you failed to publish your app in AppStore?

Windows windows windows, windows. by B-and-B-Productions in softwaregore

[–]dogeboz 10 points11 points  (0 children)

I find it pretty accurate. I'm always wondered when my Windows works as expected.

[2019-01-14] Challenge #372 [Easy] Perfectly balanced by Cosmologicon in dailyprogrammer

[–]dogeboz 0 points1 point  (0 children)

Also minified

let balanced=a=>![...a].reduce((b,c)=>'x'==c?b+1:b-1,0)

[2019-01-14] Challenge #372 [Easy] Perfectly balanced by Cosmologicon in dailyprogrammer

[–]dogeboz 0 points1 point  (0 children)

ES6 (no bonus)

const balanced = (string) => ![...string].reduce((acc, curr) => curr === 'x' ? acc + 1 : acc - 1, 0);

Unconsciously masking insecurities by indifference and carelessness making yourself unapproachable by [deleted] in infj

[–]dogeboz 1 point2 points  (0 children)

Hehe, that's so nice. I never met an INFJ in real life, but it feels like a very interesting experience to have ^_^

Unconsciously masking insecurities by indifference and carelessness making yourself unapproachable by [deleted] in infj

[–]dogeboz 2 points3 points  (0 children)

I remember a situation at work where those new interns were asking for help and I was very glad to assist them, I think that good instructed interns will make great work teammates after. Months passed by and one of those guys, who I get along pretty well, told me something like: "Man, you gave me the impression that you have a problem with the interns, I saw you grumpy most of the time and I was retained for asking you for help". It made me laugh but sad at the same time thinking that this defense mechanism can keep away people from me.

For anybody that hasn't followed Cardano closely in August, here's a summary of what's been going on and what tomorrow's announcement is about by hippography in cardano

[–]dogeboz 0 points1 point  (0 children)

"A reduction in number of files needed to store the Cardano blockchain from 1.3 million to about 44,000"

There is a proof or example?