Skip to content

Instantly share code, notes, and snippets.

View TopekoX's full-sized avatar
🐧
Making Love with Code...

Ucup TopekoX TopekoX

🐧
Making Love with Code...
View GitHub Profile
@dedunumax
dedunumax / .gitignore Java
Last active April 20, 2025 10:53
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*
@cortesben
cortesben / Angular-cli.md
Last active July 31, 2024 18:45
Bash commands and Angular CLI commands

#Angular-cli oh shit!

https://cli.angular.io/reference.pdf

Commands Description
ng help returns all commands with flags they can take as a param
ng new [project-name] create a brand new angular project with live server BANG!
ng init grabs name from folder that already exist
@mattbell87
mattbell87 / Steam-on-fedora.md
Last active January 14, 2025 17:20
How to install Steam on Fedora

Installing Steam on Fedora

These instructions are currently for Fedora 30. I'll update them over the releases if anything changes.

Open Software

Press the Win/Super key, type software and press Enter.

Enable the Third party and Steam repositories

@juampynr
juampynr / CHANGELOG.md
Created March 27, 2018 09:35
Sample CHANGELOG

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased] - yyyy-mm-dd

Here we write upgrading notes for brands. It's a team effort to make them as

@darbyluv2code
darbyluv2code / MyLoggerConfig.java
Last active February 5, 2023 06:34
Spring Logging for Spring 5.1 - XML Configuration
package com.luv2code.springdemo;
import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.logging.SimpleFormatter;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class MyLoggerConfig {

Start server Docusaurus

  • npm start Starts the development server.

  • npm run build Bundles your website into static files for production.

  • npm run serve Serves the built website locally.

  • npm run deploy Publishes the website to GitHub pages.

@TopekoX
TopekoX / build-springboot-production.md
Last active January 27, 2025 01:39
Springboot build to production

Build Springboot app to production using maven

  • Build skip test
mvn clean install -DskipTests

or run use profile prod

mvn spring-boot:run -Dspring-boot.run.profiles=prod
@TopekoX
TopekoX / angular-build.md
Last active January 27, 2025 01:38
Angular build and run locally

Using ng

  • Build Angular
ng build

or using profile

ng build --configuration=production