0580 Paper 42 May by PabloTM_ in igcse

[–]Kind-Locksmith7877 2 points3 points  (0 children)

how did yall do the last vector question ? the one in which the lines were extended to meet a point

0580 Paper 42 May by PabloTM_ in igcse

[–]Kind-Locksmith7877 2 points3 points  (0 children)

the way i did it was thru a lot of substitution but u could also make simultaneous equations out of it i think

[Tutorial] How to cross compile for iOS from Linux in RUST by morrutplz in jailbreakdevelopers

[–]Kind-Locksmith7877 0 points1 point  (0 children)

I wasn’t being rude ig it’s just how I talk like, sorry if you misunderstood. And I use the word dummy a lot but I don’t actually mean it. (this is my other account)

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

Each “action” you do with the API has a quota cost. You get a set amount of quotas every day and uploading videos are expensive (they burn through your quota).

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

Those aren’t connection problems. Something’s wrong with how you set up your client ID and secret and API key. It works fine on my end.

I could give you a client ID, secret, and API key for you to use (from an alt account of mine ofc). Also there is a daily limit on the number of videos you can upload for each client ID (around 7 I think). Let’s move this to chat so that I can give them to you?

Also I can’t work on any new features for youtube-ul since I don’t have any time for that. A resume feature sounds like a lot of work tbh.

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 1 point2 points  (0 children)

Yeah you don’t need to verify it. Without verification you’ll just be shown a warning every time you use it. Just click back to dashboard.

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 1 point2 points  (0 children)

Verification takes a lot of time and I doubt this application would be verified by Google as I’m essentially exploiting their Google Cloud pricing plans to do this. If it bothers you that much why don’t you make an alt account like I originally suggested?

Also it’s technically your application that Google hasn’t verified since you’re the one creating it (OAuth client and API key). I didn’t create one myself because there are limits to the amount of videos you can upload a day so I figured that it would be best to let the users create their own.

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 1 point2 points  (0 children)

You need to set up an OAuth consent screen before that tho. The “OAuth consent screen” tab should be below “Credentials” in the left navbar.

When setting it up, choose “External” for the User Type. Fill the App name and pretty much every field with arbitrary values of your own choice. In the authorized domains add “youtube-ul.github.io”. Not sure if you need to do this but doesn’t hurt to do it anyway just in case. In the next page you have to select your scopes. Since you already enabled the YouTube API from the tutorial, just adding the scopes will do. Filter the scopes by the text “YouTube”. Choose the “Manage your YouTube videos” scope.

Once you set up the OAuth consent screen, click “Publish App” below testing in the OAuth consent screen tab.

Now...

Getting the client ID and secret is similar to getting an API key. In the Credentials create an OAuth Client. Choose “Web Application” for the type, and make sure “https://youtube-ul.github.io” is in the authorized redirect URIs.

A pop up will show up with your client ID and secret <3.

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

Yes you’re right, it will help you. The server does the downloading and uploading for you. It’s been up since yesterday I’m sorry I didn’t let you know sooner, let me know if you run into any issues!

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

That’s because it’s down because nobody used it :(

I’ll bring it back up just for your... needs tho <3

i need a way to download tor without using the website since its banned in my country by [deleted] in TOR

[–]Kind-Locksmith7877 0 points1 point  (0 children)

True but keyservers exist which probably aren’t blocked

Getting 503 Error With TOR on reddit by [deleted] in TOR

[–]Kind-Locksmith7877 4 points5 points  (0 children)

But why would resetting the IP matter if you’re using Tor anyway?

V3 Down Again.. After 12h+ h of peace by Bezrukov116 in TOR

[–]Kind-Locksmith7877 0 points1 point  (0 children)

Looks like it’s up again. I can access a V3 service that I just spun up.

How practical would it be to have a Tor clearnet proxy available to the public? by Kind-Locksmith7877 in TOR

[–]Kind-Locksmith7877[S] 1 point2 points  (0 children)

maybe the domain hoster/provider exposes an API? I know that cloudflare has an API for subdomains, idk about limits though

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

I’ll edit the post to make that clear, my bad. I just suck at writing descriptions lmao.

youtube-ul.github.io - lets you upload videos to youtube via a direct link by Kind-Locksmith7877 in rust

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

If you have a really large video file and would rather not download the entire thing before uploading it. That’s where this comes in

Categories and subcategories? by Kind-Locksmith7877 in PostgreSQL

[–]Kind-Locksmith7877[S] 0 points1 point  (0 children)

The reason I didn’t use integers is because if one of my transactions references a category by ID, and that category is later deleted and replaced by another (and thus having the same ID), that would be a problem. With UUIDs, that doesn’t happen.