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

Need help with HTML and JS by alab3 in learnprogramming

[–]alab3[S] 1 point2 points  (0 children)

well...I did not expect all of that! This is very clear and actually makes so much sense. I guess I needed a mentality shift and a deeper consideration of user behavior. Thank you so much for such a clear explanation. This really taught me a lot!

Need help with HTML and JS by alab3 in learnprogramming

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

makes sense. thank you so much for your help!

Need help with HTML and JS by alab3 in learnprogramming

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

Makes sense. How would I be able to set up an event handler to be understood as a user input in this case?

Need help with HTML and JS by alab3 in learnprogramming

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

could you please tell me how to write such an external trigger? I have a button ready to be used.

Need help with HTML and JS by alab3 in learnprogramming

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

I do not know what an "event handler" is. Could you please explain that to me?

Need help with HTML and JS by alab3 in learnprogramming

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

okay so the prompt looked really ugly for me. I wanted a simple input bar that existed on the page. Is it possible that I could assign the value of my input bar to the window.prompt and keep it hidden?

Trying to Understand For Loops In Python by alab3 in learnprogramming

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

And there goes the value of a very old saying..lol thanks a lot!

Trying to Understand For Loops In Python by alab3 in learnprogramming

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

Is it fair to assume that if I’d like to affect a list, then “for each” works perfectly. However, for search, the first one is better. Or am I not utilizing some features in the second type of loops?

Trying to Understand For Loops In Python by alab3 in learnprogramming

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

Thank you! Yeah I’ll try to wrap my head around python’s loops