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
<!DOCTYPE HTML> | |
<html> | |
<body> | |
<form method='post' enctype='multipart/form-data'> | |
<input type='file'> | |
<input type='submit'> | |
</form> | |
<form name="form" method="post" enctype='multipart/form-data'> | |
<input name='file' type='file' style='display:none;' onchange='document.form.name.value=this.files&&this.files.length?this.files[0].name:"No file chosen"' required> |
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 main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
n := 999999 | |
// fmt.Println(fibonacci_recursion(n)) |
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
public class IpLocation | |
{ | |
public string domain { get; set; } | |
public string address { get; set; } | |
public string numAddress { get; set; } | |
public string location { get; set; } | |
} |