I hereby claim:
- I am vheidari on github.
- I am vheidari (https://keybase.io/vheidari) on keybase.
- I have a public key ASD53i-qUAbKhv-KgnUiP67iCyvddJsvVEuz8SL87tzLvgo
To claim this, I am signing this object:
import os | |
import shutil | |
fileNames = ["one", "two", "three"] | |
i = 1 | |
for fileName in fileNames: | |
srcName = "./" + fileName | |
destName = "./dest/" + str(i) + "." + fileName |
I hereby claim:
To claim this, I am signing this object:
[Command] : | |
1. sudo apt-get install dnsmasq | |
2. sudo apt-get install network-manenger | |
---------------------------------------------------------- | |
[Solution[one]] : | |
1. nano /etc/dnsmasq.conf | |
2. add dns server ip in dnsmasq.conf : | |
-ex :server=ipaddress | |
server=8.8.8.8 | |
server=8.1.8.1 |
download an image from docker hub : | |
docker pull hello-world | |
------------------------------------- | |
running or creating a process or container from an image: | |
docker run nginx | |
------------------------------------- | |
show list of process: | |
docker ps | |
show list of latests process with -a [archive] switch |
Afghanistan | |
Albania | |
Algeria | |
Andorra | |
Angola | |
Antigua & Deps | |
Argentina | |
Armenia | |
Australia | |
Austria |
Manually download Windows Subsystem for Linux distro packages: | |
# @link: https://docs.microsoft.com/en-us/windows/wsl/install-manual#installing-your-distro | |
Windows Subsystem for Linux Installation Guide for Windows 10: | |
# @link: https://docs.microsoft.com/en-us/windows/wsl/install-win10#set-your-distribution-version-to-wsl-1-or-wsl-2 | |
Updating Wsl : | |
Download Msi Wsl update package from below link then install it : | |
@link : https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi |
# Add below lines to the profile in : /etc/profile | |
# Proxy Setting | |
export HTTP_PROXY="IpAddress:Port" # Like: 127.0.0.1:1477 | |
export HTTPS_PROXY=$HTTP_PROXY | |
export http_proxy=$HTTP_PROXY | |
export https_proxy=$HTTP_PROXY |
#Add pem.sh script part in ~/bash/pem.sh | |
#---------------------------------------------------------------------------- | |
#Start pem.sh script | |
#---------------------------------------------------------------------------- | |
#cacert.pem name | |
CERT=cacert.pem | |
echo "Start fix curl ssl Certificat issus !" |
GIT INIT : | |
= Add new repositry in local machin | |
- `git init` | |
======================================================= | |
GIT ADD : | |
= Add files to git track them | |
- `git add .` | |
- `git add -A` |
@echo off | |
set list=*.webp | |
(for %%a in (%list%) do ( | |
dwebp.exe %%a -o %%a.png | |
)) | |
echo "All .webp file converted to .png" |