I want to get into the world of affiliate marketing, I don't want to use videos to do it but other than this I am open to suggestions. What are good ways for beginners to get into this?

reddit.com
u/Adamstrad — 11 hours ago
▲ 5 r/osrs

Is it possible to beat Zulrah with magic?

My magic level is in the 90s and other combat skills are 70 and lower, what's the best approach

reddit.com
u/Adamstrad — 1 day ago
▲ 60 r/osrs

Which skill will make me the most money in members?

I made enough for a bond on the ge, which skill can I use to be the most profitable in members in the next 2 weeks?

u/Adamstrad — 2 days ago

Where should I be storing important things?

Where should I be storing things like API keys or other sensitive strings when using JavaScript?

Edit: Why is everyone insisting I need to use git, are you old enough to remember the Internet before git?

reddit.com
u/Adamstrad — 6 days ago

One website for multiple apps?

I'm an independent developer and I want to make several apps and tools which share login credentials, similar to how a lot of games which have a single publisher like blizzard have a single login. Is there any downside to hosting them all from the same website? I don't want to fork out money for many domains since I'm just starting out

reddit.com
u/Adamstrad — 6 days ago
▲ 2 r/AppDevelopers+1 crossposts

Rate or critique my Saas/app ideas to help me choose a project to work on to make money

  • Some kind of data tool
  • Reinvent another successful app
  • Weather forecast aggregator (from multiple sources)
  • Food price aggregator
  • Affiliate site
  • Exercise app using google mediapipe to detect your body position
  • sign language detector/interpreter with google mediapipe
  • cheap travel calculating app (flight + hostel/hotel + something to do)
  • middle man for payment simplification eg. strip
  • meditation/relaxation helper
  • language exchange app
  • add blocker
  • stop drinking/gambling/other addiction helper
  • UK citizenship test practice app
  • meal planner based on your macro targets
  • English word of the day (for non-English learners), customizable by English level
reddit.com
u/Adamstrad — 7 days ago

Do expats have any options for borrowing money to buy a house in Mexico?

Here on a temp residency via family unity currently, I have absolutely zero credit history in the country. Do I have any options for borrowing?

reddit.com
u/Adamstrad — 9 days ago
▲ 2 r/duck

What age and size can ducklings go into the wild?

We recently rescued two baby ducks from a drain in a hot country with very little natural water, their mother and family were nowhere in sight in the same area since then so we decided to keep them until they can survive on their own. My main concerns were predators (snakes, wild cats, domestic cats and others) and surviving the cold in the night time.

They were around 1-2 weeks old at most when we found them, they are now about 19 days older and I was wondering how soon will they be able to be reintroduced to a lake which has other ducks. Do I need to wait for their main feathers to form? They have tripped in size since finding them and they seem to be doing natural behaviors like bathing, trying to eat random stuff that looks like plants and wandering around peeping following each other and seem like they are in good health.

reddit.com
u/Adamstrad — 9 days ago

Current state of Bitcoin?

How would you explain the current state of Bitcoin to someone who didn't follow it for the last 5 years?

reddit.com
u/Adamstrad — 10 days ago

Pixel 6 disconnects from internet

My connection speed is great but sometimes, mostly when I leave the house and return, my pixel disconnects from the wifi repetitively. If I use a more cpu intensive app like pokemon go or YouTube it happens within 10 seconds.

My phone has no pending system updates. Is this a phone problem or a router problem? It doesn't happen on my other devices such as Windows PC or Chromebook, or other peoples' phones

reddit.com
u/Adamstrad — 11 days ago

How long did it take you to make your first Saas? (Financially successful or not)

For me, I'm working on it in my free time so I only dedicate maybe 2 working days worth of hours each week and it feels like it takes a real long time, will I ever finish?

What are your stories?

Feel free to self promote so long as it comes with a story

reddit.com
u/Adamstrad — 11 days ago
▲ 4 r/programmer+2 crossposts

How can I use Supabase Authentication in html form?

I'm not entirely new but still at a low level with programming, I want to add Supabase authentication on my app but I can't work out how to do it correctly. I probably have some rookie mistakes in here.

I changed it to match my account keys (unless there is a separate one for auth that I don't know about?) and I put a local "success.html" redirect page. When I submit the form nothing happens

I am trying to get it to work on this simple form

 <form>
            <span id="error-message" class="hidden">Password must be 9-16 alphanumeric characters.</span>
            <input id="email" type="email" placeholder="email">
            <input id="password" type="password" placeholder="password">
        <section>
            <button class="login" id="login" onclick="login()">
                Login
            </button>



            <button type="button" class="login" id="back" onclick="window.location.href='../index.php';">
                Back
            </button>
            </section>
        </form> 

The website provides this code for javascript:

Sign Up

import { createClient } from '@supabase/supabase-js'
const supabase = createClient('https://your-project-id.supabase.co', 'sb_publishable_...')
// ---cut---
async function signUpNewUser() {
  const { data, error } = await supabase.auth.signUp({
    email: 'valid.email@supabase.io',
    password: 'example-password',
    options: {
      emailRedirectTo: 'https://example.com/welcome',
    },
  })
}
import { createClient } from '@supabase/supabase-js'
const supabase = createClient('https://your-project-id.supabase.co', 'sb_publishable_...')
// ---cut---
async function signUpNewUser() {
  const { data, error } = await supabase.auth.signUp({
    email: 'valid.email@supabase.io',
    password: 'example-password',
    options: {
      emailRedirectTo: 'https://example.com/welcome',
    },
  })
}

Log In

import { createClient } from '@supabase/supabase-js'
const supabase = createClient('https://your-project-id.supabase.co', 'sb_publishable_...')
// ---cut---
async function signInWithEmail() {
  const { data, error } = await supabase.auth.signInWithPassword({
    email: 'valid.email@supabase.io',
    password: 'example-password',
  })
}import { createClient } from '@supabase/supabase-js'
const supabase = createClient('https://your-project-id.supabase.co', 'sb_publishable_...')
// ---cut---
async function signInWithEmail() {
  const { data, error } = await supabase.auth.signInWithPassword({
    email: 'valid.email@supabase.io',
    password: 'example-password',
  })
}
reddit.com
u/Adamstrad — 12 days ago

How to code Auth into a form? (js)

New and slightly dense programmer here. How do I link my signup/login forms to the supabase auth? The menu has lot of sections for me to search

reddit.com
u/Adamstrad — 12 days ago

Is there some kind of YouTube video that covers the basics of hypnosis that you can recommend? Preferably less than an hour

Is there some kind of YouTube video that covers the basics of hypnosis that you can recommend? Preferably less than an hour

reddit.com
u/Adamstrad — 13 days ago
▲ 3 r/osrs

Is there any way to watch or take part in runefest without physically visiting?

Is there any way to watch or take part in runefest without physically visiting? or is it entirely in person

reddit.com
u/Adamstrad — 13 days ago

Any tutors from Mexico?

I'm interested in how taxes are reported there for Preply from 2026 onwards

Context:

In January 2026 there was a tax reform with a special category for people who use digital platforms such as Uber, Preply Airbnb etc. as a middleman to make money. The platform has to provide access to all relevant data to the tax authority in real time or risk being blocked in the county. There is a new separate tax regime which covers this but to my knowledge Preply doesn't comply with this, but also maybe I'm wrong.

reddit.com
u/Adamstrad — 14 days ago