Skip to content

Instantly share code, notes, and snippets.

View r351574nc3's full-sized avatar

Leo (중광) Przybylski r351574nc3

View GitHub Profile
@r351574nc3
r351574nc3 / keybase.md
Created September 15, 2022 06:42
Keybase verification

Keybase proof

I hereby claim:

  • I am r351574nc3 on github.
  • I am r351574nc3 (https://keybase.io/r351574nc3) on keybase.
  • I have a public key ASAkjwohtP9SqwTgdiBs1qus-JLJzY8EAFVm2VL2ZKK2uQo

To claim this, I am signing this object:

@r351574nc3
r351574nc3 / blockstack.md
Created November 1, 2017 23:20
bockstack
@r351574nc3
r351574nc3 / linecount.scala
Last active July 5, 2016 19:26
Functions that count lines in a file, then creates a new file sorted by those line counts.
import scala.collection.mutable.{Map}
import scala.io.{Source}
import java.io.{File, PrintWriter}
import scala.util.{Sorting}
object linecount {
def run(path:String) = {
var frequencies:Map[String, Int] = Map()
for (line <- Source.fromFile(path).getLines) {
@r351574nc3
r351574nc3 / BootStrapSpringBeans.xml
Last active August 29, 2015 14:09
Jersey and Kuali Setup
<bean id="rice.ksb.serviceBus"
class="org.kuali.rice.core.framework.resourceloader.GlobalResourceLoaderServiceFactoryBean">
<property name="serviceName" value="rice.ksb.serviceBus" />
</bean>
<bean id="organizationService" class="com.github.kualigan.ducktyping.impl.OrganizationServiceImpl" />
<bean id="jsonOrganizationService" class="com.github.kualigan.ducktyping.rest.JsonOrganizationService">
<property name="organizationService" ref="organizationService" />
</bean>
@r351574nc3
r351574nc3 / .gitconfig
Created November 13, 2014 14:47
Global .gitconfig
[user]
name = r351574nc3
email = r351574nc3 [at] gmail.com
signingkey = 2DDF1261
[push]
default = simple
editor = emacs
[alias]
ci = commit
st = status
diff --git a/03_hiloPreApproval_eDocLite.xml b/03_hiloPreApproval_eDocLite-leo.xml
index 6a7fda6..5846765 100644
--- a/03_hiloPreApproval_eDocLite.xml
+++ b/03_hiloPreApproval_eDocLite-leo.xml
@@ -109,33 +109,6 @@
<script language="javascript" />
<xsl:call-template name="htmlHead" />
-<script language="JavaScript">
-$(document).ready( function () {
@r351574nc3
r351574nc3 / DucktypeInvocationHandler.java
Last active August 29, 2015 14:01
Ducktyping Web Services
package com.github.kualigan.ducktyping;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.Map;
import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
@r351574nc3
r351574nc3 / pom1.xml
Last active December 30, 2015 14:19
redis-maven-plugin examples
<plugin>
<groupid>org.kualigan.maven.plugins</groupId>
<artifactid>redis-maven-plugin</artifactId>
<version>${redis-maven-plugin.version}</version>
</plugin>
@r351574nc3
r351574nc3 / default.tex
Last active December 28, 2015 00:59
KD 2013 LaTeX Beamer Templates
\usebackgroundtemplate%
{%
\includegraphics[width=\paperwidth,height=\paperheight]{images/header.png}%
}
@r351574nc3
r351574nc3 / KimBaseBeans1.xml
Last active December 21, 2015 12:08
Examples for overriding KIM DataDictionary beans
<beans>
...
<bean id="KimBaseBeans-principalName" parent="myInstitutionKimBaseBeans-principalName-parentBean" />
...
</beans>