Code Monkey home page Code Monkey logo

Comments (27)

shama avatar shama commented on August 16, 2024 2

@ishanray I have started releasing new videos: https://www.youtube.com/user/kylerobinsonyoung Thanks for watching!

from letswritecode.

mklabs avatar mklabs commented on August 16, 2024 1

Hello there,

Like I said on gplus, I really like your videos @shama, I'm learning a lot. You already have a pretty good list here 👍 :)

What I can think of:

  • intro to sourcemap (JS / CSS)
  • Promises (but you already have them listed ^^)
  • React, and maybe an example on how to create an isomorphic app
  • Babel with browserify (like you did on transforms with brfs)
  • and some more ideas I might have later on :)

Anyway, keep up the good work, your screencasts are really good!

from letswritecode.

emcanena avatar emcanena commented on August 16, 2024 1

Hello!

I was wondering if you could/were thinking about going into any of the following pertaining to Electron:

  • Data Storage
  • Integrating with Front-End Framework ( Angular, react, etc.)
  • Deploying on windows.

Appreciate the content thusfar!

from letswritecode.

shama avatar shama commented on August 16, 2024

Thanks @mklabs! It means a lot coming from you. :)

Thanks for the ideas too!

from letswritecode.

 avatar commented on August 16, 2024

I would love to see a video that shows how to connect webpack with electron. So what steps do we need to take to develop an electron app with webpack?

from letswritecode.

shama avatar shama commented on August 16, 2024

@Cloppy Thanks! That would be interesting but I typically don't use a module bundler with electron. Since electron has the ability to require() modules built in, it gets a little more cumbersome, IMO, trying to put a build step in there too.

Although if there is an existing codebase being bundled with webpack, I would build it out to a vendor folder and consume it as a library. But maybe I'm missing a great use case using webpack to build electron apps?

from letswritecode.

 avatar commented on August 16, 2024

@shama I thought about it, because with webpack you can require like scss, less, etc. via require inside your JavaScript, which is pretty neat. I haven't tried yet but I could imagine that this won't work out of the box with electron, since webpack is overriding the require function.

from letswritecode.

lukaMis avatar lukaMis commented on August 16, 2024

I would love to watch your bear inspired tuts on these topics:

JavaScript:

  • Taming This with apply & call
  • Closures
  • Modules

Keep up good work.

from letswritecode.

shama avatar shama commented on August 16, 2024

🐻 👍 Thanks @lukaMis!

from letswritecode.

johnkors avatar johnkors commented on August 16, 2024

Love the videos! :) Coming from a non-Linux world, it would be neat to see different ways of deploying a simple node app to a Linux server (maybe to the one you're already running with Forever?). Not thinking all Docker here, maybe start what would be the most basic file copy scripts or something?

from letswritecode.

shama avatar shama commented on August 16, 2024

@johnkors Thanks! Great suggestion! I've added it to the list.

from letswritecode.

softwarespot avatar softwarespot commented on August 16, 2024

Great playlist. An idea could be to look at popular design patterns e.g. revealing module pattern, constructor pattern and my favourite, the mediator pattern. Thanks for listening.

from letswritecode.

longthanhtran avatar longthanhtran commented on August 16, 2024

love your Ember.js videos, can you pls go further :)

from letswritecode.

shama avatar shama commented on August 16, 2024

👍

from letswritecode.

ghosh avatar ghosh commented on August 16, 2024

@shama Really digging your concise and to-the-point videos. Would love to see more tuts around Ember. It's surprising how few quality and up-to-date tuts there are for it. Specifically around such common operations such as :-

  • Pagination
  • Sorting
  • Infinite load

Looking forward to what you put next. Keep up the good work!

from letswritecode.

shama avatar shama commented on August 16, 2024

Thanks!

from letswritecode.

rootsical avatar rootsical commented on August 16, 2024

thanks for the videos - especially the ones on electron as without them i would have been completely lost.. as for suggestions for future videos:

  • es2015 features, especially generators and also compiling with babel
  • testing with mocha and sinon (especially in relation to electron and es2015 features)
  • gulp as a build tool
  • gun as a graph/document peer to peer database (which could be used with an electron app for example). in fact any info on graph databases in general would be great as i think they are amazing as an idea

anyway i'm sure there's loads more but most of all thank you for your great style of teaching and for keeping it simple and easy to understand. all the best!

from letswritecode.

shama avatar shama commented on August 16, 2024

👍 Thank you!

from letswritecode.

ishanray avatar ishanray commented on August 16, 2024

Webpack + Vue would be a great one. No resources currently online

from letswritecode.

somuchcoffee avatar somuchcoffee commented on August 16, 2024

A tutorial for Electron on setting up user preferences in an app (how to store/access the data) would be glorious.

from letswritecode.

MrBackKom avatar MrBackKom commented on August 16, 2024

I have seen your video about webpack on Youtube.Thank you very much.
But I meet a problem during code your example in the video.

In the webpack.config.js,I typed this below,

module.exports = {
    entry:'./index.js',
    output:{
        path:__dirname,
        filename:'bundle.js'
    },
    module:{
        loaders:[{
                test:'/\.css$/',loader:'style!css!'
        }]
    }
}

in the bear.js

var bearcss = require('./bear.css');
....

but when I run npm start, an Error happend

ERROR in ./bear.css
Module parse failed: /Users/mrbackkom/getting-start-webpack/bear.css Line 1: Unexpected token ILLEGAL
You may need an appropriate loader to handle this file type.
| @import 'base.css';
|
| div{
 @ ./bear.js 11:14-35

I do not find the reason.

from letswritecode.

shama avatar shama commented on August 16, 2024

@MrBackKom Thanks! Did you npm install style-loader css-loader? Also would you mind opening an new issue for this question?

from letswritecode.

MrBackKom avatar MrBackKom commented on August 16, 2024

@shama I create a new issue about this question.
My sssue address
thanks a lot.

from letswritecode.

ishanray avatar ishanray commented on August 16, 2024

@shama Can you do a few more ember ones. There are no recent tutorials online and your videos are of course miles ahead.

from letswritecode.

shama avatar shama commented on August 16, 2024

@ishanray Updated the list with your suggestions! Thanks a bunch! :D

from letswritecode.

SkonTeam avatar SkonTeam commented on August 16, 2024

Most useful videos out there thanks .
Suggestions :

  • Lodash / Underscore
  • Hapi

from letswritecode.

ishanray avatar ishanray commented on August 16, 2024

@shama do you have any plans to record new videos? thank you.

from letswritecode.

Related Issues (20)

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.