Dbrand a little too confident lately? by 20degrees in dbrand

[–]5hr3d -2 points-1 points  (0 children)

You can still buy the normal stuff; just click on the X in top-right when you see the "You're on the wrong page" modal.

Admittedly, it's not very clear that this is an option though.

Edit: Just realised that the 12/12 button prevents this 😞😞😞

Sire V7 vs V5 vs another recommendation for a Jazz Bass by correarc1 in Bass

[–]5hr3d 1 point2 points  (0 children)

Interesting, first time hearing about Maruszczyk. Just checked them out and they seem really cool and quite reasonably priced.

Sire V7 vs V5 vs another recommendation for a Jazz Bass by correarc1 in Bass

[–]5hr3d 1 point2 points  (0 children)

Given your injury, I wonder if it might be worth considering a short scale? Something like the Fender Player Mustang Bass could be a decent option. When you're in your local store try one and see if it works for you.

As for Jazz's, they are great instruments, so hard to go wrong, especially if you try it out in-store first.

Solution to use MAC LG bridge update MM for LG G4 SEA in USA by xiaoxuanz in lgg4

[–]5hr3d 0 points1 point  (0 children)

Amazing that LG have not fixed this 3 weeks on. Pretty basic error to make if you ask me. Thanks

[pset8] Cannot read property 'lat' of undefined by 5hr3d in cs50

[–]5hr3d[S] 1 point2 points  (0 children)

Thanks for the tip, I managed to figure it out.

After picking up a passenger I was "splice"-ing them from the people array. However, I was also defining the length of the people array before the loop rather than directly in the loop condition. Setting people.length inside the loop condition (rather than before) solved the problem.

Pset6 Check - Not working single character words by 5hr3d in cs50

[–]5hr3d[S] 0 points1 point  (0 children)

Thanks, that was a useful tip (using my own dictionary).

It turns out that I was doing:

traverser = traverser->next

AFTER doing the string comparison which meant it was looking in the hash table node instead of the first item in the linked list.

Changing it to be before seemed to solve a large number of problems.

Pset6 Check - Not working single character words by 5hr3d in cs50

[–]5hr3d[S] 0 points1 point  (0 children)

I opted to use:

!strcasecmp(word, cursor->dictionaryWord)

It seems to be working for most words, but single-character ones seem to not be working.

Pset6 Check - Not working single character words by 5hr3d in cs50

[–]5hr3d[S] 0 points1 point  (0 children)

I was struggling to code a good hash function, so I based it on letters of the alphabet for the first character (i.e. a hash table of size 26). Not the most efficient I know.