| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
| // ==UserScript== | |
| // @name Recaptcha Solver (Automatically solves Recaptcha in browser) | |
| // @namespace Recaptcha Solver | |
| // @version 2.1 | |
| // @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | |
| // @author engageub | |
| // @match *://*/recaptcha/* | |
| // @connect engageub.pythonanywhere.com | |
| // @connect engageub1.pythonanywhere.com | |
| // @grant GM_xmlhttpRequest |
| const flatten = array => array.reduce((temp, value) => temp.concat(Array.isArray(value) ? flatten(value) : value), []); | |
| // example | |
| console.log(flatten([[['str']],undefined,null,{},[[true,false],[{},[]],[],{}],[],[],[],[]])); |
Here is my live stream setup kit :)
If you are doing a personal stream, I recommend only streaming to a single service such as Twitch. It is better for community building and easier on the streamer. Additionally, if you become an affiliate you are locked into a platform anyways.
How my setup works is that I have my main Desktop PC that has my streaming software, chat, alerts, music, and such all running on it. I have a second surface book that has HDMI out into the capture card in my Desktop PC. I do this because often when you compile apps it may freeze up your computer and stream :(. I have 2 sets of keyboards and mice and 2 monitors that I work off of. This works for me, but you do you :)
Software:
- OBS: Your main go to for streaming software. It works on every OS :). If you want something with everything baked in take a look at Streamlabs OBS.
- Streamlabs has all of your pop ups for subscribers and such on t
| let likes = 0; | |
| setInterval(() => { | |
| const heart = document.querySelector('svg[aria-label="Like"][width="24"]'); | |
| const arrow = document.querySelector('svg[aria-label="Next"]'); | |
| if (heart) { | |
| heart.parentNode.parentElement.click() | |
| likes++; | |
| console.log(`You've liked ${likes} post(s)`); | |
| } | |
| arrow.parentElement.parentElement.click(); |
####Rets Rabbit http://www.retsrabbit.com
Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.
| // extend strings with the method "contains" | |
| String.prototype.contains = function(str) { return this.indexOf(str) != -1; }; | |
| // profanities of choice | |
| var profanities = new Array("ass", "cunt", "pope"); | |
| var containsProfanity = function(text){ | |
| var returnVal = false; | |
| for (var i = 0; i < profanities.length; i++) { | |
| if(text.toLowerCase().contains(profanities[i].toLowerCase())){ |