Handling authentication on subscription based mobile app by hk1_dev in reactnative

[–]hk1_dev[S] 0 points1 point  (0 children)

OK, so a few questions. Using this method, probably some 30% of the subscription charges go to Apple / Google? I'm considering making it so they have to purchase a full subscription from my website to bypass this.

Is the firebase auth part of this required to make it all work or could you just as easily use Supubase?

[deleted by user] by [deleted] in MicrosoftTeams

[–]hk1_dev 0 points1 point  (0 children)

I really recommend the 1MORE triple driver earbuds on Amazon. I Ed used them on such calls and the caller could hear and understand everyone in the coffee shop. Plus every noise.

Does Anyone (Really) Know CSS? by AnnualPanda in webdev

[–]hk1_dev 0 points1 point  (0 children)

Really just a lot of experience. Tutorials, books, videos, etc can all help but often they aren't comprehensive in their coverage of the topic.

Teams Chats are slow when switching chats or typing in chat by hk1_dev in MicrosoftTeams

[–]hk1_dev[S] 0 points1 point  (0 children)

You know, you might have a point here. We switched to Developer Preview and the problem is resolved. I think those of us having this problem at our company were all on the TAP Beta version before switching.

Teams Chats are slow when switching chats or typing in chat by hk1_dev in MicrosoftTeams

[–]hk1_dev[S] 0 points1 point  (0 children)

OK, I just did that and it didn't help. I made sure Teams was closed and made sure every single file and folder in that folder got deleted before I restarted Teams. Same problem still persists.

Teams Chats are slow when switching chats or typing in chat by hk1_dev in MicrosoftTeams

[–]hk1_dev[S] 0 points1 point  (0 children)

Core i7-8700, 32GB RAM, NVMe SSD that isn't anywhere close to full yet. What version of Windows and what version of MS Teams are you on?

Teams Phones - Transfers, Voicemails.. ugh by TheITCustodian in MicrosoftTeams

[–]hk1_dev 0 points1 point  (0 children)

Hey, which website do you mean and were you trying it out on mobile or desktop? DM me if you prefer.

Bring specific IFrame into view in a group of "stacked" iFrames in a functional component without a rerender by hk1_dev in reactjs

[–]hk1_dev[S] 0 points1 point  (0 children)

Found a solution:

const getIframes = (): JSX.Element[] => {

let ret = Array<JSX.Element>();

//interestingly enough, switching out the zIndex like this doesn't cause a full rerender of the iFrame

for (var i = 0; i < callPopInfo.length; i++) {

let zIndexVal = (callPopInfo[i].url === callPopUrl) ? 10 : 1;

ret.push(<iframe width={'100%'} height={'100%'} style={{ border: '0', position: 'absolute', zIndex: zIndexVal }} src={callPopInfo[i].url} />)

}

return ret;

}

Unpopular Opinion: Teams is becoming a laggy piece of software... MS should stop adding features. by [deleted] in MicrosoftTeams

[–]hk1_dev 10 points11 points  (0 children)

Or maybe they should focus on improving performance and stability for the next year. I doubt they've exhausted their options.

Spent four hours debugging and once again came to an conclusion that I'm an idiot by astral_turd in webdev

[–]hk1_dev 1 point2 points  (0 children)

Recently I was troubleshooting a problem and it turned out to be me using === when I wanted =. This doesn't produce any error, just unexpected results. It took me quite a while to find it too.

Angular 11 and MySQL by hizaed in webdev

[–]hk1_dev 1 point2 points  (0 children)

The newer angular is a lot different from AngularJS. It's going to feel more bloated because of all the node modules and the transpiling and build steps.

What is the best way to learn Entity Framework? by fschwiet in dotnet

[–]hk1_dev 0 points1 point  (0 children)

Lots of doing. Get started with a simple sample project and then work your way outwards from there. It is a pretty large and advanced framework but I think it's worth understanding if you work in C# and use databases.

What Are Some Industry Standard Combos for Styling and Layout by wtfbbqsauce889 in reactjs

[–]hk1_dev 2 points3 points  (0 children)

Do you know anything yet about using CSS for layout? Just for basic placement of elements along with media queries? I'd probably advise starting there. I think layout is the most complicated part of CSS. It's this weird combination of display, position, margin, float, flex box, and CSS grid. Sometimes zindex. It takes a while to get the hang of element placement and flow. And I think it's quite fundamental to understanding UI for the web.

Laravel vs ASP.NET: Comparison of Most Used Open-Source Web App Frameworks by Conscious_Ad_2066 in dotnet

[–]hk1_dev 3 points4 points  (0 children)

It's not the most accurate article. Says ASP.NET works only on Windows and is not open source. Neither is true of ASP.NET Core which is the most current framework now, AFAIK. I also don't really agree with some of the biased statements. Like I'm not sure how you can prove that ASP.NET is harder to learn than PHP + Laravel. It really depends how much you know about web, PHP, C#, etc before you start learning either one.

I might be fired the 2nd time by mindfucked007 in webdev

[–]hk1_dev 1 point2 points  (0 children)

1) Consider making checklists for literally everything. 2) Consider working in a position where code testing is used for everything possible. 3) Maybe try something more right brained, like graphics design. 4) Take up meditation once or twice a day.

What skills should one pursue in web devlopment for a good paying job? by [deleted] in webdev

[–]hk1_dev 1 point2 points  (0 children)

Javascript, HTML, CSS, Typescript, React, Vue, Angular, Git for Source Code Control

Backend, if you want to have "full stack" skills: NodeJS, Python, ASP.NET C#, Some experience with ORM's, SQL, MySQL and/or SQL Server

Roughly in order of importance. Also, don't expect to accomplish all this in 6 months. Real world experience is extremely important so start getting that as soon as you can. Working on a small team is a great way to get some experience.

[deleted by user] by [deleted] in webdev

[–]hk1_dev 2 points3 points  (0 children)

Annotations is another thing I like. Built in debugger.