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 myTorahReading; | |
use Exporter; | |
use charnames (); | |
use Tie::IxHash; | |
#URL: http://perldoc.perl.org/perluniintro.html | |
#URL: https://en.wikipedia.org/wiki/Unicode_and_HTML_for_the_Hebrew_alphabet | |
our @EXPORT = qw ( $alef $bet $gimel $dalet $he $vav $zayin $het $tet | |
$yod $final_kaf $kaf $lamed $final_mem $mem $final_nun $nun $samekh |
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
@ECHO OFF | |
:: REM URL: http://stackoverflow.com/questions/12621969/clear-cache-of-browser-by-command-line | |
IF NOT EXIST "%TEMP%" GOTO :SkipTemp | |
ERASE "%TEMP%\*.*" /F /S /Q | |
FOR /D %%i IN ("%TEMP%\*") DO RMDIR /S /Q "%%i" | |
:SkipTemp | |
IF NOT EXIST "%TMP%" GOTO :SkipTmp | |
ERASE "%TMP%\*.*" /F /S /Q | |
FOR /D %%i IN ("%TMP%\*") DO RMDIR /S /Q "%%i" |
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
@ECHO OFF | |
:: REM :: | |
SET CERTFILE=%1 | |
IF NOT EXIST %CERTFILE% GOTO :MissingCert | |
FOR /F %%i IN ("%CERTFILE%") DO @SET BASE=%%~ni | |
SET ALIASNAME=%BASE:_=.% | |
IF "x%CERTFILE%x" == "xx" GOTO :MissingCert | |
SET KEYTOOL="%JAVA_HOME%\bin\keytool.exe" | |
SET KEYSTOREFILE="%JAVA_HOME%\jre\lib\security\cacerts" | |
IF NOT EXIST %KEYSTOREFILE% SET KEYSTOREFILE="%JAVA_HOME%\lib\security\cacerts" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<projectDescription> | |
<name>${projectName}</name> | |
<comment></comment> | |
<projects> | |
</projects> | |
<buildSpec> | |
<buildCommand> | |
<name>org.eclipse.jdt.core.javabuilder</name> | |
<arguments> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<classpath> | |
<classpathentry kind="src" output="target/classes" path="src/main/java"> | |
<attributes> | |
<attribute name="optional" value="true"/> | |
<attribute name="maven.pomderived" value="true"/> | |
</attributes> | |
</classpathentry> | |
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> | |
<attributes> |
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 utilities.common; | |
import java.text.NumberFormat; | |
import java.util.Random; | |
import org.apache.commons.lang3.StringUtils; | |
import org.apache.logging.log4j.LogManager; | |
import org.apache.logging.log4j.Logger; | |
import com.google.common.base.Joiner; |
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
#!/bin/bash | |
# .bashrc | |
# User specific aliases and functions | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
if [ -f /etc/profile ]; then |
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
#!/usr/bin/bash | |
alias .......='cd ../../../../../..' # 6 Back | |
alias ......='cd ../../../../..' # 5 Back | |
alias .....='cd ../../../..' # 4 Back | |
alias ....='cd ../../..' # 3 Back | |
alias ...='cd ../..' # 2 Back | |
alias ..='cd ..' # 1 Back | |
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
# generated by Git for Windows | |
test -f ~/.profile && . ~/.profile | |
test -f ~/.bashrc && . ~/.bashrc | |
trap 'test -n "$SSH_AGENT_PID" && eval `/usr/bin/ssh-agent -k`' 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
Option Explicit | |
Sub CreatePayPeriod() | |
Dim colStart, colLast, colIndex, colSum | |
Dim colSumLetter, colLetter, colStartLetter, colLastLetter, colSecondWeekLetter | |
Dim rowDate, rowSum, intWeekend, rowDay, rowHourStart, rowHourLast, rowAccum, rowLast | |
Dim rowSecondWeekSum, rowSecondWeekAccum, secondWeek | |
Dim dtStart, dtCurrent, dtLast | |
Dim i | |
Dim colRows As Collection |
OlderNewer