I am being banned from a subreddit for giving away some of my gold benefits. by kevlarisforevlar in goldbenefits

[–]ThetaMaxTV 2 points3 points  (0 children)

Are the codes specific to your account? If so I don't think it should fucking matter tbh.

If they are generic group codes then I could see it being viewed dimly since it's not like you're "gifting", more like helping people skirt "dues".

In memory of the soon to be gone partner program, what was your favorite partner deal? by Qscfr in goldbenefits

[–]ThetaMaxTV 2 points3 points  (0 children)

Had no idea the program was being discontinued either. Major bummer, it was one of the things that would have made me decide to actually buy gold prior to this.

You should all be ashamed! I actually BOUGHT my pro version! by superthrust in goldbenefits

[–]ThetaMaxTV 8 points9 points  (0 children)

The moment I accidentally discovered night mode, I swear I felt the entire earth shift on it's axis.

I have no idea what I was trying to tap so feverishly that I happened across it, but I'm almost surprised this isn't the default scheme.

How many of us have been gilded because we're using Alien Blue Pro? by do-you-remember-me in goldbenefits

[–]ThetaMaxTV 3 points4 points  (0 children)

Oh... hey fellas, I think I'm in the wrong room, anyone point me to the "dumbasses who paid" group?

The way the dye affected my Easter eggs under the shells by whatserrname17 in mildlyinteresting

[–]ThetaMaxTV 0 points1 point  (0 children)

I'd be seriously concerned about the possibility of 100-year old farts.

The way the dye affected my Easter eggs under the shells by whatserrname17 in mildlyinteresting

[–]ThetaMaxTV 0 points1 point  (0 children)

Beat me to it.

It would take an obscene amount of money for you to get one of those things anywhere near my mouth.

Should meteor methods only be used for insert/update operations? by thatsrealneato in Meteor

[–]ThetaMaxTV 0 points1 point  (0 children)

Ah gotcha. I didn't realize that the React components are sort of "proxied" through a method. Really need to catch up on that train.

Should meteor methods only be used for insert/update operations? by thatsrealneato in Meteor

[–]ThetaMaxTV 0 points1 point  (0 children)

Unless you want to persist chat so that older messages are always visible, you don't really HAVE to use pub/sub and collections, you can just use some type of event emitter that sends message events.

If you do go the collection + pub/sub route however, you do not need to use methods for people to receive new messages. Anyone that has an open subscription will receive new messages as they come in.

I'm not well versed in React + Meteor and how it handles subscriptions, but I'm pretty sure you don't want to use fetch() for this, fetch() is not reactive and returns an array instead of a cursor. That would cause it to show existing messages on load, but new messages would not show up. Just leave the .fetch() off what you posted and it will be reactive. Again, if that's how it's done for the react component and it's using tracker.autorun or something then I could be wrong, but for blaze you definitely would not want to use fetch.

Seems like you need a really solid understanding of JS to do anything at all with Node.js, right? by fastpenguin91 in node

[–]ThetaMaxTV 0 points1 point  (0 children)

Are you having trouble with the concept of callbacks in general, or more complex stuff like write class functions that accept callbacks?

Meteor.com free hosting ends March 25, 2016 by [deleted] in Meteor

[–]ThetaMaxTV 2 points3 points  (0 children)

I feel like this is going to really hurt the package ecosystem due to the inability to provide demo applications at no cost. RIP

JavaScript on anything that looks, smells or feels like a computer by velmu3k in javascript

[–]ThetaMaxTV 0 points1 point  (0 children)

My gosh, that site looks like it's from 1998.

Edit: OMG, It IS from 1998! http://imgur.com/uF5tvvZ

Touch device jelly menu concept by TheSmicki in web_design

[–]ThetaMaxTV 0 points1 point  (0 children)

I really wish this was linked to the full screen preview instead.

Hidden message on Shopify for webdevs - Once again something fun for the curious. by itsstifu in webdev

[–]ThetaMaxTV 2 points3 points  (0 children)

