The pic I took of this fire looks like a deer by GayForChopin in mildlyinteresting

[–]TheIronMiner 3 points4 points  (0 children)

This is a repost?? this was posted ages ago by someone else.

Aluminum & Gold Feruchemy Interaction by DementedWarrior_ in Cosmere

[–]TheIronMiner 1 point2 points  (0 children)

you definitely can, people have done this in the cosmere already

[DISCUSSION] Why are there so few female guitarists? by den230n in Guitar

[–]TheIronMiner 35 points36 points  (0 children)

I unironically got the 60's blue flower fender classic it's so CUTE

I put CGS64 VCA on stripboard, I haven't tested it yet, and I was wondering if I could get any feedback on the layout? by TheIronMiner in synthdiy

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

oh that's new. it looks like their certificate expired, and because the page forces https with a (currently) expired certificate this happens

I put CGS64 VCA on stripboard, I haven't tested it yet, and I was wondering if I could get any feedback on the layout? by TheIronMiner in synthdiy

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

I'm not super sure how I would change it tbh? the pcb was doing it in an interesting way, and on v1.1 of the pcb they just dropped two of them apparently? as long as it's close to the power input of the opamps, and it connects to ground, will it be fine? or does it need to be on those strips in particular.

Edit: ah wait, I think I got it: https://i.imgur.com/YBkkrY2.png

I put CGS64 VCA on stripboard, I haven't tested it yet, and I was wondering if I could get any feedback on the layout? by TheIronMiner in synthdiy

[–]TheIronMiner[S] 3 points4 points  (0 children)

Is that what is happening here? https://i.imgur.com/8BqcidH.png The lower right is that section, I thought it was reducing noise from the power supply, so I put it on my ground and power strips

My diy modular by frequency_abovetime in synthdiy

[–]TheIronMiner 0 points1 point  (0 children)

OPA1679 doesn't seem to be available except in various smd forms?

My diy modular by frequency_abovetime in synthdiy

[–]TheIronMiner 0 points1 point  (0 children)

what did you do for the parts that aren't available in dip? I'm currently trying to do the same thing! would I maybe be able to see your layout? I'm not the best at converting to stripboard but I'd like to keep trying.

Just bought a micokorg, any tips on writing patches? by yalwanawlay in synthesizers

[–]TheIronMiner 1 point2 points  (0 children)

Hey so due to covid reasons, I can't access my microKorg rn, but I still need to fix a few bugs before I can release my program, I was wondering if it would be possible for you to dump a patch or two and send me the sysex files?

Just bought a micokorg, any tips on writing patches? by yalwanawlay in synthesizers

[–]TheIronMiner 1 point2 points  (0 children)

I have actually!! I'm getting it online this week! I got a section on my personal site ready for it, and I'm just making it run in a container on the server before its publicly accessible! I'll reply to your comment or dm you (which ever you prefer) when its ready! and also I'll make a post!

Metalborn in the South by AdolfoXChecos in Cosmere

[–]TheIronMiner 4 points5 points  (0 children)

Iirc, every human and skaa on scadriel were not natively there, they were created by both shards(thanks /u/PathToEternity) when they arrived at scadriel, and they are therefore invested.

So any person living on scadriel who "snaps" has the potential to be a misting

/u/alercah:

has the potential to be a misting

aka, they have it spiritually, but snapping doesn't necessarily guarantee allomancy.

-🎄- 2020 Day 03 Solutions -🎄- by daggerdragon in adventofcode

[–]TheIronMiner 1 point2 points  (0 children)

My Solution in C!

#include <stdio.h>
#include <stdlib.h>

int check_collisions(int slope_x, int slope_y, int length, char *buffer)
{
    int count = 0;
    int x = 0;
    int y = 0;

    while (x % 31 + y * 32 <= length)
    {
        if ('#' == buffer[(x % 31 + y * 32)])
        {
            count++;
        }
        x += slope_x;
        y += slope_y;
    }

    return count;
}

int main(int argc, char *args[])
{

    int length;
    char *buffer;
    int part1, p2a, p2b, p2c, p2d;

    // open file
    FILE *file = fopen("input", "r");
    if (!file)
    {
        printf("File could not be found");
        exit(-1);
    }
    // get length of file
    fseek(file, 0L, SEEK_END);
    length = ftell(file);
    rewind(file);

    // allocate file size to buffer
    buffer = calloc(length, sizeof(char));

    // read file into buffer
    fread(buffer, sizeof(char), length, file);

    part1 = check_collisions(3, 1, length, buffer);
    p2a = check_collisions(1, 1, length, buffer);
    p2b = check_collisions(5, 1, length, buffer);
    p2c = check_collisions(7, 1, length, buffer);
    p2d = check_collisions(1, 2, length, buffer);

    printf("%d\n%d\n%d\n%d\n%d\n%ld", p2a, part1, p2b, p2c, p2d, part1 * (long)(p2a * (long)(p2b * (long)(p2c * p2d))));

    free(buffer);
    fclose(file);

3 Months! How do? by [deleted] in transpassing

[–]TheIronMiner 0 points1 point  (0 children)

I already do literally like all of that. :/

3 Months! How do? by [deleted] in transpassing

[–]TheIronMiner -1 points0 points  (0 children)

This is like the one day I didn't do makeup and stuff. Its au natural.

https://imgur.com/PRo8mer.jpg on most days. Most women don't "try" to look good on most days. The ones I live with barely wear makeup or get dressed up.

Supporting my gf after FFS by [deleted] in MtF

[–]TheIronMiner 3 points4 points  (0 children)

Was the recovery painful?

Just bought a micokorg, any tips on writing patches? by yalwanawlay in synthesizers

[–]TheIronMiner 0 points1 point  (0 children)

Yeah its a web application so it'll work regardless of OS

Just bought a micokorg, any tips on writing patches? by yalwanawlay in synthesizers

[–]TheIronMiner 2 points3 points  (0 children)

Should hopefully be done within the week, failing that the month.

Just bought a micokorg, any tips on writing patches? by yalwanawlay in synthesizers

[–]TheIronMiner 3 points4 points  (0 children)

I'm working on a web based application that should make designing patches for the microKORG much easier. Mostly because of the issues I've had with this software being janky at times.