Arch Linux Minimal Installation with KDE – Plasma
Check if your device is connected to internet or not, if, on wifi, Make the Internet working by launching wifi-menu, and entering […]
Fixing Manjaro Boot Problems
To Fix a non booting manjaro system, Boot from manjaro sytem from usb and run the below mentioned CLI Linux commands in terminal […]
JackSetup
Edit the *.conf found in the directory ‘/etc/security/limits.d’ with the below content: @realtime – rtprio 99 @realtime – memlock unlimited and run […]
RaspberryPiSetup
Get Raspbian from below link: Extract the Zip and mount the (.img) image to sd card using dd or Win32 Disk Imager Tool […]
pyCV Codes
import numpy as np import cv2 img = cv2.imread(‘./images/trex.png’) cv2.imshow(‘image’, img) cv2.waitKey(0) cv2.destroyAllWindows() cv2.namedWindow(‘image’, cv2.WINDOW_NORMAL) cv2.imshow(‘image’, img) cv2.waitKey(0) cv2.destroyAllWindows() cv2.imwrite(‘trex.jpg’, img) import […]
8085 asm Codes
;<Addition of two 8-bit numbers> MVI C,00 ;Initialize C register to 00 LDA 4150h ;Load the value to Accumulator. MOV B,A ;Move […]
8051 C Codes
//Write an 8051 C program to send values 00 – FF to port P1. //Solution: #include <reg51.h> void main(void) { unsigned char […]
8051 asm Codes
;This program adds value 3 to the ACC ten times MOV A,#0 ;A=0, clear ACC MOV R2,#10 ;load counter R2=10 AGAIN: ADD […]