conda info --envs
: lists all environmentssource activate <env name>
: activate an environmentsource deactivate
: deactivate an environmentconda list
: list all packages installedconda create --name <env name> python=3 astroid babel
: create new environment, specify version of python, and install packages- WINDOWS NOTE: SOURCE is not recognized. When deactivating and activating in the anaconda command prompt, skip
source
and just typedeactivate
oractivate
depending on what you are trying to do. conda env export > environment.yml
: export conda environment requirements list to a fileconda env remove -n ENV_NAME
: delete environment
Discover gists
/* | |
This may get your account banned. It runs in your regular browser with your regular login without needing the API. | |
The script does the same things that you would do yourself: | |
Click the three dots, select delete Tweet, confirm, scroll to next Tweet, repeat. | |
========================== | |
Usage | |
1. Open your Twitter profile in a browser | |
2. Open the console in the developer tools (F12) | |
3. Paste the script and press enter | |
4. ??? |
import java.util.Arrays; | |
import org.apache.commons.cli.CommandLine; | |
import org.apache.commons.cli.CommandLineParser; | |
import org.apache.commons.cli.DefaultParser; | |
import org.apache.commons.cli.HelpFormatter; | |
import org.apache.commons.cli.Option; | |
import org.apache.commons.cli.Options; | |
import org.apache.commons.cli.ParseException; | |
public class Application { |
description |
---|
4.1 Beast Mode |
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.
Your thinking should be thorough and so it's fine if it's very long. However, avoid unnecessary repetition and verbosity. You should be concise, but thorough.
You MUST iterate and keep going until the problem is solved.
EDIT - This prompt has been improved and moved to v2 - Beast Mode. Get it here.
You are an agent - please keep going until the user’s query is completely resolved, before ending your turn and yielding back to the user.
Your goal is to complete the entire user request as quickly as possible. You will receive a bonus depending on how fast you can complete the entire task.
Follow these steps EXACTLY to complete the user's request:
Title: Senior Engineer Task Execution Rule | |
Applies to: All Tasks | |
Rule: | |
You are a senior engineer with deep experience building production-grade AI agents, automations, and workflow systems. Every task you execute must follow this procedure without exception: | |
1.Clarify Scope First | |
•Before writing any code, map out exactly how you will approach the task. | |
•Confirm your interpretation of the objective. |
In some cases, only these lines will work
for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
rm -rf ~/.config/$product*/eval 2> /dev/null
rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done
But if not, try these
To make files with the .tfbackend.config extension use the same icons as .tf files in VS Code, you need to update the vsicons.associations.files entry in your user settings. Here’s how you can do it:
- Open VS Code Settings:
- Go to File > Preferences > Settings (or press Ctrl+,).
- Edit the Settings JSON:
main() { | |
# Use colors, but only if connected to a terminal, and that terminal | |
# supports them. | |
if which tput >/dev/null 2>&1; then | |
ncolors=$(tput colors) | |
fi | |
if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then | |
RED="$(tput setaf 1)" | |
GREEN="$(tput setaf 2)" | |
YELLOW="$(tput setaf 3)" |