Skip to content

Instantly share code, notes, and snippets.

View manios's full-sized avatar

Christos Manios manios

View GitHub Profile
@manios
manios / security_certification.md
Last active December 12, 2015 02:48
Security certifications

ECH Council

##Πιστοποιήσεις##

  • [C|EH: Certified Ethical Hacker]
  • [C|HFI: Computer Hacking Forensic Investigator]
  • [E|CSA: EC-Council Certified Security Analyst]
  • [L|PT: Licensed Penetration Tester ]
  • [E|NSA: EC-Council Network Security Administrator]
@manios
manios / isaca_cert_sec.md
Last active December 14, 2015 03:49
ISACA foundation security certification information

ISACA Foundation

##Πιστοποιήσεις## Οι πιστοποιήσεις που διοργανώνει το ISACA είναι οι εξής:

  • [CISA: Certified Information Systems Auditor ]: Enhance your career by earning CISA—world-renowned as the standard of achievement for those who audit, control, monitor and assess information technology and business systems.

  • [CISM: Certified Information Security Manager ]: CISM means higher earning potential and career advancement. Recent independent studies consistently rank CISM as one of the highest paying and sought after IT certifications.

@manios
manios / solrUnderTheHood
Last active December 27, 2015 09:09
Solr Under the Hood notes
* Codecs slide 63 decide how data will be written in disk.
* Explosion scenario : one value is split to thousands of tokens
## Labs
* jar file for Lab 2 is compiled with JDK 1.7
@manios
manios / java.env
Last active August 29, 2015 14:20
Zookeeper configuration files which help to create a Zookeeper ensemble for SolrCloud
ZOO_LOG_DIR=/var/log/zookeeper1
ZOO_LOG4J_PROP=INFO,ROLLINGFILE
@manios
manios / stern-spring-template.tpl
Last active May 28, 2024 06:33
Stern template to format Spring Boot json logs into normal slf4j lockback text in Kubernetes. Used in https://manios.org/2023/06/18/kubernetes-view-pod-json-log-in-plain-text-with-stern-template
{{ printf "%-35s " .PodName -}}
{{ with $d := .Message | tryParseJSON -}}
{{ $myMessage := "" -}}
{{ $myStackTrace := "" -}}
{{ if $d.message -}}
{{ $myMessage = $d.message -}}
{{ end -}}
{{ if $d.stack_trace -}}
{{ $myStackTrace = $d.stack_trace -}}
{{ end -}}