Skip to content

Instantly share code, notes, and snippets.

@m-cakir
m-cakir / LogFile.udl.xml
Created October 27, 2020 11:28 — forked from mmdemirbas/LogFile.udl.xml
Custom log file syntax highlighting for Notepad++
<NotepadPlus>
<UserLang name="LogFile" ext="log">
<Settings>
<Global caseIgnored="yes" />
<TreatAsSymbol comment="no" commentLine="no" />
<Prefix words1="no" words2="no" words3="no" words4="no" />
</Settings>
<KeywordLists>
<Keywords name="Delimiters">[(0])0</Keywords>
<Keywords name="Folder+"></Keywords>
@m-cakir
m-cakir / PropertyLogger.java
Created June 9, 2021 10:10 — forked from sandor-nemeth/PropertyLogger.java
Spring Boot - Log all configuration properties on application startup
package io.github.sandornemeth.spring;
import java.util.Arrays;
import java.util.stream.StreamSupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.EventListener;
import org.springframework.core.env.AbstractEnvironment;
@m-cakir
m-cakir / modifyAndroidManifestAttributes.js
Created August 10, 2025 16:40 — forked from djaffer/modifyAndroidManifestAttributes.js
Modifying Android Manifest Attributes for Expo
const { withAndroidManifest } = require('@expo/config-plugins');
/**
Usage:
1. Create a dir named plugins at root of project where app.json is located
1. Add this file to your project (eg: ./plugins/modifyAndroidManifestAttributes.js)
2. In app.json use add this under expo attribute:
"expo"{
...,