ODLOT Mac OS
ODLog™ is an easy-to-use application for the accurate timing and recording of observational data. ODLog is typically used by scientists in:
naturalistic field observation studies
animal behavioral experiments
human psychological experiments
Although ODLog was primarily designed for researchers working in the behavioral sciences, it can also be used in any applications involving accurate manual scoring of live or videotaped observational data.
ODLog is currently in use by researchers around the globe in experiments involving the manual observation of infant, adult, and animal behavior. ODLog can be used for data collection in studies using object recognition, social interaction, light-dark emergence, mazes, face preference, peer interaction, and much more.
Global Nav Open Menu Global Nav Close Menu; Apple; Shopping Bag +. MacOS (originally named 'Mac OS X' until 2012 and then 'OS X' until 2016) is the current Mac operating system that officially succeeded the classic Mac OS in 2001. Although the system was originally marketed as simply 'version 10' of Mac OS, it has a history that is largely independent of the classic Mac OS. Philippines, Cebu City, Pit-os, Talamban Rd Pit-Os, Cebu lot for sale in Pit-os, Talamban, Cebu CityClean TitleShape: RectangularIdeal for middle-class Housing project Just less than 5 minutes from the main road.roughly less than 500 meters.A few minutes away from Camella Miramonte.
Data are stored in text format and can easily be imported into any spreadsheet (e.g., Microsoft Excel®) or statistical package (e.g., SPSS®) for analysis. If you need to create an accurately timed record of live or videotaped behavior, you need ODLog!
- Mac OS X 10.5.2 cames with 125 bug fixes and smaller optimizations on January 24th, 2008. Mac OS X 10.6 is a Mac computer with Intel Core 2 Duo processor with at least 1 GB memory and 5 GB free space ahead. This operating system no longer exists as PowerPC execution. Apple placed the focus development on performance and stability.
- Odlot National High School Marcelo B. Fernan Memorial National High School Anonang Norte National High School Don Jose (Pepe) B. Lepiten Nationa High School Malingin National High School.
Runs on Mac OS X®, Mac OS 9®, and Microsoft Windows®!
With the new version 2.x for Windows and Mac OS X, you can simultaneously score up to 12 different behavioral events. The timer speed can also be adjusted to score fast- or slow-motion videotaped behavior. Version 2.x sports a completely redesigned user interface and is compatible with Windows XP/Vista/7/8/8.1/10, and Mac OS X**. As of version 2.5, the Mac version is a universal binary, so it will run natively on older Macintosh computers, and all newer Intel-based Macintosh computers.
Once you've tried Macropod Software's ODLog,you'll wonder how you ever did without it. We are so sure of this that we're prepared to let you try it free of charge for 15 days. Download ODLog and judge for yourself.
Free 15-day demo: You may install and use ODLog free of charge for 15 days. The demo is fully functional in all ways so that you may evaluate all features before you buy it. Whenever you launch ODLog in demo mode, you will be reminded of the number of days remaining in your trial period. At the end of the trial period, ODLog will cease to function. To upgrade your demo to a fully operational version without this time limitation, you must purchase a registration key by clicking the purchase button on the left. Academic discounts are available for purchasers from educational institutions. Once your order is processed, you will receive an e-mail containing a registration key and instructions to remove the time limitation. The entire process typically requires only a few minutes.
Macropod Software is a very small business whose livelihood depends on sales of this product. We offer this demo to you on the honor system and ask that you purchase a registration key if you find that ODLog is useful to you.
*Academic upgrade pricing. Academic licenses available only to purchasers from educational institutions. For full pricing details, click here.
**ODLog version 2.x is not compatible with Mac OS 9.
Copyright Macropod Software™. ODLog™ is a trademark of Macropod Software. All rights reserved. Last modified Sept. 29, 2015.
1. Preparation
First you need to download Odoo source code at https://github.com/odoo/odoo then install following softwares/packages:
sudo easy_install pip
sudo npm install -g less less-plugin-clean-css
sudo easy_install -U setuptools
brew install postgresql
2. Create user odoo
sudo dscl . -create /Users/odoo UserShell /bin/bash
sudo dscl . -create /Users/odoo RealName “Odoo”
sudo dscl . -passwd /Users/odoo <yourpassword>
sudo dscl . -append /Groups/admin GroupMembership odoo
sudo dscl . -create /Users/odoo UniqueID 499
sudo dscl . -create /Users/odoo PrimaryGroupID 20
sudo dscl . -create /Users/odoo NFSHomeDirectory /var/odoo
sudo dseditgroup -o edit -t user -a odoo admin
3. Unzip odoo source code
sudo mkdir -p /opt/odoo
unzip odoo-10.0.zip /opt/odoo
sudo chown -R odoo: /opt/odoo/
sudo chown -R odoo: /var/odoo/
4. Install dependencies
cd /opt/odoo/odoo-10.0/
sudo pip2 install —user -r requirements.txt
5. Create Odoo log file
sudo mkdir /var/log/odoo
sudo chown -R odoo:admin /var/log/odoo
6. Create odoo conf
Mac Os Mojave
sudo cp /opt/odoo/odoo-10.0/debian/odoo.conf /etc/odoo.conf
sudo chown odoo: /etc/odoo.conf
sudo vim /etc/odoo.conf
Odlot Mac Os Download
7. Copy the following into the config file
[options]
; This is the password that allows database operations:
; admin_passwd = PASSWORD
db_host = False
db_port = False
db_user = odoo
db_password = False
add ons_path = /opt/odoo/odoo-10.0/addons
;Log Settings
logfile = /var/log/odoo/odoo.log
log_level = error
8. Create database and database user in postgres
psql -U postgres
create user odoo encrypted password ‘odoo’ ;
create database odoo owner odoo
Odlot Mac Os X
9. export locale variable
Mac Os Download
vim ~/.bash_profile
— add these lines >
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
—
source ~/.bash_profile
Odlot Mac Os Download
10. start odoo
sudo su
su odoo
cd /opt/odoo/odoo-10.0/
./odoo-bin
DONE! Now we can login to odoo system at http://localhost:8069 with credential: admin/admin
We can also create a custom module
sudo chmod -R 0777 *
sudo ./odoo-bin scaffold test-module addons