Discover gists
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
<!DOCTYPE html><html style="height: 100%; width: 100%;" id="ext-element-4" class="x-viewport"><head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes"> | |
<link rel="shortcut icon" type="image/ico" href="/resources/images/favicon.png"> | |
<title>REIFax</title> | |
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
[ | |
{ | |
"id": "ID001", | |
"name": "Ricarth", | |
"lastName": "Lima", | |
"balance": 113.0 | |
}, | |
{ | |
"id": "ID002", | |
"name": "Ana", |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\rember.nupkg" checksum="4F2918D76E4E6360C9C3B653982A4F09" /> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\rember.nuspec" checksum="32CBC9F7EC5C1ED21BFAA109459CD49D" /> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\tools\LICENSE.txt" checksum="B0EF7C91FF396227746058278EE17913" /> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\tools\README.md" checksum="DDD24E45759503EB6EFFB6963FE4CB27" /> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\tools\Rember.exe" checksum="5501E5041173AB63D2EF64E0D62069EE" /> | |
<file path="C:\ProgramData\chocolatey\lib\Rember\tools\VERIFICATION.txt" checksum="63C12A3382D791FBBFCF4512E515B5B2" /> | |
</files> |
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
# claude-code-prompt | |
This is my Claude Code system prompt (What I put in my `CLAUDE.md` file). | |
This is an always evolving work-in-progress that is based on my own experience with software development, and my experience working with Claude Code and other similar systems. | |
It tries to proactively instill certain behaviours into the AI so that you can develop software that is easier to maintain, and have less frustrating experiences with Claude Code. | |
The prompt itself is pretty generic and will work well with other AI tools like Cline, Roo Code, without any major changes. |
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
<cfdump var="#getMetaData({foo:"bar"})#"> |
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
import numpy as np | |
import rasterio | |
from rasterio.windows import Window | |
from tqdm import tqdm | |
import argparse | |
import os | |
import torch | |
import pandas as pd | |
import torchvision.transforms as T | |
import matplotlib.pyplot as plt |
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
{ | |
"success": true, | |
"credits_left": 99, | |
"rate_limit_left": 99, | |
"person": { | |
"publicIdentifier": "arstan-bektemirov", | |
"linkedInIdentifier": "ACoAADyAFlwBvQSbOQrEhi0hJmzhe5y0iF_aIbk", | |
"memberIdentifier": "1015027292", | |
"linkedInUrl": "https://www.linkedin.com/in/arstan-bektemirov", | |
"firstName": "Arstanbek", |
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
import Foundation | |
private import SQLite3 | |
struct SQLiteDB: ~Copyable { | |
private var handle: OpaquePointer | |
init(url: URL) throws { | |
handle = try url.withUnsafeFileSystemRepresentation { | |
var handle: OpaquePointer? | |
let error = sqlite3_open($0, &handle) |
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
const { createCanvas, loadImage } = require("canvas"); | |
const fs = require("fs"); | |
const path = require("path"); | |
module.exports = { | |
config: { | |
name: "uptime", | |
aliases: ["up", "upt"], | |
version: "2.1", | |
author: "MaHi + Ariyan + ChatGPT", |
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
const axios = require("axios"); | |
module.exports.config = { | |
name: "gpt", | |
aliases: [], | |
version: "1.0.0", | |
author: "Redwan + Saim", | |
countDown: 0, | |
role: 0, | |
description: "Simple GPT bot like baby command", |
NewerOlder