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
package trying; | |
/** | |
*Trying for dmoz.org links | |
* @author kulekci | |
*/ | |
class WebPageRequest extends webpage{ | |
private String [][] acceptable_anchor = null; | |
boolean subCategory = false; |
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 <16f877.h> | |
#fuses XT,NOWDT,NOPROTECT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NODEBUG,NOCPD | |
#use delay (clock=4000000) | |
#use fast_io(b) | |
#use rs232(baud=1200, xmit=PIN_C6, rcv=PIN_C7,) |
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
<html> | |
<head> | |
<title>Example Page</title> | |
</head> | |
<body> | |
<div id="text"></div> | |
<script type="text/javascript"> | |
var urls = { | |
"37":"#previous-page",//left button |
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
package socketprogramming; | |
/** | |
* | |
* @author kulekci | |
*/ | |
import java.io.*; | |
import java.net.*; | |
import java.net.InetAddress; |
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
function recursively_ajax(active_num,end_num){ | |
var number = 0; | |
if (active_num == end_num) return; | |
$.ajax({ | |
type:"GET", | |
url: "pages.php", | |
data: "p="+active_num, | |
success: function(data){ | |
$('.printable_area').addClass("done"); | |
$('.printable_area').append(data); |
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
<?php | |
if ($_POST['contact_form_posted']){ | |
echo 'posts'; | |
} | |
?> | |
<html> |
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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Json Usage Example</title> | |
<style> | |
.area span{ | |
width:180px; | |
display:block; | |
float:left; | |
} |
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
import javax.swing.JFrame; | |
/** | |
* | |
* @author kulekci | |
*/ | |
public class Main { | |
/** |
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
<br class='clear' /> | |
<div align="right"> | |
<script>function pin_click(urll,titlee,media) {window.open('pinterest.com/pin/create/button/?url='+encodeURIComponent(urll)+'&description=test'+encodeURIComponent(titlee)+'&media='+media,'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script> | |
<script>function twt_click(urll,titlee) {window.open('http://twitter.com/intent/tweet?url='+encodeURIComponent(urll)+'&text='+encodeURIComponent(titlee)+' via @kulekci&related=scanf.info','sharer','toolbar=0,status=0,width=626,height=436');return false;}</script> | |
<a href="http://twitter.com/intent/tweet?url={Permalink}&text={Title} via @kulekci&related=scanf.info" target="_blank" onclick="return twt_click('{Permalink}','{Title}')" ><img src="http://kulekci.net/wp-content/uploads/social_networking_iconpack/twitter_16.png" alt="Twitter"></a> |
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
git checkout master | |
git merge branchname | |
git push origin master |
OlderNewer