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
| using System.Linq; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace StatisticalLinq | |
| { | |
| [TestClass] | |
| public class VarianceTest | |
| { | |
| [TestMethod] | |
| public void VarianceOf10Numbers() |
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
| namespace MyFriends; | |
| fact Individual { | |
| key: | |
| string anonymousId; | |
| query: | |
| Friend* friends { | |
| Friend f : f.individual = this | |
| } |
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
| choco install beyondcompare | |
| choco install TimRayburn.GitAliases | |
| choco install gittfs | |
| choco install mysql | |
| choco install mysql.workbench | |
| choco install notepadplusplus | |
| choco install paint.net | |
| choco install windirstat | |
| choco install ruby | |
| choco install fiddler |
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
| Install-WindowsUpdate -acceptEula |
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
| public static class DbSetExtensions | |
| { | |
| public static void AddOrUpdateFaster<TEntity>( | |
| this DbSet<TEntity> set, | |
| Expression<Func<TEntity, int>> identifierExpression, | |
| IEqualityComparer<TEntity> entityComparer, | |
| params TEntity[] entities) | |
| where TEntity : class | |
| { | |
| var identifierFunction = identifierExpression.Compile(); |
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
| git config --global alias.a 'add -A' | |
| git config --global alias.b 'branch' | |
| git config --global alias.c 'checkout' | |
| git config --global alias.cb 'checkout -b' | |
| git config --global alias.d 'diff' | |
| git config --global alias.f 'fetch' | |
| git config --global alias.l 'log --pretty=oneline --abbrev-commit' | |
| git config --global alias.r 'rebase --interactive HEAD~10' | |
| git config --global alias.s '-p status' |
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
| cat package.json | jq -r '.dependencies | keys | map(select(startswith("gatsby")) | "\(.)@latest") | join(" ")' | xargs npm | |
| i |
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
| --- | |
| description: "Documentation structure standards for organizing project documentation into logical sections including implementation plans, technical architecture, user guides, and setup documentation. Emphasizes critical plan file requirements with progress tracking, checklists, phased work breakdowns, and project management focus. Includes file naming conventions, markdown formatting standards, content organization guidelines, and version control practices for maintaining documentation quality." | |
| alwaysApply: true | |
| --- | |
| # Documentation Structure and Standards | |
| ## Overview | |
| The `/docs` folder contains comprehensive documentation for the project, organized into logical sections for different types of documentation and audiences. | |
| ## Documentation Structure |
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
| --- | |
| alwaysApply: false | |
| --- | |
| # Implementation Rule | |
| ## Requirements | |
| Review the mentioned section of the plan against the current application as implemented. Identify any issues, inconsistencies, or points of confusion. | |
| ## Clarification Process | |
| If the instructions are unclear: |
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 | |
| """ | |
| Script to fix frontmatter placement issues in .mdc files within .cursor/rules directory. | |
| Moves misplaced frontmatter from the bottom of files to the top where it belongs. | |
| """ | |
| import os | |
| import re | |
| import shutil | |
| from pathlib import Path |
OlderNewer