Development

Development

2460 bookmarks
Newest
Google for Developers Blog - News about Web, Mobile, AI and Cloud
Google for Developers Blog - News about Web, Mobile, AI and Cloud
Google has released the Jules API, a new tool for developers to automate and integrate the software development lifecycle. The API is based on "Source," "Session," and "Activity" concepts, and Google has provided a quickstart guide to help developers begin using it.
·developers.googleblog.com·
Google for Developers Blog - News about Web, Mobile, AI and Cloud
Connect Craft to ChatGPT with MCP
Connect Craft to ChatGPT with MCP
You can enable an MCP server for your documents, allowing ChatGPT to interact directly with your content. This guide walks you through setting up the connection between Craft and ChatGPT using MCP.
·craft.do·
Connect Craft to ChatGPT with MCP
If a Raindrop.io item tagged with 'download, xxxx, nsfw, videos', then
If a Raindrop.io item tagged with 'download, xxxx, nsfw, videos', then
Get more from the services you love on IFTTT. Explore the latest tips and tricks, browse by category, or search by name.
How this automation works If New item tagged Polling trigger This trigger fires when you tag an item with a specific tag in Raindrop.io Trigger ingredients Title Url Description ThumbnailUrl Tags CreatedAt Domain Id Note Then Upload file from URL Action This action will download a file at a given URL and add it to Google Drive at the path you specify. NOTE: 100 MB file size limit. Action fields url filename path And Add row to spreadsheet Action This action will add a single row to the bottom of the first worksheet of a spreadsheet you specify. Note: a new spreadsheet is created after 2000 rows. Action fields filename formatted_row path
·ifttt.com·
If a Raindrop.io item tagged with 'download, xxxx, nsfw, videos', then
Extension API
Extension API
Visual Studio Code has a rich extension API. Learn how to create your own extensions for VS Code.
·code.visualstudio.com·
Extension API
APIs — Firefox Source Docs documentation
APIs — Firefox Source Docs documentation
APIs Running the pipeline API You can use the Transformer.js pipeline API directly to perform inference, as long as the model is in our model hub. The Transformers.js documentation provides a lot of examples that you can slightly adapt when running in Firefox. In the example below, a text summarization task is performed using the summarization task: const { createEngine } = ChromeUtils.importESModule("chrome://global/content/ml/EngineProcess.sys.mjs"); const options = { taskName: "summarization", modelId: "mozilla/text_summarization", modelRevision: "main" }; const engine = await createEngine(options); const text = 'The tower is 324 metres (1,063 ft) tall, about the same height as an 81-storey building, ' + 'and the tallest structure in Paris. Its base is square, measuring 125 metres (410 ft) on each side. ' + 'During its construction, the Eiffel Tower surpassed the Washington Monument to become the tallest ' + 'man-made structure in the world, a title it held for 41 years until the Chrysler Building in New ' + 'York City was finished in 1930. It was the first structure to reach a height of 300 metres. Due to ' + 'the addition of a broadcasting aerial at the top of the tower in 1957, it is now taller than the ' + 'Chrysler Building by 5.2 metres (17 ft). Excluding transmitters, the Eiffel Tower is the second ' + 'tallest free-standing structure in France after the Millau Viaduct.'; const request = { args: [text], options: { max_new_tokens: 100 } }; const res = await engine.run(request); console.log(res[0]["summary_text"]);
·firefox-source-docs.mozilla.org·
APIs — Firefox Source Docs documentation
Structuring content with HTML - Learn web development | MDN
Structuring content with HTML - Learn web development | MDN
HTML is the technology that defines the content and structure of any website. Written properly, it should also define the semantics (meaning) of the content in a machine-readable way, which is vital for accessibility, search engine optimization, and making use of the built-in features browsers provide for content to work optimally. This module covers the basics of the language, before looking at key areas such as document structure, links, lists, images, forms, and more.
·developer.mozilla.org·
Structuring content with HTML - Learn web development | MDN