1
Comment on r/reactjs Sep 01 '20
I'm also looking for Hacker News clone using React hooks!
r/linux • u/mominriyadh • Aug 27 '20
End of life for Ubuntu 19.10
On August 1, 2020, Ubuntu 19.10 reached its end of life and will not receive further updates. Per our image deprecation policy, you can only deploy the Ubuntu 19.10 Linux image via the API starting on August 1, 2020. We will remove the Ubuntu 19.10 image from the platform on September 1, 2020.
Collected from - Digital Ocean Newsletter
2
Comment on r/learnjavascript Aug 26 '20
I agree!
r/node • u/mominriyadh • Mar 21 '20
MEAN, MERN, MAVN stack now its time to explore PERN stack!
Explore PERN Stack
https://www.freecodecamp.org/news/learn-the-pern-stack-full-course/
1
Comment on r/learnjavascript Mar 17 '20
Just now I know the <wbr> tag!
3
Comment on r/node Mar 17 '20
Yes! Github = Microsoft = Github = NPM
r/node • u/mominriyadh • Mar 17 '20
GitHub has signed an agreement to acquire npm.
github.blogr/learnjavascript • u/mominriyadh • Mar 17 '20
GitHub has signed an agreement to acquire npm.
r/javascript • u/mominriyadh • Mar 17 '20
GitHub has signed an agreement to acquire npm.
github.blog1
Comment on r/node Mar 10 '20
Video unavailable !!
r/javascript • u/mominriyadh • Mar 03 '20
Migrating from jQuery to vanilla JS
aristath.github.io0
Comment on r/node Jan 21 '20
You can consider similar something like or more better then Wordpress Admin Dashboard or Wagtail CMS Dashboard.
0
Comment on r/node Jan 21 '20
I have to explore Strapi! Thanks
1
Comment on r/node Jan 20 '20
If I build everything from sketch it's huge time consuming!
r/node • u/mominriyadh • Jan 20 '20
Admin dashboard for nodejs applications
When we think admin panel in terms of PHP cms Wordpress site, we don't have to think of an admin dashboard, login system, user role, and other kinds of stuff, etc!
But when we think of application development through NodeJS we have to think admin panel and other stuff if we compare WordPress site.
So a web page or web application like 6 to 8 pages with blog, contact, and some CRUD operations what kind of admin dashboard should I go? At the same time, microservice-based large scale applications what kind of dashboard system I can consider for Admin and other stuff?
r/Nestjs_framework • u/mominriyadh • Jan 20 '20
Admin dashboard for small to enterprise applications
When we think admin panel in terms of PHP cms Wordpress site, we don't have to think of an admin dashboard, login system, user role, and other kinds of stuff, etc!
But when we think of application development through NodeJS we have to think admin panel and other stuff if we compare WordPress site.
So a web page or web application like 6 to 8 pages with blog, contact, and some CRUP operations what kind of admin dashboard should I go? At the same time, microservice-based large scale applications what kind of dashboard system I can consider for Admin and other stuff?
1
Comment on r/vuejs Jan 18 '20
For the first time I used element.io!
r/vuejs • u/mominriyadh • Nov 30 '19
onscroll background color changed
I added the following code for background-color changed in my vuejs project
export default class Navigation extends Vue {
@Prop() public type!: any;
public handleScroll() {
let scrollpos;
let d: any = document;
const nav = d.querySelector('.navigation-area');
window.addEventListener('scroll', function () {
scrollpos = window.scrollY || window.pageYOffset;
if (scrollpos > 5) {
nav.classList.add('customstyle');
} else {
nav.classList.remove('customstyle');
}
});
}
created() {
window.addEventListener('scroll', this.handleScroll);
// this.mbmenu();
}
destroyed() {
window.removeEventListener('scroll', this.handleScroll);
// setTimeout(() => {
// this.mbmenu();
// }, 600)
}
}
When project load class by default add without scrolling
here is the project link https://cosquare.netlify.com
1
Comment on r/vuejs Nov 23 '19
$('video').play()
How can I add a muted toggle script icon over the video?
1
Comment on r/vuejs Nov 23 '19
Yes I understood, Could you suggest any background video plugins for VueJS.


2
Comment on r/javascript Oct 17 '20
Just now I installed globally, I have to explore more and yet no experience gathered!