It's great for beginners. Then it turns into a mess.
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>
- NEVER use meta-phrases (e.g., "let me help you", "I can see that").
- NEVER summarize unless explicitly requested.
- NEVER provide unsolicited advice.
- NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
- ALWAYS be specific, detailed, and accurate.
# Project Policy | |
This policy provides a single, authoritative, and machine-readable source of truth for AI coding agents and humans, ensuring that all work is governed by clear, unambiguous rules and workflows. It aims to eliminate ambiguity, reduce supervision needs, and facilitate automation while maintaining accountability and compliance with best practices. | |
# 1. Introduction | |
> Rationale: Sets the context, actors, and compliance requirements for the policy, ensuring all participants understand their roles and responsibilities. | |
## 1.1 Actors |
# Pretty simple solution to harness the capability of multithreading without running into problems | |
# caused by doing too many things at once. | |
# In this example, I was trying to download hundreds of web pages, but opening all those connections | |
# simultaneously caused a variety of errors | |
# Contains download_link(link,save_dir,save_name) to download and save webpages locally (irrelevant) | |
require 'download_page' | |
# keep the threads in here |
mysql> select @@GLOBAL.sql_mode; | |
+--------------------------------------------+ | |
| @@GLOBAL.sql_mode | | |
+--------------------------------------------+ | |
| STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION | | |
+--------------------------------------------+ | |
1 row in set (0.00 sec) | |
mysql> SET @@GLOBAL.sql_mode='' | |
-> ; |
let element = document.querySelector('#auto-complete'); | |
let uri = 'https://example.org/search'; | |
let choice = new Choices(element, { | |
removeItemButton: false, | |
itemSelectText: '', | |
shouldSort: false, | |
}); | |
let timer = null; | |
choice.passedElement.addEventListener('search', function (event) { |
The Ruby on Rails Windows Troubleshooting tips & Survival Guide is a random catalogue of issues I faced working with Ruby on Rails on Windows (Windows 7 specifically). This guide is not exhaustive, but covers many of the challenges that causes Windows Ruby developers to jump ship to Linux or Mac. If you're reading this guide then you're probably new to Ruby/Rails, so also included is more general beginner advice to help you get going.
Before you follow this guide, I strongly recommend you consider using Linux or Mac OS X for Ruby Development instead. Looking to prove a point as a challenge, I ignored this strongly given advice while learning Ruby/Rails. While I eventually did succeed in getting Ruby on Rails to work in Windows, it was not easy, and I easily lost 40+ hours on StackOverFlow to Windows/Ruby configuration issues--time I could have devoted to learning more about th