This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CookieUtil.setCookie('HtzPusr', 'its-my-right-to-use-the-internet-as-i-want-to'); | |
| // This will make the website think you're a registered user. | |
| // While allowing you to use an ad blocker, it should also | |
| // allow to you "Zen Reading" mode etc'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("input[name]").bind("keyup paste", function() { | |
| elm = $(this); | |
| elm_name = elm.attr('name'); | |
| $('input[name='+elm_name+']').val( elm.val() ) | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Account | |
| include Mongoid::Document | |
| field :name, :type => String | |
| field :surname, :type => String | |
| has_and_belongs_to_many :kenim_rakaz, :class_name => 'Ken', :inverse_of => :rakazim | |
| end |
NewerOlder