Skip to main content

Posts

Recent posts

GPT (short for "Generative Pre-training Transformer")

GPT (short for " Generative Pre-training Transformer ") is a type of language model developed by OpenAI. It is trained on a large dataset of human-generated text and is able to generate human-like text by predicting the next word in a sequence. ChatGPT is a variant of the GPT model that is specifically designed for chatbot applications. It is trained on a dataset of conversation transcripts and is able to generate responses to input in a way that is similar to how a human might respond in a conversation. The ChatGPT model can be used to build chatbots for a wide range of applications, including customer service, online support, and personal assistants. It can be integrated into chat or messaging platforms, or it can be used to build standalone chatbot applications. Usecase of chatGPT There are many potential use cases for ChatGPT, including: Customer service: ChatGPT can be used to build chatbots that can handle customer inquiries and provide assistance with tasks such as ac

Angular apps as docker containers

Angular apps as docker containers Basic docker image creation and running instances The correct way to start docker is to use systemd/systemctl: systemctl enable docker systemctl start docker To stop the docker is: sudo systemctl stop docker ----------------------------------------------- docker pull wocker/wordpress sudo docker build -t ai3-docker-image sudo docker images ls sudo docker run -it -v ${PWD}:/usr/src/app -p 3400:4200 ai3-docker-image sudo docker run -it -v ${PWD}:/usr/src/app -p 4200:4200 ai3-docker-image ----------------------------------------------- Thanks

How to install postman client in ubuntu 16.04

How to install postman client in ubuntu 16.04 Here is the code by which you can download latest file and install. You have no need to download file from Postman official site. just run following commands on terminal and you will get latest postman client wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz sudo tar -xzf postman.tar.gz -C /opt rm postman.tar.gz sudo ln -s /opt/Postman/Postman /usr/bin/postman After run above commands run one last command that will show you in search panel cat > ~/.local/share/applications/postman.desktop <

10 Interview Questions Every JavaScript Developer Should Know AKA: The Keys to JavaScript Mastery

https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95 1. Can you name two programming paradigms important for JavaScript app developers? Prototypal inheritance (also: prototypes, OLOO). Functional programming (also: closures, first class functions, lambdas). What is functional programming? Pure functions / function purity. Avoid side-effects. Simple function composition. Examples of functional languages: Lisp, ML, Haskell, Erlang, Clojure, Elm, F Sharp, OCaml, etc… Mention of features that support FP: first-class functions, higher order functions, functions as arguments/values. What is the difference between classical inheritance and prototypal inheritance? Classes: create tight coupling or hierarchies/taxonomies. Prototypes: mentions of concatenative inheritance, prototype delegation, functional inheritance, object composition. 4. What are the pros and cons of functional programming vs object-oriented progra