Code Monkey home page Code Monkey logo

red's People

Contributors

dependabot-preview[bot] avatar firesharkstudios avatar rosenbjerg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

red's Issues

The connection was reset

I'm trying to make an HTTP server and I'm getting this when trying to connect. Help?
image
Code:

        public async void startServer() {
            var server = new RedHttpServer(6969, path);

            server.Get("/screen.png", (req, res) => {
                string temp = Path.Combine(path, "screenshot.png");
                Bitmap bmp = Utils.Screenshot();
                bmp.Save(temp, ImageFormat.Png);
                res.AddHeader("Content-Type", "image/png");
                return res.SendFile(temp);
            });

            server.WebSocket("/ws", async (req, res) => {
                await res.SendText("Welcome to the GooseSocket!");
                res.OnTextReceived += async (sender, eventArgs) => {
                    string msg = eventArgs.Text;
                    string[] args = msg.Split(' ');
                    Event e = events.Where(c => c.name.Trim().Equals(args[0].Trim())).FirstOrDefault();
                    string result = "Invalid Event.";
                    if (e != null)
                        result = e.Run(args);
                    await res.SendText(result);
                };
                return HandlerType.Final;
            });

            await server.RunAsync();
        }

Not working on Windows 10

Your server always fails on Windows 10, on _listener.Start(); in RedHttpServer.cs on Windows 10 with exception System.Net.HttpListenerException: 'Access is denied'

I just curious: have you ever tested your code before publishing?

RequestParameters.Values

Hey, thanks for merging the pull request and rolling out a new NuGet package.

I just pulled down the 3.5.1 NuGet package. I'm seeing the package now has .NET Standard 2.0 target but I'm not seeing the Values property on RequestParameters (even though I see on your GitHub site the code change is there).

Did you recompile to create the NuGet package with the Values property on RequestParameters? Maybe I'm doing something wrong but I'm not seeing it.

Depfu Error: No dependency files found

Hello,

We've tried to activate or update your repository on Depfu and couldn't find any supported dependency files. If we were to guess, we would say that this is not actually a project Depfu supports and has probably been activated by error.

Monorepos

Please note that Depfu currently only searches for your dependency files in the root folder. We do support monorepos and non-root files, but don't auto-detect them. If that's the case with this repo, please send us a quick email with the folder you want Depfu to work on and we'll set it up right away!

How to deactivate the project

  • Go to the Settings page of either your own account or the organization you've used
  • Go to "Installed Integrations"
  • Click the "Configure" button on the Depfu integration
  • Remove this repo (RedHttp/Red) from the list of accessible repos.

Please note that using the "All Repositories" setting doesn't make a lot of sense with Depfu.

If you think that this is a mistake

Please let us know by sending an email to [email protected].


This is an automated issue by Depfu. You're getting it because someone configured Depfu to automatically update dependencies on this project.

Path isn't set correctly(?)

Alright so the code i use to get the path is

path = Path.GetFullPath(Path.Combine(API.Helper.getModDirectory(this), "..", "..", "..", "htdocs")+"/");

(equal to C:\Users\[censored]\OneDrive\Skrivbord\goose\htdocs\)
but when Red loads it says Content root path: C:\Users\[censored]\OneDrive\Skrivbord\goose\
help?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.