Code Monkey home page Code Monkey logo

backend's People

Contributors

darrylyeo avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

darrylyeo

backend's Issues

Embed Programs

Create system to allow users to embed programs on remote sites.

Add loadProgram()

A lot of times, with big programs on khanacademy, the code gets really cluttered because of how big it is. It would be really useful if you could run something like: var foo = loadProgram("0000000235");, and use model.exports like how node.js does it. I have a half working prototype here, but I can't get processing functions to work.

Improved Hot List

Hot List will take into account views as well, rather than just votes or spinoffs.

CSUnderground is down

I think I crashed csunderground. These are things I did:

  • I had a program that modified itself (only on local server)
  • I copied it to csunderground (https://csunderground.org/program/0000000278)
  • It lagged while saving (never got a "Saved!" message)
  • I reloaded it and it gave "csunderground.org refused to connect."

Code here:

var getCode = function() {
    return window.parent.liveEditor.editor.editor.getValue();
};

var setCode = function(code) {
    window.parent.liveEditor.editor.editor.setValue(code);
};

var x = 0;

draw = function() {
    x += 125;
    
    var code = getCode();
    
    
    var pos = code.indexOf("x += ");
    var end = code.substring(pos).indexOf(";") + pos;
    
    var num = parseInt(code.substring(pos + 5, end));
    num += 1;
    
    var newCode = code.substring(0, pos + 5) + num + code.substring(end);
    //setCode(newCode);
};

CSS3 Filters lagging out browsers.

Filters we're using to make thumbnails look nice are lagging out users.

Potentially change to running filters once and setting background images to base64 data client side?

Program Discussion Check List

  • Posting
  • Editing
  • Deletion
  • Vote system
  • User karma system (reddit's karma)
    • Vote scores per post are applied to user's total karma.
  • Reply system
    • Allow nested replies (potentially)
  • Discussion flagging & (user) moderation
    • Give users ability to block other user from posting on their programs

Waiting for other features

  • Ability to mute notifications

Implementation Roadmap

Once something is completed on this list, it will be removed.

  • #11
  • Account page (change password)
  • Spin-Off flow
  • Program Flagging

Blocking system

  • Selective Blocking
    • Each option can be toggled per user.
    • Full block (select all) option
    • Prevent user from commenting on your programs
    • Prevent you from seeing other user's programs
    • Prevent you from seeing other user's discussion posts

User subscription system

Layout

  • Users will subscribe to a user, incrementing the user's sub count
  • Subscriber will now get notifications when the user posts a program to their subscriber feed
  • Users can also post text posts into the subscriber feed
  • Subscribers will be able to reply to subscriber posts

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.