Skip to content

Instantly share code, notes, and snippets.

View devfoo-one's full-sized avatar

Tom Oberhauser devfoo-one

View GitHub Profile
{"connection":true,"servicelevel":"AVAILABLE_SERVICE","internet":"HIGH","speed":195,"gpsStatus":"VALID","tzn":"Tz163","series":"803","latitude":52.45659066666666,"longitude":10.478655666666667,"serverTime":1581415535842,"wagonClass":"FIRST","navigationChange":"2020-02-11-03-13-11","trainType":"ICE"}⏎

Keybase proof

I hereby claim:

  • I am devfoo-one on github.
  • I am devfoo (https://keybase.io/devfoo) on keybase.
  • I have a public key whose fingerprint is 24CD 5B8A 28BB C118 2866 CBB4 016F 1C8C 3CE8 DBF2

To claim this, I am signing this object:

<nav class="navbar navbar-default navbar-fixed-bottom" role="navigation">
<div class="container">
<button id="btn-AddNewProject" title="Create a new project" class="btn btn-success navbar-btn navbar-right">Add new project</button>
</div>
</nav>
@devfoo-one
devfoo-one / gist:faa618f082aa64047912
Last active August 29, 2015 14:10
Meteor: allow current user to delete his user account
Meteor.users.allow({
remove: function (userId, doc) {
return doc._id === userId;
}
});