Skip to content

Commit

Permalink
Merge pull request #1 from jp2images/working
Browse files Browse the repository at this point in the history
Working
  • Loading branch information
jp2images authored Feb 18, 2025
2 parents c6213be + 2535587 commit a184c0f
Show file tree
Hide file tree
Showing 25 changed files with 1,211 additions and 37 deletions.
13 changes: 13 additions & 0 deletions .idea/.idea.JeffPatterson.dev/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/.idea.JeffPatterson.dev/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/.idea.JeffPatterson.dev/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.JeffPatterson.dev/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1,026 changes: 1,026 additions & 0 deletions .idea/config/applicationhost.config

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions .run/JeffPatterson.dev.Client_ https.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="JeffPatterson.dev.Client: https" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/JeffPatterson.dev/Client/JeffPatterson.dev.Client.csproj" />
<option name="LAUNCH_PROFILE_TFM" value="net7.0" />
<option name="LAUNCH_PROFILE_NAME" value="https" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
<option name="USE_MONO" value="0" />
<option name="RUNTIME_ARGUMENTS" value="" />
<option name="GENERATE_APPLICATIONHOST_CONFIG" value="1" />
<option name="SHOW_IIS_EXPRESS_OUTPUT" value="0" />
<option name="SEND_DEBUG_REQUEST" value="1" />
<option name="ADDITIONAL_IIS_EXPRESS_ARGUMENTS" value="" />
<method v="2">
<option name="Build" />
</method>
</configuration>
</component>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions JeffPatterson.dev/Client/.idea/.idea.Client.dir/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions JeffPatterson.dev/Client/JeffPatterson.dev.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.3" PrivateAssets="all" />
<PackageReference Include="Radzen.Blazor" Version="4.7.9" />
</ItemGroup>
Expand Down
18 changes: 4 additions & 14 deletions JeffPatterson.dev/Client/Pages/About.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,8 @@

<h3>About</h3>

<p>
This is a website dedicated to all the things that I am interested in and
wish to keep notes available. So, it is a living document that is a continuous
work in progress.
</p>
<p>
I am a developer, a maker, and a sometime photographer. I enjoy learning
and experimenting in other languages such as C, C++, and Python. So don't
expect much of this site except perhaps to be filled with a lot of half baked
information. However, IRL, I am a C# developer working on LOB applications
that are used internally by the company I work for.
</p>
<p>@AboutWebsite</p>
<p>@AboutMe</p>

<br />
<br />
Expand All @@ -32,7 +22,7 @@
Text="Blazor" /> and
<RadzenLink Path="https://dotnet.microsoft.com/en-us/download/dotnet/7.0"
Target="_blank"
Text=".NET Core 7.0." /> It is hosted on Azure as a
Text=".NET Core 9.0." /> It is hosted on Azure as a
<RadzenLink Path="https://azure.microsoft.com/en-gb/products/app-service/static/"
Target="_blank"
Text="Static Web App" />, and you can learn more about it in the documentation
Expand All @@ -45,4 +35,4 @@
<RadzenLink Path="https://blazor.radzen.com/"
Target="_blank"
Text="Radzen" /> for Blazor component library.
</p>
<p/>
12 changes: 12 additions & 0 deletions JeffPatterson.dev/Client/Pages/About.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,17 @@
{
public partial class About
{

public readonly string AboutWebsite = "This is a website dedicated to all the things I find interesting and"
+ " wish to keep notes available. So, it is a living document that is a"
+ " continuous work in progress. I hope that you also might find it"
+ " interesting.";

public readonly string AboutMe = "I am a developer, a maker, and a sometime photographer. I enjoy learning"
+ " and experimenting in other languages such as C#, C, C++, JS, and Python "
+ " with a lot of half baked information. However, IRL, I am a C# developer"
+ " working on LOB applications that are used internally by the company I"
+ " and others. So don't expect much of this site except perhaps to be filled"
+ " work for.";
}
}
6 changes: 1 addition & 5 deletions JeffPatterson.dev/Client/Pages/Embedded.razor
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
@page "/embedded"

<PageTitle>Embedded</PageTitle>

<h1>Embedded Systems Programming</h1>

<p role="status">Current count: @_currentCount</p>

<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>

<RadzenLink Path="https://qmk.fm/" Text="Embedded Development Resources" Target="_blank" />

5 changes: 0 additions & 5 deletions JeffPatterson.dev/Client/Pages/Embedded.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
{
public partial class Embedded
{
private int _currentCount = 0;

private void IncrementCount()
{
_currentCount++;
}
}
}
4 changes: 2 additions & 2 deletions JeffPatterson.dev/Client/Pages/Index.razor
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@page "/"
@page "/home"
@page "/main"
@page "/index"

<PageTitle>Home</PageTitle>
<PageTitle>Main</PageTitle>

<h1>Hello, world!</h1>



Expand Down
9 changes: 7 additions & 2 deletions JeffPatterson.dev/Client/Pages/QmkFirmware.razor
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
@page "/qmk"

<PageTitle>QMK Firmware</PageTitle>

<h1>QMK Firmware Stuff</h1>


https://qmk.fm/
<div>
<RadzenLink Path="https://qmk.fm/"
Target="_blank"
Text="QMK External Documentation"/>
<RadzenIcon Icon="open_in_new"
style="font-weight: 50; align-items: center; Ico"/>
</div>
2 changes: 1 addition & 1 deletion JeffPatterson.dev/Client/Shared/NavMenu.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
color: white;
}

@media (min-width: 2048px) {
@media (min-width: 1080px) {
.navbar-toggler {
display: none;
}
Expand Down
26 changes: 26 additions & 0 deletions JeffPatterson.dev/Client/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,29 @@ a, .btn-link {
.loading-progress-text:after {
content: var(--blazor-load-percentage-text, "Loading");
}

/* Additional settings added by Jeff Patterson */
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;

/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;

/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;

/* Support for IE. */
font-feature-settings: 'liga';
}
2 changes: 1 addition & 1 deletion JeffPatterson.dev/Server/JeffPatterson.dev.Server.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<PageTitle>Resume'</PageTitle>


<center><h1>Jeff Patterson</h1>
<div style="text-align: center;">
<h1>Jeff Patterson</h1>
Ankeny, IA 50023
<br />
<a href="mailto:[email protected]">jeff@jeffpatterson.dev</a>
</center>
<br/>
<a href="mailto:[email protected]">jeff@jeffpatterson.dev</a>
</div>

<p>
<h2>Professional Summary</h2>
Expand Down
2 changes: 1 addition & 1 deletion JeffPatterson.dev/Shared/JeffPatterson.dev.Shared.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down

0 comments on commit a184c0f

Please sign in to comment.