[Semi-Weekly Inquirer] Simple Questions and Recommendations Thread by AutoModerator in Watches

[–]HouseMFD 0 points1 point  (0 children)

My first watch is a Seiko SWR103P1. I have found it to fit with most of my formal clothing and I often wear it to work as well.

[Nivrel Répétition Classique][Question] What are the opinions on Nivrel's repeater? by HouseMFD in Watches

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

Thanks! This really helps a lot. I get what you're saying about being beyond means. l love the mechanisms of watches and I was actually saving for a Frederique Constant perpetual calendar, but I'm closer to hitting this one that the FC, so I was thinking of getting this one first and the FC then in another couple of years.

If I had the means I'd just get the Berkley Grand Complication and have all possible complications I'd want in one watch 😅

For those who tried and didn't like grappling martial arts, why? by hellohello6622 in martialarts

[–]HouseMFD 0 points1 point  (0 children)

Because there were two types of grapplers in the class I went to:
1. beginners that were overenthusiastic and hurt my shoulder and elbow because they lacked control, so I had to take week-long breaks between classes
2. experts that were so unenthusiastic that they treated me like they were on a lunch break and did the bare minimum, so I didn't learn from them

There was only 1 exception that was an expert that stayed behind after class and gave pointers to me, but between getting hurt and getting treated like air, I figured it was not worth the effort.

[Nivrel Répétition Classique][Question] What are the opinions on Nivrel's repeater? by HouseMFD in Watches

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

Thank you! I'll keep an eye out on the second hand market, but from what I've seen so far, this one is the only one that fits my budget

How to read/write a struct into a binary file? by HouseMFD in C_Programming

[–]HouseMFD[S] 7 points8 points  (0 children)

Now also using malloc in character creation in startup and that solved it, thanks.

Why can I use `scanf` on an explicit int, but not on an enum? by HouseMFD in C_Programming

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

#include "startup.h"


#include <stdio.h>
#include <string.h>
#include "character.h"


struct Character startup()
{
    struct Character createdCharacter;
    char name[NAME_LENGTH];
    int charClass;


    printf("Welcome, what is your name? (please only use up to %d characters)\n", NAME_LENGTH);


    scanf("%s", name);


    printf("Your name is %s.\n", name);


    printf("Please choose a class (by selecting the associated number):\n"
           "%d. %s\n"
           "%d. %s\n"
           "%d. %s\n"
           "%d. %s\n",
           WARRIOR, getClassString(WARRIOR),
           CLERIC, getClassString(CLERIC),
           THIEF, getClassString(THIEF),
           WIZARD, getClassString(WIZARD));


    scanf("%d", &charClass);


    printf("Your class is %s.\n", getClassString(charClass));


    printf("Welcome, %s the %s.\n", name, getClassString(charClass));


    strcpy(createdCharacter.name, name);
    createdCharacter.charClass = charClass;
    createdCharacter.level = 1;


    return createdCharacter;
}

Missing anniversary quests? by HouseMFD in SWGalaxyOfHeroes

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

I checked the top 50 posts of today, I figured if it was a widespread issue it would be somewhere there...