Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:05, 8 March 2025 Iwiseman talk contribs created page File:MVI3.png
- 03:05, 8 March 2025 Iwiseman talk contribs uploaded File:MVI3.png
- 23:25, 7 March 2025 Iwiseman talk contribs created page File:MVI2a.png
- 23:25, 7 March 2025 Iwiseman talk contribs uploaded File:MVI2a.png
- 23:24, 7 March 2025 Iwiseman talk contribs created page Andoroid MVI Example (Created page with "=Introduction= Wanted to revisit the MVI pattern to just have another look using another approach this example uses ktor, an asyncronous client, where I was previously using Retrofit, and Oribit MVI which provides the container and the Store elements. (See Below) =The Pattern= Last time I looked at this we had this diagram<br> For this example I will be using this one<br> 300px")
- 22:30, 7 March 2025 Iwiseman talk contribs created page File:Mvi2.png
- 22:30, 7 March 2025 Iwiseman talk contribs uploaded File:Mvi2.png
- 05:35, 7 March 2025 Iwiseman talk contribs created page Android Compose (Created page with "=Introduction= Been a while since I started looking at Android, I makes me happy to do this. Love the technical aspect. =Starting out= I find it really hard to understand the approach to Alignment when we deal with rows and columns but doing the course on Compose finally makes we think. If you are a column the main axis is down (y-axis). If you are a row you align on the x-axis.")
- 05:06, 6 March 2025 Iwiseman talk contribs created page File:CameraTutorial.png
- 05:06, 6 March 2025 Iwiseman talk contribs uploaded File:CameraTutorial.png
- 02:52, 6 March 2025 Iwiseman talk contribs created page Android CameraX (Created page with "=Introduction= Already had this working for my Food app but this is now broken so watching a tutorial and thought I better take notes =Setupn= Make sure we give permissions in the Manifest <syntaxhighlight lang="xml"> <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-permission android:name="android.permission.CAMERA" /> </syntaxhighlight>")
- 03:23, 2 March 2025 Iwiseman talk contribs created page Android Revisited (Created page with "=Introduction= Well build an app to send photos to my server and show on Web page. Sound simple but so much has changed. =Day 1= Android studio installed with copilot. The studio still seems a tad slow compared to VS Code and finding my way around build.gradle.kts is a bit different with the way it manages version numbers.")
- 05:18, 25 February 2025 Iwiseman talk contribs created page File:Swagger version.png
- 05:18, 25 February 2025 Iwiseman talk contribs uploaded File:Swagger version.png
- 21:04, 24 February 2025 Iwiseman talk contribs created page CSharp Rest API 2 (Created page with "=Introduction= So why two pages. I needed to revisit this and put my thoughts down as things happened =Setup= ==dotnet SDK== This first thing to note is the installing the dotnet SDK is best done via apt. I could not get this to work using snap ==Project Structure== ===Overview=== My plan is to create three projects, Api, Domain and Data in an attempt to try an be more clean about my approach.<br> File:Project structure rest.png<br> ===Directory.Build.props=== To ach...")
- 20:56, 24 February 2025 Iwiseman talk contribs created page File:Project structure rest.png
- 20:56, 24 February 2025 Iwiseman talk contribs uploaded File:Project structure rest.png
- 23:46, 20 February 2025 Iwiseman talk contribs created page File:Project csharp.png
- 23:46, 20 February 2025 Iwiseman talk contribs uploaded File:Project csharp.png
- 05:19, 20 February 2025 Iwiseman talk contribs created page CSharp VSCode (Created page with "=Introduction= This page is to capture the issues using c# with VS Code =SDK Error= So the main purpose of this page<br> 300px<br> Don't like solving problems twice but though MS would have solved it for me. So here we go")
- 05:18, 20 February 2025 Iwiseman talk contribs created page File:SDK Error.png
- 05:18, 20 February 2025 Iwiseman talk contribs uploaded File:SDK Error.png
- 23:53, 16 February 2025 Iwiseman talk contribs created page File:Io action3.png
- 23:53, 16 February 2025 Iwiseman talk contribs uploaded File:Io action3.png
- 23:52, 16 February 2025 Iwiseman talk contribs created page File:Io action2.png
- 23:52, 16 February 2025 Iwiseman talk contribs uploaded File:Io action2.png
- 23:52, 16 February 2025 Iwiseman talk contribs created page File:Io axtion1.png
- 23:52, 16 February 2025 Iwiseman talk contribs uploaded File:Io axtion1.png
- 00:36, 15 February 2025 Iwiseman talk contribs created page File:Btree.png
- 00:36, 15 February 2025 Iwiseman talk contribs uploaded File:Btree.png
- 00:42, 13 February 2025 Iwiseman talk contribs created page File:Point Free Style.png
- 00:42, 13 February 2025 Iwiseman talk contribs uploaded File:Point Free Style.png
- 00:01, 13 February 2025 Iwiseman talk contribs created page File:All curried.png
- 00:01, 13 February 2025 Iwiseman talk contribs uploaded File:All curried.png
- 23:52, 11 February 2025 Iwiseman talk contribs created page File:Tree fmap.png
- 23:52, 11 February 2025 Iwiseman talk contribs uploaded File:Tree fmap.png
- 21:07, 10 February 2025 Iwiseman talk contribs created page Haskell (Created page with "=Introduction= This is my first dip into Haskell, just felt like trying it =Hello World= Here we start with main and strange format but no curly brackets which is good. <syntaxthighlight lang="hs"> main :: IO() main = putStrLn "Hello World" </syntaxthighlight>")
- 04:24, 10 February 2025 Iwiseman talk contribs created page File:Monads.png
- 04:24, 10 February 2025 Iwiseman talk contribs uploaded File:Monads.png
- 01:45, 10 February 2025 Iwiseman talk contribs created page Monads (Created page with "=Introduction= Heard about this with a friend and never really revisited it. With my attention at home on Rust, thought I might write something down =The Maybe Monad= Well possibly the Option monad for me. To make one of these you need <syntaxhighlight lang="hs"> return :: a => Maybe a >>= : Maybe a </syntaxhighlight> =What's the Point= *Same idea works for other effects *Supports pure programming with effects *Use of effects explicit in types *Functions that work for...")
- 22:47, 5 February 2025 Iwiseman talk contribs created page STM32 Driver Creation (Created page with "=STM32 Driver Creation= ==Introduction== This is the start of creating a driver. This is the introd slide where they explained the next few steps.<br> 800px<br> ==Creating a Device Specific Driver File== This is creating a header file which will contain the necessary headers for the peripherals and used in the Application. They suggested this should contain.<br> 600px<br> ===Memory Addresses=== Created...")
- 22:44, 5 February 2025 Iwiseman talk contribs moved page STM32 Page to STM32 Architecture
- 22:40, 5 February 2025 Iwiseman talk contribs created page STM32 C++ Page (Created page with "=Introduction= This page is to capture information relating to C++ and STM32 =Blinky on Steriods= This was a journey to build a blinky for STM32 using this new knowledge of how to build a HAL. Luckily there is always out there. Many thanks for [https://github.com/AFontaine79 AFontaine79]. Lots of experience with this but near to none on arm so the example https://github.com/AFontaine79/stm-blinky put me on by way. <br> Really this is to provide the framework for making...")
- 22:25, 5 February 2025 Iwiseman talk contribs created page STM32 Rust Page (Created page with "=Introduction= This is meant to be a general page for rust when using STM32 ==Install Rust For Embedded== First we install rust. This adds something to ~/.bashrc so rebooting is the quickest way <syntaxhighlight lang="bash"> sudo apt install curl curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh </syntaxhighlight> For stm32 we need the toolchain <syntaxhighlight lang="bash"> rustup target add thumbv7em-none-eabihf cargo install cargo-binutils cargo install c...")
- 22:13, 5 February 2025 Iwiseman talk contribs created page File:Display ubuntu.png
- 22:13, 5 February 2025 Iwiseman talk contribs uploaded File:Display ubuntu.png
- 22:10, 5 February 2025 Iwiseman talk contribs created page STM32 Software Page (Created page with "=Introduction= This is the page for all things STM32. Currently working with a Nucleo F302R8 =Setting Up= This was a trial and a half and here in case some others struggle and find this help.<br> ==STM32CubeIDE (Eclipse)== My goal was to use eclipse because this is what is used in the videos. So with ubuntu 23.04 install went to install this with eclipse. But the eclipse version requires python 2.7 which is no longer available. ==VS Code== Luckily STM32 had brought out a...")
- 22:32, 22 January 2025 Iwiseman talk contribs created page Zig (Created page with "=Introduction= I have dipped my toe into zig. I have done the https://codeberg.org/ziglings/exercises/ ziglings. I found this approach to learn a language quite hard. You do the exercises, but without doing a project straight after I feel I walk away with just an awareness which anyone reading this will say what did you expect<br> What did shock me was the fact I cannot use await/async as it does not work for version 0.14.0-dev.2639+15fe99957<br> I did not like *the...")
- 04:22, 21 January 2025 Iwiseman talk contribs created page File:Variance cal.png
- 04:22, 21 January 2025 Iwiseman talk contribs uploaded File:Variance cal.png