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
function convertToKA(input) { | |
var chars = { | |
"a": "ა", | |
"b": "ბ", | |
"g": "გ", | |
"d": "დ", | |
"e": "ე", | |
"v": "ვ", | |
"z": "ზ", | |
"T": "თ", |
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 ge.gtug; | |
import android.content.Context; | |
import android.content.res.Resources; | |
import android.database.SQLException; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.database.sqlite.SQLiteDatabase.CursorFactory; | |
import android.database.sqlite.SQLiteException; | |
import android.database.sqlite.SQLiteOpenHelper; |
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 ge.edu.cst; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class ASCII2UTF8Converter { | |
// Georgian unicode alphabet starts at 4304 | |
private static final int UTF8_CHAR_CODE_START = 4304; | |
// Populate array of Georgian ASCII characters |
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
div { | |
zoom: 1; | |
} | |
.clearfix { | |
overflow: hidden; | |
height: 100%; | |
} | |
.clearfix { | |
padding: 24px; | |
background-color: #000; |
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
/** Clearfix */ | |
.clearfix:after { | |
clear: both; | |
content: "."; | |
display: block; | |
height: 0; | |
line-height: 0; | |
visibility: hidden; | |
} | |
.clearfix { |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ka" lang="ka"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>Test</title> | |
<style type="text/css"> | |
.float-left { | |
float: left; | |
width: 50%; |
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
$(function() { | |
var curpos = 0, | |
moving = false; | |
function empty() { return false; }; | |
$('#scroll').mousedown(function(e) { | |
curpos = e.pageY | |
moving = true; |
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
$('table.board').click(function(e) { | |
var target = e.target; | |
if (target.nodeName == 'TD') { | |
var params = { | |
rowIndex: target.parentNode.sectionRowIndex, | |
cellIndex: target.cellIndex | |
}; |
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
<?php | |
class DynamicImage { | |
/** | |
* @var HttpRequest | |
*/ | |
private $req; | |
/** | |
* @var File |
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
function getMouseXY(e) { | |
var x, y, e = window.event || e; | |
if (e.clientX) { | |
x = e.clientX + Math.max( | |
document.documentElement.scrollLeft, | |
document.body.scrollLeft | |
); | |
y = e.clientY + Math.max( |
NewerOlder