Ctrl
+W
: Close Nautilus windowCtrl
+T
: Open a new tab (same as chrome)Ctrl
+H
: Toggle the hidden file displayCtrl
+Q
: Quit NautilusCtrl
+L
: Show path to current directoryCtrl
+1
/2
: Toggle between list view (1) and icon view (2)Ctrl
+Shift
+W
: Close all Nautilus windows, =Ctrl
+Q
Ctrl
+Shift
+N
: Create new folder
Discover gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Base Size | |
@base-font-size: 15; | |
@user-font-size: (1.1 * $USER_FONT_SIZE); | |
@ui-scale: @user-font-size / @base-font-size; | |
// UI Colors | |
@tint-color: rgb(70%,84%,99%); | |
@background-color: rgb(100%,100%,100%); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(//fonts.googleapis.com/earlyaccess/notonaskharabic.css); | |
@import url(//fonts.googleapis.com/earlyaccess/notokufiarabic.css); | |
body, html { | |
overflow-x: hidden; | |
font-family: "Noto Naskh Arabic", "Helvetica Neue", Helvetica, Arial, sans-serif; | |
direction: rtl; | |
} | |
.book.font-family-0 { |
This is optional, but I like to setup from fresh when the pi is just being used for one purpose:
- Install the Raspberyy Pi Images: https://www.raspberrypi.org/software/
- Install a fresh copy of Raspberry Pi OS Lite on to an SD card
- Configure WiFi to run the pi headless (pay attention to the capitalisation of the network name, one wrong character had me scratching my head for a while):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#[ApiResource( | |
operations: [ | |
// no GetCollection operation | |
new Get(...), | |
new Post(...), | |
new Patch(...), | |
], | |
)] |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//increase max execution time of this script to 150 min: | |
ini_set('max_execution_time', 9000); | |
//increase Allowed Memory Size of this script: | |
ini_set('memory_limit','960M'); | |
// Copies woocommerce orders and users over from source to target. | |
// I use this on my local machine - loading both db's up there side by side | |
// could easily adjust the connect strings to connect elsewhere if needed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using Unity.Collections; | |
using Unity.Collections.LowLevel.Unsafe; | |
namespace Unity.Entities |
NewerOlder