"tools": [
{
"functionDeclarations": [
{
"name": "browser_subagent",
"description": "Start a browser subagent to perform actions in the browser with the given task description. The subagent has access to tools for both interacting with web page content (clicking, typing, navigating, etc) and controlling the browser window itself (resizing, etc). Please make sure to define a clear condition to return on. After the subagent returns, you should read the DOM or capture a screenshot to see what it did. Note: All browser interactions are automatically recorded and saved as WebP videos to the artifacts directory. This is the ONLY way you can record a browser session video/animation. IMPORTANT: if the subagent returns that the open_browser_url tool failed, there is a browser issue that is out of your control. You MUST ask the user how to proceed and use the suggested_responses tool.",| #!/usr/bin/env python3 | |
| import argparse | |
| import sys | |
| try: | |
| from colorama import Fore, Back, Style, init | |
| except: | |
| print("colorama module not found! install colorama module!") | |
| print("type: pip3 install colorama") | |
| sys.exit(1) |
| IMEI NUMBER,BRAND,MODELS | |
| 352773074248705,Acer,Liquid Z630 | |
| 148270036030247,Alcatel,Alcatel idealXCITE | |
| 148020069317791,Alcatel,Alcatel Ideal | |
| 146990066384444,Alcatel,Alcatel Ideal | |
| 146790022621701,Alcatel,Alcatel OneTouch Fierce XL | |
| 146710039197230,Alcatel,Alcatel Pixi Theatre | |
| 146580097529420,Alcatel,Alcatel Idol 4 | |
| 146500098871977,Alcatel,Alcatel Fierce 4 | |
| 146360030115839,Alcatel,Alcatel Idol 4S with Windows |
| <table><thead><tr><th style="text-align: right"><strong>IMEI NUMBER</strong></th><th style="text-align: left"><strong>BRAND</strong></th><th style="text-align: left"><strong>MODELS</strong></th></tr></thead><tbody> | |
| <tr><td style="text-align: right">352773074248705</td><td style="text-align: left">Acer</td><td style="text-align: left">Liquid Z630</td></tr> | |
| <tr><td style="text-align: right">148270036030247</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel idealXCITE</td></tr> | |
| <tr><td style="text-align: right">148020069317791</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel Ideal</td></tr> | |
| <tr><td style="text-align: right">146990066384444</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel Ideal</td></tr> | |
| <tr><td style="text-align: right">146790022621701</td><td style="text-align: left">Alcatel</td><td style="text-align: left">Alcatel OneTouch Fierce XL</td></tr> |
| # Stage 1: Builder stage | |
| FROM alpine:latest AS builder | |
| RUN apk --no-cache add build-base git # Installs build-base and git | |
| # Stage 2: Production stage | |
| FROM alpine:latest AS production | |
| # Copy specific files from the builder stage | |
| COPY --from=builder /usr/bin/git /usr/bin/git | |
| COPY --from=builder /usr/lib/libgit2.so.1.0 /usr/lib/libgit2.so.1.0 # Example for a library |
Let's install the Termux GUI Plugin, so we can build Android GUI Apps in C and Python... On Android!
Caution: We're installing Experimental Unsigned APKs, be careful!
According to the instructions, we should install Termux APK and Termux GUI APK generated by GitHub Actions...
| import gspread_dataframe as gd | |
| import gspread as gs | |
| gc = gs.service_account(filename="credentials.json") | |
| def export_to_sheets(sheet_name,df,mode='r'): | |
| ws = gc.open("Hashnode").worksheet(sheet_name) | |
| if(mode=='w'): | |
| ws.clear() | |
| gd.set_with_dataframe(worksheet=ws,dataframe=df,include_index=False,include_column_header=True,resize=True) | |
| return True |
This is not legal advice. This document is for informational and educational purposes only. The information provided herein is not a substitute for professional legal advice. You should not act or refrain from acting based on this information without first seeking legal advice from a qualified attorney in your relevant jurisdiction. The author of this document is not an attorney and does not claim to be one. The use of this document does not create an attorney-client relationship.
Laws regarding copyright, fair use, terms of service, and data extraction are complex, jurisdiction-dependent, and subject to change and interpretation. The assertions made in this document may not be upheld in a court of law. Engaging in the activities described herein may carry legal risks, including but not limited to, claims of copyright infringement, breach of contract, and violations of the Digital Millennium Copyright Act (DMCA) or similar legislation. You assume all risks and responsibility for any a
| # Cloudflared Tunnel Setup Script for Windows | |
| # Portable script with no external dependencies | |
| # All files are stored in ./cloudflared directory using environment variable tricks | |
| param( | |
| [string]$LocalPort = "8080", | |
| [string]$LocalHost = "127.0.0.1" | |
| ) | |
| $ErrorActionPreference = "Stop" |
| { | |
| "name": "Hacker", | |
| "timestamp": 1760965387035, | |
| "palette": { | |
| "wallpaper": "", | |
| "colors": [ | |
| "#0B0C16", | |
| "#31f759", | |
| "#4fe88f", | |
| "#50f7d4", |