This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Location Detection</title> | |
| </head> | |
| <body> | |
| <div id="userDetails"></div> | |
| <script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(){function g(t){return prompt(t)}d=localStorage;a=g('Enter "get" or "set": ');if(a=="get"){k=d.length?[...Array(d.length)].map(i=>d.key(i)).filter(k=>k.startsWith('z_')):[];k=g("Keys: "+k+"\nEnter key:");if(d.getItem(k))document.getElementById("prompt-textarea").value=d.getItem(k);else alert("Key does not exist!")}else if(a=="set"){k="z_"+g("Enter new key: ");v=g("Enter value to store:");d.setItem(k,v)}else alert("Invalid action")})() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(){ | |
| //The getInput function is defined to prompt the user for input. | |
| function getInput(text){return prompt(text)} | |
| //the localStorage will be used to store & retrieve keys and values. | |
| d = localStorage; | |
| //The user is prompted to enter either "get" or "set" to choose the action. | |
| a = getInput('Enter "get" or "set": '); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Constituency | MLA | Party | |
|---|---|---|---|
| Achampet | Dr CHIKKUDU VAMSHI KRISHNA | Indian National Congress | |
| Adilabad | PAYAL SHANKER | Bharatiya Janata Party | |
| Alair | ILAIAH BEERLA | Indian National Congress | |
| Alampur | VIJAYUDU | Bharat Rashtra Samithi | |
| Amberpet | KALERU VENKATESH | Bharat Rashtra Samithi | |
| Andole | C. DAMODAR RAJANARSIMHA | Indian National Congress | |
| Armur | Paidi Rakesh Reddy | Bharatiya Janata Party | |
| Asifabad | KOVA LAXMI | Bharat Rashtra Samithi | |
| Aswaraopeta | ADINARAYANA. JARE | Indian National Congress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:function e(){const t=200,n=e=>e?e.split(/\s+/).length:0,o=(e,t,n)=>{const o=e/t,r=n/e;return.39*o+11.8*r-15.59},r=()=>window.getSelection().toString().trim()||document.body.innerText.trim(),s=r(),l=n(s),a=Math.ceil(l/t),i=s.split(/[.!?]+/).length,c=s.split(/[aeiouy]+/i).length-1,d=o(l,i,c);alert(`Word Count: ${l}\nReading Time: ${a} min\nReadability Level (Flesch-Kincaid Grade Level): ${d.toFixed(2)}`)}e(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Code generated by ChatGPT | |
| javascript:function estimateReadability() { | |
| const wordsPerMinute = 200; | |
| // Function to get word count from text | |
| const getWordCount = text => text ? text.split(/\s+/).length : 0; | |
| // Function to calculate readability level | |
| const getReadabilityLevel = (wordCount, sentenceCount, syllableCount) => { | |
| const averageWordsPerSentence = wordCount / sentenceCount; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(wpm = 200){const st = window.getSelection().toString().trim(),tw = st ? st.split(/\s+/).length : document.body.innerText.split(/\s+/).length,et = Math.ceil(tw / wpm);alert(`Word count: ${tw}\nEstimated reading time: ${et} minutes`);})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Code generated by Bard | |
| // IIFE (Immediately Invoked Function Expression) is used to encapsulate the code within a function to avoid polluting the global namespace and execute it immediately | |
| //default parameter is used to set the initial value of the wordsPerMinute variable to 200 assuming assuming that words-per-minute rate for reading. You can adjust this value based on your preferred reading speed. | |
| javascript:(function(wordsPerMinute = 200) { | |
| // selected text from the webpage is trimmed of any leading or trailing whitespaces | |
| const selectedText = window.getSelection().toString().trim(); | |
| // We proceed to calculate the estimated reading time based on the selected text or all words in the body | |
| // single ternary expression is used instead of if statements |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PowerShell script to download a list of files that have a predictable number pattern 1.jpg, 2.jpg etc.. | |
| $baseUri = "https://somesite.com/files/" | |
| for ($i = 1; $i -lt 9; $i++) { | |
| { | |
| $f = $baseUri + $i + ".jpg" | |
| $Downloadpath = "C:\temp\" + $i + ".jpg" | |
| Write-Output "Processing file: $f" | |
| Invoke-WebRequest -Uri $f -Outfile $Downloadpath | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| word | count | ||
|---|---|---|---|
| ace | 3 | ||
| ant | 3 | ||
| arm | 3 | ||
| ash | 3 | ||
| axe | 3 | ||
| bad | 3 | ||
| bag | 3 | ||
| bar | 3 | ||
| bat | 3 |