Jump to content

Renderer

Active Members
  • Posts

    182
  • Joined

  • Last visited

Everything posted by Renderer

  1. I guess the best method to hide your IP location is to set up a secure shell.But Google is poor in tutorials. I found a some stuff, but that stuff i found was far from being helpfull. Generally,using technology we expose to high risks.I think even taking a picture with our smartphone could be risky.
  2. Hello guys.Could you teach me how to get the maximum level of privacy on my computer? Someone told me that a good starting point is to use the Linux OS,and to abort the usage of Windows,but i need more information. How can i get my PC away from the another's eyes? How can i hide my IP without any WEB service? Thanks in advance.
  3. I assume my provider was blocked my access to WhatsApp, perhaps for security reasons.So perhaps i need to talk with them , maybe they can guide me. Thank you for the answer.
  4. Hello,guys,i've recently downloaded Whatsapp for my phone. It has Android OS. It is a Samsung Galaxy S2.The app it asks me for my phone number.When i press OK it appears to connect. And i'm waiting and waiting and waiting, more and more, until a mesage appears on the screen and it tells me that it can not connect,and to try again latter. I belive it is the network's fault,but i'm not sure. I've got this problem since a few days ago. The message: "Unable to connect to the internet.Please check that you are connected to the internet and try again.Please reboot your phone if the problem persists." Thanks in advance.
  5. Thanks! This was helpfull. Exploring the functions may help me on the future.
  6. Here's my litte desktop clock: #include <WindowsConstants.au3> #include <GUIConstantsEx.au3> #include <misc.au3> ; global $popup = GUICreate('DesktopClock',300,50,@DesktopWidth+(-330),@DesktopHeight+(-100),$WS_POPUP) GUISetBkColor(0x000000) global $clockLabel = GUICtrlCreateLabel('',30,5,450,30) GUICtrlSetFont($clockLabel,20,0,0,'Segoe UI') GUICtrlSetColor($clockLabel,0x32cd32) WinSetTrans($popup,"",190) GUISetState() While 1 Switch GUIGetMsg() case -3 ExitLoop EndSwitch _GetTime_() WEnd Func _GetTime_() GUICtrlSetData($clockLabel, 'Local time: ' & @Hour & ":" & @Min & ":" & @sec) Sleep(1000) _GetTime_() EndFunc There is a little problem. I cannot exit the program , because the _GetTime_() function is written once again into the _GetTime_() function definition. So the program only updates the date and time.
  7. Hello guys! How can i make a GUI to not be showen up on the taskbar.Thanks in advance!
  8. Hello guys! How can i get an element by it's id or classname in VBScript? Thanks in advance
  9. Hello guys! I need some help! I got 2 PCs and i've placed them in separte rooms. It's tedious job to move every night from one room to another to close my PCs. I've tried the remote shutdown command but i've got the 'Access is denied.<5>' message. I need some sollutions to slove this error. Thanks in advance!
  10. Hello! Is there anyway to understand the Link-local IPv6, more exactly to read it as a normal IP address? Thanks in advance!
  11. Hello Guys, i got an error with _InetSmtpMail() function. It simpy doesn't works! Here is the code: #include <inet.au3> global $sendEmail = _INetSmtpMail('mail.yahoo.com','Big Bob','[email protected]','[email protected]','This is a test','I just want to test the _INetSmtpMail function!') if $sendEmail = false Then MsgBox(18,'@Internet Message error','Operation failed!') EndIf I think there is something mistaken!
  12. yes,something like that.
  13. I fear you are too far away of what i meant.For example, look at the 'crypt.au3',at the crypting algorithms.You see hex codes.I meant how can i encode a lot of information into a single hexadecimal code. I am more than sure that the RC4 algorith was developed using mathematical formulas,and they finally wrote it under the 0x00006801 hex code. I asked myselft how is this posible.
  14. Hello GUYS! I might be stupid what i'm going to ask you.How can i encode information into hex codes. Is there any algorith or any mathematical formula to do it? This question is haunting me since i was 14 years old, up untill today. Thanks in advance!
  15. Thanks a lot.
  16. Hello guys, I need your advice regarding the javascript language. I need to know how to write data to a text file using javascript.It's more easier to ask the forum for some piece of information. Thanks in advance!
  17. No. I didn't work too much to solve this problem.I will work at this problem this week.Sorry!
  18. Hello guys! I got a little problem.I want to create a Notepad++ interface for the gui edit control.I'm stuck and i can not solve this problem alone. I suppose there must be an object to be embeded in the gui , but i am not sure! If anyone has a sollution for this little problem,then please post it on the forum! Thanks in advance!
  19. Currently i'm working to find a sollution. Thanks for sharing information to me!
  20. I want to create an Embeded Chrome Control for the GUI. And i've been told i am using a wrong classname. Now i have to find the correct classname for the Google Chrome, to embeed it in autoit GUI.
  21. Hello guys! I've use (Frozen) AutoIt v3 Window Info to find out the Chrome Object Classname.But i've got some problems in creating a control for the GUI using that object. Here's the code: global $CHROME = ObjCreate("Chrome.RenderWidgetHostHWND") if $chrome = false Then MsgBox(18,'error!', 'Unable to find ' & ObjName($chrome) & '!') Else MsgBox(0,'Info', 'Found: ' & ObjName($chrome) & '!') EndIf global $iGUI= GUICreate('Chrome Manager',650,550,-1,-1,0x7ff7737) GUISetBkColor(0x000000) global $obj_search_bar = GUICtrlCreateInput('http://www.google.com',10,10,980,30) GLOBAL $OBJECT = GUICtrlCreateObj($CHROME,10,60,980,600) GUISetState() global $navigation = $chrome.navigate(GUICtrlRead($obj_search_bar)) While 1 Switch GUIGetMsG() CASE -3 ExitLoop EndSwitch WEnd if anyone knows how to solve this please, tell me. I want to create a Chrome Control in autoit GUI. thanks in advance!
  22. Hello GUYS! I want to ask you whee i can find a 3d activeX control for the GUI? If someone knows a 3D ActiveX plugin please tell me!! Thanks in advance!
  23. Hello, i need your help. Is there any way do display the ISP and the network location, using autoit codes? I'm waiting for your answers. Thanks in advance!
×
×
  • Create New...