I hereby claim:
- I am tblakex01 on github.
- I am nizdalt (https://keybase.io/nizdalt) on keybase.
- I have a public key whose fingerprint is 10FE 2ED8 1ABD A946 0312 C6B3 6DA5 00CF DB7B C38D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| Config Files Repo : https://github.com/Bearbobs/glorious-awesome-debian | |
| Setps to setup on debain based system as the original author is on arch and It's quite diffrent procedure as compared. | |
| 1.) Awesome and Rofi are quite old in debain repo, Building from Git is required. | |
| Steps to do the same. | |
| ## Awesome-> | |
| sudo apt build-dep awesome | |
| git clone https://github.com/awesomewm/awesome | |
| cd awesome |
This is for Ubuntu 18.04 LTS. TigerVNC is a remote desktop server and viewer solution sponsored by Red Hat that is still in active development. There are packages for it in the repositories of the major distributions, but the latest versions for Ubuntu are broken. My workaround is to use the latest stable version from the TigerVNC project Github release page, where generic binaries for 32 and 64-bit Linux are distributed as tarballs (dmg and exe installers for Mac and Windows are also available).
$ sudo apt remove --purge vnc4server xvnc4viewer
$ sudo aptautoremove
| { | |
| "clients": { | |
| "diagnostic-ls": { | |
| "enabled": true, | |
| "command": [ | |
| "diagnostic-languageserver", | |
| "--stdio" | |
| ], | |
| "selector": "source.python | source.shell", | |
| "initializationOptions": { |
| <!DOCTYPE NETSCAPE-Bookmark-file-1> | |
| <!-- This is an automatically generated file. | |
| It will be read and overwritten. | |
| DO NOT EDIT! --> | |
| <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
| <TITLE>Bookmarks</TITLE> | |
| <H1>Bookmarks</H1> | |
| <DL><p> | |
| <DT><H3 ADD_DATE="1579618265" LAST_MODIFIED="1582022136" PERSONAL_TOOLBAR_FOLDER="true">Bookmarks Bar</H3> | |
| <DL><p> |
| # Must have conda installed | |
| # It costs approximately $0.2 (in GPT-4 API fees) to generate one example with analysis and design, and around $2.0 for a full project. | |
| conda create -n metagpt python=3.11.4 | |
| conda activate metagpt | |
| npm --version # to check you have npm installed | |
| # optional: install node if you don't have it | |
| npm install -g @mermaid-js/mermaid-cli | |
| git clone https://github.com/geekan/metagpt | |
| cd metagpt |
| # ----------------------------------------------------------------------------- | |
| # AI-powered Git Commit Function | |
| # Copy paste this gist into your ~/.bashrc or ~/.zshrc to gain the `gcm` command. It: | |
| # 1) gets the current staged changed diff | |
| # 2) sends them to an LLM to write the git commit message | |
| # 3) allows you to easily accept, edit, regenerate, cancel | |
| # But - just read and edit the code however you like | |
| # the `llm` CLI util is awesome, can get it here: https://llm.datasette.io/en/stable/ | |
| gcm() { |
| import anthropic | |
| import os | |
| import sys | |
| from termcolor import colored | |
| from dotenv import load_dotenv | |
| class ClaudeAgent: | |
| def __init__(self, api_key=None, model="claude-3-7-sonnet-20250219", max_tokens=4000): | |
| """Initialize the Claude agent with API key and model.""" |