[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

/wdg/ - Web Development General

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 27
Thread images: 3

File: 20160822_182724.jpg (1MB, 1049x1090px) Image search: [Google]
20160822_182724.jpg
1MB, 1049x1090px
Previous thread >>56176794

Sent from Android edition.

> Discord
https://discord.gg/wdg
OR
https://discord.gg/0qLTzz5potDFXfdT
(they're the same)

>IRC Channel
#/g/wdg @ irc.rizon.net
Web client: https://www.rizon.net/chat

>Learning material
https://www.codecademy.com/
https://www.bento.io/
https://programming-motherfucker.com/
https://github.com/vhf/free-programming-books/blob/master/free-programming-books.md
https://www.theodinproject.com/
https://www.freecodecamp.com/
http://www.w3schools.com/
https://developer.mozilla.org/
http://www.codewars.com/
>Crockford on Javascript
https://www.youtube.com/playlist?list=PL7664379246A246CB

>Frontend development
https://github.com/dypsilon/frontend-dev-bookmarks

>Backend development
https://en.m.wikipedia.org/wiki/Comparison_of_web_application_frameworks
backendDevelopmentBookmarks.md

>Useful tools
https://pastebin.com/q5nB1Npt/
https://libraries.io/ - Discover new open source libraries, modules and frameworks and keep track of ones you depend upon.
https://developer.mozilla.org/en-US/docs/Web - Guides for HTML, CSS, JS, Web APIs & more.
http://www.programmableweb.com/ - List of public APIs

>NEET guide to web dev employment
https://pastebin.com/4YeJAUbT/
>How to get started
> [YouTube] 2016/2017 MUST-KNOW WEB DEVELOPMENT TECH - Watch this if you want to be a web developer
https://www.youtube.com/watch?v=sBzRwzY7G-k
> [YouTube] Javascript is Easy - "JavaScript is Easy" - If you can't into programming, you probably won't find a simpler introduction to JavaScript than this.
https://www.youtube.com/watch?v=zf_cb_Nw5zY

>cheap vps hosting in most western locations
https://lowendbox.com
https://www.digitalocean.com/
https://www.linode.com/
https://www.heroku.com/
https://www.leaseweb.com
https://www.openshift.com
>>
>>>56217217
>>
>>56217236
Fuck you

[Embed][Open[Embed][Open[Embed][Open]
>no previous thread
>>
>>56217251
This one has dumb frog post in it
>>
>>56217272
No, it has a picture of a dumb frogpost in it.
>>
What do people use to make io games?

I know js and canvas but is there a framework?
>>
File: 1471908180.png (142KB, 1366x768px) Image search: [Google]
1471908180.png
142KB, 1366x768px
Collaborative mosaic website:

http://alissa.ninja/paint
>>
>>56217518
Phaser is the only one I've heard about
>>
>study digital media (webdev and some CS fundamentals, the rest is about design, audio and video)
>official title is a bachelor of computer engineering

Ain't that fucking lovely...
>>
>>56217223
so is js the only way
>>
>>56218198
You can't escape from JS in webdev.
>>
>>56218209
you can do vbscript in old internet explorer
>>
File: ss+(2016-08-22+at+10.04.36).png (8KB, 706x142px) Image search: [Google]
ss+(2016-08-22+at+10.04.36).png
8KB, 706x142px
>>56217676
Amazing.
>>
>>56217518
not a game dev here, but... there is haxe/openfl + other frameworks
>>
>>56217676
>http://alissa.ninja/paint

Did you made it? It's actually pretty fun.
>>
>>56217676

What did you use to make such impressive app?
>>
>>56218198
There are a bunch of compile-to-js or interpret in js languages. I use clojurescript.
>>
Can someone guide me in the right direction on how to approach this?

What i want to do is to have JS listen for json content being sent from the backend, triggered by backend (not continous timer). To explain in detail i have digital post-it notes that you can create and move around on the screen. They only appear for your user profile. I want to add a share funtion so that if user A creates a note, he can then "share" or "send" that note to user B, so user B gets a "clone" of the note that he now owns himself. I can do this fine and dandy backend which requires a refresh by user B for the note to appear (fetching all notes he owns). But i want to eliminate the need for a refresh, it should just pop up on his screen. So therefore when user A "shares" a note and the backend saves it in the database for user B, it should also trigger JS on user B's client-side to somehow listen for incoming json being sent from the backend so the note will appear instantly.

Is this doable or am i retarded?
>>
>>56223689
Using PHP btw.
>>
Anyone know what's up with chrome inspector and websockets? Once it does the upgrade from http to websockets it stops tracking any sort of data exchange and you can only track from wireshark :/
>>
Does anyone know of a project I can use as an example to implement SignIn with Linkedin in ASP.NET? I saw one a few days ago, but the link was dead.
>>
>>56223689
Use Ajax or some frontend framework like angular or react.
>>
>>56223828
https://developer.linkedin.com/docs/oauth2

The official docs are pretty straightforward. If you can't find an example specifically for linkedin, Oauth is pretty much the same no matter which providers you use.
>>
>>56223689
Use web sockets to send data from the server to the client at any time. If you're using Node.js, you may be interested in this framework: http://socket.io/
>>
>>56224275
Well actually you just said you're using PHP so I guess you're on your own about frameworks... but check out web sockets. I can confirm it'd be easy with Node.js at least, but maybe it is with PHP as well.
>>
>>56224285
>>56224275

Will check it out. Are there security concerns i should be wary about though?
>>
>>56224372
>Are there security concerns i should be wary about though?
Just the usual. If you send unencrypted data over the wire, it's susceptible to MITM attacks, whether it's ws or http, so be sure to wrap it before you tap it, especially if money is involved.
Thread posts: 27
Thread images: 3


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.