From 8fd2a381b8debb4b485f675d2f76be4c208052ee Mon Sep 17 00:00:00 2001
From: Nicholas Orlowsky A collection of my thoughts, some of them may be interesting [ Side Project Log 8/15/23 ] - August 15th, 2023 [ Side Project Log 8/08/23 ] - August 8th, 2023 [ Side Project Log 7/12/23 ] - July 12th, 2023 [ Side Project Log 4/29/23 ] - April 29th, 2023 [ Side Project Log 3/27/23 ] - March 27th, 2023 In .NET 6, the Blog
NativeMemory
class was introduced which you can read about here. It allows for malloc-like memory allocation and freeing which can be important for high-performance workloads.
diff --git a/out/projects.html b/out/projects.html index 779d3d6..d062fa8 100644 --- a/out/projects.html +++ b/out/projects.html @@ -17,6 +17,7 @@
Nick Web Services is a cloud infrastructure provider service that I created and run. @@ -33,6 +34,7 @@
CavCash was a company that I founded which built a debit-based payment system similar to @@ -53,16 +55,30 @@
SQUIRREL stands for SQL Query Util-Izing Rust's Reliable and Efficient Logic. It is a SQL database - that I am writing in Rust. Currently, it can parse CREATE TABLE commands, and works with the - data types varchar and int. I plan to implement basic CRUD operations, then add JOINs, and then - try to make it wire-compatible with Postgres. + that I am writing in Rust. Currently, it can create tables, insert data into tables, and select all + data from a given table. The biggest challenge so far has been writing the parser. My next steps are + to add WHERE clauses to SELECT statements, allow column filtering in SELECT statements, and add DELETE + statements. +
++ Olney is a job application tracker that aims to be better than using a Trello board or a spreadsheet. + It allows users to create jobs and log custom events such as interviews, assessments, and other communication.
SEPTA Site is a website that I created which can get your trip history, SEPTA Key balance, diff --git a/src/blogs/doing-c-assignments-in-csharp.filler.html b/src/blogs/doing-c-assignments-in-csharp.filler.html index d0a8fee..e39c224 100644 --- a/src/blogs/doing-c-assignments-in-csharp.filler.html +++ b/src/blogs/doing-c-assignments-in-csharp.filler.html @@ -50,3 +50,8 @@ unsafe }
In .NET 6, the NativeMemory
class was introduced which you can read about here. It allows for malloc-like memory allocation and freeing which can be important for high-performance workloads.
+
{
isRecruiting: bool, // is the message about recruiting?
recruitingInfo: null | {
@@ -33,7 +33,7 @@
name: string // Name of event, giving more detail to type
} // null if message is not about recruiting, fill with values if it is
}
-
+
Olney then takes some details from this data, namely: company, position, and location and then uses the OpenAI API to generate @@ -54,3 +54,7 @@
These projects had minimal/no work done on them: NWS, RingGold, SQUIRREL
+ + + + \ No newline at end of file diff --git a/src/projects.filler.html b/src/projects.filler.html index 9d8e012..1221c39 100644 --- a/src/projects.filler.html +++ b/src/projects.filler.html @@ -51,6 +51,16 @@ statements.+ Olney is a job application tracker that aims to be better than using a Trello board or a spreadsheet. + It allows users to create jobs and log custom events such as interviews, assessments, and other communication. +
+