This file contains 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
//include: | |
//WebContent/WEB-INF/lib/log4j-1.2.16.jar | |
//src/Log4JServlet.java | |
import java.io.File; | |
import javax.servlet.ServletConfig; | |
import javax.servlet.ServletContext; | |
import javax.servlet.ServletException; |
This file contains 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
// Copyright 2008 - Team Servo | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Data; | |
using System.Data.Sql; | |
using System.Data.SqlClient; | |
using MySql.Data.MySqlClient; |
This file contains 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 ph.com.voyager.epg.core.model.volley; | |
import com.android.volley.toolbox.ImageLoader; | |
import android.graphics.Bitmap; | |
import android.support.v4.util.LruCache; | |
/** | |
* A straightforward implementation of the {@link ImageLoader.ImageCache ImageCache} in LruCache | |
* provided by Android + Support Library. |
This file contains 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 ph.com.voyager.epg.ui; | |
import android.content.Context; | |
import android.util.AttributeSet; | |
import android.view.MotionEvent; | |
import android.widget.ListView; | |
/** | |
* A slightly customized list view for displaying shows. Provides handling for touch event greed. | |
* This is used so that the main list will not deprive the ViewPager List from horizontal swipe |
This file contains 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"?> | |
<!-- custom_rules.xml contains a set of added functions for Ant to use. This includes useful macrodefs for | |
testing a particular test case or package, and you can even define your own that executes them for convenience. --> | |
<project name="RobotiumMyProject"> | |
<property name="reports.dir" value="reports"/> | |
<property name="tests.dir" value="com.jerieljan.myproject.tests"/> | |
<target name="init-props"> |
This file contains 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
/* | |
* SynchronizedRedisBlock v1.0 | |
* v1.0 | |
* June 18, 2014 | |
* | |
* Copyright 2014, Jeriel Jan del Prado | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* http://www.apache.org/licenses/LICENSE-2.0 |
This file contains 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
#rightCol { | |
display:none !important; | |
} | |
#leftCol { | |
width:48px !important; | |
} | |
#leftCol:hover { | |
width:165px !important; |
This file contains 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
/* | |
* Job | |
* v1.0 | |
* June 18, 2014 | |
* | |
* Copyright 2014, Jeriel Jan del Prado | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* http://www.apache.org/licenses/LICENSE-2.0 |
This file contains 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
# Flexget Config | |
# @author jerieljan | |
templates: | |
anime: | |
inputs: | |
- rss: { url: 'http://www.nyaa.eu/?page=rss&cats=1_37&filter=2', silent: yes, ascii: yes } | |
- rss: { url: 'http://tokyotosho.info/rss.php?filter=1', silent: yes, ascii: yes } | |
series: | |
settings: |
This file contains 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 | |
# A basic directory management script file. | |
# Add this to incron via incrontab -e with the IN_CLOSE_WRITE and IN_MOVED_TO flag. | |
# Usage: manage-dir.sh <file-to-process> <base-directory> | |
INCOMING="$1" | |
BASE_DIR="$2" | |
SUBFOLDER="" | |
ICON="/usr/share/icons/gnome/32x32/actions/document-save-as.png" |
OlderNewer