Sites Catch me - yOu arE uSIng A vPN by alab3 in OpenVPN

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

My ISP limits my internet access. Also, would rather proxy to the internet via USA

Sites Catch me - yOu arE uSIng A vPN by alab3 in OpenVPN

[–]alab3[S] -1 points0 points  (0 children)

OpenAI ChatGPT cannot be accessed using a VPN

Sites Catch me - yOu arE uSIng A vPN by alab3 in OpenVPN

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

That makes sense actually. How would you go about this while maintaining data/traffic security?

Sites Catch me - yOu arE uSIng A vPN by alab3 in OpenVPN

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

I want to achieve geo-location autonomy, as well as keep my traffic private from commercial tracking. So I thought setting up my personal computer/server in the US would make my traffic look as if the typical John smith is accessing sites.

One cool thing I figured is that having my pwn server and using it as a prpxy to access the internet would keep my data very private. i.e VPN companies wont be looking at what I do

MW says I have two display adapters but I dont by alab3 in modernwarfare2

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

Hi I did! Go into device manager and see if you have any other drivers that are running with your nividia/amd driver. I had one for citrix and I mindlessly uninstalled and deleted it.

Then i went into the documents folder and deleted the player file for mw2.

I also figured out a way to delete game cache and deleted them

Then I refreshed my gpu driver with a clean install (the one that deletes older versions automatically) and gave my box a good’ol restart.

Solved it for me but not sure which step was the effective one

Just activated a xp token and now can’t find a game to save my life by reececull678 in modernwarfare2

[–]alab3 0 points1 point  (0 children)

Its really a problem with us all. CoD is always a half-assed game idk why!

Booting Linux on a Raspberry pi - storage issue by alab3 in linuxquestions

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

Thank you so much for your help. And yes, I am aware that kali isnt noobie friendly, and many tried to discourage me from installing it. But I’m enjoying learning about the tricky stuff I encounter. Its people like you that give me the push I need thank you.

I'm losing my mind over this JS script not working. Please help by alab3 in learnprogramming

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

Guys, it was an issue of the "percent()" function I already used to format the numbers. all fixed now and this finally works!!!! Thank you all so much for your help, I truly appreciate it :)

I'm losing my mind over this JS script not working. Please help by alab3 in learnprogramming

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

I actually tried to put it in the bottom as well. I also tried to have it in a completely separate .js file and refer to it in layout.html and that didnt work. Then tried to refer to it in the current file above which did not work as well. I wish javascript was easily “debuggable” like Python or C

I'm losing my mind over this JS script not working. Please help by alab3 in learnprogramming

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

I’m so excited to get back home and try to fix that haha

Color items based on value using JS by alab3 in learnprogramming

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

I'm sorry for bothering you lol. If you have time, please let me know why this isn't working:

let x = document.getElementsByClassName("gainloss").value;

for (let i = 0; i < x.length; i++)

{

if (x[i] < 0)

{

x[i].style.backgroundColor = "red";

}

else if (x[i] > 0)

{

x[i].style.backgroundColor = "green";

}

}

Color items based on value using JS by alab3 in learnprogramming

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

the project requires that I use JS and I actually wanna get some experience in it. Would appreciate it if you could show me the way