Posts

Showing posts with the label trick

Bio Link — get your personal bio link page for free

Image
  bio link I t’s a social world with personality combined. Everyone needs a bio to display yourself and gather all sh*t together. Let the world get to know you better. Official site I tried it myself, and it is a cool customiz. free bio link gets the free bio link first to customize in the dashboard. you can embed the social and links with logos setup. The youtube video can watch inside the page. Others jump to the link page while clicking. there are some themes and can also create your own. you can also check the status of your bio. the setting for different link styles or your own domain Looking forward to hearing new functions updated soon. my bio link:  https://bio.link/yvonnedi 👉Follow me for more useful web development content! love sharing🥰

How to be Motivated as a Self-Taught Developer

Image
  How you can get motivated for the long term. Photo by  Clark Tibbs  on  Unsplash As a self-taught front-end developer, how to be motivated all the time is a big question for me. I am learning off and on for a few years now, with plenty of my own time, but I still feel everything on the road. Sometimes, I would feel depressed and don’t feel like studying. Actually,  it’s okay to feel not Okay . Good rest and relaxation can improve our productivity later on. But how to get back on the road, get motivated for a longer time. It’s been a struggle for me during these years. I tried different kinds of ways to get rid of the emotional jungle. Here are my suggestions: Learn from motivated people or book Photo by  Joel Muniz  on  Unsplash Self-taught means self-discipline, there is a book talking about how to keep high proficiency, which is  the 7 habits of highly effective people , learning from experienced people is always the best way even if you ...

How to become Javascript developer from Zero to Master 2022

Image
  Mike Alche Is Javascript dead in the future? According to developer analyst RedMonk’s Q1 2021 language popularity rankings,  JavaScript is the most popular language today , followed by Python and Java. And Stack overflow’s 2021 Developer Survey, it’s the most commonly used programming language in 2021. Now it’s still there. In my opinion, Javascript is the first step you getting into the Web development world. It’s the basic programming language to learn, with classic programming logic and phrases. I think as you get it, it means the others are similar grasp. As a self-taught front-end developer, I’ve taken so much time on it, searching and learning, sometimes I feel like I am stuck in the  Javascript learning hell . Nowadays, with a bunch of resources broadcasting on the internet, you gotta choose what’s the best for you(actually the popular one). There is always the right path for newbies to become masters. I will gather some resources I think are good for beginners. ...

How to build API and sell on Rapid API

Image
  Photo by  Fahim Muntashir  on  Unsplash As a front-end developer, you have to grasp the knowledge about how to fetch the API. But there is a question coming, where the API comes from? Why I can fetch data with a simple URL link and a private API key for some of them. Occasionally, I found a video about it. The curiosity leads me to find out further. Here is the  link . I am gonna record what I learned. F irst, you have to make an app with node.js. Make sure Node.js is installed on the PC. In the project,  npm install express request request-promise nodemon In the package.json file, change the scripts for running. so, you can run the terminal with  npm run dev  or  yarn dev  to run the live server. In the  index.js  file, we begin to build the code. require express and request. the port default is 5000 the home page is the sentence: Welcome to... When the port is 5000, the app listens and runs. For doing a  ScraperAPI , I...