Search found 11 matches

by Skittlez
20 May 2017, 14:16
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

Re: AHKhttp - HTTP Server

Add a route for your file. If you don't know how to, look at the Logo function for an example.
by Skittlez
11 Mar 2017, 13:04
Forum: Off-topic Discussion
Topic: Controlling a computer using a phone
Replies: 10
Views: 12116

Re: Controlling a computer using a phone

You could take a look at using AHKhttp for the server side. Then you just have to make http requests from your phone.
by Skittlez
28 Dec 2016, 14:23
Forum: Ask for Help (v1)
Topic: Please Help ;<
Replies: 4
Views: 1199

Re: Please Help ;<

Even if you are a beginner at least attempting to write some code shows you value other peoples time.
by Skittlez
06 Dec 2016, 21:08
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

Re: AHKhttp - HTTP Server

I haven't had any time to touch this at all, so no plans of now for file uploading. As for limiting connections it shouldn't be hard for you to implement.
by Skittlez
13 Nov 2014, 23:48
Forum: Off-topic Discussion
Topic: Giveaways, Sales, Discounts (no trading!)
Replies: 140
Views: 73620

Re: Giveaways, Sales, Discounts (no trading!)

@maestrith thanks for the game! If you want to play sometime just let me know.
by Skittlez
08 Nov 2014, 18:54
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

Re: AHKhttp - HTTP Server

Added support for mime types, updated example using ServeFile.
Documentation is on github.
by Skittlez
07 Nov 2014, 22:22
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

Re: AHKhttp - HTTP Server

@ahk7 I've added an example of how to serve images.
@kidbit Try updating to the latest version, I can't reproduce that bug.

I'll be adding support for mime types and writing some docs, for real this time, sometime this weekend.
by Skittlez
18 Oct 2014, 11:30
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

Re: AHKhttp - HTTP Server

I'll write some documentation later today.
@ahk7 If you have any features you'd like to see, just let me know and I'll see what I can do.
by Skittlez
16 Oct 2014, 21:02
Forum: Scripts and Functions (v1)
Topic: AHKhttp - HTTP Server
Replies: 60
Views: 42837

AHKhttp - HTTP Server

Basic http server I wrote, requires AHKsock. Example #Persistent #SingleInstance, force SetBatchLines, -1 paths := {} paths["/"] := Func("HelloWorld") paths["404"] := Func("NotFound") paths["/logo"] := Func("Logo") server := new HttpServer() server.LoadMimes(A_ScriptDir . "/mime.types") server.SetPa...
by Skittlez
08 Jul 2014, 21:20
Forum: Scripts and Functions (v1)
Topic: Cappy - Make your capslock useful
Replies: 3
Views: 2587

Re: Cappy - Make your capslock useful

You could change line 13 to chars := StrSplit("abcdefghijklmnopqrstuvwxyz[")
Then you'd be able to use Capslock + [ instead of CTRL + [
by Skittlez
08 Jul 2014, 16:36
Forum: Scripts and Functions (v1)
Topic: Cappy - Make your capslock useful
Replies: 3
Views: 2587

Cappy - Make your capslock useful

I made this script to make using vim + tmux easier.

Go to advanced search