A lot of time has passed since then and the mining rate has gone down from several coins per day to fragments of a coin per day. One way to currently increase your mining rate is to create what the creators call a Pi Node. The reward is constantly being tweaked and in the future they will determine what the reward will actually be, but currently it has rewarded me with increasing bonus rates of mining.
Search This Blog
Tuesday, March 18, 2025
Cryptocurrency: Running a Pi Node
A lot of time has passed since then and the mining rate has gone down from several coins per day to fragments of a coin per day. One way to currently increase your mining rate is to create what the creators call a Pi Node. The reward is constantly being tweaked and in the future they will determine what the reward will actually be, but currently it has rewarded me with increasing bonus rates of mining.
Wednesday, January 29, 2025
AI: Prompt Engineering
The other day I got an advertising on social media about a free certificate in responsible AI use and Prompt Engineering. The course was a collaboration between Microsoft and Founderz who hosted AI Skills 4 All which was educational and interesting.
As a regular user of both Copilot and Edge I decided to give it a go, it was free and took less than 8 hours, so I thought why not?
Basically they brought up the basics of how generative AI work, how to write good prompts and how they leverage the Edge browser.
The way we should see Copilot is not as the primary agent of choice, but rather our second pilot, that can offload us from certain tasks. We are still responsible for what we do with the tool in that sense. At this stage these generative AI:s, especially Copilot, is better at texts and images than math.
Its strengths are brainstorming, handling large amount of information and creating general ideas for the low risk scenarios. The general downsides of Copilot is that it does not think or feel, it is not always accurate and you can't rely on it as a friend. It also comes with biases of its own.
Improve your prompts
1. A goal, such as creating a bunch of bullet points detailing the last quarter
2. Context, such as defining a setting where the material will be used, for example a breakfast presentation. You could also specify what type of people that will attend. For example whether it is marketers, competitors or managers.
3. Source of the information, make sure to ask Copilot where to get the data from. This is important because not only is it your job to ensure the quality of the result, but you might know that some sources are better in certain fields. You will notice that the sources are linked in the result as well, if you want to continue your research.
4. Expectations, define what you want out of the material, what sort of result should it create?
Customizing your prompts further
Here is an example of the prompt "Create an image of the planet Mars"
This is the result of the prompt "Now create an image of the planet Mars, from the surface of the planet, where you can an early human settlement, do not include any people. The sky should be daytime."
You can also ask the AI to ask you controlling questions back to you before presenting the result. This increased content quality. You could ask Copilot to return five questions about the material as an example.
To shape the content further, ask the chatbot to take on certain personas. You could for instance ask it to act as an PR-expert to create a certain effect with the text.
Keep in mind that if you are logged in, you can save a history of previous chats. You can also attempt to regenerate the reply, by simply asking it to do so, you might then get a variation of the reply.
What to avoid
2. Don't be too sparse with the details, it will negatively impact your results.
3. Don't upload information, data, images and so on that might be sensitive or personal.
Troubleshooting the output
For this it is also important to know how Copilot works. First it searches, then a Large Language Model is used to summarize the content and then it is filtered and presented.
You can ask yourself these questions when troubleshooting the result:
- Is there an issue with how the question was asked?
- Are there problems with the sources used? Can other sources be used instead?
- Was there something wrong at the search stage?
- Was there an issue with the summarizing stage?
- Did something happen when it was presented?
Different ways to use Copilot
For mobile they have a dedicated app for Copilot as well, it pretty much fills the same role there, a plus for using the app is that you can use the camera to identify objects for example or transcribe text that you take a photo of.
Summary
Saturday, January 11, 2025
Hardware: Building a gaming computer
Background
Just like the jedi knights of Star Wars needs to build their own lightsaber, we techies should build our own computer to get a greater understanding for the tech we use and because it is an interesting project and a test of our ability.Preparations
- Chassi: Chieftec Pro Mini Svart
- Processor: AMD Ryzen 7 8700F 4.1 GHz 24MB
- Graphics card: ASRock Radeon RX 6600 8GB Challenger
- Motherboard: ASUS Prime B650M-R
- RAM: Kingston 32GB (2x16GB) DDR5 5200MHz CL36 FURY Beast AMD EXPO/Intel XMP 3.0
- Storage: Kingston KC3000 M.2 NVMe SSD Gen 4 512GB
- Big fans: Phanteks M25 140mm PWM Svart
- Small fans: Arctic P12 PWM Svart PST Svart
- CPU-cooler: Cooler Master Hyper 212 Black Edition
- Power supply: Chieftec Proton 750W
Building the computer
Setup, first time use and finishing touches
When everything was set and done it was time to download games and start enjoying the product, and what a relief it was to finally be able to play the favorite games again on full graphics. As the games were installed on the desktop I could also remove the from my Framework 13, who had been struggling even at the lowest graphics.
Sunday, January 5, 2025
Flipper Zero: Ducky scripts
Yesterday I received my Flipper Zero and after a long wait I was ready to tinker away with it.
After capturing some infrared signals and replicating them, it was time to test the legendary Bad USB functionality.
The content of this post is based on the GitHub page.
The BadUsb app on the Flipper Zero uses extended Ducky script syntax which is compatible with the classic USB Rubber Ducky 1.0 language but with extra components such as custom USB ID (how the keyboard is identified), ALT-codes (pressing ALT and numbers on the numpad) and the old SYSRQ command. Both \n and \r\n line endings are supported, empty lines are allowed and you can use spaces or tabs for line indentation.
The script is written in simple .txt files and can be copied over to the Flipper Zero using the Windows app for example, and it must be located in the correct Bad USB folder.
To use the Bad USB function, make sure to have a USB-C to USB-A cable that you connect between the Flipper and the computer that you want to run your script on.
Navigate to "Bad USB" in the main menu, select the script that you want to execute and then press run.
Almost instantly it will execute the keypresses that you preprogrammed.
Here is a simple example that helps you start a PowerShell window with administrative privileges.
GUI r
DELAY 500
STRING powershell
CTRL-SHIFT ENTER
DELAY 500
ALT Y
DELAY 500
STRING write-host "This script is running as admin"
ENTER
Spoof keyboard ID
You can set the custom ID of the Flipper USB HID device. ID command should be in the **first line** of script, it is executed before script run. VID and PID are hex codes and are mandatory. Manufacturer and Product are text strings and are optional.
ID, VID:PID Manufacturer:Product
Example: "ID 1234:abcd Flipper Devices:Flipper Zero".
Delay, comments, holding down
DELAY, one delay value in ms
DEFAULT_DELAY, delay value in ms before every next command
DEFAULTDELAY, alternative to DEFAULT_DELAY
REM, commenting is done by writing REM followed by a single line of text
HOLD, press and hold key until RELEASE command. Up to 5 keys can be held at the same time.
RELEASE, release key
Arrow keys
DOWNARROW / DOWN
LEFTARROW / LEFT
RIGHTARROW / RIGHT
UPARROW / UP
Various buttons
APP, same as MENU, context menu key (right-clicking)
BACKSPACE
BREAK
CAPSLOCK
DELETE
END
ENTER
ESCAPE / ESC
Fx, F1-F12 keys
HOME
INSERT
MENU, same as APP, context menu key (right-clicking)
NUMLOCK
PAGEDOWN
PAGEUP
PAUSE
PRINTSCREEN
SCROLLLOCK
SPACE
TAB
You can combine the following with a special key command or a single character.
CONTROL / CTRL
SHIFT
ALT
WINDOWS / GUI, the Windows key
CTRL-ALT, ctrl plus alt
CTRL-SHIFT, ctrl plus shift
ALT-SHIFT, alt plus shift
ALT-GUI, alt plus the Windows key
GUI-SHIFT, the Windows key plus shift
GUI-CTRL, the Windows key plus ctrl
Strings and delay between keypresses
STRING, print text string, such as writing something in a terminal
STRINGLN, print text string and press enter after it
STRINGDELAY, an alternative to STRING_DELAY
DEFAULT_STRING_DELAY, delay value in ms, applied to every appearing STRING command
DEFAULTSTRINGDELAY, alternative to DEFAULT_STRING_DELAY
REPEAT Number of additional repeats Repeat previous command
WAIT_FOR_BUTTON_PRESS, will wait for the user to press a button to continue script execution. Will wait indefinitely for a button to be pressed.
On Windows and some Linux systems, you can print characters by holding ALT key and entering its code on Numpad.
ALTCHAR, print single character
ALTSTRING, print text string using ALT+Numpad method
ALTCODE, same as ALTSTRING, presents in some Duckyscript implementations
Send SysRq command, which is a way to interact with the computer even in a frozen state.
SYSRQ, single character
Media keys
Some Media/Consumer Control keys can be pressed with "MEDIA" command
MEDIA, used with commands in the list below:
POWER
REBOOT
SLEEP
LOGOFF
EXIT
BRIGHT_UP, brightness up
BRIGHT_DOWN, brightness down
HOME
BACK
FORWARD
REFRESH
SNAPSHOT, take photo in a camera app
PLAY
PAUSE
PLAY_PAUSE
NEXT_TRACK
PREV_TRACK
STOP
EJECT
MUTE
VOLUME_UP
VOLUME_DOWN
FN, Fn/Globe key on Mac keyboard
GLOBE, special key or single character (Fn/Globe key commands for Mac/iPad)