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
def eisenhower_matrix(): | |
print("Tell me the first pending task that you can think of?") | |
task = input("> ") | |
print("Is this %s important?" % task) | |
is_important = input("(y/n)> ") | |
print("Is this %s urgent?" % task) | |
is_urgent = input("(y/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
package intro3.java; | |
public class Browser { | |
public void navigate(String address){ | |
String ip = findIpAddress(address); | |
String html = sendHttpRequest(ip); | |
} | |
private String sendHttpRequest(String ip) { | |
return "<html></html>"; |
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
package yuu.tube; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.PreparedStatement; | |
import java.sql.SQLException; | |
import java.util.Scanner; | |
// Console class | |
public class Console { |