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).
- 01:31, 18 March 2025 Iwiseman talk contribs uploaded File:Android Architecture1.png
- 05:16, 17 March 2025 Iwiseman talk contribs created page File:Claude1.png
- 05:16, 17 March 2025 Iwiseman talk contribs uploaded File:Claude1.png
- 03:34, 17 March 2025 Iwiseman talk contribs created page Model Context Protocol (MCP) (Created page with "=Introduction= This is my first foray into MCPs which works =Clients= *Claude *Claude Code *Cursor *Windsurf =Servers= Example server site is [https://github.com/appcypher/awesome-mcp-servers awesome-mcp-servers]")
- 22:47, 12 March 2025 Iwiseman talk contribs created page Dagger Hilt (Created page with "=Introduction= This page is to summarize new Dagger Hilt =Configuration= Dagger hilt relies on kotlin-kapt and dagger.hilt.android.plugin <syntaxhighlight lang="groovy"> plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'dagger.hilt.android.plugin' } dependencies { implementation "com.google.dagger:hilt-android:2.40.5" kapt "com.google.dagger:hilt-compiler:2.40.5" implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alph...")
- 22:35, 12 March 2025 Iwiseman talk contribs moved page Dagger to Dagger 2
- 03:19, 11 March 2025 Iwiseman talk contribs created page File:MVI6.png
- 03:19, 11 March 2025 Iwiseman talk contribs uploaded File:MVI6.png
- 03:22, 10 March 2025 Iwiseman talk contribs created page Kotlin 2025 (Created page with "=Introduction= It has been a while since I last looked at Kotlin. I think I am still and rust fan but always loved Kotlin on the phone. It is probably 4 years and one stroke since I looked at this and my little grey cells need a refresh =Compose= I have covered this a bit in Android Compose Example Surely a major improvement =MVI= I have used MvvM in the past but MVI now looks to be a better choice for me at the moment. You would have to have done a lot of projects t...")
- 01:24, 10 March 2025 Iwiseman talk contribs created page File:Mvi5.png
- 01:24, 10 March 2025 Iwiseman talk contribs uploaded File:Mvi5.png
- 03:15, 9 March 2025 Iwiseman talk contribs created page Android Compose Example (Created page with "=Introduction= I thought it might be better to just show and example from the net to give me enough to get going. Can't help but think of Flexbox when doing this. Wanted to cover *One Page *Permissions =One Page= The one page looks like this.<br> 300px<br> This was broken up into *The Main Activity **WeatherCard (The Square Bit) ***WeatherDataDisplay (Bottom of the Weather Card ==The Main Activity== <syntaxhighlight lang="kotlin"> Wea...")
- 03:07, 9 March 2025 Iwiseman talk contribs created page File:WeatherApp.png
- 03:07, 9 March 2025 Iwiseman talk contribs uploaded File:WeatherApp.png
- 03:13, 8 March 2025 Iwiseman talk contribs created page File:OrbitMVI.png
- 03:13, 8 March 2025 Iwiseman talk contribs uploaded File:OrbitMVI.png
- 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