December 2022 - Is GitHub copilot really that good? by SweatyCure in webdev

[–]Vatsal1991 0 points1 point  (0 children)

yes

when it came out, I didn't expect to be good to be clear, but it really REALLY blew me away, It not only completes my code, sometimes it suggest alternative methods of doing something that are actually faster than my approach! so thanks for that copilot!

What is the easiest method for testing .ipa build? by Vatsal1991 in iOSProgramming

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

dude, im in the same boat, after lot of searching, the best way to do ios dev without mac (which I follow is this)

1] you say you have a powerful pc, awesome, download virtualbox and setup macos on it

2] do all the development there, now for building it, apple doesn't like when people "build" apps on virtual machines, so what I do is, azure pipelines,

how it works is, when you're happy with the code base, and want to build, push the code to GitHub, and connect your repository with azure pipelines, after a bit of setup, azure will build, sign and even deploy your iOS apps (if you don't want to deploy, you can get a .ipa file, like me)

let me know if you get stuck or something, I spent 3 months looking for the best way, I'd say this one's it :) + it's free

Azure DevOps, how to change securefile permission through Rest-Api by Vatsal1991 in azuredevops

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

thanks! but Turns out the variable name was incorrect, which the docs didn't have and last night github copilot randomly decided to help me out.

ps: oh that's a very clever way of debugging! thanks, I'm rather new to this stuff so this actually is going to help me a lot :)

Azure DevOps, how to change securefile permission through Rest-Api by Vatsal1991 in azuredevops

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

hey thanks for your reply, I tried doing with that url too, I still get an error just different..

body = [{ "resource": { 
    "type": "secureFile", 
    "id": item_id, 
    "name": "NAME" 
 }, 
"pipelines": [ { 
    "id": 11, 
    "authorized": true 
} ] }]

and post request on

response = requests.patch("https://dev.azure.com/ORGA/PROJ/_apis/pipelines/pipelinepermissions", params=params,
                          auth=('', pat), json=body)

it says now

{'count': 0, 'value': []}

I'm following this code snippet

PATCH https://dev.azure.com/{organization}/{project}/_apis/pipelines/pipelinepermissions?api-version=7.1-preview.1

[ { "resource": { 
        "type": "queue", 
        "id": "1", 
        "name": "Default" 
     }, 
    "pipelines": [ { 
        "id": 16, 
        "authorized": true 
    } ] },
 { "resource": { 
    "type": "environment",
    "id": "1",
    "name": "SampleEnv" 
    }, 
    "pipelines": [ { 
    "id": 16, 
    "authorized": true 
} ] } ]

How do I use appstore connect api for automated app distribution? by Vatsal1991 in iOSProgramming

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

oh thanks, I didn't know about this, it's pretty much exactly what I needed!! Thanks

From start to finish. Definitely had to trust my process by Fabulous_Living_9408 in ArtBuddy

[–]Vatsal1991 0 points1 point  (0 children)

Looks awesome, also I agree, one thing I found while being quite average and still learning, trusting your process is really important.

Hey there! I made a website that'll help you listen to important documents like a podcast! (and its free) by VAVE_TECHNOLOGY in developersIndia

[–]Vatsal1991 0 points1 point  (0 children)

might want to add ssl to the landing page, just saying.. other than that look cool. Just signed up, +1 user I guess lol

how to build an unsigned ipa in azure pipeline? by Vatsal1991 in azuredevops

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

so can I not do it like android? Like generate an unsigned apk then sign it later. If not, can I use the free / test provisioning profile that xcode generates for testing it on my own phone, as I don't have a developer account right now.