-
Posts
1,217 -
Joined
-
Last visited
-
Days Won
2
Skitty last won the day on May 29 2012
Skitty had the most liked content!
About Skitty
- Birthday 09/11/1989
Profile Information
-
Location
Texas
Recent Profile Visitors
Skitty's Achievements
Universalist (7/7)
53
Reputation
-
Zedna reacted to a post in a topic: AutoIt Unlocker
-
Parsix reacted to a post in a topic: Flickering Controls on WinMove
-
Skitty changed their profile photo
-
Skitty reacted to a post in a topic: Microsoft Edge - WebView2, embed web code in your native application
-
Skitty reacted to a post in a topic: [UDF] Google oAuth 2.0 with AutoIt.
-
Real-Time Object Detection using YOLOv3 wrapper
Skitty replied to smartee's topic in AutoIt Example Scripts
... wat that wasn't an answer to your question, but since we're here, the op had already provided you with a relevant link which will answer your previous question.- 42 replies
-
- deep learning
- neural networks
-
(and 3 more)
Tagged with:
-
Real-Time Object Detection using YOLOv3 wrapper
Skitty replied to smartee's topic in AutoIt Example Scripts
Based on the number of objects this version is detecting (80?) you could probably get better results writing a python wrapper to interface with an autoit script and use opencv dnn module to load tensorflow inception with a pretrained classifier that can detect 1000 different objects instead, it even gives you specific dog breeds. The speed is negligible in difference I'd assume.- 42 replies
-
- deep learning
- neural networks
-
(and 3 more)
Tagged with:
-
Does anyone use www.freelancer.com?
Skitty replied to pete_wilde's topic in Developer General Discussion
That site is awful. I've used it before, mostly just to bid on interesting projects that I'd like to play with. I once saw a guy talking about maintaining some autoit script scrapping program so I bid on it to see what it was all about, turned out to be interesting and fun to work with but ended up just rewriting everything in another language instead. I've made various weird specific tools for people on there who for some reason decide to hire me instead with almost no reputation on the site, I guess people tired of getting buggy software from certain flags? idunno. weird place it is. I would dread to think of that site as being a source of income. the competition is fiercely centered on who can do the most work for the least amount of money in the longest stretch of time. -
El-Masry reacted to a post in a topic: Change User Agent in IE?
-
mLipok reacted to a post in a topic: SciTE Clone - AutoIt SciTE impostor
-
liagason reacted to a post in a topic: Is There a Way to Compress a File in AutoIt?
-
Skysnake reacted to a post in a topic: Windows Notepad for AutoIt
-
How to Return the Value from AutoIT to selenium
Skitty replied to Manivel's topic in AutoIt General Help and Support
I have never used selenium but if it is anything like phantomjs then you should be able to listen in on a port and use it to exchange data between the scripts. Does selenium allow you to create a server? check that and try using it with winhttp or something -
Reading text file contents to form
Skitty replied to StMaSi's topic in AutoIt General Help and Support
huh idunno I don't think i experienced that when i used it lol -
Reading text file contents to form
Skitty replied to StMaSi's topic in AutoIt General Help and Support
try using a rich edit control autoit comes with a UDF called guirichedit.au3 that you can use, then just create your styled text in wordpad or something and load it with ... $sText = FileRead(".\readme.rtf") _GUICtrlRichEdit_SetText($hRichEdit, $sText) ... -
lmao this all sounds malicious af m8 at this point why not use a language like C++ or something lol
- 4 replies
-
- memory
- page_guard
-
(and 1 more)
Tagged with:
-
Try using comspec https://www.autoitscript.com/wiki/Snippets_(_CMD_)
-
For anyone that likes node/io js, just in case you didn't know, there's a project that cobbles up webkit + iojs. It's really quite awesome using webkit to create a UI with HTML/CSS and have iojs functionality available for whatever you want. Really quite awesome, the things you can make with this are great. https://github.com/nwjs/nw.js only down side is your projects usually end up coming out at over 100mb rofl, nwjs is about ~80mb alone but usually you will want to include a local application database and it can get quite large.
-
I don't know where else to ask, and I've been here more than other places so I assume maybe there is someone who's experienced an issue I just stumbled into while developing a user javascript file.. I created a simple extension for a website, rather large actually.. I was testing it on Firefox during its development using greasemonkey and everything worked well, I could access variables created by scripts delivered by the site in the context of the window and listen to fired off events created by another jquery script in the window, but when I attempted to use it in chromium by dragging dropping file called "script.user.js" into extensions window, somehow chromium seems to not allow the script to interact with the variables of the other script, I cannot listen to events or use the existing jquery that is in the sites main scripts, I have to manually include my own copy of jquery, chromium somehow does it so that the scritp has its own context to the window and does not allow it to interact with the context of the other script... This is strange. Greasemonkey under firefox does not do this though and seems it is more lenient on permissions... This has complicated development of the script to keep it comparable on both browsers. Does anyone know what can be done to make chromium allow the script to "see" and interact with the other scripts that are delivered server side? I'm not sure if this is a good explanation, I hope you can understand. tl;dr somehow chromium does not let a userscript file access variables outside of the script file in a webpage while firefox does, any fix to this?
-
Anyone dedicated enough can do this but does anyone really want this stuff being used by novice users...
- 6 replies
-
- ntdll
- unkillable
-
(and 2 more)
Tagged with:
-
IUIAutomation MS framework automate chrome, FF, IE, ....
Skitty replied to junkew's topic in AutoIt Example Scripts
This UDF is absolutely amazing... Is there anyway to extract the HTML document into a variable with this? -
Skitty reacted to a post in a topic: GeoIP database parsing examples.
-
Skitty reacted to a post in a topic: GeoIP database parsing examples.
-
theres code around here somewhere to do that, though I can't search for you since I find it hard on this phone... I think I used someone's code in a task manager scrip I put togeather this one time, check my Sig, should be there D: