sábado, 16 de setembro de 2023

Typescript Crash Course

Learn TypeScript - Full Course for Beginners


☞ morioh.com/p/959ca1506ad1…

#typescript #javascript #ts #programming #developer #morioh #programmer #coding #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment

15 AI Tools for Business 2023

Top 15 AI tools to start your online business in 2023:


1. Website

- Landing site
- 10Web
-Hocoos

2. Blogs

- Writesonic
- Copy AI
-Reword

3. SEO

- SurferSEO
- SEO AI
- RankIQ

4. Image

-MidJourney
- Lexica
- Leonard

5. Video

- Synthesia
- Veed
- Flexclip

22 Prompts Chatgpt 2023

22 prompts do ChatGPT para seus negócios


 [Marque agora ou perca o trem]

 1. O Efeito KFC

 Descubra como manter alguns aspectos do seu negócio em segredo, como a receita do KFC, pode adicionar uma camada de mística ao [meu produto/negócio].

 2. O Efeito Zuckerberg

 Saiba como a iteração rápida e a adaptabilidade podem impulsionar [meu produto/negócio] a novos patamares, inspirado na abordagem de negócios de Mark Zuckerberg.

 3. O Efeito Padrinho

 Aproveite a arte da negociação e da dinâmica de poder, inspirada em O Poderoso Chefão, para aprimorar [meu produto/negócio].

 4. O Efeito Cobra

 Evite consequências indesejadas compreendendo o Efeito Cobra em [meu produto/negócio].

 5. Os efeitos de primazia e atualidade

 Maximize a retenção de memória e o impacto com os efeitos de primazia e atualidade em [meu produto/negócio].

 6. O efeito volante

 Transforme seu negócio em um impulso imparável com o Efeito Flywheel.

 7. O Paradoxo da Escolha

 Aumente as vendas simplificando as escolhas em [meu produto/negócio].

 8. O efeito dotação

 Transforme clientes em fãs fiéis aproveitando o Efeito Doação em [meu produto/negócio].

 9. O Efeito Diderot

 Desbloqueie a reação em cadeia das vendas com o Efeito Diderot em [meu produto/negócio].

 10. O efeito de ancoragem

 Domine a arte das primeiras impressões com o Efeito Ancoragem em [meu produto/negócio].

 11. O Efeito Zeigarnik

 Mantenha sua marca inesquecível com o Efeito Zeigarnik em [meu produto/negócio].

 12. O Princípio da Reciprocidade

 Conquiste a fidelidade do cliente dando um pouco primeiro com o Princípio da Reciprocidade em [meu produto/negócio].

 13. O efeito chamariz

 Oriente as escolhas do cliente sem esforço com o Efeito Isca em [meu produto/negócio].

 14. O efeito do movimento

 Aproveite o poder da prova social com o efeito Bandwagon em [meu produto/negócio].

 15. O Princípio da Escassez

 Crie uma demanda irresistível com o Princípio da Escassez em [meu produto/negócio].

 16. A falácia do custo irrecuperável

 Navegue pelo comportamento do cliente com a falácia do custo irrecuperável em [meu produto/negócio].

 17. O Princípio do Compromisso

 Transforme o talvez em definitivamente com o Princípio do Compromisso em [meu produto/negócio].

 18. O Princípio do Contraste

 Torne suas ofertas irresistíveis com o Princípio do Contraste em [meu produto/negócio].

 19. O Efeito Veblen

 Transforme a exclusividade em um ponto de venda com o Efeito Veblen em [meu produto/negócio].

 20. O Paradoxo de Jevons

 Entenda como a eficiência pode mudar o comportamento do cliente com o Paradoxo de Jevons em [meu produto/negócio].

 21. O efeito de enquadramento

 Libere o poder da percepção aplicando o Efeito Framing ao [meu produto/negócio].

 22. O Princípio da Autoridade
 Aumente a credibilidade da sua marca com o Princípio da Autoridade em [meu produto/negócio].

 👉 Dica: priorize as solicitações que se alinham aos seus desafios de negócios mais urgentes para obter insights acionáveis que podem mudar o jogo.

 Siga @heyrobinai para conteúdo de IA mais valioso

Python Lambda Functions

Python Lambda Function
More ☞ morioh.com/p/5607c132d4ac

#python #lambda #programming #developer #morioh #programmer #coding #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment

Linux 40 comandos úteis

40 Useful Linux commands for Everyone:

🔖 Bookmark                                                        
        
➊ pwd

Print Working Directory

❯ pwd
# Shows the absolute path of
# the working directory

➋ mkdir

Make Directory

❯ mkdir reports/
# Creates a single directory

❯ mkdir -p reports/finance/yearly/
# Creates entire directory structure

➌ cd

Change Directory

❯ cd icons
# Switch to the "icons" directory

❯ cd -
# Switch to the previous directory

❯ cd ..
# Switch to the parent directory

❯ cd
# Switch to the home directory

➍ ls

List

❯ ls
# For current working directory

❯ ls /home/
# For /home/

❯ ls -a
# Includes hidden files

❯ ls -R
# Recursively for subdirectories

❯ ls -l
# Lists in detail

❯ ls -ltr
# Sorted. Latest modified one is at the top.

