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).
- 00:48, 1 April 2025 Iwiseman talk contribs uploaded File:Simple Rag.png
- 21:13, 31 March 2025 Iwiseman talk contribs created page LLM and Ollama (Created page with "=Introduction= This is a page about ollama and you guest it LLM. I have downloaded several models and got a UI going over them locally. The plan is to build something like Claude desktop in Typescript to Golang. First some theory in Python from [https://youtu.be/GWB9ApTPTv4?si=kP2V0AOANH8rEiDm here]. Here is the problem I am trying to solve.<br> [File:Ollama problem.png|500px]<br>")
- 21:13, 31 March 2025 Iwiseman talk contribs created page File:Ollama problem.png
- 21:13, 31 March 2025 Iwiseman talk contribs uploaded File:Ollama problem.png
- 02:21, 31 March 2025 Iwiseman talk contribs created page File:NVIM LSP.png
- 02:21, 31 March 2025 Iwiseman talk contribs uploaded File:NVIM LSP.png
- 22:43, 30 March 2025 Iwiseman talk contribs created page Lua (Created page with "=Introduction= Had a fling with Neovim so needed to know some of this. Half hour video so should be short =Comments= <syntaxhighlight lang="lua"> -- One Line --Multiline -- </syntaxhighlight>")
- 02:47, 29 March 2025 Iwiseman talk contribs moved page JSON-RPC to JSON-RPC and LSP
- 02:37, 29 March 2025 Iwiseman talk contribs created page JSON-RPC (Created page with "=Introduction= This is probably the quickest thing to put my nose into. So here goes with rust =Rust Example= To get going we need <syntaxhighlight lang="toml"> [dependencies] jsonrpc-core = "18.0.0" jsonrpc-http-server = "18.0.0" serde_json = "1.0.140" </syntaxhighlight> And here is the code. Not must to discuss. The ServerBuilder I thought was pretty cool. <syntaxhighlight lang="rs"> fn main() { let mut io = IoHandler::default(); io.add_method("say_hello", |_p...")
- 23:07, 26 March 2025 Iwiseman talk contribs created page File:Microservices processes.png
- 23:07, 26 March 2025 Iwiseman talk contribs uploaded File:Microservices processes.png
- 22:41, 26 March 2025 Iwiseman talk contribs created page File:Screenshot from 2025-03-27 11-40-38.png
- 22:41, 26 March 2025 Iwiseman talk contribs uploaded File:Screenshot from 2025-03-27 11-40-38.png
- 22:29, 26 March 2025 Iwiseman talk contribs created page File:Deathstar nanoservice.png
- 22:29, 26 March 2025 Iwiseman talk contribs uploaded File:Deathstar nanoservice.png
- 06:28, 26 March 2025 Iwiseman talk contribs created page Ollama (Created page with "=Introduction=")
- 01:31, 26 March 2025 Iwiseman talk contribs created page Microservice Design Patterns (Created page with "=Introduction= This page is to provide an override of microservice design patterns<br> File:Microservices Patterns.png<br> =Database Per Service - Popular= This pattern ensures each microservice has its own database, reducing dependencies and enabling scalability. It prevents cross-service data issues but requires careful synchronization strategies. Widely used in microservices architecture, companies like Netflix and Amazon implement this to ensure service autonomy....")
- 01:21, 26 March 2025 Iwiseman talk contribs created page File:Microservices Patterns.png
- 01:21, 26 March 2025 Iwiseman talk contribs uploaded File:Microservices Patterns.png
- 01:19, 26 March 2025 Iwiseman talk contribs created page File:Microservices Patterns.webp
- 01:19, 26 March 2025 Iwiseman talk contribs uploaded File:Microservices Patterns.webp
- 05:15, 24 March 2025 Iwiseman talk contribs created page BibbleWiki Page (Created page with "=Introduction= This is just a page to keep stuff I learn about wiki =Backup= For this I use mysqldump and backup the entire folder =Overriding Skin= I use vector as my skin. <br> <br> You can amend css <>/MediaWiki:Vector.css<br> <br> You can amend js <>/MediaWiki:Vector.js<br> <br> This is how I get the copy button to work")
- 23:09, 22 March 2025 Iwiseman talk contribs created page MediaWiki:Vector.js (Created page with "All JavaScript here will be loaded for users of the Vector skin: // Add copy buttons to all <syntaxhighlight> blocks document.addEventListener("DOMContentLoaded", () => { document.querySelectorAll("div.mw-highlight").forEach((block) => { const button = document.createElement("button"); button.className = "copy-button"; button.textContent = "Copy"; button.addEventListener("click", () => { const code = block.innerText;...")
- 23:04, 22 March 2025 Iwiseman talk contribs created page Index.php (Created page with "mw-highlight { background-color: #Red; }")
- 23:00, 22 March 2025 Iwiseman talk contribs created page MediaWiki:Vector.css (Created page with "All CSS here will be loaded for users of the Vector skin: mw-highlight {  background-color: #222; }")
- 22:56, 22 March 2025 Iwiseman talk contribs created page User:Iwiseman/vector.css (Created page with "mw-highlight {  background-color: #222; }")
- 22:53, 22 March 2025 Iwiseman talk contribs created page Iwiseman/vector.css (Created page with "mw-highlight { background-color: #222; }")
- 22:23, 22 March 2025 Iwiseman talk contribs created page Test page syntax (Created page with "<syntaxhighlight lang="bash"> wget https://example.com/file.zip unzip file.zip </syntaxhighlight>")
- 22:15, 22 March 2025 Iwiseman talk contribs created page MediaWiki:Common.js (Created page with "Any JavaScript here will be loaded for all users on every page load.: document.addEventListener("DOMContentLoaded", () => { document.querySelectorAll("syntaxhighlight").forEach((block) => { // Create the copy button const button = document.createElement("button"); button.className = "copy-button"; button.textContent = "Copy"; // Add click event to copy the code button.addEventListener("click", () => {...")
- 00:41, 19 March 2025 Iwiseman talk contribs created page Angular Revisited 2025 (Created page with "=Introduction= Been a while since I touched Angular except for when I put my loader into WASM. So this page is just to add any changes I have found =CommonModule= The structural directives, e.g. NgFor NgIf not can be import in the component. I guessing the is because of SSR so now we do this <syntaxhighlight lang="ts"> @Component({ selector: 'app-chess-board', imports: [NgFor, NgClass, NgIf], templateUrl: './chess-board.component.html', styleUrl: './chess-board.c...")
- 22:15, 18 March 2025 Iwiseman talk contribs created page File:Android Dispatcher.png
- 22:15, 18 March 2025 Iwiseman talk contribs uploaded File:Android Dispatcher.png
- 01:52, 18 March 2025 Iwiseman talk contribs created page Android Kotlin Flows (Created page with "=Introduction= This is a page to capture anything important about kotlin flows. This very similar to RxJava =Simple Example= <syntaxhighlight lang="kotlin"> fun fred() { val countDownFlow = flow<Int> { val startingValue = 10 var currentValue = startingValue emit(currentValue) while (currentValue > 0) { delay(1000L) currentValue-- emit(currentValue) }...")
- 01:31, 18 March 2025 Iwiseman talk contribs created page File:Android Architecture1.png
- 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