GithubHelp home page GithubHelp logo

curran / screencasts Goto Github PK

View Code? Open in Web Editor NEW
2.6K 388.0 2.0K 30.57 MB

Code that goes along with my screencasts.

Home Page: https://www.youtube.com/playlist?list=PL9yYRbwpkyktAZaphR2UfeYpgNGnIqjs9

License: MIT License

HTML 2.71% JavaScript 96.91% CSS 0.25% Shell 0.11% Makefile 0.02%

screencasts's Introduction

This repository contains code that goes along with my screencasts.

Also check out this video course: D3.js in Motion.

D3 101


Web Technologies

  • Introduction to Node.js (May 2016) - screencast - code - A tutorial on NodeJS for folks who have never used it before. Covers background, module system, non-blocking I/O, reading and writing files, simple HTTP server, and NPM basics.
  • JavaScript Modules & Build Tools (June 2015) - screencast - code - A brief tour of the ocean of tools around JavaScript Modules. Content at https://github.com/curran/screencasts/tree/gh-pages/jsModulesAndBuildTools Covers Browser Globals, Namespaces, CommonJS, AMD, ES6, Browserify, Webpack, RequireJS, JSPM, Esperanto, Rollup, and Make.
  • Navigation for Single Page Applications (October 2014) - screencast - code - This screencast covers how to construct a single page application with a tab-like navigation user interface and routing using only Web Standards (HTML, JavaScript, CSS, The DOM).
  • Introduction to Dynamic HTML with JavaScript, CSS and AJAX (September 2014) - screencast - code - An introduction to dynamic HTML using only Web standards (no libraries) to build the essence of a blog. Covers HTML, JavaScript, DOM APIs and CSS including Media Queries.
  • Introduction to Angular.js in 50 examples (March 2014) - screencast - code - Introduces Angular.js, covers background of data binding, single-page-apps, and related libraries, then introduces Angular features by example.
  • Building a Graphing Calculator (November 2013) - screencast - code - Covers plotting of mathematical functions, linking user interface elements to a model behind the graphics, and using the URL hash fragment (without any single-page-app libraries).
  • Mathematical Graphic Patterns (August 2013) - screencast - code - Introduces HTML5 Canvas and animation.
  • Introduction to JavaScript Programming (July 2013) - screencast - code - Introduces the syntax and semantics of the JavaScript Language.
  • Polygon Editor with HTML5 Canvas, Backbone.js and Require.js (April 2013) - screencast - code - Introduces the Model View Controller concept along with Require.js, Underscore.js, and Backbone.js by building an interactive polygon editor.
  • Bouncing Circles (March 2013) - screencast - code - Covers interaction with HTML5 canvas and n-body physics simulation.

Presentations on My Work

  • Chiasm (May 2015) - video - slides - A presentation about the Chiasm Open Source Data Visualization project.
  • Constructing Interactive Data Visualizations (February 2015) - screencast - code - A talk describing a new data visualization project involving reusable modules, linked visualizations, and "Big Data".
  • Visualizing the Universal Data Cube (November 2014) - screencast - code - My doctoral dissertation defense presentation, about visualizing data cubes.
  • Reactive Data Visualization with ModelJS (July 2014) - screencast - code - Discusses a new approach to developing generalized reactive data visualizations using D3.js.

All content released under the MIT License. Feel free to use and modify!

Curran Kelleher 2015

screencasts's People

Contributors

aravindpanil avatar bign8 avatar curran avatar danicatalan avatar darlingbot avatar hho avatar marcospgp avatar piotrgiedziun avatar vsrkrishnan 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  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  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  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

screencasts's Issues

Navigation routing with various menu & sub menu links

Just out of curiosity, lets say inside the navbar div you had a simple multi layered navigation menu, as seen in the photo -

screen shot 2017-10-12 at 05 13 25

If each li link had its own partial html file, how would I be able to adjust the script to implement the routing in the same way it was done initially?

Would I have to target the children of the' 'fragmentID'?

Initializing model using a Global function doesn't seem to work for me?

What is going wrong here ?

<!doctype html>
<html lang="en" data-ng-app>
<head>
    <meta charset="utf-8">
    <title>AngulasJS Demo3</title>
    <script src ="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.9/angular.min.js"></script>
    <script>
        function nameController($scope){
            $scope.firstname = 'John';
            $scope.lastname = 'Smith';
        }
    </script>
</head>
<body data-ng-controller = "nameController">
First Name : <input type = "text" data-ng-model="firstname"></input> 
<br />
<br />
Last Name : <input type = "text" data-ng-model="lastname"></input> 
<br />
<br />
Hello {{ firstname }} {{lastname}}

</body>
</html>

demo

irrelevant question

Hi Curran,
How can I create git pages like you, only one repository, services page for each sub-folder?

Wishes,
Belter

How to run gh-pages from forked screencasts

Hi Curran,
I forked your repo and made some more comments on examples for my own learning, and I want to see examples from gh-pages as you did in the videos. However, when I run https://embracelife.github.io/screencasts/splittingCharts/examples/viewer/#/17 in FireFox browser, I can see everything except the graph and instead there is error 301 Moved Permanently.

What should I do to get it right?

Thanks!
Kenny

stacked bar chart

Hey Curran,

Thanks for the sreencasts, I was very helpful.
I made the stacked bar chart and it works ok, if there is no missing data.
In your csv file" religionByCountryTop5.csv" for example Brazil Hindu is marked zero.
In my case the combination of Brazil Hindu would not be in the file.
How can adjust the code to work if data is missing, I plug the chart on oracle BI, so I don't know in advance if data is going to be missing.

Thanks,

styling different pages

In your screencast you mentioned that the html files for the navigation wouldn't include head, div and body tags..so how would be able to style these different pages?

Labels not getting displayed

Hi Curran,

I saw your video on introduction to D3, nice work. I used one of your graphs in my project link, found a problem that when the name of the labels are large they are not getting displayed. As I'm new to d3 was unable to fix it, maybe we can break the labels in multiple line while adjusting the width of bars or can increase the width of labels section and reduce the size of scale but even then we would have an max width for labels.

Factory Undefined

Hi,

I was going through all of your tutorial and it is best and easy to understand, i am having one query on example 40 when i am passing $scope as a dependency then why countries is coming as undefined

example code below:
countryApp.controller('CountryListCtrl', ['$scope', function ($scope, countries){
countries.list(function(countries) {
$scope.countries = countries;
});

      console.log(countries);
  }]); 

Please help me understand.

Thanks,
Pradeep

The SPA navigation file keeps finding an errors when trying with a bootstrap navbar.

The Single Page App navigation (I am using the jQuery one) always causes errors when Bootstrap is added. The page never appears when clicked, but the URL changes. However if I refresh, then the page does appear. What am I doing wrong?

I keep getting an error on in Navigation.js at line 42 for me - PageName = link.attr("[href]").substr(1);
(Uncaught TypeError: Cannot read property 'substr' of undefined)

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.