Collaboration.Modern Developer

ROOM NAME

Room Name

Change details the of this chatroom here

ROLES

Eu nulla morbi, eros placerat mattis lectus

  • Alex Miller

    Product Manager
  • James Morrison

    3D Animator
  • Miranda Morrison

    Concept Artist
  • Alex Miller

    Product Manager

COLORS

These colors are for the entire room

  • Application

    #DD77CB

    The general color used for the application

  • Box Value

    #6C84DC

    The value of message backgrounds

  • Text Color

    #8D8D8D

    The message text color

close settings
  • Alexander Smith 16 min ago

    I noticed it yesterday only and before reading your article. I wonder if they aren't only now starting to roll it out completely (and maybe coded the feature back in November)

  • Anna Pearson 12 min ago

    This is important stuff. Does if have a Wikipedia entry yet?

    • James Morrison 11 min ago

      It's there from a long time...2+ years back, I came to know about this via littlebigdetails.com

  • Alexander Smith5 min ago

    Video testimonials can be recorded from anywhere with the Modulates video recorder and then uploaded from anywhere

  • SEND
<!DOCTYPE html>
<html lang="en">
<head>
<title>ACE in Action</title>
<style type="text/css" media="screen">
    #editor {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
</style>
</head>
<body>

<div id="editor">function foo(items) {
    var x = "All this is syntax highlighted";
    return x;
}</div>

<script src="/ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
    var editor = ace.edit("editor");
    editor.setTheme("ace/theme/monokai");
    editor.getSession().setMode("ace/mode/javascript");
</script>
</body>
</html>