lspci -nnk | grep -i -EA3 "3d|display|vga"
xrandr
sudo apt-get update sudo apt-get dist-upgrade
sudo apt-get install xserver-xorg-video-ati sudo apt-get install xserver-xorg-video-amdgpu
lspci -nnk | grep -i -EA3 "3d|display|vga"
xrandr
sudo apt-get update sudo apt-get dist-upgrade
sudo apt-get install xserver-xorg-video-ati sudo apt-get install xserver-xorg-video-amdgpu
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
<template> | |
<div class="m-4 max-w-lg rounded overflow-hidden shadow-lg bg-white"> | |
<div class="p-4 max-w-xl" v-if="!connected" :key="updateModal"> | |
<h2 class="text-xl pb-9">Select one of the bellow options to perform a cryptocurrency transation via the ethereum test network.</h2> | |
<div class="flex space-x-4"> | |
<button @click="checkWalletConnected" class="py-2 px-8 rounded button-custom flex"><img src="@/assets/logos/metamask-logo.png" class="w-6 mr-3" alt=""> Metamask</button> | |
<button class="py-2 px-8 rounded button-custom disabled-custom flex"><img src="@/assets/logos/coinbase-logo.svg" class="w-6 mr-3" alt=""> Coinbase wallet</button> | |
</div> | |
</div> |
#!/usr/bin/env python | |
import sys | |
import os | |
import subprocess | |
# Script taken from doing the needed operation | |
# (Filters > Remeshing, Simplification and Reconstruction > | |
# Quadric Edge Collapse Decimation, with parameters: | |
# 0.9 percentage reduction (10%), 0.3 Quality threshold (70%) |
#!/usr/bin/env python | |
import sys | |
import os | |
import subprocess | |
# Script taken from doing the needed operation | |
# (Filters > Remeshing, Simplification and Reconstruction > | |
# Quadric Edge Collapse Decimation, with parameters: | |
# 0.9 percentage reduction (10%), 0.3 Quality threshold (70%) |
INFURA_URL=<your_url> | |
ETHERSCAN_API_KEY=<your_api_key> |
/* | |
MPU6050 Triple Axis Gyroscope & Accelerometer. Simple Accelerometer Example. | |
Read more: http://www.jarzebski.pl/arduino/czujniki-i-sensory/3-osiowy-zyroskop-i-akcelerometr-mpu6050.html | |
GIT: https://github.com/jarzebski/Arduino-MPU6050 | |
Web: http://www.jarzebski.pl | |
(c) 2014 by Korneliusz Jarzebski | |
*/ | |
#include <Wire.h> | |
#include <MPU6050.h> |