-
No. of proj accepted - 4
-
difficulty level/Desc. - High(geoinformation stuff)
-
tags - geo, geospatial, java, gis, spatiotemporal, geoprocessing, traffic, environment, R, R-project, earth observation, geoprocessing, spatial data, geostatistics, sensor web, search, mobile, eventing, database
-
college references - None
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
1. Install python 2.7(Download python from https://www.python.org/downloads/) | |
set environment variables to C:\Python27 | |
2. Install pip(install get-pip.py then cd into corresponding directory and run command python pip-get.py) | |
set environment variables to C:\Python27\Scripts | |
3. pip install flask(run in cmd (easy,direct)) |
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
Make an AppleScript to retrieve the current movie being played | |
in VLC Media Player or Quicktime and | |
bind it to some keyboard shortcuts. |
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
Create an AppleScript named Droplet. | |
Just drop a file into this Droplet | |
It will make a new Mail with the file as an attachment | |
The subject set to the file’s name. | |
If the Mail app is closed, the script will open it for you. |
##KERNEL COMPILATION
-
Download any kernel version from https://www.kernel.org.
-
tar xJvf kernel_verson_name
-
cd linux-version-name
-
sudo apt-get install libncurss5-dev libncursesw5-dev
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
{% extends "base.html" %} | |
{% block header %} | |
<div class="back"> | |
{% for p in parent_url %} | |
<a href="{{ p.url }}"> | |
< <span class="parent_text">{{ p.name }}</span> | |
</a> | |
{% endfor %} | |
</div> |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <ctype.h> | |
int main() | |
{ | |
FILE *fp; | |
int init, *FS, **FA, i, j, col, row, fs, r, c; | |
char *str, temp[50]; |
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
https://gist.github.com/kevinelliott/3135044 |
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
#include<iostream> | |
#include<stdlib.h> | |
#include<math.h> | |
#include<time.h> | |
#include<string.h> | |
#include<GLUT/glut.h> | |
int matrix[3][3]; //this matrix stores the x and o and blank box of the game, a value of 0 is blank, 1 is x and 2 is o | |
int playerturn; //playerturn if it is 1 then 1st players turn else if it is 2 then its second players turn | |
int result; //result of the game if it is 0 then draw if it is 1 then player 1 wins if it is 2 then player 2 wins |
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
// | |
// main.cpp | |
// anzal_graphic | |
// | |
// Created by admin on 06/11/2015. | |
// Copyright 2015 __MyCompanyName__. All rights reserved. | |
// | |
#include <GLUT/GLUT.h> | |
#include<OpenGL/OpenGL.h> |
OlderNewer