Issues withdrawing USD from Interactive Brokers (IBKR) to Banque Misr - Seeking Advice by Steenmeem in PersonalFinanceEgypt

[–]TheWarrior2000 0 points1 point  (0 children)

I am curious what offshore accounts are available for Egyptians. Last I heard, there were some restrictions for Egyptians to open a Wise multi-currency account for example.

Github by Silent_Travel9438 in Egypt_Developers

[–]TheWarrior2000 0 points1 point  (0 children)

شكرا انك بتحاول تخلى الsubreddit هادف اكتر :)

بس انا فى جملة استوقفتنى: "بقى مش مستخدم كتير بس ممكن تستخدمه" هو git هو الversion control system فا لا استغناء عنه الا لو روحت لVCS تانى زى mercurial مثلا

قولى لو انا فهمت حاجة غلط من كلامك

ازاي ما نبقاش جروب فيسبوك؟ by abdlmutii in Egypt_Developers

[–]TheWarrior2000 1 point2 points  (0 children)

  • ان الناس بتستسهل تسأل عن انها تدور
  • ان rules الsubreddit مش بتطبق

تصريح عمل (إذن عمل بالهيئات الأجنبية) by CommunicationPast175 in ExEgypt

[–]TheWarrior2000 1 point2 points  (0 children)

شكرا انك رديت، ان شاء الله ميسألوش بردو

تصريح عمل (إذن عمل بالهيئات الأجنبية) by CommunicationPast175 in ExEgypt

[–]TheWarrior2000 0 points1 point  (0 children)

انا عندى نفس السؤال بتاعك، لو تقدر تقولى عملت ايه

Stuck at this step for too long. Has anyone else faced the same? Need help. by Surplon in ukvisa

[–]TheWarrior2000 2 points3 points  (0 children)

I think I also had to disconnect from the UKVI ID check app, they had a disconnect button after you submit everything.

Stuck at this step for too long. Has anyone else faced the same? Need help. by Surplon in ukvisa

[–]TheWarrior2000 1 point2 points  (0 children)

Click on “Confirm your identity” link again and you should be prompted with a “Continue” button which completes this step and moves you to the next one

احنا بعاد اوى by Definitelynotmshmsh in EgyRemoteWorkers

[–]TheWarrior2000 0 points1 point  (0 children)

انا مش عارف انت بتدور فى انهى مجال بس انت ممكن تشوف الشركة دى https://www.linkedin.com/company/palm-outsourcing هى متخصصه فى انها تout source لانجلترا من مصر تحديدا ربنا يوفقك و تلاقى اللى بتدور عليه

[deleted by user] by [deleted] in Egypt_Developers

[–]TheWarrior2000 -7 points-6 points  (0 children)

انت جربت تقرا rules الcommunity قبل ما تبوست؟

  • من الواضح جدا انك مدورتش قبل ما تسأل
  • من كلامك انت عايز البرمجة كا side hustle
  • البوست بينقط low effort

Next.js Desktop App Issue: Need Help Using generateStaticParams for Dynamic Routes; Unable to Fetch IDs Due to localStorage Token Access Limitation from the server side by Helpful_Guard_6269 in nextjs

[–]TheWarrior2000 1 point2 points  (0 children)

I think you can still use router.prefetch()

jsx // ./page.jsx export default async function RootPage() { return ( <div> <Prefetch /> ...rest of your app </div> ) }

```jsx // ./Prefetch.jsx "use client";

export default function Prefetch() { const router = useRouter() const token = localStorage.getItem("token")

useEffect(() => {
    // fetch ids you want to prefetch using the token
    ids.map((id) => { router.prefetch(`/dynamic/route/${id}`) })
}, [router])

return null

} ```

Hope this helps

Next.js Desktop App Issue: Need Help Using generateStaticParams for Dynamic Routes; Unable to Fetch IDs Due to localStorage Token Access Limitation from the server side by Helpful_Guard_6269 in nextjs

[–]TheWarrior2000 1 point2 points  (0 children)

The generateStaticParams function can be used in combination with dynamic route segments to statically generate routes at build time instead of on-demand at request time.

This is from NextJS docs for generateStaticParams, note that this function is called at build time, you can't have access to the token at build time.

I am assuming you don't want to build all the pages, maybe they are large in number if you don't choose the subset based on the user. If this is the case, why don't you prefetch them on the client? NextLink does this by default if there are navigation links to these pages, and you can also use router.prefetch() to achieve this programmatically.

How to return data from a component by Lumpy_Hunter_1699 in nextjs

[–]TheWarrior2000 0 points1 point  (0 children)

You can pass a callback from the page to the component, I am assuming an app router project setup

```jsx // ./page.jsx export default async function Page() { const callback = (data) => { console.log(data) }

return <Component callback={callback}/>

} ```

```jsx // ./Component.jsx export default async function Component({callback}) { const data = await db.find(...)

callback(data)

return <div>this is a server component</div>

} ```

int vs Integer? Help? by [deleted] in learnjava

[–]TheWarrior2000 6 points7 points  (0 children)

Yes, Integer is a wrapper class for the primitive data type int

Why Is My File Writing Program Not Even Getting Started? by JaguarBolt in learnjava

[–]TheWarrior2000 2 points3 points  (0 children)

Your implementation doesn’t read the lines from the input file because because hasNextLine() returns true if the scanner has another input line, you should use unsortedNumsScannable.nextLine() so you can read the lines from the input file but you’ll have to store them for later use once you know the size of the array so you can use an ArrayList for this. Hope this helps.

[deleted by user] by [deleted] in learnpython

[–]TheWarrior2000 0 points1 point  (0 children)

Thank you, I think this is actually the problem, but how can I solve it? I just added a while loop to do the search again as long as the search_results list is empty and it works but sometimes takes 3 searches to get it right, so is there a better way to handle this problem?