- Open shell (bash)
- Create new SSH key,
ssh-keygen
<div style="display: block; width 100px; height: 100px; background-color: #f00; position: sticky; left: 10px; right 10px;" > | |
STICKY CHECKING | |
</div> |
A quick guide on how to read/write/modify ID3 metadata tags for audio / media files using ffmpeg
.
FFmpeg has a free-form command line option that allows the user to specify key-value-pairs for encoding metadata. Let's take a look.
To list all global metadata tags for a media file, just set an input but no output file.
class EthClient { | |
constructor(host, port, user, password, worker) { | |
this.host = host | |
this.port = port | |
this.user = user | |
this.password = password | |
this.worker = worker | |
this.connected = false; | |
this.queueHead = 0; |
[general] | |
version = 4 | |
name = Anet A6_settings | |
definition = custom | |
[metadata] | |
setting_version = 5 | |
type = definition_changes | |
[values] |
#!/usr/bin/env python3 | |
# ========================================================================== # | |
# # | |
# KVMD-OLED - Small OLED daemon for Pi-KVM. # | |
# # | |
# Copyright (C) 2018 Maxim Devaev <[email protected]> # | |
# # | |
# This program is free software: you can redistribute it and/or modify # | |
# it under the terms of the GNU General Public License as published by # | |
# the Free Software Foundation, either version 3 of the License, or # |
# Node-WebKit CheatSheet | |
# Download: https://github.com/rogerwang/node-webkit#downloads | |
# Old Versions: https://github.com/rogerwang/node-webkit/wiki/Downloads-of-old-versions | |
# Wiki: https://github.com/rogerwang/node-webkit/wiki | |
# How: https://github.com/rogerwang/node-webkit/wiki/How-node.js-is-integrated-with-chromium | |
# 1. Run your application. | |
# https://github.com/rogerwang/node-webkit/wiki/How-to-run-apps |
;# look in my book(s) or www.amos.eguru-il.com | |
;########################################################### | |
;# A template script for the assigning the DE10_LITE board # | |
;# Choosing: device, pins, and making design safer ! # | |
;# Written by: Amos Zaslavsky (C)copyright - Ver 3.0 # | |
;########################################################### | |
puts \n | |
if {![is_project_open]} { | |
puts "========================================" | |
puts " ERROR: Assignments can not be done, " |
This was tested on a ThinkPad P70 laptop with an Intel integrated graphics and an NVIDIA GPU:
lspci | egrep 'VGA|3D'
00:02.0 VGA compatible controller: Intel Corporation Device 191b (rev 06)
01:00.0 VGA compatible controller: NVIDIA Corporation GM204GLM [Quadro M3000M] (rev a1)
A reason to use the integrated graphics for display is if installing the NVIDIA drivers causes the display to stop working properly.
In my case, Ubuntu would get stuck in a login loop after installing the NVIDIA drivers.
This happened regardless if I installed the drivers from the "Additional Drivers" tab in "System Settings" or the ppa:graphics-drivers/ppa
in the command-line.
import java.util.Arrays; | |
/** | |
* | |
* @author karti | |
*/ | |
public class Table { | |
public static int tableWidth = 100; | |
public static void printColumns(String[] cols, int[] lengths) { | |
int ctr = 0; |