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
[harsha@DuraArch ~]$ sudo pacman -S mariadb | |
warning: mariadb-5.5.31-1 is up to date -- reinstalling | |
resolving dependencies... | |
looking for inter-conflicts... | |
Packages (1): mariadb-5.5.31-1 | |
Total Download Size: 9.24 MiB | |
Total Installed Size: 89.64 MiB | |
Net Upgrade Size: 0.00 MiB |
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 file="/WEB-INF/template/include.jsp"%> | |
<%@ include file="/WEB-INF/template/header.jsp"%> | |
<openmrs:htmlInclude file="${pageContext.request.contextPath}/moduleResources/patientnarratives/css/styles.css"/> | |
<openmrs:htmlInclude file="${pageContext.request.contextPath}/moduleResources/htmlformentry/htmlFormEntry.js"/> | |
<openmrs:htmlInclude file="${pageContext.request.contextPath}/moduleResources/htmlformentry/htmlFormEntry.css"/> | |
<%--<script type="text/javascript" src="${pageContext.request.contextPath}/"></script>--%> | |
<%--<link href="${pageContext.request.contextPath}/moduleResources/htmlformentry/htmlFormEntry.css" type="text/css" rel="stylesheet" />--%> |
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
/* | |
* @author: harshadura AT gmail DOT com :-) | |
* @license: CC | |
*/ | |
#include<iostream> | |
using namespace std; | |
double getUnitprice(int itemCode); | |
int main(){ |
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 com.harshadura.gsm.smsdura; | |
import java.io.InputStream; | |
import java.io.PrintStream; | |
import org.smslib.AGateway; | |
import org.smslib.IOutboundMessageNotification; | |
import org.smslib.Library; | |
import org.smslib.OutboundMessage; | |
import org.smslib.Service; | |
import org.smslib.modem.SerialModemGateway; |
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 file="/WEB-INF/template/include.jsp" %> | |
<openmrs:htmlInclude file="/scripts/jquery/jquery.min.js" /> | |
<openmrs:htmlInclude file="/scripts/jquery-ui/js/jquery-ui.custom.min.js" /> | |
<link href="<openmrs:contextPath/>/scripts/jquery-ui/css/<spring:theme code='jqueryui.theme.name' />/jquery-ui.custom.css" type="text/css" rel="stylesheet" /> | |
<script type="text/javascript"> | |
$j(document).ready(function(){ logging: true; | |
var $j = jQuery.noConflict(); |
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 | |
function getStatusCodeMessage($status) | |
{ | |
$codes = Array( | |
100 => 'Continue', | |
101 => 'Switching Protocols', | |
200 => 'OK', | |
201 => 'Created', | |
202 => 'Accepted', |
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
var $j = jQuery.noConflict(); | |
$j(document).ready(function(){ | |
var self = this; | |
var reset = { | |
'margin':0 | |
}, | |
createDiv, | |
createDivLeft, |
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 org.ralapanawa.sms.controller; | |
import org.ralapanawa.sms.db.DBConnect; | |
import java.sql.Connection; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
import com.mysql.jdbc.PreparedStatement; | |
public class LevelFilter { |
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
var $j = jQuery.noConflict(); | |
$j(document).ready(function(){ | |
var self = this; | |
var reset = { | |
'margin':0 | |
}, | |
createDiv, | |
createDivLeft, |
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
/* | |
* @author Niklas von Hertzen <niklas at hertzen.com> | |
* @created 13.7.2011 | |
* @website http://hertzen.com | |
*/ | |
(function( $ ){ | |
$.fn.feedback = function(options) { | |
var self = this; | |
var reset = { |
NewerOlder