xrandr

# First we need to get the modeline string for xrandr
# Luckily, the tool "gtf" will help you calculate it.
# All you have to do is to pass the resolution & the-
# refresh-rate as the command parameters:
gtf 1920 1080 60

# In this case, the horizontal resolution is 1920px the
# vertical resolution is 1080px & refresh-rate is 60Hz.
# IMPORTANT: BE SURE THE MONITOR SUPPORTS THE RESOLUTION

# Typically, it outputs a line starting with "Modeline"
# e.g. "1920x1080_60.00"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync
# Copy this entire string (except for the starting "Modeline")

# Now, use "xrandr" to make the system recognize a new
# display mode. Pass the copied string as the parameter
# to the --newmode option:
xrandr --newmode "1920x1080_60.00"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync

# Well, the string within the quotes is the nick/alias
# of the display mode - you can as well pass something
# as "MyAwesomeHDResolution". But, careful! :-|

# Then all you have to do is to add the new mode to the
# display you want to apply, like this:
xrandr --addmode VGA1 "1920x1080_60.00"

# VGA1 is the display name, it might differ for you.
# Run "xrandr" without any parameters to be sure.
# The last parameter is the mode-alias/name which
# you've set in the previous command (--newmode)

# It should add the new mode to the display & apply it.
# Usually unlikely, but if it doesn't apply automatically
# then force it with this command:
xrandr --output VGA1 --mode "1920x1080_60.00"

Docker commands

docker run -p 8080:8080 image/name
Docker run override:
docker run -it image/name sh

[Dockerfile]
#Specify a base image
FROM node:alpine
#Install some dependencies
WORKDIR /usr/app
Copy ./ ./
Run npm install
#Default command
CMD [“npm”, “start”]
[/Dockerfile]

dockr ps
docker exec -it <id> <program name>

Basic Display API is an HTTP-based API that apps can use to get an Instagram user’s profile, images, videos, and albums.

Instagram Basic Display API

Limitiations

  • Authentication — Instagram Basic Display is not an authentication solution. Data returned by the API cannot be used to authenticate your app users or log them into your app. If you need an authentication solution we recommend using Facebook Login instead.
  • App Types — Apps designated as Business apps are not supported. If your app is a Business app use the Instagram Graph API instead or create a new non-Business app.
  • Legacy IDs — Instagram Legacy API User IDs are not supported.
  • Unsupported Media — IGTV, Stories, Reels, and Comments are not supported.
  • Promoted Posts — Promoted Posts containing Instagram media are not supported.
  • Insights — Insights are not supported.

Documentation Contents

Overview
Explanations of core concepts and usage requirements.
Get Started
A short tutorial to get you up and running.
Guides
Use case based guides to help you perform specific actions.
Reference
Component and endpoint references.

See Also

VS Code Installation

RHEL, Fedora, and CentOS based distributions#

We currently ship the stable 64-bit VS Code in a yum repository, the following script will install the key and repository:

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'

Then update the package cache and install the package using dnf (Fedora 22 and above):

sudo dnf check-update
sudo dnf install code

Or on older versions using yum:

yum check-update
sudo yum install code