▲ 4 r/Tello

Existing Tello Customer Upgrading Phone Outside of US

It's the time of year where they are announcing new phones & I plan to upgrade.
I currently am Outside the US with a US number (eSim) as my second sim in my phone.

I mainly use my phone while connected to Wifi & do not need roaming.

I don't plan to be back in the US but as I change phones & add a new eSim to what ever phone I get should I have any issues?

I only want to make sure I can receive Text messages & phone calls from my family that have my number. I don't mind if I have to be on Wifi to do it, but based on seeing people having issues in the sub reddit I want to make sure I can issue a new Esim (same number) to a new phone without going back to the US to activate anything.

Last year this worked perfectly fine & I just want to manage expectations.

reddit.com
u/replayjpn — 9 days ago

How do people have the Special Residents + My Number Card already?

I went to immigration on Friday to renew my PR card & was told that for the new Residence Card it will take two weeks to 1 month to process. It just came out on June 14th (Monday)

How are people already having the card & facing issues?
Is the timeline different based on what kind of status you have?

I know some people don't want the card but please let us have a thread for those who do.

reddit.com
u/replayjpn — 2 months ago

How long does it take you to create a Payload CMS site?

Even with AI help how long does it take you to create a Payload CMS site?
Let's separate if it's for yourself or if it's a client site?
It took me 2 1/2 months to develop my site replay.jp (It's in Japanese)

I want to see how long does it take others. I'm not into one shotting anything & am looking for those of you that really need specific features built inside of your sites.

For me I built a domain portfolio with contact form & domain details.
It has an importer script where I can import domains & the details.
Also while building it has a seed function which created a snapshot of the site so I don't have to redo while creating.

Would love to hear some creation times, if it's personal or client site & which AIs you used to help you out.

reddit.com
u/replayjpn — 2 months ago

How much space is between your house & your neighbors yard?

I'm in the middle of having my yard fully landscaped & in the back of my house is my next door neighbor who was there long before we built our house last year.

I was advised by the landscaping company to put a fence up between my property & the theirs. It's in the back & initially I thought it was not needed but they said we should put one there.

My reason for not wanting to add a fence was because their side of the house is 50cm from the start of our property. There's a downstairs door on their property which might not open if we had put up a fence.

So they started making the molds & cement for the backyard fence & I noticed that between their house there is a lot of weeds & even a few might be bamboos growing. They will have to come in our yard to do it but if we put up a fence they will not be able to clean up the side of their house.

We called the landscaping company owner & had them look at the condition & they agreed & are stopping putting in the backyard fence.

Is this normal though? How much of a gap do you have between your house & the next door property?

reddit.com
u/replayjpn — 2 months ago

Specified Residence Card Starting June 14th

I didn't hear about this before I am renewing my Permanent Residency Card & got a postcard in the mail. Posting this for anyone who thinks its a good option for them.

It stated:
Starting June 14th 2026 applications will be accepted for the "Specified Residence Card" which integrates the Residence Card and the Individual Number Card into a single Card.

I didn't know this was an option & just sharing for those who don't want to carry around two cards.

It seems for permanent residency holders you don't have to renew your cards for 10 years.
Also you don't instantly get a card it will take over a week.

reddit.com
u/replayjpn — 3 months ago

Specified Residence Card Starting June 14th

I didn't hear about this before I am renewing my Permanent Residency Card & got a postcard in the mail.
It stated:
Starting June 14th 2026 applications will be accepted for the "Specified Residence Card" which integrates the Residence Card and the Individual Number Card into a single Card.

I didn't know this was an option & just sharing for those who don't want to carry around two cards.

Is this for those with PR or any zairyu card?

reddit.com
u/replayjpn — 3 months ago

Here's my site
https://replay.jp**Just launched so hopefully the server doesn't go down or anything.

I own a small development & marketing company in Tokyo. My old site used WordPress, English-only, hosted on Google Cloud. I wanted to rebuild it completely in Japanese, not migrate, do a completely fresh start. I'm a solo developer(In my own company) so I built a structured multi-AI workflow using Claude, ChatGPT, & Codex where each one handles what it's best at. I tried doing this one year ago & was unsuccessful. I started again in February concentrating on past mistakes & making a dedicated framework that actually works.
About 3 months from first commit to live production at replay.jp.

I wanted to also make a domain portfolio which I could point all my .jp domains to.

Started prototyping with SQLite because it was easy — worked great locally but couldn't deploy. Switched to Postgres and my AI agents helped figure out the deployment chain. ChatGPT and Codex were the biggest help on the infrastructure side.
Before I built this workflow last year was painful — AI would write code that looked good but had build errors. It would code for the wrong Next.js version. Context would get too big mid-conversation and the next chat would lose all memory of what we were doing. I spent more time fixing AI mistakes than building. The workflow I built this year solved all of that.
~30 milestones from first design to production — each one had set goals, checkpoints, and mandatory checks. We didn't move forward unless the code was error-free, build passed, and types were clean. If a milestone scope got too large it was split into segments so context stayed manageable.
Planning is built into the system but not Plan Mode — I do planning separately within the workflow so plans are persistent files, not just chat context. When a milestone ships the system moves plans from active to archived. Next session picks up exactly where we left off.
Each AI tool has different strengths — Claude Code is fast at writing code but struggled with deployment. ChatGPT was better at diagnosing infrastructure problems. Codex writes better Japanese content and won a blind content bake-off. The framework routes each task to the right tool.
Built a seeding system for content — I can tear down and rebuild the entire site from scratch and all content comes back. As I add new content through the AI workflow it updates the seed so nothing is ever lost. My base content is always in the code.
Wrote all Japanese content from scratch — didn't port old English content. Used Codex to generate 48 domain listings, service pages, SEO metas, and OG descriptions. Every domain has a unique description — no copy-paste across the portfolio.
Built admin tools so I never touch code for content updates — CSV upload directly in the admin dashboard for bulk domain imports, price updates, domain sets, and videos. Just upload a file and click submit.
Moved hosting from Google Cloud to Hetzner + Coolify + Cloudflare — cheaper and I control everything. Coolify handles deployments, Cloudflare handles CDN and DNS. Set up email authentication, Google Analytics, Tag Manager, and Search Console all in the same push.
Utilized Claude Code MCP to minimize copy-paste between AIs — the agents can read project files directly through MCP servers instead of me pasting code back and forth. Also connected Payload CMS as a read-only MCP so the AI can verify what's actually in the database.
Git safety is built in — the AI creates feature branches and does all the work there. I do the final pushes and merges myself. There's a hook that blocks the AI from pushing directly to main. Nothing goes to production without me clicking the button.

Context management was the hardest problem to solve — AI conversations lose context fast on a big project. My workflow keeps each milestone focused with clear scope so the AI doesn't drift. Session handoff docs capture everything a new session needs to continue. No more "start from scratch every chat."

Whole bunch of addons created: UTMs on links from the backend, Japanese text cuts off at the right places, Japanese dates & number shortener, JP currency, & number shortening for Japanese, Custom menu emphesizing on both mobile & desktop, cool search bar I designed & updated search listings.

(Had some help organizing the points so I don't ramble)
Thank you Payload team, the site is optimized for Japanese by me as I built a few tweaks that generally matter here.

**My workflow has both production site: replay & staging site initially my Hertzer server was too small so it crashed.

3 months work hope it doesn't crash.

u/replayjpn — 4 months ago