- Connect to your EC2 instance
- Install zsh :
sudo apt-get update && sudo apt-get install zsh
- Edit your passwd configuration file to tell which shell to use for user
ubuntu
:sudo vim /etc/passwd
- Look for
ubuntu
user, and replacebin/bash
bybin/zsh
- Install OhMyZsh :
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
- Disconnect from your instance and reconnect it.
This file contains 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
""" | |
This gist inspired from below repository. and suppose input type is plain string. | |
https://github.com/nirajdpandey/passage-retrieval-chatbot | |
""" | |
from typing import List, Callable | |
def paragraphs(file: str, is_separator: Callable = None): | |
"""paragraph generator""" |
This file contains 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 re | |
""" | |
find digit group from text | |
""" | |
def print_match(m): | |
print('\t',{ | |
'start':m.start(), | |
'group': m.group(), |
This file contains 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
""" | |
Below value called `private` or `protected` is not accredited expression. | |
I choose those expression for easy to understand scope. | |
""" | |
class MyClass: | |
__private_value = 'private' | |
_protected_value = 'protected' | |
public_value = 'public' |
This file contains 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
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
This file contains 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
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
This file contains 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
#! /bin/bash | |
# copied from https://github.com/gatsbyjs/gatsby/issues/21515#issuecomment-588416624 | |
rm -rf node_modules | |
rm package-lock.json | |
npm cache clear --force | |
npm install |
This file contains 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
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.Networking; | |
using Newtonsoft.Json; | |
/// <summary> | |
/// This sample code work properly on Unity2020.3 <br/> | |
/// </summary> | |
public class UnityPostRequestSample : MonoBehaviour { |
This file contains 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
# init for loop | |
set idx to 0 as number | |
set maxRange to 110 as number | |
# init environment value | |
set basePath to "~/local/screenshots" | |
set srcPath to basePath & "/temp" as string | |
set destPath to basePath & "/result" as string | |
do shell script "mkdir -p " & srcPath | |
do shell script "mkdir -p " & destPath | |
set applicationName to "AppName" |
OlderNewer