Skip to content

Instantly share code, notes, and snippets.

@fajran
fajran / a.py
Created December 15, 2011 09:39
def angka():
return 10
print angka()
@fajran
fajran / index.php
Created March 13, 2012 13:37
Referer
<pre>
File: <?=basename($_SERVER['SCRIPT_FILENAME']);?>
Referer: <?=$_SERVER['HTTP_REFERER'];?>
Lanjut: <a href="index.php">index.php</a>
<a href="a.php">a.php</a>
<a href="b.php">b.php</a>
<script type="text/javascript">
function compute() {
var a = $('#value_a')[0].value;
var b = $('#value_b')[0].value;
$.ajax({
url: '/compute/?a=' + a + '&b=' + b,
success: function(data) {
$('#result').html(data);
}
import sys
import pyproj
extents = 122115.0, 485775.0 # lower left coordinate of science park map
cellsize = 5, 5 # cell size of science park map
src = pyproj.Proj(proj='latlong',datum='WGS84') # regular GPS coordinate system (used in google maps)
dst = pyproj.Proj(init='EPSG:28992') # coordinate system of NL/science park map
@fajran
fajran / .gitignore
Created September 7, 2012 08:38
Pertemuan 1 - Python - UVT
*.swp
* Now talking on #uvt
* Topic for #uvt is: "Diskusi Kelompok Program Python 2012"
* Topic for #uvt set by basic123 at Fri Sep 14 14:50:54 2012
-ChanServ- [#uvt] "Selamat Datang di Kelas UVT"
* #uvt :http://www.uvt.web.id
* fr4w4_ has quit (Quit: Page closed)
* basic123 (~pythonuni@111.94.107.157) has joined #uvt
* ChanServ gives channel operator status to basic123
<basic123> wah, belum pada datang ya
<basic123> Pak fajran: assalamualaikum
@fajran
fajran / M4.java
Last active December 18, 2015 03:29
Himpunan unik di Scala
public class M4 {
private int posisi;
private String asamAmino;
public M4(int posisi, String asamAmino) {
this.posisi = posisi;
this.asamAmino = asamAmino;
}
public int getPosisi() {
@fajran
fajran / m.py
Created June 9, 2013 19:27
Himpunan unik di Python
class M(object):
def __init__(self, posisi, asam_amino):
self.posisi = posisi
self.asam_amino = asam_amino
def __repr__(self):
return "%s%s" % (self.posisi, self.asam_amino)
def __eq__(self, o):
D/SurveyDiscoveryService(18943): surveys : {
D/SurveyDiscoveryService(18943): "version" : "0.1"
D/SurveyDiscoveryService(18943): }
W/System.err(18943): org.json.JSONException: No value for surveys
W/System.err(18943): at org.json.JSONObject.get(JSONObject.java:354)
W/System.err(18943): at org.json.JSONObject.getJSONArray(JSONObject.java:544)
W/System.err(18943): at net.mreunionlabs.kudata.service.SurveyDiscoveryService.storeSurveys(SurveyDiscoveryService.java:145)
W/System.err(18943): at net.mreunionlabs.kudata.service.SurveyDiscoveryService.discoverSurvey(SurveyDiscoveryService.java:96)
W/System.err(18943): at net.mreunionlabs.kudata.service.SurveyDiscoveryService.onHandleIntent(SurveyDiscoveryService.java:71)
W/System.err(18943): at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
@fajran
fajran / amd64
Created October 19, 2013 10:56
apt-web
APT {
Architecture "amd64";
Get {
Download-Only "true";
};
};
Dir {
State "./dir/apt" {
Status "./status";