sudo apt update && sudo apt upgrade
This file contains 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
// JSON Array of Towns.. In Rails: <%= @towns = Town.all.to_json %> | |
var TOWNS = [ | |
{ town: "Abbeville city", id: 1 }, | |
{ town: "Adamsville city", id: 2 }, | |
{ town: "Addison Town", id: 3 } | |
]; | |
$(document).ready(function() { | |
$('#postcard_city').bind('change', updateStateValue); |
This file contains 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
r1.ams03s07.c.youtube.com 74.125.15.6 | |
r2.ams03s07.c.youtube.com 74.125.15.7 | |
r3.ams03s07.c.youtube.com 74.125.15.8 | |
r4.ams03s07.c.youtube.com 74.125.15.9 | |
r5.ams03s07.c.youtube.com 74.125.15.10 | |
r6.ams03s07.c.youtube.com 74.125.15.11 | |
r7.ams03s07.c.youtube.com 74.125.15.12 | |
r8.ams03s07.c.youtube.com 74.125.15.13 | |
r9.ams03s07.c.youtube.com 74.125.15.14 | |
r10.ams03s07.c.youtube.com 74.125.15.15 |
This file contains 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
module UTF8 | |
module Params | |
private | |
def normalize_parameters_with_encoding(value) | |
normalize_parameters_without_encoding(value).tap do |value| | |
value.force_encoding(Encoding.default_external) if value.respond_to?(:force_encoding) | |
end | |
end | |
end | |
end |