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
from Tkinter import * | |
import Queue | |
class Application(Frame): | |
""" A GUI Application""" | |
def __init__(self, master): | |
""" Initialize the Frame """ | |
Frame.__init__(self, master) |
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 | |
$app_id = "YOUR-APP-ID"; | |
$app_secret = "YOUR-APP-SECRET-ID"; | |
$my_url = "YOUR-CALLBACK-URL"; | |
//$my_url = "http://yusyaif.com/facebook"; | |
$code = $_REQUEST["code"]; | |
session_start(); | |
if(empty($code)) { |
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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package reversestring; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
/** |
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
//STACK DINAMIS (DENGAN LINKED LIST) | |
#include <stdio.h> | |
#include <malloc.h> | |
#include <string.h> | |
typedef struct{ | |
char nim[10]; | |
char nama[50]; | |
float nilai; | |
}nilaiMatKul; |
NewerOlder