Coder Social home page Coder Social logo

assetify's People

Contributors

doron050 avatar hadardayan avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

galhrrs bernaz7

assetify's Issues

Asset -

Create Asset
Update Asset
Asset card
Asset list
Search button (not include search)

CSS FUN (in asset card)

  1. המערכת תתמוך ב CSS 3 ותעשה שימוש ביכולות הבאות:
    i. Text-shadow
    ii. Transition
    iii. Multiple-columns
    iv. Font-face
    v. Border-radius

Web service (Real estate news)

iii. למערכת יהיה שימוש ב Web Service אחד לפחות (למשל עדכונים מהבורסה, טמפרטורות, חדשות וכד' – כמובן לפי ה context של האתר הספציפי)

Group By

  1. המערכת תתמוך בלפחות שאילתה אחת המבצעת Group By. מדובר על Group by בקוד שלכם ממש ולא רק ש"מאחורי הקלעים" הקוד יתורגם לJoin.

d3 js

ii. המערכת תציג נתונים סטסטיטיים בלפחות 2 גרפים (לדוגמא – ממוצע סכום הרכישות המצטבר לכל חודש) באמצעות החבילה D3.JS : http://d3js.org/

(Group by)

Tree in D3 creation issue

0

Tree Layout in D3.js

We need to create simple tree in D3, using basic tree data. Now with respect to it we written code as below which throwing error, now sure where we went wrong -


  function getTree() {
  var data=[{
     "name":"A",
     "children":[
        {
           "name":"B",
           "children":[
              {
                 "name":"C"
              },
              {
                 "name":"E"
              }
           ]
        },
        {
           "name":"P",
           "children":[
              {
                 "name":"Q"
              },
              {
                 "name":"R"
              }
           ]
        }
     ]
  }];

    var that = {};
    that.render = function() {

    var canvas = d3.select("body").append("svg")
                .attr("width", 500)
                .attr("height", 500)
                                .append("g")
                                    .attr("transforn", "translate(50, 50)");

        var tree = d3.layout.tree()
             .size([400, 400]);

        d3.json(function (data) {

            var nodes = tree.nodes(data);
            var links = tree.links(nodes);

            var node = canvas.selectAll(".node")
                  .data(nodes)
                  .enter()
                  .append("g")
                       .attr("class", "node")
                       .attr("transform", function (d)  { return "translate(" + d.y + "," + d.x + ")"; })

            node.append("circle")
                .attr("r", 5)
                .attr("fill", "steelblue");

            node.append("text")
                 .text(function (d) {return d.name; })

       var diagonal = d3.svg.diagonal()
            .projection(function (d) { return [d.y, d.x]; });

            canvas.selectAll(".link")
                 .data(links)
                 .enter()
                 .append("path")
                 .attr("class","link")
                 .attr("fill","none")
                 .attr("stroke", "black")
                 .attr("d",diagonal);

            })
    };
    return that;
}

var c = getTree();
c.render();

We getting error as -

[1A[2KNode.js (linux; U; rv:v8.15.1) D3 JS: Unit Testing: tree should have the correct width FAILED

Expected 0 to be 6.

Join (We have cookies)

  1. המערכת תתמוך בלפחות 2 שאילתות המבצעות Join בין 2 סוגי ישויות או יותר. מדובר על Join בקוד שלכם ממש ולא רק ש"מאחורי הקלעים" הקוד יתורגם לJoin

recommandetion

i. המערכת תציע מוצר היכול לעניין את הלקוח על פי למידת סטטיסטיקה (היסטוריה) - לא מדובר ב query של DB. כלומר, כמובן שהאלגוריתם ישתמש במידע שישנו ב DB, אך על האלגוריתם להיות עם לוגיקה מוצקה ועם "בשר" ולא משהו פשוט. בדוגמא של "הבלוג של שאולי" המערכת תציע ללקוח post שיכול לעניין אותו – אותו ממש, ולא משהו שיכול לעניין כל אחד (לדוגמא).

Google Maps -

iv. באחד מדפי המערכת תוצג מפה מבוססת Google Maps/Bing Maps ובה מסומנות כתובות שנקראו מבסיס הנתונים (למשל רשימת סניפים של רשת החנויות)

Facebook API

v. המערכת תתממשק ל Twitter API או Facebook API ותאפשר לקבל/לשדר נתונים בהתאם (לוגין לא נחשב, וגם לשים קישור שיבצע שיתוף לא נחשב) - למשל – עדכון דף ה Facebook של המערכת לגבי מוצרים חדשים, מספר הלקוחות הגולשים וכד'.

Authentication -

Login Page
Register Page
Admin Page
User Page
No auth needed page

המערכת תכיל ממשק מנהל עם הרשאת גישה באמצעות שם משתמש וסיסמא. למנהל יהיו יכולות עריכה/ חיפוש מורחבות לעומת משתמש רגיל – להוסיף Role לUser

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.