| 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" |
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
| SPC | |
| SPC: find file | |
| , switch buffer | |
| . browse files | |
| : MX | |
| ; EX | |
| < switch buffer | |
| ` eval | |
| u universal arg | |
| x pop up scratch |
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
| # practical 1 : Create one-dimensional data using series and perform various operations on it | |
| import numpy as np | |
| # Create a one-dimensional data series | |
| data = np.array([1, 2, 3, 4, 5, 6]) | |
| print("Data Series:", data) | |
| # mathematical operations |
a. Visit the official Kali Linux website at https://www.kali.org/downloads/.
b. Choose the appropriate version for your system (e.g., 64-bit ISO).
c. Click on the download link to start the download process.
d. Save the ISO file to a location on your computer.
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
| import argparse | |
| from pdfminer.high_level import extract_text | |
| from sentence_transformers import SentenceTransformer, CrossEncoder, util | |
| from text_generation import Client | |
| PREPROMPT = "Below are a series of dialogues between various people and an AI assistant. The AI tries to be helpful, polite, honest, sophisticated, emotionally aware, and humble-but-knowledgeable. The assistant is happy to help with almost anything, and will do its best to understand exactly what is needed. It also tries to avoid giving false or misleading information, and it caveats when it isn't entirely sure about the right answer. That said, the assistant is practical and really does its best, and doesn't let caution get too much in the way of being useful.\n" | |
| PROMPT = """"Use the following pieces of context to answer the question at the end. | |
| If you don't know the answer, just say that you don't know, don't try to |
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
| [ | |
| { | |
| "quote": "Life is what happens when you're busy making other plans.", | |
| "author": "John Lennon", | |
| "tags": ["life", "inspiration"] | |
| }, | |
| { | |
| "quote": "The only way to do great work is to love what you do.", | |
| "author": "Steve Jobs", | |
| "tags": ["work", "inspiration"] |
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
| [ | |
| { | |
| "quote": "Success is not final, failure is not fatal: It is the courage to continue that counts.", | |
| "author": "Winston Churchill", | |
| "tags": ["success", "courage", "failure"] | |
| }, | |
| { | |
| "quote": "The only way to do great work is to love what you do.", | |
| "author": "Steve Jobs", | |
| "tags": ["inspiration", "work", "passion"] |