- In order to install and configure your Mac, you need to be an Administrator on your computer. Either, contact Paul or Charlie, and they will create an account for you.
% MIPS Assembly language definition for the LaTeX `listings' package | |
% | |
% The list of instructions and directives are those understood by the | |
% MARS MIPS Simulator [http://courses.missouristate.edu/KenVollmar/MARS/] | |
% | |
% Author: Eric Walkingshaw <[email protected]> | |
% | |
% This code is in the public domain. | |
% | |
% Here is an example style. I like it for slides, but you might want |
# Generate PDFs from the Markdown source files | |
# | |
# In order to use this makefile, you need some tools: | |
# - GNU make | |
# - Pandoc | |
# - LuaLaTeX | |
# - DejaVu Sans fonts | |
# Directory containing source (Markdown) files | |
source := src |
#!/bin/bash | |
{ | |
echo $(date) | |
echo ">>>Disk found" | |
echo ">>>Setting the title..." | |
title=$(makemkvcon -r info) | |
title=`echo "$title" | grep "DRV:0\+"` | |
title=${title:53} |
#include <DmxReceiver.h> | |
#include <FastLED.h> | |
#define DMX_NUM_CHANNELS 15 | |
#define NUM_LEDS 15 | |
#define DATA_PIN 11 | |
#define LED_TYPE WS2811 | |
#define COLOUR_ORDER | |
#define CLOCK_PIN 13 // Clock pin only needed for SPI based chipsets when not using hardware SPI |
DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.
DML is short name of Data Manipulation Language which deals with data manipulation, and includes most common SQL statements such SELECT, INSERT, UPDATE, DELETE etc, and it is used to store, modify, retrieve, delete and update data in database.
DCL is short name of Data Control Language which includes commands such as GRANT, and mostly concerned with rights, permissions and other controls of the database system.
Text types
-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
See this issue.
Docker best practise to Control and configure Docker with systemd.
-
Create
daemon.json
file in/etc/docker
:{"hosts": ["tcp://0.0.0.0:2375", "unix:///var/run/docker.sock"]}
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
import cv2 | |
import numpy as np | |
import win32api, win32con | |
import math | |
webcam_x = 640 #Set webcam resolution | |
webcam_y = 640 | |
screen_x = 1280 #Set screen resolution | |
screen_y = 1024 |