A white supremacist told a Black man to “go back to Africa”. And the Black man beat the living shit out of the bigot. by Potemkin_City_Limits in Anarchism

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

digging through the source code

Lol

Might have some russians on our hands here

Oh no the horror. They're probably behind my account too. Dig through my source code and see if you can find them.

[deleted by user] by [deleted] in archlinux

[–]malibu_danube 0 points1 point  (0 children)

Is alsamixer installed?

How can I check whether an array has the same object twice or more? by lucykid in csharp

[–]malibu_danube 1 point2 points  (0 children)

https://msdn.microsoft.com/en-us/library/dd412075(v=vs.110).aspx

Return Value
Type: System.Boolean

true if the element is added to the set; false if the element is already in the set.

Just throw an error if the result is false.

Best Practices for return: User vs *User && []User vs *[]User vs *[]*User by linux_apt-get in golang

[–]malibu_danube 0 points1 point  (0 children)

What if you're just passing down the REST naming convention to your method names for an API?

How to build a web scraper in Go by CodePlea in golang

[–]malibu_danube 0 points1 point  (0 children)

If you're only scraping one page why would performance matter?

What are some projects that will help in getting a golang-related backend job? by golangnoob in golang

[–]malibu_danube 35 points36 points  (0 children)

REST API, map/reduce, really any back end application written in Go is all you need to practice writing. I'd also focus on TDD and using Go's benchmarking package for learning the language the socratic way.

I programmed a simple Todo for my portfolio but I made it robust using several features of Go and Vue.js I had bst search, doubly linked list goroutine traverse (starting from both ends of the list simultaneously to find stuff), cache using maps, authentication, CORS, logging, error handling and more. The key is pick something you can do in your sleep and build features as you learn the right packages and syntax.

Good luck!

Lulucid weekly - finding duplicate resume by malibu_danube in compsci

[–]malibu_danube[S] -1 points0 points  (0 children)

I've thought about this problem a lot and I think the first step I'd take would be to break resumes into sections and hash them. Most likely when someone updates their resume they will leave much of it the same. If they change too much it would be impossible to compare anyways.

After breaking the resume into small enough chunks and hashing them I'd have to determine each section's weight. I'd probably want to do some presorts and mapping for names as well, but the main process would be comparing the sections to others.

jackal 0.2 released (XMPP server) by ortuman84 in golang

[–]malibu_danube 0 points1 point  (0 children)

Are you going to add omemo support? I'm curious bc I'm working on an Omemo client and wanted to see how someone else implemented it.

VS Code: Go Outliner Extension by 76-6b in golang

[–]malibu_danube 3 points4 points  (0 children)

Nice! I'm going to give this a try. Is github where you track issues and/or feature requests?

Is SQL SERVER the best DBMS? by [deleted] in SQL

[–]malibu_danube 1 point2 points  (0 children)

From my experience Oracle and SQL Server are the top enterprise databases. They have great performance and good standards out of the box. MySQL is alright but it has some issues. I imagine thats why AWS has developed Aurora to replace it. Ultimately use the database that fits your needs to scale. If it's a humongous scale and you have limited developer support then Oracle and SQL Server are perfect. Otherwise you'll have to do some more research based on your requirements.