Posts

Showing posts from May, 2021

Some Must Read RFC - A List Of Technical Documentation Behind The Internet Technology

Image
Some Must Read RFC If you are a software engineer or some IT related job, you must already know about the RFC or Request for comment. It is kind of a non formal standard for internet related things. The most popular I guess is HTTP (hypertext transfer protocol). The RFC for HTTP alone has been aged 26 years (1995), but it’s relatively new. The first Rfc is from 1969, was issued by Steve Crocker. The first RFC 1 defined the “IMP software” used in the communication between hosts on the ARPAnet, a predecessor of the internet. There’s so many RFCs, almost 10000 in number, so if you want to read some important or mostly known RFC, here’s my pick and list some of RFCs that are maybe the most well known. - RFC 2324 - Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0) - RFC 3629 about  UTF-8, a transformation format of ISO 10646 Who doesn’t know about UTF-8, yes probably nobody, everyone knows it. This RFC standardised how UTF-8 must be implemented.  - RFC 2246 about Transfer Layer Securit

3 Practical Ways On How To Start Writing Now

Image
Photo by Surface on Unsplash So many articles on the internet about tips to guide you on writing a blog, some are helpful, some just not so helpful, it depends on your understanding of the thing that you read. Regularly feeding your blog with content everyday can make your blog grow from just a personal blog into a big successful blog. But then it’s not so easy to maintain the focus on growing your blog, especially when you are just starting a blog, you can easily lose and find your blog without any content for months and then it becomes a dead blog. I have some practical ways that work for me whenever I feel like I want to write a blog post, but I feel stuck and feel that it’s already seems hard to even come up with an idea on what I am gonna write.  Usually ideas don't come up naturally, you need to force yourself to think about it. Also some techniques maybe need it to have a better view on what type of content you are finished to write. The easiest way is just to begin writing

How To Use React Ckeditor Upload File Image With Demo and Example Codes

Image
This is a simple tutorial on how you can configure React Ckeditor wysiwyg library to handle file upload when users try to insert a picture into our editor, so the editor will upload the file to the server rather than providing the base64 string the default case by CKeditor.  At first I feel like it may look very easy, and it should be because image upload is a standard feature in the editor so it doesn't need to be that complicated, but it turns out it’s far more complex than I thought. I read somewhere online that some people took days to solve just this problem. Firstable assume you have a backend API that will handle file upload into your server with this criteria. Request curl --location --request POST 'https://YOUR_API/upload_files' \ --form 'files=@"/D:/Pictures/my-image.jpg"' Response {     "filename": "1622085846852.jpg" } Then on the react side, create a custom Ckeditor component that we can reuse that component anywhere on the

How To Update Windows 10 Operating System

Image
Windows 10 check for update Updating your OS is a simple task that will probably update it automatically, if your computer feels different or you are just curious to check and update your Windows OS here's a few steps on How to update Windows 10. 1. Press windows key or windows logo on the bottom left of the screen. 2. Click the gear icon or settings. 3. Select menu update and security. 4. Click the button Check for updates. 5. And finally Download and install the new updates. 6. Wait the downloading and installing patches process to finish. 7. If it’s required to restart, then restart your pc, make sure all your working documents are saved before restart your computer. If you are using a laptop, make sure to plugin to source power so your windows update does not break your pc when suddenly your computer is out of power and the updates is only doing it partially. If you have some crucial information on your computer, or some account that you are logged in using your computer it is

7 Tips If You Want To Blog From Your Smart Phone

Image
Photo by Rendy Novantino on Unsplash One of the simplest and easiest ways of content marketing is to create a successful blog that attracts a lot of visitors. Because writing on a blog is probably easier than many other types of media content that need to be created in order to attract some potential consumer. But sometimes you are in the mood of writing content, but you are not always in front of a laptop or PC or mac, you only have a cellular device. It is actually what the situation currently i am in, i wrote this blog post on an Android device with google docs. So it is not a problem whether it is a big fast computer or just a regular cell touchscreen phone. Here are some tips if you want to write a blog post just by using your phone: 1. Make it as habit Blogging from your phone may not be as efficient as blogging with your laptop or PC, but actually anything is just a matter of habit, if you are make anything as a habit, whether you are exercise daily, eating healthy food, writing

Some Usefull Tips If You Have No Idea What To Write For Your Blog

Image
Photo by Brooke Cagle on Unsplash The vast and growing number of people on the internet gives you lots of opportunities if creative enough it can make extra income for you, even probably as your main source of income. I have a successful blogger friend that always motivates me whenever he shares his success by just becoming a blogger.  Writing and maintaining a blog is hard but it will pay off if you discipline enough giving your blog contents. So here are some tips if you struggle with coming up with new ideas for your blog next post. 1. Stop your perfectionist thinking Yes, coming up with new blog post ideas for your blog is somehow really difficult, sometimes we are too much thinking about people's response so at the end of the day you can end up with nothing. You want everything to be perfect and tidy but those kinds of thinking are just slowing you down. 2. Read some Reddit threads I have been using Reddit mostly just a silent reader for a long time, reading threads on reddit

Popular posts from this blog

ERROR 1348 Column Password Is Not Updatable When Updating MySQL Root Password

How To Create Spring Boot Project Using Netbeans

How To Connect SSH Using PEM Certificate On Windows

How To Use React Ckeditor Upload File Image With Demo and Example Codes

Spring Kafka - how to use ReplyingKafkaTemplate send and reply synchronously