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
{"app_vendor":"Neptune Software Group","app_version_nm":"1.0.2","app_prev_version":"1.0.1","app_download_url":"http://192.168.2.251:8080/OrbitLite/Orbit.apk","app_name":"OrbitLite","app_version_cd":"1"} |
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
<? | |
$value[] = null; | |
$result = mysql_query("SELECT * FROM users WHERE uname='$uname'") or die(mysql_error()); | |
$row = mysql_fetch_array($result); | |
if($row) | |
{ | |
$title = $row['title']; | |
$val = unseralize($row['values']); | |
for ($val as $v){ | |
$value[] = unseralize($v); |
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
deb http://archive.ubuntu.com/ubuntu precise main universe restricted multiverse | |
deb http://archive.ubuntu.com/ubuntu precise-security universe main multiverse restricted | |
deb http://archive.ubuntu.com/ubuntu precise-updates universe main multiverse restricted | |
deb http://archive.ubuntu.com/ubuntu precise-proposed universe main multiverse restricted |
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
#!/usr/bin/sh | |
sudo apt-get update | |
#OpenGL: | |
sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev | |
#OpenAL: | |
sudo apt-get install libopenal0a libopenal-dev | |
#ALUT: | |
sudo apt-get install libalut0 libalut-dev |
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
import java.util.*; | |
public class Listing { | |
LinkedList ll = new LinkedList(); | |
Listing() | |
{ | |
//adding an item to the list | |
l.add(3); | |
l.add(2); |
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 <stdio.h> | |
int main() | |
{ | |
int c, first, last, middle, n, search, array[100]; | |
printf("Enter number of elements\n"); | |
scanf("%d",&n); |
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
Here's the algorithm for this type of sort. please implement it also | |
so that you can learn. Thanks. | |
function insertionSort(array A) | |
for i from 1 to length[A]-1 do | |
value := A[i] | |
j := i-1 | |
while j >= 0 and A[j] > value do | |
A[j+1] := A[j] | |
j := j-1 |
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 <stdio.h> | |
int main() | |
{ | |
int array[100], n, c, d, position, swap; | |
printf("Enter number of elements\n"); | |
scanf("%d", &n); |
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<stdio.h> | |
int numb[8]; | |
int i, j, temp; | |
int main(int argc, char* argv[]) | |
{ | |
//populate the array | |
while(i < sizeof(numb)){ | |
numb[i] = i+2; |
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<iostream> | |
using namespace std; | |
int numb[20]; | |
int i (0), j (0), temp; | |
int main(int argc, char* argv[]) | |
{ | |
while(i < sizeof(numb)){ | |
numb[i] = i+2; |
NewerOlder