This requires Python installed on the machine
- Install Python QR code package along with Pillow
pip install qrcode[pil]
- Generate a QR code with Url Scheme (in this example, we'll create a QR code which opens given URL in Google Chrome browser
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| # tools from https://github.com/ibraheemdev/modern-unix | |
| tap "cantino/mcfly" | |
| tap "clementtsang/bottom" | |
| brew "bat" | |
| brew "exa" | |
| brew "lsd" | |
| brew "git-delta" | |
| brew "dust" | |
| brew "duf" | |
| brew "broot" |
This requires Python installed on the machine
pip install qrcode[pil]
brew install asciinema
asciinema rec
| 'use strict'; | |
| exports.handler = function(event, context, callback){ | |
| var height = event.height; | |
| var weight = event.weight; | |
| var bmi = weight/(height * height) * 10000; | |
| bmi = Math.round ( bmi * 100 ) / 100; |
| import org.junit.After; | |
| import org.junit.Assert; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.chrome.ChromeDriver; | |
| import org.openqa.selenium.internal.WrapsDriver; |
| #!/usr/bin/env python3 | |
| # Copyright (c) 2016 Anki, Inc. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License in the file LICENSE.txt or at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # |
| version: 0.2 | |
| phases: | |
| pre_build: | |
| commands: | |
| - npm install newman --global | |
| build: | |
| commands: | |
| - newman run -r html,cli sample_service.postman_collection --reporter-html-export report.html |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| package com.sapfioritrial.test; | |
| import org.junit.After; | |
| import org.junit.Assert; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.chrome.ChromeDriver; | |
| import org.openqa.selenium.support.ui.ExpectedConditions; |