This file contains hidden or 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
.syntax unified | |
.section .text | |
.thumb_func | |
.global my_cpy | |
my_cpy: | |
push {r4, lr} @ push r4 and lr onto the stack | |
movs r4, #0 | |
loop: | |
ldrb r3, [r1, r4] @ load byte from r1 + r4 into r3 | |
strb r3, [r0, r4] @ store byte from r3 into r0 + r4 |
This file contains hidden or 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
sudo swapoff -a ; sudo fallocate -l 15G /swapfile ; sudo chmod 600 /swapfile ; sudo mkswap /swapfile ; sudo swapon /swapfile ; sudo swapon --show |
This file contains hidden or 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
#!/bin/bash | |
for i in {0..19} | |
do | |
(while true; do dd if=/dev/zero of=/dev/ttyUSB$i bs=4k; done) & | |
done |
This file contains hidden or 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 os | |
import subprocess | |
import re | |
RULES_DIR = "/etc/udev/rules.d/" | |
RULES_FILE_NAME = "99-usb-serial.rules" | |
list_ttyUSB_cmd = "ls /dev/ | grep ttyUSB" | |
ttyUSB_list = subprocess.getoutput(list_ttyUSB_cmd).split() |
This file contains hidden or 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
#/etc/systemd/network/20-wired.network | |
[Match] | |
Name=eth0 | |
[Network] | |
Address=192.168.8.55/24 |
This file contains hidden or 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
#!/bin/sh | |
#/etc/mini_x/session.d/disableDPMS | |
/usr/bin/xset -dpms s off s noblank s 0 0 s noexpose |
This file contains hidden or 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
https://web.archive.org/web/20231005145415/https://www.linuxcapable.com/install-python-3-8-on-ubuntu-linux/ |
This file contains hidden or 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
CMAKE_PREFIX_PATH="~/Qt/6.5.3/gcc_64/" cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 .. |
This file contains hidden or 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
#include <iostream> | |
int multiply(int number_a, int number_b){ | |
return number_a * number_b; | |
} | |
int my_function() | |
{ | |
int c; | |
c = 5; |
This file contains hidden or 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
.section .text | |
.globl start | |
# riscv64-unknown-elf-as -g entry.s -o entry.o && riscv64-unknown-elf-ld -T baremetal.ld entry.o -o entry | |
# qemu-system-riscv64 -machine virt -cpu sifive-u54 -smp 1 -s -S -nographic -bios none -kernel entry | |
# or | |
# qemu-system-riscv64 -machine virt -cpu rv64 -smp 1 -s -S -nographic -bios none -kernel entry | |
start: | |
# Load address of 'supervisor' into t0 and set mepc |