Skip to content
May 19, 2025
  • Chuyện về đuôi file: Từ thời đại máy tính “cổ lỗ sĩ” đến hiện tại
  • Vẽ worldmap network bằng python
  • Lập trình viên : Làm thế nào để bạn phát triển bản thân?
  • OSINT Framework

Tech Skills Mastery Center

Unlock Your Tech Potential, Master Your Skills

Newsletter
Random News

Categories

  • backend
  • blockchain
  • Bootstrap
  • Cloudflare
  • Css
  • dapp
  • devops
  • Docker
  • edge computing
  • Embedded
  • Emqx
  • ESP32
  • eth
  • Flex
  • frontend
  • game
  • Game Server
  • Github Action
  • github package
  • GNU Screen linux
  • Google Cloud Build
  • Harbor
  • Harvester
  • hosting
  • HTML
  • HTML5
  • IoT
  • Java
  • java spring boot
  • Javascript
  • jpa
  • k8s
  • Kubernetes
  • linux
  • Machine Learning
  • maven
  • Mysql
  • mysql remote connection
  • nodejs
  • PHP
  • Play Framework
  • Python
  • reactjs
  • Redis
  • redux
  • remote connection
  • Resin
  • Security
  • Socket
  • Solidity
  • Statistic
  • tess4j
  • Tessera OCR
  • tutorial
  • ubuntu
  • UDP
  • Uncategorized
  • Web
  • web3
  • WebServer
  • Home
  • Java
  • Javascript
  • reactjs
  • Docker
  • Machine Learning
  • Security
  • Our Company
Headlines
  • Giải mã dữ liệu Chiến dịch Phụng Hoàng

    10 months ago10 months ago
  • Chuyện về đuôi file: Từ thời đại máy tính “cổ lỗ sĩ” đến hiện tại

    7 months ago7 months ago
  • Vẽ worldmap network bằng python

    9 months ago9 months ago
  • Lập trình viên : Làm thế nào để bạn phát triển bản thân?

    9 months ago9 months ago
  • OSINT Framework

    9 months ago9 months ago
  • TIẾP CẬN A.I THẾ NÀO?

    9 months ago9 months ago
  • Deploy static Frontend pages the 2 ways

    10 months ago10 months ago

Quick contact info

Lorem ipsum dolor sit amet, the administration of justice, I may hear, finally, be expanded on, say, a certain pro cu neglegentur. Mazim.Unusual or something.

2130 Fulton Street, San Francisco
[email protected]
+(15) 94117-1080
  • k8s
  • Kubernetes
  • linux
  • ubuntu

DevOps series “from cloud to ground” – Part 7: From the cloud to ground: Install Ubuntu Server and Microk8s

codingcat1 year ago1 year ago012 mins

Microk8s as it name is a simple k8s cluster that you can easily install and use it with some singles command. Microk8s can run on any OS architecture even AMD with your Raspberry pi 4.You should think this tool maybe just for demo or learning purpose. But there are a lot of companies using microk8s…

Read More
  • devops
  • k8s
  • Kubernetes
  • linux

DevOps series “from cloud to ground” – Part 6: From the cloud to ground: Physical server setup for a private cloud

codingcat1 year ago1 year ago010 mins

Ok we’re not on the cloud anymore now we go back to ground :))). Hiring a cloud service is nice and quick to shift your application to production but the most important problem is money :v I used to be a aws lover when i have free credit for start up but when my credit…

Read More
  • devops
  • k8s
  • linux

DevOps series “from cloud to ground” – Part 5: Networking with K8s is f***ing hard

codingcat1 year ago1 year ago018 mins

Yes it’s hard but when you master the concept underlying this things gonna make senses. Networking is always a challenge with developers now a day. Because we working with high level abstraction. That why a developer like me when move to devops world networking is something really weirdo :))) Ok, if you like me let’s…

Read More
  • devops
  • k8s
  • linux

DevOps series “from cloud to ground” – Part 4: Deploy your express application to k8s

codingcat1 year ago1 year ago012 mins

In previous part, we learn some basics k8s concepts. But we not do something real with it yet. So in this blog, let’s see how we can deploy our application to our microk8s cluster with the built-in microk8s registry. Table contents 1. Create our application container 2. Push our image to built-in registry 3. Create…

Read More
  • devops
  • k8s
  • tutorial

DevOps series “from cloud to ground” – Part 3: K8s and the new world of container orchestration

codingcat1 year ago1 year ago017 mins

In the previous series we know how to use Docker as the beginner pack for devops. But for real world problems. Only Docker can not solve all problems eg: scale containers runtime, or when you need to deploy a lot of services you need a tool to manage all of them (manage network, volumes,..). This…

Read More
  • devops
  • Docker
  • linux
  • ubuntu

