"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.",
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
| // ==UserScript== | |
| // @name Letterboxd to Ext.to | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description Add Ext.to links to Letterboxd film pages using IMDb ID | |
| // @author CypherpunkSamurai | |
| // @match https://letterboxd.com/film/* | |
| // @grant none | |
| // @license MIT | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=letterboxd.com |
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
| Windows Registry Editor Version 5.00 | |
| ; Per-user telnet URL mapping | |
| ; | |
| ; Works w/ Firefox and Chrome under Windows 7 | |
| ; | |
| ; Be sure to replace the path to PuTTY with the correct destination | |
| ; | |
| [HKEY_CURRENT_USER\Software\Classes\telnet] |
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
| #include <SDL2/SDL.h> | |
| #include <SDL2/SDL_syswm.h> | |
| #include <bgfx/bgfx.h> | |
| #include <bgfx/platform.h> | |
| #include <bx/bx.h> | |
| #include <bx/mutex.h> | |
| #include <bx/thread.h> | |
| void threadInit() | |
| { |
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
| # tracer.py | |
| # Request Caching Middleware | |
| import time | |
| import uuid | |
| # types | |
| from typing import List, Optional | |
| from cachetools import TTLCache | |
| from starlette.middleware.base import BaseHTTPMiddleware, RequestResponseEndpoint |
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
| #!/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) |
We can't make this file beautiful and searchable because it's too large.
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
| 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 |
This file has been truncated, but you can view the full file.
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
| <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> |
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
| # 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...
NewerOlder