host='vera-us-oem-relay31.mios.com'
path='/relay/relay/relay/device/45025220/session/000000043F62005B183D2DABD0DD8B175A866F/port_3480/data_request?DeviceNum=3&Variable=PinCodes&id=variableget&serviceId=urn%3Amicasaverde-com%3AserviceId%3ADoorLock1'
HTTParty.get("https://#{host}#{path}")
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
| hash = { | |
| 1 => { c: 2 }, | |
| 2 => { c: 4 }, | |
| } | |
| class Works | |
| def do(a, c:) | |
| puts "a: #{a.inspect}; c: #{c.inspect}" | |
| end | |
| end |
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
| @dougwilson thanks for the quick response. Yeah, I've read most of the session lib source and couldn't see a reason for it not work. | |
| I found a way, by manually calling session on the express websockets upgrade request handler: | |
| ```js | |
| import Express from 'express' | |
| import ExpressSession from 'express-session' | |
| import proxy from 'http-proxy-middleware' | |
| const session = ExpressSession({ ... }) |
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 Funky | |
| def good_method | |
| "I'm good" | |
| end | |
| def method_missing(*args) | |
| "I'm bad" | |
| end | |
| end | |
| > Funky.new.good_method |
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
| loop do | |
| begin | |
| sleep 1 | |
| rescue Exception => e | |
| puts "I'm STRONGER. Give up!" | |
| end | |
| end | |
| # Run and try CTRL+C |
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
| SELECT | |
| relid::regclass AS table, | |
| indexrelid::regclass AS index, | |
| pg_size_pretty(pg_relation_size(indexrelid::regclass)) AS index_size, | |
| idx_tup_read, | |
| idx_tup_fetch, | |
| idx_scan | |
| FROM | |
| pg_stat_user_indexes | |
| JOIN pg_index USING (indexrelid) |
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
| LC_ALL=C find . -type f -exec sed -i '' 's/search/replace/g' {} + |
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
| ActionMailer::Base.mail(to: "[email protected]", from: "[email protected]", subject: "Test", body: "Test", ).deliver! |
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
| <DT><H3 FOLDED>iPhones</H3> | |
| <DL><p> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(1136+15)+',scrollbars=yes');">iPhone 5 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(1136+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 5 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(640+15)+',innerHeight='+(960+15)+',scrollbars=yes');">iPhone 4 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(960+15)+',innerHeight='+(640+15)+',scrollbars=yes');">iPhone 4 - Landscape</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:portrait','innerWidth='+(320+15)+',innerHeight='+(480+15)+',scrollbars=yes');">iPhone 3 - Portrait</A> | |
| <DT><A HREF="javascript:open(location,'iPhone:landscape','innerWidth='+(480+15)+',innerHeight='+(320+15)+',scrollbars=yes');">iPhone 3 - Landscape</A> | |
| <DT><A HREF="http://www.iphoneresolution.com/">What's the iPhone Screen Resolut |
NewerOlder