DevOps series “from cloud to ground” – Part 2: Docker and containerization

codingcat1 year ago1 year ago016 mins

Move on to the next series of DevOps series “from cloud to ground”. We now discover a brand new tool called docker. First time I read about Docker, it is very complicated with a lot of concepts and tools that come along with it. But for the sake of simplicity I just cover some basic…

Read More
  • Cloudflare
  • devops
  • linux
  • Web
  • WebServer

DevOps series “from cloud to ground” – Part 1: My first time deploy a web to AWS cloud service

codingcat1 year ago1 year ago011 mins

Develop an api at localhost:3000. Now you want anyone can use your api ? Let’s see how can we deploy a backend api to aws cloud service with the easiest way Table contents 1. Get a Lightsail For hosting a backend service you need a VM (usually a linux machine). AWS has a lot of…

Read More
  • devops
  • linux

DevOps series “from cloud to ground” – Part 0: Introduction and stories

codingcat1 year ago1 year ago04 mins

Starting as a web developer, i do not have any experience in DevOps world. With me and i think with almost all of us DevOps is very complicated and difficult. But luckily I have a  chance to work with it, so I need to learn it. So let see how a zero knowledge devops like…

Read More
  • backend
  • Cloudflare
  • edge computing

Edge Computing with Cloudflare worker

codingcat1 year ago1 year ago07 mins

Deploy a full stack application without a single server ? Code a backend api in a web browser then click deploy and after 1 second your api is up to date ? Sound fun right ? With power of Edge Computing and in this blog is The Cloudflare workers you can do crazy stuff like…

Read More
  • backend
  • nodejs
  • Redis
  • Security
  • tutorial
  • Web
  • WebServer

Handle Race Condition in NodeJs With Redis

codingcat1 year ago1 year ago013 mins

As a backend developer, we alaways want our app work well in all condition even being “rapped” by someone. Race condition is a common problem that we need to handle in a real life application. In this blog, let clear what’s race condition and how to avoid it. 1. WTF is Race Condition ? 2….

Read More
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 11

Search

Recent Posts

  • Chuyện về đuôi file: Từ thời đại máy tính “cổ lỗ sĩ” đến hiện tại November 4, 2024
  • Vẽ worldmap network bằng python August 29, 2024
  • Lập trình viên : Làm thế nào để bạn phát triển bản thân? August 22, 2024
  • OSINT Framework August 21, 2024
  • TIẾP CẬN A.I THẾ NÀO? August 21, 2024

Archives

  • November 2024 (1)
  • August 2024 (5)
  • July 2024 (8)
  • May 2024 (4)
  • April 2024 (7)
  • March 2024 (4)
  • January 2024 (1)
  • September 2023 (5)
  • August 2023 (4)
  • July 2023 (7)
  • June 2023 (1)
  • April 2023 (1)
  • March 2023 (1)
  • January 2021 (1)
  • September 2020 (1)
  • August 2020 (2)
  • July 2020 (2)
  • June 2020 (2)
  • November 2018 (1)
  • November 2016 (1)
  • September 2016 (1)
  • July 2016 (13)
  • June 2016 (1)
  • March 2016 (1)
  • December 2015 (2)
  • June 2015 (1)
  • February 2014 (1)
  • June 2013 (1)
  • May 2013 (2)
  • April 2013 (1)
  • March 2013 (1)
  • February 2013 (2)
  • December 2012 (1)
  • October 2012 (1)
  • August 2012 (1)
  • June 2012 (2)
  • May 2012 (7)
  • April 2012 (5)
  • March 2012 (1)
  • January 2012 (2)

#reactjs Backdoor CIA codingcat Database docker Emqx esp32 express file-upload firebase fromcloudtoground frontend History hosting iot iotfornoob Let's Encrypt minio Mysql nextJs nodejs PHIMS race-condtion react react-query reactjs redis search engine security seo Smartcontract Solidity spa ssr supabase tutorial Ubuntu

Popular News

1

Chuyện về đuôi file: Từ thời đại máy tính “cổ lỗ sĩ” đến hiện tại

  • Flex
2

Vẽ worldmap network bằng python

  • Uncategorized
3

Lập trình viên : Làm thế nào để bạn phát triển bản thân?

  • Uncategorized
4

OSINT Framework

  • Uncategorized
5

TIẾP CẬN A.I THẾ NÀO?

  • Uncategorized
6

Deploy static Frontend pages the 2 ways

  • Uncategorized
7

Uniswap version 4 Các điểm đáng lưu ý

  • blockchain
8

Hacker cài backdoor vào SmartContract như thế nào

  • Uncategorized
Copyright ©2012 - 2023 Java Monday All Right Reserved | Powered By BlazeThemes.