Luke Else luke-else
luke-else created repository luke-else/sql_latency_test 2023-05-19 11:24:07 +00:00
luke-else pushed to main at luke-else/luke-else.co.uk 2023-05-18 19:53:18 +00:00
a6508e284e Updated website to be more applicable. Removed the contact page which lost functionality.
luke-else pushed to main at luke-else/.config 2023-05-18 12:19:40 +00:00
ee9d362477 Added status line and additional code cleanup
luke-else pushed to main at luke-else/.config 2023-05-18 10:41:05 +00:00
3252348954 Moved inlay hints to the end of line as opposed to the right of the screen
luke-else pushed to main at luke-else/.config 2023-05-18 10:28:50 +00:00
bbdd171b77 Updated require method for inlay hints
luke-else pushed to main at luke-else/.config 2023-05-18 10:27:19 +00:00
ca94e7d106 Moved Inlay hints out of attach function
luke-else pushed to main at luke-else/.config 2023-05-18 10:23:19 +00:00
c4dd699f9d Corrected mispelled package name
luke-else pushed to main at luke-else/.config 2023-05-18 10:21:07 +00:00
ece83c7ea5 Attach inlay hints on lsp attach
luke-else pushed to main at luke-else/.config 2023-05-18 10:13:26 +00:00
e99496fd2b Added inlay hints to neovim
luke-else pushed to master at luke-else/subnet_calculator 2023-05-15 21:27:57 +00:00
30344b0605 Cleaned up some minor issues in main.rs making the final output easier for the end user to read and comprehend
luke-else closed issue luke-else/subnet_calculator#1 2023-05-15 19:50:30 +00:00
Addition / XOR of IP addresses
luke-else commented on issue luke-else/subnet_calculator#1 2023-05-15 19:50:29 +00:00
Addition / XOR of IP addresses

Implemented in #2 by converting IPs to u32 and adding an additional u32 to each address to get the full range of subnets

luke-else closed issue luke-else/subnet_calculator#2 2023-05-15 19:49:42 +00:00
Overflow when borrowed network bits >= 8 bits
luke-else commented on issue luke-else/subnet_calculator#2 2023-05-15 19:49:39 +00:00
Overflow when borrowed network bits >= 8 bits

This appears to be fully functional now :) Yayyyyy

luke-else commented on issue luke-else/subnet_calculator#3 2023-05-15 19:48:53 +00:00
Update from_arr and to_arr

And because of our current implementation and reliance of us being able to refuse IPv6 Addresses, it would be quite a large and complex change to get this to work.

luke-else commented on issue luke-else/subnet_calculator#3 2023-05-15 19:46:55 +00:00
Update from_arr and to_arr

Doing so would currently create a stack overflow because of a cross dependency between u32::from(IpAddr) and the IpAddr::to_arr() function

luke-else pushed to master at luke-else/subnet_calculator 2023-05-15 19:26:54 +00:00
625233ab86 #2 Completed the implementation of create_subnet function, all subnet network addresses are now ALL correctly appended to the vector. Would like to add some more resilient unit testing at some point down the line to verify the accuracy / robustness of the function
luke-else pushed to master at luke-else/subnet_calculator 2023-05-15 18:51:28 +00:00
8c88d7945a #2 Added IpAddr from u32 function. Finally ready to integrate it into subnet calculation
luke-else opened issue luke-else/subnet_calculator#3 2023-05-15 18:45:48 +00:00
Update from_arr and to_arr
luke-else pushed to master at luke-else/subnet_calculator 2023-05-15 18:35:11 +00:00
6a4573450c #2 Made IpAddr to u32 function more efficient by using big endian functions built into rust