Ann Christine TabakainAre You Out There·3 days agoMember-onlySubject MatterIsn’t anything sacred anymore? — I find it interesting [for lack of a better word] what some people think is appropriate to write about. Some of the subject matter I have seen on Medium, I would not even share in a private conversation with my closest friend. Not that it is shocking (although some of…Post2 min readPost2 min read
Palak·6 days agoPauseThey often say books don’t teach you how to live life. Life does. However, I believe it’s the perspective that matters. Have you ever deeply thought about the punctuation mark called a ‘full stop’? No, why would we? Now picture this : What if you started putting figurative full stops…Stop2 min readStop2 min read
Amitbiswas·6 days ago8 Creative Uses for Pinterest That You Didnt Know About Pinterest may be considered a social media…8 Creative Uses for Pinterest That You Didnt Know About Pinterest may be considered a social media platform, but it has so much amazing potential beyond personal posts and pins. As with any platform, discovering creative uses can become a way to gain a whole new set of skills and make…Post3 min readPost3 min read
Elite Market Whisperer·Jan 18Risking it all for Viral Success: How to Determine Your Risk Tolerance for Your Medium PostsYo, are you ready to take the risk and make your Medium post go VIRAL? 😎 ’Cause let’s be real, who doesn’t want their post to blow up and get a bajillion views? 🤩 But before you hit that publish button, you gotta determine your risk tolerance. 🤔 Are you…Post2 min readPost2 min read
Goldobin Anton·Jan 13The most popular Figma plugins 20231. Unsplash Unsplash is no stranger. You can use it to add beautiful, high-resolution photographs to your designs. The Unsplash plugin helps you accomplish the same thing without switching between your applications. Additionally, you have the option to add random images from a category, which can save you time exploring. …Top3 min readTop3 min read
Gerasimos Alexiou·Jan 13Member-onlyMicro blogging platforms that you need to know as a developerInternet is the source of truth when you work in IT field. Developers and technology engineers google multiple times a day searching for the appropriate information in order to figure out solutions for their problems. There is ton of valuable information available online. This is due to the fact that…Posts3 min readPosts3 min read
Soundar S·Jan 10JQuery ajaxjQuery is a fast, small, and feature-rich JavaScript library. It makes interacting with HTML documents easy and fun. One of the features provided by jQuery is the ability to make AJAX requests. Here is a basic example of using jQuery’s $.ajax() function to make an AJAX request: $.ajax({ url…Post1 min readPost1 min read
kemal karaduman·Jan 9Golang Gin time.Time data type binding issue for POST requestGin can bind time.Time type with GET request but it can’t bind POST requests. Here is the solution package model import ( "time" ) const TimeFormat = "2006-01-02 15:04:05" type LocalTime time.Time func (t *LocalTime) UnmarshalJSON(data []byte) (err error) { if len(data) == 2 { *t = LocalTime(time.Time{}) return } now, err :=…Post1 min readPost1 min read
Utkarshgupta·Jan 10How to create your first react appTo create a new React app, you will need to have Node.js and the create-react-app tool installed on your machine. To install Node.js, you can follow the instructions on the Node.js website: https://nodejs.org/ Once Node.js is installed, you can use the following command to install create-react-app:Post2 min readPost2 min read