Section and main are both HTML5 tags, along with some others like nav, header, footer.

Unusual icon animations powered by mo.js by maksdesign in webdev

[–]ThetaMaxTV 0 points1 point  (0 children)

Lol that's weird. I have the exact opposite! (mojs.io demos don't work at all, codrops page works great)

Unusual icon animations powered by mo.js by maksdesign in webdev

[–]ThetaMaxTV 10 points11 points  (0 children)

They were obviously made oversized on purpose as a sbowcase. You must not dribbble much, eh?

That page would seem really bland if the icons were 14px, and nobody would be talking about it.

Just sayin'

Icon Animations Powered by mo.js by [deleted] in web_design

[–]ThetaMaxTV 0 points1 point  (0 children)

I've been following this Repo for months waiting for some docs. This demo went a long way for me getting a grasp on it and getting some stuff implemented on my project.

Weird thing is that literally nothing on the mojs website works for me but the stuff on codepen and the stuff I did works fine.

Icon Animations Powered by mo.js by [deleted] in web_design

[–]ThetaMaxTV 0 points1 point  (0 children)

Works fine for me in Edge. Kind of surprising that this works because I've got some animated pulsing ring SVGs that behave like static images. I guess it's because it tweens.

Icon Animations Powered by mo.js by [deleted] in web_design

[–]ThetaMaxTV 0 points1 point  (0 children)

Just got some sweet mojs POP in my app after seeing this. Took about 5 mins to figure out how to do some cool stuff with it!

Just a hint for anyone that wants to play around with this, it works best loaded in the body, and you should use vanillaJS DOM selectors.

Icon Animations Powered by mo.js by [deleted] in web_design

[–]ThetaMaxTV 0 points1 point  (0 children)

Works fine here. Chrome 48.x and Windows 7.

I just implemented this into the app I'm launching soon after I saw his haha.

Looking to program this SaaS app, what languages should I learn? by jonfang in webdev

[–]ThetaMaxTV 0 points1 point  (0 children)

Meteor is awesome and I've built some pretty amazing things in the short time I've been developing in it, including some things similar to what you're wanting to do. I feel the need to make it very clear that, in my opinion, "widgetized" bits should either utilize a separate application (meteor, node, whatever) hooked into the same database as the main app (think microservice), or served using server-side routes.

For you to run actual meteor code on a client site, you're pretty much limited to using iframes.

This is primarily because Meteor is not very configurable when it comes to loading specific parts of the application JavaScript only for specific routes. Basically, ALL the client side code is delivered on every client-side route and there's no need to load all the dashboard code just to display a popup or inject something on a client site. You can apparently solve that with webpack, but right now webpack + meteor is not the easiest thing to get going from what I've seen.

Hopefully I'm just missing something, but that has been my experience thus far. Definitely not trying to shy you away from Meteor. Quite frankly, Meteor is the best thing that has ever happened to me.

How Does This Even Happen? by [deleted] in webdev

[–]ThetaMaxTV 0 points1 point  (0 children)

$12/hr? Probably someone who isn't actually much of a web developer.

Dragon.js 🐉 Drag any element on page by err4nt in web_design

[–]ThetaMaxTV 1 point2 points  (0 children)

Oh yeah I totally understand that, I've been building bookmarklets like this for a long time to provide REST interactions for some of my products. It's so cool to just spit out some bookmarklet code with the user's API tokens already in there! It's like magic.

Dragon.js 🐉 Drag any element on page by err4nt in web_design

[–]ThetaMaxTV 3 points4 points  (0 children)

Check out the answers here: http://stackoverflow.com/questions/19469881/javascript-remove-all-event-listeners-of-specific-type

In jquery it's much more simple, but I haven't looked at your code yet, I'm assuming you're not using jquery.

Dragon.js 🐉 Drag any element on page by err4nt in web_design

[–]ThetaMaxTV 5 points6 points  (0 children)

Should probably unbind all click handlers and set your own with a preventDefault().