Rahul TR@blog : ~/posts
3 posts
$
sort:
view:
Terminal Commands
Navigation
cd <category> - Navigate to categorycd .. - Go back to all categoriescd ~ - Go to home (all posts)Listing & Sorting
ls - List itemsls -lt - Sort by time (newest first)ls -ltr - Sort by time (oldest first)ls -lS - Sort by sizels -la - Expand all detailsFiltering
grep <term> - Search in titles/contentclear - Clear filtersTips
• Use Tab for autocomplete• Press Ctrl+K to focus command bar
• Click buttons in control bar for quick actions
./
0 items
SharpFocus/ 3 posts
04:30
SharpFocus Part 1: Understanding Code Through Data Flow
10 min read · 1882 words
### The Dependency Problem Consider this C# code: ```csharp public class OrderProcessor { private Order? _currentOrder; private readonly IOrderRepository _repository; private readonly IOrderCache _cache; public OrderProcessor(IOrderRepository repository, IOrderCache cache) { _repository = repository; _cache = cache; } public async Task…
#csharp #roslyn #static-analysis #program-slicing #dataflow
1882w
05:30
SharpFocus Part 2: The Analysis Engine
12 min read · 2388 words
**Part 2 of 3** in the [SharpFocus](https://github.com/trrahul/SharpFocus) series. Read [Part 1: Understanding Code Through Data Flow](/posts/part1-getting-started/) first if you haven't already. The first article introduced program slicing and demonstrated its applications. This article examines the analysis engine that makes slicing…
#csharp #roslyn #static-analysis #control-flow #dataflow-analysis
2388w
06:30
SharpFocus Part 3: Advanced Analysis Techniques
9 min read · 1750 words
**Part 3 of 3** in the [SharpFocus](https://github.com/trrahul/SharpFocus) series. Read [Part 1: Understanding Code Through Data Flow](/posts/part1-getting-started/) and [Part 2: The Analysis Engine](/posts/part2-core-technology/) first. The previous articles introduced program slicing and examined the core analysis techniques. This final article explores advanced…
#csharp #roslyn #static-analysis #transfer-functions #interprocedural
1750w
06:30
SharpFocus Part 3: Advanced Analysis Techniques
13 min read · 2472 words
Part 3 of 3 in the SharpFocus series. Read Part 1: Understanding Code Through Data Flow and Part 2: The Analysis Engine first.
#csharp #roslyn #static-analysis #transfer-functions #interprocedural
2472w
05:30
SharpFocus Part 2: The Analysis Engine
16 min read · 3098 words
Part 2 of 3 in the SharpFocus series. Read Part 1: Understanding Code Through Data Flow first if you haven’t already.
#csharp #roslyn #static-analysis #control-flow #dataflow-analysis
3098w
04:30
SharpFocus Part 1: Understanding Code Through Data Flow
13 min read · 2522 words
The Dependency Problem
#csharp #roslyn #static-analysis #program-slicing #dataflow
2522w
No results found
Try adjusting your query or clearing filters.