➎ cp

Copy

❯ cp file1.txt file2.txt
# Copies the file file1.txt to file2.txt

❯ cp -r dir1/ dir2/
# Copies entire directory "dir1" to "dir2"

➏ mv

Move

❯ mv file1.js images/
# Moves the file to images/

❯ mv file1.js file2.js
# Renames the file1.js to file2.js

➐ touch

❯ touch new_file
# Creates a new empty file "new_file"

❯ touch -m old_file
# Changes the modification time

➑ cat

Concatenate

⬙ It is used to view, create, and concatenate files.

❯ cat file.txt
# Lists the contents of file1.txt to std output

❯ cat > file.txt
# Creates a new file

❯ cat file1 file2 > file3
# Concatenates file1 & file2 to file3

➒ rm

Remove

❯ rm file1.txt
# Removes a file

❯ rm -r dir1
# Removes an empty directory

❯ rm -rf dir2
# Removes any directory

➓ find

Search based on a regular expression

❯ find ./ -name "xyz"
# Finds files and directories whose name is xyz

❯ find ./ -type f -name "*.java"
# Finds files whose name ends with .java

➊➊ grep

Global Regular Expression Print

❯ grep "hello" message.txt
# Lists all lines of "message.txt"
# that contain "hello"

❯ grep -c "hi" message.txt
# Outputs the number of lines in
# "message.txt" that contain "hi"

➊➋ head

❯ head message.txt
# Outputs first 10 lines of message.txt

❯ head -n 5 message.txt
# Outputs first 5 lines of message.txt

➊➌ tail

❯ tail message.txt
# Outputs last 10 lines of message.txt

❯ tail -n 5 message.txt
# Outputs last 5 lines of message.txt

❯ tail -f app.log
# Shows new entries in app.log
# as and when they get added

➊➍ diff

Difference

❯ diff /dir1/package.json /dir2/package.json
# Compare the contents of the two files
# line by line and lists out all differences

➊➎ alias

❯ alias lsa="ls -a"
# Creates a new alias "lsa" for "ls -a" command

❯ alias
# Lists all aliases for the current session

               -- More Useful Commands --

❯ echo
Displays the given text in the terminal

❯ which
Shows the directory where the command is present 

❯ whoami
Displays the username of who currently is using this session

❯ man
Displays the manual page of any command

❯ tar
Creates and extracts an archive file

❯ chmod
Changes the mode (permission) of a file

❯ chown
Changes the ownership

❯ du
Checks how much space a file or a directory takes

❯ ps
Lists the processes that the current shell session is running

❯ kill
Kills (terminates) a process

❯ free
Shows the amount of free memory

❯ vmstat 10
Every 10 seconds, show statistics

❯ iotop
Displays the disk IO usage details

❯ systemctl
Manages systemd and services

❯ journalctl
Views systemd, kernel, and journal logs

❯ env
Prints list of environment variables

❯ host
Does DNS lookup operations

❯ hostname
Obtains the DNS name

❯ ping
Checks the network connectivity b/w host and server

❯ curl
Transfers data to or from a server

❯ wget
Retrieves/downloads content from the internet

❯ history
Displays all the commands used in the past

❯ clear
Clears the terminal window

❯ sudo
Allows the current user to act as a superuser or, a root user for running a specific command

❯ exit
Ends a shell session and closes the terminal

YouTube Playlist para aprender programação

Best YouTube Playlists to learn Programming:

❯ C
youtube.com/playlist?list=…

❯ C++
youtube.com/playlist?list=…

❯ Python
youtube.com/playlist?list=…

❯ JavaScript
youtube.com/playlist?list=…

❯ Java
youtube.com/playlist?list=…

❯ C#
youtube.com/playlist?list=…

❯ SQL
youtube.com/playlist?list=…

❯ Go
youtube.com/playlist?list=…

❯ PHP
youtube.com/playlist?list=…

❯ Swift
youtube.com/playlist?list=…

❯ Kotlin
youtube.com/playlist?list=…

❯ Dart
youtube.com/playlist?list=…

❯ Ruby
youtube.com/playlist?list=…

❯ Rust
youtube.com/playlist?list=…

❯ TypeScript
youtube.com/playlist?list=…

❯ R
youtube.com/playlist?list=…

❯ React
youtube.com/playlist?list=…

❯ Next.js
youtube.com/playlist?list=…

❯ Node.js
youtube.com/playlist?list=…

❯ HTML/CSS
youtube.com/playlist?list=…

❯ Machine Learning
youtube.com/playlist?list=…

❯ Deep Learning
youtube.com/playlist?list=…

❯ DSA
youtube.com/playlist?list=…

Estrutura da Dados e Algoritmos

100+ data structure and algorithm problems

1. Array - bit.ly/3vM1JP5
2. String - bit.ly/3SMkjkb
3. Binary tree - bit.ly/3JIsn1i
4. Linked List - bit.ly/3zFatrn
5. Dynamic Programming - bit.ly/3vLwjs5
6. Recursion - bit.ly/3JDhUnv
7. Miscellaneous - bit.ly/3vLbAVm
8. System Design - https://www.java67.com/2018/05/top-20-system-design-interview-questions-answers-programming.html?m=1