HN user

theflagbug

105 karma

https://github.com/flagbug

Posts3
Comments23
View on HN

For us, a few weeks ago Azure DevOps randomly stopped processing GitHub webhooks, so merge commits didn't trigger builds anymore (and we're not the only ones, see https://developercommunity.visualstudio.com/content/problem/...). A fix for this issue still isn't deployed.

Just a few days ago the service connection to Azure suddenly stopped working with "401 CouldNotFetchAccessTokenForAzureStatusCode" which appeared when deploying to Azure AppService. We had to recreate the service connection to get it working again.

Recently we also wanted to move our Android builds to Azure DevOps but in the end the documentation was so confusing that we just used Bitrise instead.

That's what I really don't like about Azure. They seem to have multiple differently named services that seem to basically do the same thing (Azure Service Bus/Azure Storage Queues is one example that comes to my mind)

Also, the Azure Portal is ridiculously bad and slow.

The downside to this is that making a UI seems to even out your gained time--it's extremely messy and even complicated. Code that's valid in C# produces vague underwater bugs in Java code, which makes you keep hacking around until you find a working solution.

Interesting, I had the exact opposite experience, since the Java->C# mappings often reduce much of the boilerplate code that you have to write if you were using Java (e.g C# events, properties, etc..)

I also never came across any bugs in the mappings, but I can't say for sure that there aren't any.

Agreed, people seem to think Xamarin == Xamarin Forms, while the real power lies in shared business logic with native UIs, in my opinion.

Xamarin Forms may be useful for internal super-CRUD LOB apps that really are just a collection of input fields, but as soon as you do anything customer facing, you should be using the standard native UI approach.

Also +1 for ReactiveUI, it completely changed the way I build apps for the better.

Read it again, he found the password in cleartext in the memory dump. From the blogpost:

I tried the small dictionary john.dict that comes with John-the-Ripper, and it didn't find anything. But of course, I don't need a real dictionary. The password is probably also in the clear in the memory dump. I could just use the file super.txt as my dictionary! I tried this, but it was taking a long time, with 150k unique lines of text. It'd take many hours to complete. To speed things up, I filtered the list for just lower-case words

Not sure if you're aware, but your Rx example has a few problems:

1.) In the StartSenders method, you're violating the Rx grammar by calling channel.OnNext concurrently. Wrap it on a lock statement.

2) In StartReceiver you're missing out messages the way you handle the channel. Replace the loop with a call to channel.Subscribe

I also want to try Azure, but I only have a prepaid credit card (I live in Europe, don't need it except for small Internet things) and Azure is the ONLY service that doesn't accept it. AWS, Google Cloud, Netflix, etc. all work fine, except Azure.

Took me days to figure that one out, because I only got a generic "Your credit card isn't valid" error message when signing up.

I'm pretty sure async/await is supported

Source: I'm using async/await in Xamarin.Android

Maybe it's because Linux Mint doesn't have the latest version of Mono in the package repository?

Exception filters aren't pointless. They preserve the stacktrace, meaning the debugger will break at the original throw and not the throw; in your catch (I'm on mobile so I don't have a code sample, sorry, I hope you get what I mean)

I'm in a similar position.

I'm currently in a polytechnic high school (I don't have a high school degree). This is the third high school I'm in, because I always struggle with non-programming classes, in which I have absolutely no interest in and in programming classes I'm far ahead in terms of skill.

Everyone around me says I should get a degree, which I can absolutely understand, but I just want to get a job in software development, I just fear that I will later have a hard time without any degree.

I'm programming since I was 13 or 14 and since then I've invested most of my free time into open source projects (this is my Github profile: https://github.com/flagbug)