This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Granny .GR2 Reader script by Jayn23 at XeNTaX fourm | |
| # Credit to norbyte from DOS fourm - his source code for gr2 to collada was my main reference | |
| # can be found at https://github.com/Norbyte/lslib | |
| # Version 1.2.6.1 | |
| # Last updated 13.02.2020 | |
| #1.2.6.1 | |
| #Added missing degree to convert function (old animation to new animation) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2025-06-08T00:00:06.625967+02:00 v2202411199479294852 sshd[4173562]: Failed password for invalid user bastion from 14.63.196.175 port 53606 ssh2 | |
| 2025-06-08T00:00:07.653626+02:00 v2202411199479294852 sshd[4173562]: Received disconnect from 14.63.196.175 port 53606:11: Bye Bye [preauth] | |
| 2025-06-08T00:00:07.653755+02:00 v2202411199479294852 sshd[4173562]: Disconnected from invalid user bastion 14.63.196.175 port 53606 [preauth] | |
| 2025-06-08T00:00:08.208554+02:00 v2202411199479294852 sshd[4173607]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=164.92.249.174 user=root | |
| 2025-06-08T00:00:10.686039+02:00 v2202411199479294852 sshd[4173607]: Failed password for root from 164.92.249.174 port 56764 ssh2 | |
| 2025-06-08T00:00:12.454092+02:00 v2202411199479294852 sshd[4173607]: Connection closed by authenticating user root 164.92.249.174 port 56764 [preauth] | |
| 2025-06-08T00:00:34.123796+02:00 v2202411199479294852 sshd[4173612]: Invalid user hadoop from 164.92.249.174 port 33652 | |
| 2025-06-08T |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void recognizeString(String param){ | |
| Map<Character, Integer> freqMap = new HashMap<Character,Integer>(); | |
| StringBuilder sBuilder= new StringBuilder(); | |
| for(char c : param){ | |
| freqMap.put(c,freqMap.getOrDefault(c,0)+1 ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class AraOdemeliTaksiteOranli { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class GraduatedPaymentPlan { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.lang.reflect.Field; | |
| import java.lang.management.ManagementFactory; | |
| import java.lang.management.ThreadMXBean; | |
| public class AllThreadLocalInspector { | |
| public static void main(String[] args) throws Exception { | |
| ThreadMXBean threadMXBean = ManagementFactory.getThreadMXBean(); | |
| long[] threadIds = threadMXBean.getAllThreadIds(); | |
| int totalThreadLocals = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.MathContext; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.furkan.odemeplani; | |
| import java.math.BigDecimal; | |
| import java.math.MathContext; | |
| import java.math.RoundingMode; | |
| import java.time.LocalDate; | |
| import java.time.format.DateTimeFormatter; | |
| import java.util.ArrayList; | |
| import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // package com.furkan.odemeplani; | |
| // import java.math.BigDecimal; | |
| // import java.math.RoundingMode; | |
| // public class Main { | |
| // public static BigDecimal calculateYMO( | |
| // BigDecimal creditAmount, | |
| // int maturity, |
NewerOlder