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
You are a powerful agentic AI coding assistant, powered by Claude 3.5 Sonnet. You operate exclusively in Cursor, the world's best IDE. | |
You are pair programming with a USER to solve their coding task. | |
The task may require creating a new codebase, modifying or debugging an existing codebase, or simply answering a question. | |
Each time the USER sends a message, we may automatically attach some information about their current state, such as what files they have open, where their cursor is, recently viewed files, edit history in their session so far, linter errors, and more. | |
This information may or may not be relevant to the coding task, it is up for you to decide. | |
Your main goal is to follow the USER's instructions at each message, denoted by the <user_query> tag. | |
<communication> | |
1. Be conversational but professional. |
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 | |
# This script toggles the PulseAudio output sink of the currently active application (guessed by the currently active X window) between the given output sink and the default output sink. | |
# The output sink is passed as first argument to the script. | |
# | |
# Requirements: | |
# | |
# xdotool (on Ubuntu install via "sudo apt install xdotool") | |
# pulsectl ("sudo pip3 install pulsectl") |
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 raku | |
=begin pod | |
=NAME auto_vid_conv | |
=VERSION 1.0.0 | |
=head1 DESCRIPTION | |
Scans current working directory and converts all unconverted mp4 files to specified resolution (e.g. 240p). | |
Converted files are detected by a prefix (e.g. C<240_>). |
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
#!/bin/sh | |
# $XTermId: 16colors.sh,v 1.13 2003/05/19 00:52:30 tom Exp $ | |
# ----------------------------------------------------------------------------- | |
# this file is part of xterm | |
# | |
# Copyright 1999-2002,2003 by Thomas E. Dickey | |
# | |
# All Rights Reserved | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a |
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
[cplayer] Command line options: '-v' '--af=pan=6:[1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,1]' 'vid.webm' | |
[cplayer] mpv 0.28.0 (C) 2000-2017 mpv/MPlayer/mplayer2 projects | |
[cplayer] built on Thu Dec 28 00:34:43 UTC 2017 | |
[cplayer] ffmpeg library versions: | |
[cplayer] libavutil 56.7.100 | |
[cplayer] libavcodec 58.9.100 | |
[cplayer] libavformat 58.3.100 | |
[cplayer] libswscale 5.0.101 | |
[cplayer] libavfilter 7.7.100 | |
[cplayer] libswresample 3.0.101 |
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
/** | |
* QML parser | |
* author: monnef | |
* license: MIT | |
*/ | |
import fs = require('fs'); | |
import * as P from 'parsimmon'; | |
class ImportToken { |
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 clojure | |
(ns yt.core | |
(:require [clojure.java.shell :as sh] | |
[clojure.java.io :as io])) | |
(def home-dir (System/getProperty "user.home")) | |
(def download-dir-suffix "/Downloads/yt") |
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
/** | |
* Udash Option JSON codec for (de)serializing it this way: | |
* Some(x) will be serialized as x. | |
* None will be serialized as null. | |
*/ | |
implicit def optionCodec[T: GenCodec]: GenCodec[Option[T]] = | |
create[Option[T]]( | |
i => i.inputType match { | |
case InputType.Null => | |
i.readNull() |
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 runhaskell | |
{-| | |
Module : JoiFromTypeScript | |
Description : Converts TypeScript interface and type statements to Joi schema generators. | |
Copyright : monnef | |
Maintainer : [email protected] | |
Stability : experimental | |
= Dependencies |
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 util.Random | |
import scalaz._ | |
import Scalaz._ | |
import CustomCondOp._ | |
trait Card { | |
println(s"Constructing ${getClass.getSimpleName}") | |
} | |
class BigCard extends Card |
NewerOlder