Victor Uzoagbavictoru.hashnode.dev·Oct 7, 2024Building a Custom Static Site Generator for Technical DocumentationIntroduction What is a Static Site Generator (SSG)? A Static Site Generator (SSG) is a tool that converts plain text files (like Markdown) into a complete static website. The output is a set of static HTML pages, which are fast to load and easy to ho...Discusstutorials
Merge Simpsonblog.letsdev.me·Aug 26, 2024Java의 상수 필드는 꼭 static final로 선언할까?라는 제목서론 ✅ 자바에서 상수 필드를 선언할 때 static final을 세트처럼 자주 사용합니다. 이 조합은 워낙 빈번하게 등장해서 마치 관례로 보일 정도입니다. // 어느 클래스의 static 멤버 public static final String EXAMPLE = SomeClass.getPropertyValue("example"); ✅ 자바 인류는 어쩌다 이 표기를 습관적으로 쓰게 되었을까요? 자바 인류가 어쩌다 이 표기를 습관적으...Discuss·1 like·30 readsJava
Nilkanth Mistrynilkanth1010.hashnode.dev·Jul 27, 2024Day 82 -Deploying a Static Website on AWS S3🚀🌐Welcome to Day 82 of the #90DaysOfDevOps challenge! 🚀🎉 Today’s project involves hosting a static website using Amazon S3, a powerful and cost-effective object storage service provided by Amazon Web Services (AWS). Let’s dive into the details of tod...Discuss·1 like90 Days Of Devops ChallengesDevops
Maitri Pateltechnologicalblog.hashnode.dev·May 10, 2024Singleton Vs Static Class in C#Introduction Static and singleton classes are frequently used in C# programming for various objectives. Even if they seem identical initially, they have different benefits and drawbacks. Understanding the differences between software design concepts ...Discuss·6 likesC#
SAHIL ALIthestarsahil.hashnode.dev·Mar 24, 2024The Tale of Two Variables: Auto and Static#include<stdio.h> void increment (); //function decalaration int main(){ increment (); // function call 3 times increment(); increment(); return 0; } void increment (){ // function definition ...Discussauto-variable
Sukrit Duasukritdua.com·Mar 11, 2024Android Hacking - Part 6Hands on basic static analysis Preparation Target App: InjuredAndroid Environment: Physical device / Android Studio Virtual Device Grabbing the Android apk Start the Android virtual device. Grab the apk from https://github.com/B3nac/InjuredAndroid ...Discuss·44 readsMobile Security static
Joshua Moonwww.joshuamoon.co.uk·Feb 26, 2024Improve Testing: Wrapping StaticsMost of us are probably familiar with writing unit tests by now. We probably understand that we should keep our code simple, inject our dependencies on external classes, and keep our own classes to a single responsibility. But we also know that somet...Discuss·44 readsImprove Testingunit testing
Swapnil Pantswapn652.hashnode.dev·Feb 12, 2024OOPS in Java: Diving deep into 'static' and 'abstract'I have seen a lot of people getting confused with OOPS concepts, especially those related to static and abstract keyword. In this blog, I will be covering up all the possible combinations of code using these 2 keywords, so that whenever someone asks ...Discuss·10 likes·27 readsOOPS in Java
Taegu Kangktg0210.hashnode.dev·Jan 17, 2024Aurora MySQL parameters and reboot-required or NOToutline AWS RDS can change parameters using custom parameter groups. There are parameters which reqiured rebooting or not. Aurora MySQL parameters https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Reference.ParameterGro...DiscussAWS Basicparameter groups
Gowtham reddysivacodes.hashnode.dev·Dec 31, 2023Building static/dynamic C++ libraries with CMakeWhat Exactly is CMake? CMake, which stands for Cross-Platform Make, is an open-source build system and project configuration tool designed to manage the build process of software projects. It provides a unified, platform-independent way to specify ho...Discussbuildtools