This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Window in focus doesn't minimize when I click on its icon in the taskbar (Windows 10)?? | |
# This is likely a temporary bug. Try to gracefully restart Explorer.exe to solve the problem without a reboot. | |
# Paste each line below, one at a time, followed by enter | |
taskkill /f /IM explorer.exe | |
explorer.exe | |
exit | |
# enable conda command in git-bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reverse-Proxy - mydomain api & admin | |
server { | |
listen 443 ssl; | |
# listen [::]:443 ssl; | |
server_name stage-api-v2.mydomain.com; | |
client_max_body_size 100M; | |
location / { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const functions = require('firebase-functions'); | |
const admin = require('firebase-admin'); | |
admin.initializeApp(); | |
const firestore = functions.firestore; | |
exports.onUserPresenceStatusChanged = functions.database | |
.ref('/online/{userId}') | |
.onUpdate((change, context) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Create a file in '~/.ssh' directory called 'config' and set below code with valid configuration. | |
## Then simply type 'ssh example-1.com' to go there. | |
Host example-1.com | |
Hostname 00.000.000.000 | |
User ubuntu | |
IdentityFile ~/.ssh/pem-files/example-1.pem | |
Host example-2.com | |
Hostname 000.000.000.000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import json | |
def main(): | |
jsonfilename = 'source_list.json' | |
with open(jsonfilename) as f: | |
data = json.load(f) | |
inFiles = data["read_info"]["files"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import glob | |
def main(): | |
tsFileList = [] | |
# consider only .mp4 files | |
files = glob.glob('*.mp4') | |
for file in files: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Download the Postman from: https://www.getpostman.com/downloads | |
-- Extract and move it to: /opt/ | |
-- Then open terminal and execute below code: | |
cat > ~/.local/share/applications/postman.desktop <<EOL | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Version=1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install libapache2-mod-php7.0 php7.0-xml php7.0-gd php7.0-opcache php7.0-mbstring php7.0-fpm php7.0-intl php7.0-imap php7.0-pgsql php7.0-soap php7.0-zip php7.0-bcmath php-pear php7.0-zip php7.0-curl php7.0-mysql php7.0-mcrypt | |
# Need to modify and run:: | |
$ vim /etc/apache2/apache2.conf | |
<Directory /var/www/> | |
Options Indexes FollowSymLinks | |
AllowOverride All # None to All |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from email.mime.text import MIMEText | |
from email.mime.application import MIMEApplication | |
from email.mime.multipart import MIMEMultipart | |
import datetime | |
import boto3 | |
client = boto3.client( | |
'ses', | |
region_name = 'us-east-1', | |
aws_access_key_id = 'IUITRERTTUUOI', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Route::post('signup', 'AuthController@register'); | |
Route::post('login', 'AuthController@login'); | |
Route::group(['prefix' => 'auth', 'middleware' => 'jwt.auth'], function () { | |
Route::get('user', 'AuthController@user'); | |
Route::post('logout', 'AuthController@logout'); |
NewerOlder