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).
- 02:08, 20 April 2025 Iwiseman talk contribs uploaded File:Prob2.png
- 02:04, 20 April 2025 Iwiseman talk contribs created page File:Proba1.png
- 02:04, 20 April 2025 Iwiseman talk contribs uploaded File:Proba1.png
- 00:27, 20 April 2025 Iwiseman talk contribs created page File:Knn output.png
- 00:27, 20 April 2025 Iwiseman talk contribs uploaded File:Knn output.png
- 00:19, 20 April 2025 Iwiseman talk contribs created page File:K nearest neighbour.png
- 00:19, 20 April 2025 Iwiseman talk contribs uploaded File:K nearest neighbour.png
- 23:42, 19 April 2025 Iwiseman talk contribs created page File:ML loss.png
- 23:42, 19 April 2025 Iwiseman talk contribs uploaded File:ML loss.png
- 23:15, 19 April 2025 Iwiseman talk contribs created page Machine Learning Course (Created page with "=Introduction= This is to capture some terms in machine learning course<br> 400px =Terms=")
- 23:15, 19 April 2025 Iwiseman talk contribs created page File:ML pic.png
- 23:15, 19 April 2025 Iwiseman talk contribs uploaded File:ML pic.png
- 22:09, 15 April 2025 Iwiseman talk contribs created page Wordpress (Created page with "=Information= This page is to capture things about wordpress to help my gorgeous wifey =Nginx= This is to capture the setup for nginx and wordpress ==Example 1 wordpress.example.com== Here we have an example where we use the domain name no subfolder <syntaxhighlight lang="nginx"> server { listen 9080; server_name wordpress.example.com; root /var/www/wordpress; index index.php; server_tokens off; access_log /var/log/nginx/wordpress_access.log; error_...")
- 03:32, 10 April 2025 Iwiseman talk contribs created page Setting up a Gitea server (Created page with "=Set up a MYSQL Database= Make sure you are listening on 0.0.0.0 and not localhost. <syntaxhighlight "bash"> CREATE DATABASE gitea_db; CREATE USER 'gitea_admin'@'you network IP' IDENTIFIED BY 'not saying'; GRANT ALL PRIVILEGES ON gitea_db.* TO 'gitea_admin'@'you network IP' WITH GRANT OPTION; </syntaxhighlight> =Gitea Setup= <syntaxhighlight "bash"> # Get Software wget -O gitea https://dl.gitea.com/gitea/1.23.7/gitea-1.23.7-linux-amd64 # Add Git User sudo adduser --sy...")
- 03:55, 2 April 2025 Iwiseman talk contribs created page Web Site Building (Created page with "=Introduction= This is a page for capturing thing that are website related =Dark Mode= When looking at implementing this be aware there is system, light and dark usually. Only if you go incognito do does the get switched off. I think it is held in LocalStorage somewhere =Sites= ==Components== Aceternity is a good place for NextJS components. You get the code and can change the components yourself. https://ui.aceternity.com/ here ==Generating Gradients== Go here to ge...")
- 00:48, 1 April 2025 Iwiseman talk contribs created page File:Simple Rag.png
- 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