Skip to content

Commit 5534724

Browse files
1rhino2web-flow
authored andcommitted
Update repository URL in README
1 parent 8734f4b commit 5534724

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ Contributions welcome! Please:
410410
### Development Setup
411411

412412
```bash
413-
git clone https://github.com/yourusername/go-memory-visualizer.git
413+
git clone https://github.com/1rhino2/go-memory-visualizer.git
414414
cd go-memory-visualizer
415415
npm install
416416
npm run compile

docs/examples.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66

7-
<!-- SEO Meta Tags -->
7+
<!-- SEO -->
88
<meta name="description" content="Real-world Go struct optimization examples. See before and after comparisons showing 10-30% memory savings for User profiles, API responses, database records, configuration structs, and network packets.">
99
<meta name="keywords" content="go struct examples, golang memory optimization examples, go padding examples, struct field ordering examples, golang struct optimization code, go memory layout examples, reduce go struct size">
1010
<meta name="author" content="RhinoSoftware">
1111
<meta name="robots" content="index, follow">
1212
<link rel="canonical" href="https://1rhino2.github.io/go-memory-visualizer/examples.html">
1313

14-
<!-- Open Graph -->
14+
<!-- OG -->
1515
<meta property="og:type" content="article">
1616
<meta property="og:url" content="https://1rhino2.github.io/go-memory-visualizer/examples.html">
1717
<meta property="og:title" content="Go Struct Optimization Examples - Before & After">
@@ -23,7 +23,7 @@
2323
<meta name="twitter:title" content="Go Struct Optimization Examples">
2424
<meta name="twitter:description" content="Real-world Go struct optimization examples with 10-30% memory savings.">
2525

26-
<!-- Schema.org -->
26+
<!-- Schema -->
2727
<script type="application/ld+json">
2828
{
2929
"@context": "https://schema.org",

docs/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66

7-
<!--SEO Meta Tags -->
7+
<!-- SEO -->
88
<meta name="description" content="Go Memory Layout Visualizer - Optimize Go struct memory layout with real-time visualization. Reduce memory usage by 10-30% with automatic field reordering, padding detection, and multi-architecture support for amd64, arm64, and 386.">
99
<meta name="keywords" content="go memory layout, golang struct optimization, go padding alignment, vscode go extension, golang memory profiling, struct field ordering, go performance optimization, golang memory visualization, go struct analyzer, reduce go memory usage, golang development tools, go struct padding calculator, memory efficient go, golang struct size, go architecture amd64 arm64">
1010
<meta name="author" content="RhinoSoftware">
@@ -15,7 +15,7 @@
1515
<meta name="rating" content="general">
1616
<link rel="canonical" href="https://1rhino2.github.io/go-memory-visualizer/">
1717

18-
<!-- Open Graph / Facebook -->
18+
<!-- OG -->
1919
<meta property="og:type" content="website">
2020
<meta property="og:url" content="https://1rhino2.github.io/go-memory-visualizer/">
2121
<meta property="og:title" content="Go Memory Layout Visualizer - Optimize Struct Memory in VS Code">
@@ -33,7 +33,7 @@
3333
<meta name="twitter:description" content="Reduce Go struct sizes by 10-30% with real-time memory layout visualization. One-click optimization for amd64, arm64, and 386.">
3434
<meta name="twitter:image" content="https://1rhino2.github.io/go-memory-visualizer/og-image.png">
3535

36-
<!-- Schema.org Structured Data -->
36+
<!-- Schema -->
3737
<script type="application/ld+json">
3838
{
3939
"@context": "https://schema.org",
@@ -72,7 +72,7 @@
7272
}
7373
</script>
7474

75-
<!-- FAQ Schema -->
75+
<!-- FAQ -->
7676
<script type="application/ld+json">
7777
{
7878
"@context": "https://schema.org",
@@ -241,7 +241,7 @@ <h3>Export Reports</h3>
241241
</div>
242242
</section>
243243

244-
<!-- Interactive Memory Calculator Section -->
244+
<!-- Calculator -->
245245
<section id="calculator" class="calculator-section">
246246
<div class="container">
247247
<h2 class="section-title">Memory Layout Calculator</h2>
@@ -444,7 +444,7 @@ <h4>Why Memory Layout Matters</h4>
444444
</div>
445445
</section>
446446

447-
<!-- FAQ Section for SEO -->
447+
<!-- FAQ -->
448448
<section id="faq" class="faq-section">
449449
<div class="container">
450450
<h2 class="section-title">Frequently Asked Questions</h2>

docs/performance.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66

7-
<!-- SEO Meta Tags -->
7+
<!-- SEO -->
88
<meta name="description" content="Learn how Go struct memory layout affects performance. Understand CPU cache lines, memory alignment rules for amd64/arm64/386, and best practices for optimizing Go struct field ordering.">
99
<meta name="keywords" content="go memory performance, golang struct optimization, cpu cache lines, memory alignment go, golang performance tuning, struct field ordering go, go memory model, golang cache locality">
1010
<meta name="author" content="RhinoSoftware">
1111
<meta name="robots" content="index, follow">
1212
<link rel="canonical" href="https://1rhino2.github.io/go-memory-visualizer/performance.html">
1313

14-
<!-- Open Graph -->
14+
<!-- OG -->
1515
<meta property="og:type" content="article">
1616
<meta property="og:url" content="https://1rhino2.github.io/go-memory-visualizer/performance.html">
1717
<meta property="og:title" content="Go Struct Memory Performance Guide">
@@ -23,7 +23,7 @@
2323
<meta name="twitter:title" content="Go Struct Memory Performance Guide">
2424
<meta name="twitter:description" content="Learn how memory layout affects Go application performance. CPU cache optimization, alignment rules, and benchmarking tips.">
2525

26-
<!-- Schema.org -->
26+
<!-- Schema -->
2727
<script type="application/ld+json">
2828
{
2929
"@context": "https://schema.org",

0 commit comments

Comments
 (0)