Search

You can find the results of your search below.

Fulltext results:

Repurpose Old Printers Using a Raspberry Pi @en:blog:2025:01:20
38 Hits, Last modified:
ted to your local network, use SSH to access it: <code bash> ssh <username>@<RaspberryPi_IP_Address> </code> //(Replace ''<RaspberryPi_IP_Address>'' with the ... cally ''pi''.)// Update and upgrade the system: <code bash> sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y </code> Then, install required packages: <code bash> su
Git --- Let's talk about it @en:blog:2024:11:07
17 Hits, Last modified:
ontrol system that lets you track changes in your code. Created by Linus Torvalds in 2005, Git has becom... ts. * It lets you keep track of changes in your code over time. * It makes collaboration with others... running the following command in your terminal: <code bash> git init </code> This will create a new repository in the current directory. You can then start
How to Check a Hard Drive Health from the Command-Line @en:blog:2024:02:01
14 Hits, Last modified:
ckage manager. For Ubuntu/Debian-based systems: <code bash> sudo apt update sudo apt install smartmontools </code> For Fedora/RHEL-based systems: <code bash> sudo dnf install smartmontools </code> For Arch Linux: <code bash> sudo pacman -S smartmontools
How to Install DokuWiki on a LAMP Server @en:blog:2023:12:18
12 Hits, Last modified:
with the link to the tar.gz file. For example: <code bash> wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz </code> ===== Step 2: Extracting and Placing DokuWiki F... your web server's document root. For instance: <code bash> tar xvf dokuwiki-stable.tgz sudo mv dokuwiki-<version> /var/www/html/dokuwiki </code> Replace `<version>` with the actual version num
Let's Talk - Building a Modular PHP Framework part 2 @en:blog:2025:01:28
7 Hits, Last modified:
} } } </file> ++++ ===== Testing the Code: Creating a "debug" Plugin ===== Let's create a s... > ++++ ===== Example Output ===== When you run: <code shell> ./tmp/debug.php debug execute </code> You should see something like: <code shell> Variable Name: BOOTSTRAP = LaswitchTech\Core\Bootstrap Va
How to Build a Simple Ticketing System in DokuWiki @en:blog:2024:10:08
6 Hits, Last modified:
ic roles. Below is the structure of the system: <code plaintext> tickets/ ├── start.txt (This ser... (Contains the form to create new tickets) </code> Each file has a specific purpose, and we'll go ... rm: <file markdown mail.txt> ====== Mail ====== <code html> <style> main.site-main { box-sizing: ... ody> </table> </div> </div> </main> </code> <code text> LaswitchTech Ticket - @@ticketid@@
Let's Talk - Why and How I Use Artificial Intelligence @en:blog:2025:01:27
5 Hits, Last modified:
without sounding too technical. * **Debugging Code:** I’ve tried to develop entire scripts using an ... debugging. It’s much more efficient to write the code myself and rely on an AI model to help troublesho... ng is: //"You spend about 5% of your time writing code and 95% debugging it."// By using AI, I can cut d... ng time, letting me focus on actually writing new code or refining features. This makes the development
Let's Talk - Building a Modular PHP Framework part 3 @en:blog:2025:02:03
5 Hits, Last modified:
session is started in the **Bootstrap** class: <code php> // Start the session if (!defined('STDIN') &... n.cookie_secure', 'On'); session_start(); } </code> Then we create our **CSRF** class: ++++ Source... e result as JSON with the appropriate HTTP status code. ===== Database Handling ===== In part 2, we in... lling ''->result()'' executes it. For instance: <code php> $db = new Database(); $data = $db->query()
How to Restart a Network Interface on a Raspberry Pi @en:blog:2023:12:18
4 Hits, Last modified:
t interface may help. Here's how you can do it: <code bash> sudo ifconfig eth0 down && sudo ifconfig eth0 up #Ethernet </code> This command will first bring down the Ethernet... llowing command to restart your WiFi interface: <code bash> sudo ifconfig wlan0 down && sudo ifconfig wlan0 up #WiFi </code> Similar to the Ethernet command, this will firs
How to Uninstall Windows Store on Windows 11 @en:blog:2024:01:31
4 Hits, Last modified:
= Tutorial ===== - Run Powershell - Execute: <code>Get-appxpackage *WindowsStore* | Remove-AppxPackage</code> - Execute: <code>Get-appxpackage -allusers *WindowsStore* | Remove-AppxPackage -allusers</code> ===== Conclusion ===== Uninstalling the Windows
Enhancing Your DokuWiki Forms with Custom JavaScript - Replacing Newlines with Markdown-Friendly Syntax @en:blog:2024:12:20
3 Hits, Last modified:
the ''User JavaScript'' tab. ==== 5. Insert the Code ==== Copy the following script and paste it into ... bmit" Submit submit </form> </file> **Result**: <code html> The following data was submitted on 2024/12... ping lines asdf \\ \\ asdf \\ \\ asdf 3. Submit </code> ==== 9. Enjoy! ==== Your DokuWiki instance is n
The Hidden Dangers in Your Email: File Types to Avoid for Cybersecurity @en:blog:2023:12:12
2 Hits, Last modified:
omputer. They are often used to execute malicious code. * **Script Files (.vbs, .js, .ps1, .sh)**: Sim... .pptm)**: Macros can be used to execute malicious code. Always be cautious with Office documents that su
How to Disable Low Voltage Notification on Your Raspberry Pi @en:blog:2023:12:18
2 Hits, Last modified:
ard command to disable the low voltage warning: <code bash> echo "avoid_warnings=1" | sudo tee -a /boot... sudo apt remove lxplug-ptbatt -y && sudo reboot </code> Let's break down what this command does: * **
How to prevent user from signing into a Microsoft Account on Windows 11 @en:blog:2024:01:31
2 Hits, Last modified:
{{fa>windows}}</key> + <key>R</key>) and typing: <code>regedit</code> - Navigate to : ''Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersio
How to skip the network setup during the initial setup of Windows 11 @en:blog:2024:01:31
2 Hits, Last modified:
<key>F10</key> - In the command prompt type : <code>OOBE\BYPASSNRO</code> - The computer will restart the out-of-box experience setup and at the page ''L
Reset your macOS user password @en:blog:2024:11:11
2 Hits, Last modified: