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
| ### JHW 2018 | |
| import numpy as np | |
| import umap | |
| # This code from the excellent module at: | |
| # https://stackoverflow.com/questions/4643647/fast-prime-factorization-module | |
| import random |
Goal: Emulate a Raspberry Pi with QEMU in order to run the Raspbian O/S (based on Debian Linux).
The current setup is not ideal. For one thing, the maximum RAM allowed using the "versatile-pb" firmware is 256 Mb. In addition, only the most basic peripherals, a keyboard and mouse, are supported.
A number of articles have been written on this topic. Most are outdated, and the few recent ones are missing key information.
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
| <HotelListResponse xmlns:ns2="http://v3.hotel.wsapi.ean.com/"> | |
| <customerSessionId>yuvb3jdpifp2t13y43pass2p</customerSessionId> | |
| <numberOfRoomsRequested>1</numberOfRoomsRequested> | |
| <moreResultsAvailable>false</moreResultsAvailable> | |
| <cacheKey>-48a4e19f:15bec159775:50eb</cacheKey> | |
| <cacheLocation>10.186.170.98:7300</cacheLocation> | |
| <cachedSupplierResponse supplierCacheTolerance="NOT_SUPPORTED" cachedTime="0" supplierRequestNum="98" supplierResponseNum="93" supplierResponseTime="1629" candidatePreptime="28" otherOverheadTime="11" tpidUsed="5220" matchedCurrency="true" matchedLocale="true" /> | |
| <HotelList size="2" activePropertyCount="98"> | |
| <HotelSummary order="0" ubsScore="0"> | |
| <hotelId>139396</hotelId> |
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
| # Copyright 2017 The TensorFlow Authors. All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, |
- 2016-10-02 German research reveals severe privacy violations in https://www.kuketz-blog.de/wot-addon-wie-ein-browser-addon-seine-nutzer-ausspaeht/
- 2016-10-02 Audit of WOT by Rob Wu
- 2016-10-02 Discovered arbitrary remote code execution capabilities in add-on
- 2016-10-03 WOT listing removed from addons.mozilla.org
- Add-on: Web of Trust, MyWOT/WOT: Website Reputation Rating
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
| --[[ | |
| mpv 5-bands equalizer with visual feedback. | |
| Copyright 2016 Avi Halachmi ( https://github.com/avih ) | |
| License: public domain | |
| Default config: | |
| - Enter/exit equilizer keys mode: ctrl+e | |
| - Equalizer keys: 2/w control bass ... 6/y control treble, and middles in between | |
| - Toggle equalizer without changing its values: ctrl+E (ctrl+shift+e) |
Taught by Brad Knox at the MIT Media Lab in 2014. Course website. Lecture and visiting speaker notes.
- Power to the People: The Role of Humans in Interactive Machine Learning by Knox, Cakmak, Kulesza, Amershi, and Lau
- A Few Useful Things to Know about Machine Learning by Domingos
- Machine Learning that Matters by Wagstaff
- Beyond Concise and Colorful: Learning Intelligible Rules by Pazzani et al.
- [Designing Games with a Purpose] (https://www.cs.cmu.edu/~biglou/GWAP_CACM.pdf) by von Ahn and Dabbish
- [Human Model Evaluation in Interactive Supervised
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
| module Kernel | |
| def require_relative_with_tco file | |
| absolute_path = File.absolute_path file, __dir__ | |
| realpath = File.realpath "#{absolute_path.chomp '.rb'}.rb" | |
| if $LOADED_FEATURES.include? realpath | |
| false | |
| else | |
| RubyVM::InstructionSequence.compile_file( | |
| realpath, |
| Method | Uses Default Accessor | Validations | Callbacks | Touches updated_at | Readonly check |
|---|---|---|---|---|---|
| update | ✅ | ✅ | ✅ | ✅ | ✅ |
| update_attributes | ✅ | ✅ | ✅ | ✅ | |
| update_columns | ✅ | ||||
| User::update | ✅ | ✅ | ✅ | ✅ | ✅ |
| User::update_all |