Rename the images with numbers 1, 2 ,3 etc 12.jpeg - the image view/print app from windows doesnt use the same order as you see it in explorer.
Select Print to PDF, go to Options - Printer Properties -> and select Orientation - Portrait
Rename the images with numbers 1, 2 ,3 etc 12.jpeg - the image view/print app from windows doesnt use the same order as you see it in explorer.
Select Print to PDF, go to Options - Printer Properties -> and select Orientation - Portrait
Authentification is done by PAM - Pluggable Authentication Modules
Passwords are stored in /etc/shadow
auth required pam_u2f.so cue interactive
Set authentification with yubikey off-line with Challenge-Response so you dont have to type a password just touch the keyyubikey
lsusb
Find your mouse.
Bus 001 Device 003: ID 1a7c:0191 Evoluent VerticalMouse 4
Change the dns on your router in the DHCP section, with the dns from cisco OpenDNS FamilyShield
https://www.opendns.com/setupguide/#familyshield
208.67.222.123Youtube - click the profile picture in right top corner - and select Restrcited Mode - On - but the downside is it disables the comment section.
Android - Settings - Google - Settings for Google apps (last one) - Search, Assitant & Voice (last one) - Hide Explicit results - On
Click on for menu list and choose the Settings option.
Battery LiPo
The voltage in LiPo (Lithium Polymer) batteries is determined based on the number of cells they have and we can easily identify this by referring to the "S" count. Each LiPo cell is rated at 3.7v so a 2S LiPo means it's a 2 cell battery and 7.4v, a 3S is 11.1v, 4S is 14.8v and 6S is 22.2v.
Motor
2306 2555KV
Firmware - https://ardupilot.org/
Download the ffmpeg.exe and run it from cmd. https://ffmpeg.org/
ffmpeg.exe -ss 00:12:58 -t 00:04:29 -i video.mp4 -acodec copy -vcodec copy segment.mp4
-ss -> set first time interval
-t -> how much to cut in hours minutes seconds
* note this is not the second time position in the original video but it is t2-t1 - where t1 is the time mentioned with -ss
-i -> the input video
For exemaple original video has 20 minutes and we want to cut a segment from time 00:12:58 to time 00:17:39. si 17:39-12:58 = 04:29 -> 4 minutes and 29 seconds.
next two to copy both video and sound
and last argument segment.mp4 the name of the output video.
Cut a song from a video and then convert to mp3.
ffmpeg -i song2.mp4 -vn song2.mp3
-vn option explicitly drops video so the conversion is much much faster.
ffmpeg -stream_loop 3 -i input.mp4 -c copy output.mp4
ffmpeg -i input.mp4 out.mp3
ffmpeg -i input.mp4 -vn -acodec copy out.aac/mp3 - check with mediainfo
ffmpeg -i out.aac out.mp3
Sample rate = 1 sec = 44.000 samples
44khz -> 2 chanells of 22 khz each
human hearing 20hz - 20khz
CD 44khz. DVD 48khz HD 96khz
ffmpeg -i "in.mp4" -lavfi "subtitles=sub.srt:force_style='Alignment=2,OutlineColour=&H100000000,Outline=1,Shadow=0,Fontsize=18,MarginV=70'" "output.mp4"
HA210N06 - 210A 60V N-Channel MOSFET - datasheet
MB6S - Bridge Rectifier - it corrects reverse polarity to MOSFET gate - so you don't burn it. With this on the board you can connect the wire without worrying about polarity. - datasheet
EL 817 C915 - PHOTOCOUPLER - datasheet
The way it should be used it is like this:
Voltage limits of the circuit
On the drive signal - the limiting factor is the optocoupler max forward current of 60ma. We have a 10k resistor so a maximum of 600v - that also coresponds to the bridge rectifier max voltage. So we have no maximum real limit but we have a problem with the minimum voltage.
The optocoupler support maximum 35v on the output side collector-emitter. The MOSFET takes 25v on the gate-source side, and it has a voltage divider of 50% so it takes a max of 50v DC IN but we have the 35v limit on the optocoupler. So 35v is maximum DC IN.
optocoupler input is connected through a 103 resistor - 10k - after it passes through the bridge rectifier first.
If you are using a microcontroller with 3.3v logic voltage it will not open. You need to replace the 10k with 1k 102 resistor.
Yousite.com/wp-admin/maint/repair.php
Press the Repair Database button:
The wp_options table is not okay. It is reporting the following error: Table is marked as crashed and last repair failed. WordPress will attempt to repair this table…
For this to work you must have this enabled:
wp-config.php
define( 'WP_ALLOW_REPAIR' , true);
Also check in here that the corect database is selected, and you can also check with phpMyAdmin the database.
Fo security reasons you should disable it afterwards.
|
To install a custom version of python, download and compile from here:
https://www.python.org/ftp/python/
MuEditor - requires python < 3.9 + install libsqlite3-dev before compiling
python3.8 -m venv mu-editor (create a virtual env in the mu-editor folder)
cd mu-edit/bin
source activate (activates in console the virtual env)
pip install mu-editor
To install python apps you use pip
Pip aplications: https://pypi.org/project/mu-editor/
Make shorutcuts for python apps while in virtual env
pip install shortcut
shortcut mu-editor
Open inspector mode - F12 or CTRL+SHIFT+I
then CTRL+SHIFT+P
and type screenshot - and select Capture ful size screenshot.
I tried to take a screenshot from a .mkv video and it crashes every time though it works fine with normal mp4.
To fix it disable hardware acceleration in codecs.
Go to Preferences - Input/Codecs - Hardware-accelerated decoding -
Change from Automatic to Disabled.
Try again. It worked for me.
Once you install DaVinci you get a message that no suported video cards are detected and something about no media storage.
You need to install video and opencl drivers.
SANE_DEBUG_DLL=3 scanimage -L
load: dlopen() failed (libusb-0.1.so.4: cannot open shared object file: No such file or directory)
To fix it:apt search --names-only libusb-0.1rezult: libusb-0.1-4/stable 2:0.1.12-32 amd64 sudo apt install libusb-0.1-4