CAI> /model 8
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ Model Changed โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Model changed to: gpt-4o โ
โ Note: This will take effect on the next agent interaction โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
CAI> /agent bug_bounter_agent
Switched to agent: Bug Bounter (Parallel mode disabled)
๐ค Bug Bounter (Current Agen
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
# pylint: disable-all | |
""" | |
$ pip install suffix-tree | |
""" | |
from suffix_tree import Tree as SuffixTree | |
WILDCARDS = [ | |
'.', ' ', ',', ':', ';', '"', '(', ')', '[', ']', '{', '}', |
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
async function delay(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)) | |
} | |
const serial = async () => { | |
console.log("Serial sleep!") | |
await delay(5000) | |
await delay(5000) | |
} |
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
#!/usr/bin/env python3 | |
class Bank: | |
def __init__(self): | |
self.accounts = { 'alice': 100 } | |
def withdraw(self, name: str, amount: int): | |
''' Subtract funds from bank account then โง''' ;return | |
self.accounts[account] -= amount |
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
{ | |
"hb.visaissuercert.visa.com": { | |
"CT": true, | |
"CAA": false, | |
"HSTS": true, | |
"DNSSEC": true, | |
"TLS/SSL": true | |
}, | |
"aclaimant.us1app.churnzero.net": { | |
"CT": true, |
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
"[CodePen-Nights]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.parameter.function-call.python", | |
"settings": { | |
"foreground": "#E06C75" | |
} | |
}, | |
{ | |
"scope": "meta.function-call.arguments.python", |
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
"[GitHub Light]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.language.special.self.python", | |
"settings": { | |
"foreground": "#D73A49" | |
} | |
}, | |
{ | |
"scope": [ |
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
[autodisable] | |
DisableWhenMousePluggedIn=true | |
[parameters] | |
InvertVertScroll=true | |
Tapping=true |
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
#include <iostream> | |
class Foo | |
{ | |
public: | |
Foo() {} | |
void method1() | |
{ | |
std::cout << "Foo::method1()" << std::endl; |
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
from django.db import models | |
from django.utils import timezone | |
class Bank(models.Model): | |
bank_ifsc = models.CharField(max_length=200, blank=False, primary_key=True) | |
bank_name = models.CharField(max_length=200, blank=False) | |
bank_addr = models.CharField(max_length=400, blank=True) | |
def __str__(self): |
NewerOlder