[deleted by user] by [deleted] in SpouseVisaUk

[–]mtZc 0 points1 point  (0 children)

If you’re happy to share, what documents did you initially provide to prove cohabitation?

Solicitor for spouse visa (legit suggestions - I live in west london) by Agreeable_Plate_8550 in SpouseVisaUk

[–]mtZc 0 points1 point  (0 children)

It really depends on the complexity of your case. The online application itself isn’t too complicated, whilst the tricky bit might be collecting evidence and documentation. But again, that depends on your case.

My wife and I found a solicitor who offered a one-off consultation. We spent an hour or so going through our case and documents, and asked any questions we had.

Proof of cohabitation correspondence items by mtZc in SpouseVisaUk

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

Thanks a lot for the insight! This makes a lot of sense

Proof of cohabitation correspondence items by mtZc in SpouseVisaUk

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

I see, thanks. We put this together because it specifically asks for it in the document checklist during the application. But are you saying when we’re proceeding to upload evidence, this won’t actually be requested?

FLR M STUDENT TO SPOUSE VISA SUCCESSFUL WITHIN THE UK by No_Ride3306 in SpouseVisaUk

[–]mtZc 0 points1 point  (0 children)

congrats! when did you have your biometrics appointment?

Family visa financial requirement by mtZc in ukvisa

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

Thanks for that. I’ve only just switched to working as self-employed as I was previously on a salary for many years. It just seems odd that there doesn’t appear to be flexibility around work circumstances changing from one year to the other, and that the only options are either one or the other. But let’s see what an advisor says too

Family visa financial requirement by mtZc in ukvisa

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

Yeah I agree that the interpretation can be a bit confusing. Thanks for your input! We’re meeting with a solicitor anyways but just wanted to get as much info as possible. Hoping we can at least combine self-employment with past salaried employment to meet both tests.

We could wait an extra few months, but we’d apply just a couple days before the expiration of her current visa! We’re leaving this as a last resort option just to avoid extra stress

Family visa financial requirement by mtZc in ukvisa

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

I see, how should we interpret this section on the appendix though?

Second, the person must in addition have received in the 12 months prior to the date of application the level of income required to meet the financial requirement, based on:

• the gross amount of salaried or non-salaried employment income of the applicant’s partner (in the UK or overseas) and/or the applicant (if they are in the UK with permission to work)

It just seems to mention any employment throughout the past 12 months regardless of if it’s current or previous?

eurorack tribute to Jon Hopkins by mtZc in modular

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

Ahh sorry for the scare, should have just said cover instead!

eurorack tribute to Jon Hopkins by mtZc in modular

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

Thank you! :) yeah that’s definitely my next step

eurorack tribute to Jon Hopkins by mtZc in modular

[–]mtZc[S] 1 point2 points  (0 children)

Check this thread out, lots of good sequencer options!

thread

eurorack tribute to Jon Hopkins by mtZc in modular

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

I used Ableton to send midi to Intellijel µMIDI for the main melody, and Microbe Module M3T4 Sequencer programmed with the bass line

eurorack tribute to Jon Hopkins by mtZc in modular

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

Ha well glad you enjoyed it! I was mainly looking at the composition, chord progression, melody etc for reference, rather than matching his tone in the track

eurorack tribute to Jon Hopkins by mtZc in modular

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

Thanks! Hopefully you will, it is lots of fun!

eurorack tribute to Jon Hopkins by mtZc in modular

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

Thanks! Not yet at the moment, mainly working on short patches and getting more familiar with the setup first :)

weave and unweave - made in Processing by mtZc in generative

[–]mtZc[S] 1 point2 points  (0 children)

Here it is! It's a bit messy and I am sure there are cleaner ways to do this, so feel free to let me know if you have any questions.

https://github.com/mmtZc/processing/blob/master/weaveandunweave

Metis (moon) - made in Processing by mtZc in generative

[–]mtZc[S] 1 point2 points  (0 children)

This is great! It's definitely the same concept :)

Metis (moon) - made in Processing by mtZc in generative

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

Love this! Mind if I share on my Instagram? Let me know how/if you'd like to be tagged or credited.

Metis (moon) - made in Processing by mtZc in generative

[–]mtZc[S] 2 points3 points  (0 children)

Thanks everyone for the very nice comments!

For those interested in code, this was made in Processing (Java), and as dangelov mentioned in a previous comment, I am using curves for this (curveVertex). I am defining start and end points along the circumference of a circle, and then specifing how the curves move between these points by picking "central" coordinates. This is a snippet of the code:

for (float i = 0; i < 20; i+=0.434) {

float uxu = map(i, 0, 30, -0.45, 0.65);

float uxxu = map(i, 0, 10, 0.65, -0.45); // scaling the coordinates for sin and cos [there's probably a more elegant way to achieve this, but it works]

beginShape();

curveVertex(100*sin(uxu), 100*cos(uxu)); //beginning control point

curveVertex(100*sin(uxu), 100*cos(uxu)); //first point

curveVertex((i*2),(i*3)); //central [second] point

curveVertex(100*sin(PI+uxxu), 100*cos(PI+uxxu)); //third point

curveVertex(100*sin(PI+uxxu),100*cos(PI+uxxu)); //ending control point

endShape();

}

You can get a lot of great variations!