-
5 votes
-
I’m harvesting credit card numbers and passwords from your site. Here’s how.
17 votes -
WebAssembly at eBay: A Real-World Use Case
9 votes -
3D Sierpinski Pyramid in 140 Characters of Javascript
10 votes -
Structure and Interpretation of Computer Programs, JavaScript Adaptation
3 votes -
Trio of ByteBeat Tracks - Arranged by me to be played by my tiny 140 character javascript player
4 votes -
I made 7 1k javascript demos in 2 weeks for JS1k! - My Epic Post-Mortem
6 votes -
NASA's flagship James Webb Space Telescope, will run Javascript for instrumentation control using a defunct & proprietary interpreter with a list of errata last updated in 2003
12 votes -
Clever JavaScript does not mean simple or readable
8 votes -
Animating URLs with Javascript and Emojis
15 votes -
Standardizing WASI: A system interface to run WebAssembly outside the web
8 votes -
Native File System API
6 votes -
A JavaScript-Free Frontend
16 votes -
In-browser cryptocurrency mining service Coinhive will shut down on March 8
17 votes -
Bootstrap 5 will remove jQuery as a dependency
27 votes -
Building a modern carousel with CSS scroll snap, smooth scrolling, and pinch-zoom
4 votes -
Scams, American Express, and obfuscated Javascript
10 votes -
Inrupt releases React SDK for Solid
6 votes -
Cappuccino: Objective-J based Web App Framework similar to GNUStep/Cocoa APIs
2 votes -
GoDaddy is sneakily injecting JavaScript into your website and how to stop it
44 votes -
Ember 3.6 Released
4 votes -
Mac, Electron and the decline of native apps
17 votes -
The State of Javascript 2018
16 votes -
How Do I Make A Database?
Hello everyone! I've recently got an idea for a Database as a Service I'd like to create. The only issue is - I don't know how to create or host a database! I've only ever used Mongoose/mLab with...
Hello everyone!
I've recently got an idea for a Database as a Service I'd like to create. The only issue is - I don't know how to create or host a database!
I've only ever used Mongoose/mLab with Javascript, and a minimal amount of Postgres with Python.
If I'm looking to create a database that will, eventually, be able to store images, songs, and videos, where should I start my homework?
I can create the backend and the frontend with no issue - just stuck on this part here. If it's of any relevance, I most frequently use the MERN stack.
13 votes -
Houdini's Animation Worklet
3 votes -
React is introducing "hooks" for state and side-effect management
6 votes -
Why is there guid-like parameter when requesting js or css?
Hi, I looked through JS files and I noticed that all JS and CSS are called with weird parameter. tildes.css?aadf6c54 tildes.js?e6d30b42 third_party.js?4393e99 (I changed the string after ?) Does...
Hi, I looked through JS files and I noticed that all JS and CSS are called with weird parameter.
tildes.css?aadf6c54
tildes.js?e6d30b42
third_party.js?4393e99
(I changed the string after?
)Does anyone know why is it done and what does it mean?
6 votes -
Create-React-App 2 is live
8 votes -
Calls between JavaScript and WebAssembly are finally fast
20 votes -
I made a post awhile back about asking for inspiration for a new project. I built a thing.
hey all! i made a post awhile back talking about how i was in a tech rut, and tired of creating the same things over and over again, working with the same libraries and the same frameworks. i was...
hey all!
i made a post awhile back talking about how i was in a tech rut, and tired of creating the same things over and over again, working with the same libraries and the same frameworks.
i was bored of it!
so last week i said hell with it and i spent more money than i should've on udemy courses, learned a lot about javascript and the mern stack (mongodb, express.js, react, node.js)
then, after a few nights of staying up way later than i should have (i have presently been awake for 27 hours) i built this thing:
https://dry-castle-80238.herokuapp.com/dashboard
dev-connector.
a small little social media site for the technically-minded.
nothing groundbreaking or super fancy - just a basic social media site with posts, comments, user profiles and all that. but it's the first thing in awhile that i've actually finished and put into production on some capacity (even if it's just heroku)
jump in, leave a few comments, and let me know what you think. :)
passwords are hashed with bcryptjs, but i've been recommending everyone just use fake login info on sign up for safety's sake.
12 votes -
Accurately measuring layout performance on the web
4 votes -
Dear Developer, The Web Isn't About You
39 votes -
Celebrating 10 years of V8
4 votes -
Total noob looking for (hopefully) simple greasemonkey script
I have knowledge of the basic concepts of programming in general and html and some very basic knowledge of javascript, but this specific task is proving a little beyond me. I'm actually using...
I have knowledge of the basic concepts of programming in general and html and some very basic knowledge of javascript, but this specific task is proving a little beyond me. I'm actually using tampermonkey, in case that matters.
www.bricklink.com is a site to buy Lego from private sellers. By default, when looking at a shop's listing of items, it shows 25 per page. I would like to automatically switch to 100 per page every time.
Here's a randomly selected store page (no affiliation) at the default 25 per page:
https://store.bricklink.com/TheBricky#/shop?o={"itemType":"P","catID":"18","showHomeItems":0}
Now, same page set to display 100 per page. Note how "pgSize" is added to the url but doesn't appear by default:
What I would like is for pgSize to be set to 100 only IF
"shop" appears in the url
AND
"pgSize" does not appear in the url OR "pgSize" does appear in the url but does not equal 100.
Since Bricklink remembers pgSize per shop page per session, once pgSize is set to 100 for a particular shop greasemonkey doesn't need to do anything. Intercepting the url before the page loads would be nice but unnecessary since loading is fast and I'm not worried about bandwidth.
I tried making this but wasn't sure how to input what I'm trying to test for in the url. Of course now that I've thought about it some more it seems the task is more probably difficult than I thought it would be at first. Any help would be appreciated.
EDIT: This comment below seems to be working, although the way Bricklink makes their urls feels funky at times.
10 votes -
Coding Noob Needs Help/Guidance on Small Project
Hi, There's a certain site which hosts media files and has a player that depends on a lot of third-party resources to play, while browsers have native support for those file types. Those 3rd-party...
Hi,
There's a certain site which hosts media files and has a player that depends on a lot of third-party resources to play, while browsers have native support for those file types. Those 3rd-party resources are often blocked by ad blockers and I have no desire to white-list them. I would like to extract the direct link to the media file and make it playable on my custom web page.
The link to the media file is present in the page source of each page, always on the same line. It's not anchored in HTML but present in the JavaScript for the player, like so:
$(document).ready(function(){ $("#jquery_jplayer_1").jPlayer({ ready: function () { $(this).jPlayer("setMedia", { [ext]: "https://[domain]/[filename.ext]" }); },
In this example it's on line #5. [ext] = the file extension.
I want to build the following:
- A web page with a form with a single input field meant to receive links from that specific file host
- [Something] that extracts the file link from the source of the host's page
- Present the linked file as playable in an embedded native player
So far I've managed to create a form with an input box and a submit button, but it doesn't do anything yet. What is the best way to build the actual functionality? I know HTML/CSS. I have some rudimentary understanding of JavaScript/jQuery and Python3, so those would be my preferred tools.
For those worried about piracy: The files in question are not copyrighted and I'm not looking to make copies. I just want to make them playable. This is for personal use.
Thank you for reading this far. Any and all advice is welcome!
10 votes -
Conservative web development
29 votes -
Your web app is bloated
16 votes -
TypeScript 3.0
8 votes -
React Fire: Modernizing React DOM
7 votes -
The Cost of JavaScript in 2018
30 votes -
js13k - a contest to make an HTML5 game in under 13 KB
9 votes -
The Cost of Javascript in 2018
10 votes -
Upcoming JavaScript features to watch out for
10 votes -
npm package "eslint-scope" compromised, npm is invalidating all login tokens created before 2018-07-12 12:30 UTC
16 votes -
Our Vision for Rust and WebAssembly
5 votes -
Angular with PureScript
I have to do an assignment for university soon-ish, and it requires Angular. I'm not very fond of that framework specifically, but I would be interested in making it more interesting as a learning...
I have to do an assignment for university soon-ish, and it requires Angular. I'm not very fond of that framework specifically, but I would be interested in making it more interesting as a learning project. I've also recently discovered PureScript, which I have no experience with right now.
Searching online, I've purescript-angular, which hasn't been updated in years. I also couldn't find much else. Of course, I may be missing something simple (for instance, it's actually supported by default in Angular these days), so I wanted to ask if any of you know if this is possible, and if so, how?
6 votes -
Feedback wanted on website/dev project
Hello ~comp, I've been learning web development in my spare time with the hopes of one day becoming a professional web developer. This is my latest project:...
Hello ~comp,
I've been learning web development in my spare time with the hopes of one day becoming a professional web developer.
This is my latest project: https://github.com/farleykreynolds/toptenify. It's a small static site that pulls your listening data from the Spotify API.
I welcome any feedback on the design, code, or any other aspect of the project. Thank you!
6 votes -
10 Things I Regret About Node.js
10 votes -
Machine learning in JS
3 votes -
Tildes only has 350 uncompressed and well commented lines of Javascript
36 votes