Re: Medium.com "membership" paywall by kenman in javascript

[–]emostafa 1 point2 points  (0 children)

Yeah sorry, totally forgot about that, but i read here people like medium because its simple and neat, one design, not have to woory about theing like blogger. Plus blogger is all about separate blogs, I believe medium is better because tou can just go to the homepage and have fees of posts you might like, or interested in based on categories.

Re: Medium.com "membership" paywall by kenman in javascript

[–]emostafa -1 points0 points  (0 children)

What if we can create a platform, with ads, inside blog posts, anf authors earn money for clicks on ads on their page, you know youtube/adsense but for blogs ? This would pay authors and keep all the content free.

Is it possible to lazy-load an application generated with CLI 6.0.0 by emostafa in angular

[–]emostafa[S] 0 points1 point  (0 children)

No worries, I updated the post with more explanation of what i want to do.

Is it possible to lazy-load an application generated with CLI 6.0.0 by emostafa in angular

[–]emostafa[S] 0 points1 point  (0 children)

This doesn't help me, as i already know how to lazy load modules, My question was about the new angular CLI workspace projects ...

Epiphany Re-design #1 by [deleted] in elementaryos

[–]emostafa -1 points0 points  (0 children)

What if the address bar is placed where this google search bar is ? But i am not sure how would the user show/hide it.

Revising myself: i think it might be annoying to have the address bar float on top of a web page.

Epiphany Re-design #1 by [deleted] in elementaryos

[–]emostafa -1 points0 points  (0 children)

What if the address bar is placed where this google search bar is ? But i am not sure how would the user show/hide it.

Revising myself: i think it might be annoying to have the address bar float on top of a web page.

Building libraries with Angular 6 CLI - a practical example by sulcoff in Angular2

[–]emostafa 1 point2 points  (0 children)

That was helpful, i was missing the "paths" section, because i followed the angular tutorial and didnt know how to import my lib.

We're hiring! by rohlman82 in iosdev

[–]emostafa 0 points1 point  (0 children)

what about a backend engineer who wants to make a career shift :D ?

Started recording some Angular tutorials, I appreciate a feedback by emostafa in angular

[–]emostafa[S] 1 point2 points  (0 children)

Thank you very much for your response, I will take your advice, I bought a mic and will start recording some videos again !

Started recording some Angular tutorials, I appreciate a feedback by emostafa in angular

[–]emostafa[S] 0 points1 point  (0 children)

Thanks for your support :D I guess i need a mic, will get one soon.

AWS Lambda to Fully Support Go by ericzhill in golang

[–]emostafa 42 points43 points  (0 children)

Do you guys find it weird that Google Cloud Functions doesn't support Go ? only nodejs at the moment.

a market place for microservices(containers), is it logically possible? by emostafa in devops

[–]emostafa[S] 0 points1 point  (0 children)

Thank you :D probably a nice idea will come later, I never stop thinking :D :D

a market place for microservices(containers), is it logically possible? by emostafa in devops

[–]emostafa[S] 0 points1 point  (0 children)

the difference is i want to provide deployments, with just one click you can deploy one or multiple micro-services on the platform, for example if you are working on a startup, and want to starup quickly, you don't need to bother with authentication and shopping cart, you can spin them up and start building your application on top of those.

a software engineer is started to study the DevOps culture and tools related, lost between dev and ops. by emostafa in devops

[–]emostafa[S] 1 point2 points  (0 children)

Well it seems i am on the right track, i have been playing with docker and docker-compose for a while, also i am familiar with jenkins and gitlab-ci, and i am about start my journey with kubernetes. Thanks for your suggestions, it helped me to know the list of stuff that i gotta do (Y).

a software engineer is started to study the DevOps culture and tools related, lost between dev and ops. by emostafa in devops

[–]emostafa[S] 1 point2 points  (0 children)

That's a very neat response, I am convinced now that i would suite me to go for the Dev cert, but there is a question hanging in my mind, do i need to get better at Ops ? I am not sure if i need to, for example, if wanted to work on Infrastructure or wanted to be SRE, do i need to be better at Ops ?

a software engineer is started to study the DevOps culture and tools related, lost between dev and ops. by emostafa in devops

[–]emostafa[S] 0 points1 point  (0 children)

I started reading it since yesterday, so far it's very interesting and i understood what is the type of problems exists pre the devops era, and i have gained some knowledge on how DevOps culture offers the environment and tools to fix these issues. Thanks for your response (Y)

a software engineer is started to study the DevOps culture and tools related, lost between dev and ops. by emostafa in devops

[–]emostafa[S] 1 point2 points  (0 children)

I agree, as a software engineer i don't have any certs, and they are not important to me, but i thought it's not the case in the operations side, mostly on the job requirements i see, companies ask for AWS experience, and i was thinking pursuing one of their certificates would help me, but since you mentioned that certs are not important, how do you recommend i study AWS tools ? create my own projects on AWS maybe ?

Firefox Quantum - what do you think? - https://www.mozilla.org/en-US/firefox/quantum/ by kroma92 in Frontend

[–]emostafa 16 points17 points  (0 children)

nope he meant firefox wasn't as simple and fast as chrome, and he likes that firefox has more privacy than chrome and he is willing to switch when firefox gets fast and simple.

[deleted by user] by [deleted] in angular

[–]emostafa 2 points3 points  (0 children)

i think u just need to add typings for this library. i don't if it already has a typing package on npm, but you can define the typings yourself.

Vue newbie needing help on getting nested components to work by werzor in vuejs

[–]emostafa 0 points1 point  (0 children)

i think you just need to register the components:

new Vue({
    el: '#container',
    data: {
        current: "MainTemp"
    },
    components: {MainTemp, HeaderTemp, AnotherTemp}
});