NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

sudo apt-get -y install git build-essential checkinstall libssl-dev


git config --global user.name "Oscar Rodriguez"
git config --global user.email [email protected]
# Copy Private key into .ssh/id_rsa
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash
command -v nvm
nvm install 6.2.0
nvm use 6.2.0
nvm alias default node
node -v



#Installing docker

sudo apt-get update
sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo apt-get update

#Should be 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update

sudo apt-get -y install docker-ce
sudo docker run hello-world
sudo groupadd docker
sudo usermod -aG docker $USER
docker run hello-world








function reverse(str) {
if(str.length <= 1) {
return str;
}
return str[str.length -1] + reverse(str.substring(0, str.length - 1));
}

function reverse(str) {
return reverseHelper(str.length, '', str);
}

function reverseHelper(len, result, str) {
if (len <= 0) {
return result;
}
return reverseHelper(len - 1, result + str[len - 1], str.substring(0, len -1));
}

function fibo(num) {
if (num === 0) return 1;
if (num === 1) return 1;
return fibo(num - 1) + fibo(num -2);
}

function fibol(num) {
if (num === 0) return 1;
if (num === 1) return 1;
return fiboHelper(num, 2, 1, 1);
}

function fiboHelper(num, cond, last, lastlast) {
if(cond === num) return last + lastlast;
return fiboHelper(num, cond + 1, last + lastlast, last);
}








####### FIND TRANSLATIONS IN YACHTWORLD DATABASE

# find the translation you want and get the localizable_resource_id

SELECT * FROM yw.translated_localizable_resource WHERE translated_value LIKE '%Enhanced listing%';

# Find the translations with the language they belong to

SELECT tlr.translated_value, tl.language_name
FROM yw.translated_localizable_resource tlr JOIN yw.translation_languages tl
ON tlr.translation_language_id = tl.translation_language_id
WHERE tlr.localizable_resource_id = 1501;


####### FIND TRANSLATIONS IN IMT DATABASE

SELECT * FROM imt.messages WHERE code LIKE '%marketing.featured.item2%';

SELECT * FROM imt.messages WHERE value LIKE '%Enhanced%'
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.