[-]
Who's Online
There are currently 4675 online users. [Complete List]
» 6 Member(s) | 4669 Guest(s)
AvatarAvatarAvatarAvatar
AvatarAvatar

[-]
Latest Threads
Need ROM for Q223_MB_V41
Last Post: omegapr
Today 21:49
» Replies: 1
» Views: 326
K107-MB-V4.2
Last Post: Alby
2024-04-24 00:37
» Replies: 0
» Views: 193
[ROM] NEED ROM ZH960-MB-V5.0 MTK 6592
Last Post: sendycat2
2024-04-21 08:57
» Replies: 0
» Views: 169
ZH960 Tablet Bricked
Last Post: luis mar que
2024-03-20 19:52
» Replies: 14
» Views: 9797
Thanks, I've been looking for this for a...
Last Post: StevenRip
2024-02-25 05:00
» Replies: 0
» Views: 136
[SOLVED] Need ROM for ZH960-MB-V4.1
Last Post: ery1988
2024-02-21 08:59
» Replies: 0
» Views: 233
NEED ROM ZH960-MB-V4.1
Last Post: ery1988
2024-02-21 08:53
» Replies: 18
» Views: 13689
Budget phone choice help needed
Last Post: sabir7272
2024-02-10 06:52
» Replies: 4
» Views: 4253
ZH960-MB-V3.1 SOLVE
Last Post: Pranav1
2023-12-20 20:22
» Replies: 74
» Views: 33748
Need ROM for SONIM XP7S Android 5.1.1
Last Post: Alpa
2023-11-29 22:17
» Replies: 0
» Views: 150
Need rom for X101 Mt6592
Last Post: carencell
2023-11-24 21:30
» Replies: 3
» Views: 2132
Gizbeat 101: Get your MTK6589 MTK6577 MT...
Last Post: Alexia78
2023-11-13 11:28
» Replies: 8
» Views: 22307
Need rom for a tablet with board id "K10...
Last Post: oliver2
2023-10-24 20:23
» Replies: 6
» Views: 5464
How to Connect open public wifi
Last Post: oliverben45
2023-10-24 16:03
» Replies: 11
» Views: 8880
I NEED FILE FOR ITEL MOBILE PHONE AND TO...
Last Post: Meghnad45
2023-10-22 02:38
» Replies: 1
» Views: 1411
NEED Help Bricked my phone.
Last Post: Meghnad45
2023-10-22 02:36
» Replies: 4
» Views: 4828
Introduction
Last Post: ezrahidaya
2023-10-14 14:38
» Replies: 2
» Views: 1325
Needs help to root a china tablet brand ...
Last Post: ezrahidaya
2023-10-14 14:37
» Replies: 1
» Views: 207
Any tips to stay awake?
Last Post: ezrahidaya
2023-10-14 14:35
» Replies: 6
» Views: 5655
Need ROM for china TAb MT6797
Last Post: ezrahidaya
2023-10-14 14:34
» Replies: 1
» Views: 375
need this stock firmware for my tablet M...
Last Post: ramzii888
2023-10-14 02:20
» Replies: 4
» Views: 4563
Encryption Unsuccessful - Reset Android
Last Post: Aakriti
2023-10-13 16:51
» Replies: 3
» Views: 12410
betools
Last Post: egdeim
2023-09-21 12:41
» Replies: 4
» Views: 5039





Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[ROM] Koobee Halo 7 mod stock for Pepsi P1S
(2016-09-21, 02:50)tensiang Wrote: Hi, good afternoon from Spain. I really appreciate the great job that all of you are doing on this ROM, it's a hard work. I've got one of those Koobee Pepsi smartphones, I've tried to install Halo 7 mod rom but I can't go further the first step. I'm using sp flash tool but it doesn't do anything. Drivers are supposed to be installed, and I can mount the phone to see the archives, but sp flash tool is not working for me. My OS is Linux Mint. Is it a driver problem then? Cleopatra, I've read you are on Ubuntu, how did you install the drivers for this Phone?
Thanks for your answers.Wink
Hi tensiang !

My thread about LINUX is old.
As soon as possible I will post an updated thread about LINUX.
Meanwhile, please follow the next steps (tested on Ubuntu 14.04 LTS) :

Step 1 - Installing Java 8 on Ubuntu

First, you need to add Java webupd8team PPA repository on your OS and then install Oracle Java 8. Open the terminal and type the following commands:

sudo add-apt-repository ppa: webupd8team / java

sudo apt-get update

sudo apt-get install oracle-java8-installer

To see if Oracle Java 8 has been properly installed, execute the following command:

java -version

Step 2 - Install ADB and Fastboot

Open the terminal and type the following command:

sudo apt-get install Android-tools-adb-fastboot android-tools

To check the ADB version installed on Ubuntu, type the following command:

adb version

If you see the following version:

Android Debug Bridge version 1.0.31

Then it comes to the old one, so I suggest you type the following commands:

# wget -O - https ://skia.googlesource.com/skia/+archive/cd048d18e0b81338c1a04b9749a00444597df394/platform_tools/android/bin/linux.tar.gz | tar -zxvf - adb

# sudo mv adb /usr/bin/adb

# sudo chmod +x /usr/bin/adb

After that, you'll have to re-check the adb version installed by typing the following command:

adb version

You should see the next writing :

Android Debug Bridge version 1.0.32

Step 3 - Solve problems within the device not recognized

If, by opening a terminal and typing the following command:

adb devices

It will return this:

List of devices attached
? ? ? ? ? no permissions

Then it is necessary to intervene on the 51-android.rules.
Open the terminal and type the following command:

sudo gedit /etc/udev/rules.d/51-android.rules

It will appears a file similar to a txt; copy and paste the following text:

#MediaTek

SUBSYSTEM=="usb", ATTR{idVendor}=="0e8d", MODE="0666"

Then, save and close the file.
If it will does not works, I will give you the complete list of devices to add in txt.

Next, you need to change the permissions on the files by typing the following command:

sudo chmod a+r /etc/udev/rules.d/51-android.rules

Now you need to recharge the rules by typing the following commands:

sudo udevadm control --reload-rules

sudo service udev restart

sudo udevadm trigger

If you have not yet created the plugdev group and added your name to the group, enter the following commands:

groupadd plugdev

useradd -G plugdev cleopatra81 (change my name with yours)

sudo service udev restart

Then restartate udev by typing the following commands:

sudo udevadm control --reload-rules

sudo service udev restart


Now, with your smartphone connected via usb to Ubuntu, open the terminal and type the following command:

lsusb

You should see "Mediatek Inc." (Bus 00X Device 00X).

Step 5 - Installing SP Flash Tool

Download "SP_Flash_Tool_exe Linux_64Bit_v5.1604.00.100.zip"

Open the terminal and type the following commands:

sudo apt-get install libusb-dev

cd Downloads

unzip SP_Flash_Tool_exe_Linux_64Bit_v5.1604.00.100.zip

/home/cleopatra81/Downloads/SP_Flash_Tool_exe_Linux_64Bit_v5.1604.00.100 mv / home / cleopatra81 / Desktop

I recommend you change cleopatra81 with your name !

Now type the following commands:

cd Desktop


cd SP_Flash_Tool_exe_Linux_v5.1604.00.100

chmod + x flash_tool

chmod + x flash_tool.sh

sudo adduser cleopatra81 dialout (changed cleopatra81 with your name)

newgrp - dialout

sudo -i

sudo nano /etc/udev/rules.d/80-persistent-usb.rules

Copy the following string in the text document that will appear, then save and close:

SUBSYSTEM == "usb", ACTION == "add", idVendor ATTR {} == "0E8D" idProduct ATTR {} == "*"

PAY NO ATTENTION TO THE ERROR "Gtk-WARNING **: Calling Inhibit failed: GDBus.Error" !

Now, type the following command:

sudo gedit /etc/udev/rules.d/20-mm-blacklist-mtk.rules

Copy the following two strings in the text document that will appear, then save and close:

ATTRS{idVendor}=="0e8d", ENV{ID_MM_DEVICE_IGNORE}="1"

ATTRS{idVendor}=="6000", ENV{ID_MM_DEVICE_IGNORE}="1"

PAY NO ATTENTION TO THE ERROR "Gtk-WARNING **: Calling Inhibit failed: GDBus.Error" !

Then restarting udev by typing the following command:

sudo service udev restart

Step 6 - How to flash a ROM

Turn off your smartphone and type the following commands:

cd Desktop

cd SP_Flash_Tool_exe_Linux_v5.1604.00.100

sudo ./flash_tool

From this point forward, the method is the same like on Windows.
Cool
mineu33 likes this post
Reply
Wow! Thanks a lot for the post. I' ve already tried to install libusb-dev bit it returns a dependency error. I' ll do further investigation to fix it. Thanks for your answer!

(2016-09-21, 16:47)DVO-er Wrote: [quote='tensiang' pid='57578' dateline='1474397420']



Did you power off the Phone before connecting it to USB?

If you click "Download" with connected Phone (on or off) the proces won't start.

Thanks for the advice but i did. I even tried in fastboot mode but no way.
Cleopatra likes this post
Reply
Hello. I bought recently Pepsi p1s and after a few days I turned off Uni launcher from auto-start apps. After reboot the phone stucks at bootloop. Is there any solution for my problem?
You like this post
Reply
(2016-09-21, 21:44)argialex99 Wrote: Hello. I bought recently Pepsi p1s and after a few days I turned off Uni launcher from auto-start apps. After reboot the phone stucks at bootloop. Is there any solution for my problem?
Hi argialex99 !

Do you have already tried to flash the stock rom of Pepsi ?

Regards
Reply
(2016-09-21, 21:44)argialex99 Wrote: Hello. I bought recently Pepsi p1s and after a few days I turned off Uni launcher from auto-start apps. After reboot the phone stucks at bootloop. Is there any solution for my problem?
You can reset it to factory settings. When phone is off, press volume up and power button until you see menu.


Sent from my H7 using Tapatalk
Reply
(2016-09-21, 23:09)njezni Wrote: [Only registered and activated users can see links Click here to register]

Wink
Reply
(2016-09-21, 23:33)Cleopatra Wrote: [Only registered and activated users can see links Click here to register]

Wink
I also had this issue with original pepsi rom. Hard reset helped me.

Sent from my H7 using Tapatalk
You like this post
Reply
I finally installed this rom, and also get back my lost IMEI.
It was a lot of stuff for a newbie like me to do.
But finally i managed everything.

This mod is really nice, everything works now fine.
Thanks, Cleo ;)
Cleopatra likes this post
Reply
Cleopatra, I have finally installed libusb-dev in my linux mint, followed all steps in the tutorial carefully, but sp flash tool doesn't seem to recognize the phone yet. I unplugged it, switched it off, started sp flash tool and connected the phone after hitting download in format all+download mode. But nothing happens. Does it have to be completely off or in fastboot mode or press any key while pluggin it in the computer? Apart from that, I have read that several users could root it. I tried myself several times either with an apk or in a windows pc and couldn't get it to root. What am I doing wrong?Crying
Thanks for reading. ;)
You like this post
Reply
(2016-09-22, 23:00)tensiang Wrote: Cleopatra, I have finally installed libusb-dev in my linux mint, followed all steps in the tutorial carefully, but sp flash tool doesn't seem to recognize the phone yet. I unplugged it, switched it off, started sp flash tool and connected the phone after hitting download in format all+download mode. But nothing happens. Does it have to be completely off or in fastboot mode or press any key while pluggin it in the computer? Apart from that, I have read that several users could root it. I tried myself several times either with an apk or in a windows pc and couldn't get it to root. What am I doing wrong?Crying
Thanks for reading. ;)
Don't cry, we will try to solve together the issue.
In my previous post,
into "Step 3 - Solve problems within the device not recognized".
I have written to you :
"If it will does not works, I will give you the complete list of devices to add in txt".

Well, now I will give you the complete list Smiling

Open the terminal and type the following command:

sudo nano /etc/udev/rules.d/51-android.rules

You will see a file like a txt; copy and paste the following text:

# udev rule to detect android devices
# These rules refer to http: //developer.android.com/tools/device.html

# Acer
SUBSYSTEM=="usb", ATTR{idVendor}=="0502", MODE="0666", GROUP="plugdev"
# Archos
SUBSYSTEM=="usb", ATTR{idVendor}=="0e79", MODE="0666", GROUP="plugdev"
# Asus
SUBSYSTEM=="usb", ATTR{idVendor}=="0b05", MODE="0666", GROUP="plugdev"
# Azpen Onda
SUBSYSTEM=="usb", ATTR{idVendor}=="1f3a", MODE="0666", GROUP="plugdev"
# BQ
SUBSYSTEM=="usb", ATTR{idVendor}=="2a47", MODE="0666", GROUP="plugdev"
# Dell
SUBSYSTEM=="usb", ATTR{idVendor}=="413c", MODE="0666", GROUP="plugdev"
# Fairphone
SUBSYSTEM=="usb", ATTR{idVendor}=="2ae5", MODE="0666", GROUP="plugdev"
# Foxconn
SUBSYSTEM=="usb", ATTR{idVendor}=="0489", MODE="0666", GROUP="plugdev"
# Fujitsu Toshiba
SUBSYSTEM=="usb", ATTR{idVendor}=="04c5", MODE="0666", GROUP="plugdev"
# Garmin-Asus
SUBSYSTEM=="usb", ATTR{idVendor}=="091e", MODE="0666", GROUP="plugdev"
# Google
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", MODE="0666", GROUP="plugdev"
# Haier
SUBSYSTEM=="usb", ATTR{idVendor}=="201e", MODE="0666", GROUP="plugdev"
# Hisense
SUBSYSTEM=="usb", ATTR{idVendor}=="109b", MODE="0666", GROUP="plugdev"
# HTC, Wiko
SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"
# Huawei
SUBSYSTEM=="usb", ATTR{idVendor}=="12d1", MODE="0666", GROUP="plugdev"
# Intel
SUBSYSTEM=="usb", ATTR{idVendor}=="8087", MODE="0666", GROUP="plugdev"
# K-Touch
SUBSYSTEM=="usb", ATTR{idVendor}=="24e3", MODE="0666", GROUP="plugdev"
# KT Tech
SUBSYSTEM=="usb", ATTR{idVendor}=="2116", MODE="0666", GROUP="plugdev"
# Kyocera
SUBSYSTEM=="usb", ATTR{idVendor}=="0482", MODE="0666", GROUP="plugdev"
# Lab126
SUBSYSTEM=="usb", ATTR{idVendor}=="1949", MODE="0666", GROUP="plugdev"
# Lenovo
SUBSYSTEM=="usb", ATTR{idVendor}=="17ef", MODE="0666", GROUP="plugdev"
# LG
SUBSYSTEM=="usb", ATTR{idVendor}=="1004", MODE="0666", GROUP="plugdev"
# Meizu
SUBSYSTEM=="usb", ATTR{idVendor}=="2a45", MODE="0666", GROUP="plugdev"
# Micromax
SUBSYSTEM=="usb", ATTR{idVendor}=="1ebf", MODE="0666", GROUP="plugdev"
# Motorola
SUBSYSTEM=="usb", ATTR{idVendor}=="22b8", MODE="0666", GROUP="plugdev"
# MTK
SUBSYSTEM=="usb", ATTR{idVendor}=="0e8d", MODE="0666", GROUP="plugdev"
# NEC
SUBSYSTEM=="usb", ATTR{idVendor}=="0409", MODE="0666", GROUP="plugdev"
# Nook
SUBSYSTEM=="usb", ATTR{idVendor}=="2080", MODE="0666", GROUP="plugdev"
# Nvidia
SUBSYSTEM=="usb", ATTR{idVendor}=="0955", MODE="0666", GROUP="plugdev"
# OnePlus Two (unknown vendor's name)
SUBSYSTEM=="usb", ATTR{idVendor}=="2a70", MODE="0666", GROUP="plugdev"
# Oppo
SUBSYSTEM=="usb", ATTR{idVendor}=="22d9", MODE="0666", GROUP="plugdev"
# OTGV
SUBSYSTEM=="usb", ATTR{idVendor}=="2257", MODE="0666", GROUP="plugdev"
# Pantech
SUBSYSTEM=="usb", ATTR{idVendor}=="10a9", MODE="0666", GROUP="plugdev"
# Pegatron
SUBSYSTEM=="usb", ATTR{idVendor}=="1d4d", MODE="0666", GROUP="plugdev"
# Philips
SUBSYSTEM=="usb", ATTR{idVendor}=="0471", MODE="0666", GROUP="plugdev"
# PMC-Sierra
SUBSYSTEM=="usb", ATTR{idVendor}=="04da", MODE="0666", GROUP="plugdev"
# Qualcomm
SUBSYSTEM=="usb", ATTR{idVendor}=="05c6", MODE="0666", GROUP="plugdev"
# Rockcwell Electronics
SUBSYSTEM=="usb", ATTR{idVendor}=="2207", MODE="0666", GROUP="plugdev"
# SK Telesys
SUBSYSTEM=="usb", ATTR{idVendor}=="1f53", MODE="0666", GROUP="plugdev"
# Samsung
SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666", GROUP="plugdev"
# Sharp
SUBSYSTEM=="usb", ATTR{idVendor}=="04dd", MODE="0666", GROUP="plugdev"
# Sony
SUBSYSTEM=="usb", ATTR{idVendor}=="054c", MODE="0666", GROUP="plugdev"
# Sony Ericsson
SUBSYSTEM=="usb", ATTR{idVendor}=="0fce", MODE="0666", GROUP="plugdev"
# Spreadtrum
SUBSYSTEM=="usb", ATTR{idVendor}=="1782", MODE="0666", GROUP="plugdev"
# T & A Mobile Phones
SUBSYSTEM=="usb", ATTR{idVendor}=="1bbb", MODE="0666", GROUP="plugdev"
# Teleepoch
SUBSYSTEM=="usb", ATTR{idVendor}=="2340", MODE="0666", GROUP="plugdev"
# Texas Instruments UsbBoot
SUBSYSTEM=="usb", ATTR{idVendor}=="0451", MODE="0666", GROUP="plugdev"
# Toshiba
SUBSYSTEM=="usb", ATTR{idVendor}=="0930", MODE="0666", GROUP="plugdev"
# Wearners
SUBSYSTEM=="usb", ATTR{idVendor}=="05c6", MODE="0666", GROUP="plugdev"
# Wileyfox
SUBSYSTEM=="usb", ATTR{idVendor}=="2970", MODE="0666", GROUP="plugdev"
# XiaoMi
SUBSYSTEM=="usb", ATTR{idVendor}=="2717", MODE="0666", GROUP="plugdev"
# YU
SUBSYSTEM=="usb", ATTR{idVendor}=="1ebf", MODE="0666", GROUP="plugdev"
# Zebra
SUBSYSTEM=="usb", ATTR{idVendor}=="05e0", MODE="0666", GROUP="plugdev"
# ZTE
SUBSYSTEM=="usb", ATTR{idVendor}=="19d2", MODE="0666", GROUP="plugdev"
# ZUK
SUBSYSTEM=="usb", ATTR{idVendor}=="2b4c", MODE="0666", GROUP="plugdev"
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Question] Lenovo s898t+ stock recovery Coroco 0 1,603 2018-12-26, 03:50
Last Post: Coroco
  need stock rom or custom rom for Alcatel one touch J320 simbac 3 7,774 2017-06-16, 00:47
Last Post: Pedroalb3721
  [ROM] Stock ROM Acer Liquid Z3 bao 0 1,878 2016-08-29, 23:39
Last Post: bao
  [Question] MT6735 Mediacom Phonepad S552U - Recovery mod Casley79 8 5,585 2016-04-28, 16:15
Last Post: Casley79
  stock rom needed for homtom ht7pro Hairybiker 4 4,688 2016-04-15, 02:13
Last Post: Hairybiker

Forum Jump:


Users browsing this thread: ruige, 2 Guest(s)
[-]
Tech & Science
[Sci-Am] Book Review: Rats, Gardens, and Stories from a "Pos...
Last Post: Scientific American
Today 11:02
» Replies: 0
» Views: 26
[Sci-Am] Record-Breaking Ocean Heat Wave Foreshadows a Dange...
Last Post: Scientific American
Yesterday 07:00
» Replies: 0
» Views: 38
[Harvard] Early warning sign of extinction?
Last Post: Harvard
Yesterday 07:00
» Replies: 0
» Views: 54
[Sci-Am] AI Therapy Bots Have Risks and Benefits and More Ri...
Last Post: Scientific American
2024-05-16 17:39
» Replies: 0
» Views: 33
[Sci-Am] How Do People Get Parasitic Brain Worms like the On...
Last Post: Scientific American
2024-05-16 04:12
» Replies: 0
» Views: 22
[Harvard] So much for summers of love
Last Post: Harvard
2024-05-16 04:12
» Replies: 0
» Views: 34
[Sci-Am] How Bird Flu Caught the Dairy Industry Off Guard
Last Post: Scientific American
2024-05-15 14:42
» Replies: 0
» Views: 24
[Harvard] Are you a human? Select all that apply.
Last Post: Harvard
2024-05-15 14:42
» Replies: 0
» Views: 27
[Sci-Am] XPRIZE’s $100-Million Carbon-Removal Contest Select...
Last Post: Scientific American
2024-05-15 01:18
» Replies: 0
» Views: 24
[Sci-Am] Where Does the Solar System End?
Last Post: Scientific American
2024-05-14 11:40
» Replies: 0
» Views: 31
[Sci-Am] The Science of ‘3 Body Problem’: What’s Fact and Wh...
Last Post: Scientific American
2024-05-13 21:59
» Replies: 0
» Views: 37
[Sci-Am] The Famine Developing in Gaza Follows a Clear Patte...
Last Post: Scientific American
2024-05-13 08:23
» Replies: 0
» Views: 24
[Sci-Am] Is Sleeping on the Floor Good for Your Back?
Last Post: Scientific American
2024-05-12 17:41
» Replies: 0
» Views: 37
[Sci-Am] Here's What Universities Always Get Wrong about Stu...
Last Post: Scientific American
2024-05-12 03:26
» Replies: 0
» Views: 57
[Sci-Am] AI Is Helping Referee Games in Major Sports Leagues...
Last Post: Scientific American
2024-05-11 14:04
» Replies: 0
» Views: 70
[Sci-Am] Exercise Helps Your Brain as Much as Your Body
Last Post: Scientific American
2024-05-10 09:30
» Replies: 0
» Views: 65
[Harvard] Amazon butterfly evolved from hybrids
Last Post: Harvard
2024-05-10 09:30
» Replies: 0
» Views: 57
[Sci-Am] Nearsightedness Rates Are Soaring. Here’s Why
Last Post: Scientific American
2024-05-09 20:01
» Replies: 0
» Views: 41
[Harvard] Is AI friend or foe? Wrong question.
Last Post: Harvard
2024-05-09 20:01
» Replies: 0
» Views: 22
[Sci-Am] Do Insects Have an Inner Life? Animal Consciousness...
Last Post: dejanx
2024-05-09 19:24
» Replies: 1
» Views: 45
[Harvard] Climate alignment is no easy task
Last Post: Harvard
2024-05-09 06:10
» Replies: 0
» Views: 29
[Sci-Am] Energy Independence Is a Big Election Talking Point...
Last Post: Scientific American
2024-05-08 16:42
» Replies: 0
» Views: 52
[Sci-Am] Rat Neurons Repair Mouse Brains That Lack a Sense o...
Last Post: Scientific American
2024-05-08 02:49
» Replies: 0
» Views: 54
[Sci-Am] Corals Are Once Again Bleaching En Masse, but Their...
Last Post: Scientific American
2024-05-07 13:08
» Replies: 0
» Views: 49
[Sci-Am] People Keep Secrets Because They Overestimate Harsh...
Last Post: Scientific American
2024-05-06 23:09
» Replies: 0
» Views: 46
[Sci-Am] How Unhealthy Are Ultra-Processed Foods?
Last Post: Scientific American
2024-05-06 09:28
» Replies: 0
» Views: 48
[Sci-Am] Cicadas Are Basically Safe for You—And Your Dog—to ...
Last Post: Scientific American
2024-05-05 20:00
» Replies: 0
» Views: 41
[Sci-Am] The Threat of a Solar Superstorm Is Growing—And We’...
Last Post: Scientific American
2024-05-05 06:40
» Replies: 0
» Views: 44
[Sci-Am] New Pollution Regulations Could Largely Eliminate C...
Last Post: Scientific American
2024-05-04 16:11
» Replies: 0
» Views: 17
[Sci-Am] Extrovert or Introvert: Most People Are Actually Am...
Last Post: Scientific American
2024-05-04 02:50
» Replies: 0
» Views: 21
[Sci-Am] Lemon-Scented Marijuana Compound Reduces Weed’s ‘Pa...
Last Post: Scientific American
2024-05-03 13:20
» Replies: 0
» Views: 22
[Sci-Am] New Interactive Map Shows Where Extreme Heat Threat...
Last Post: macikus
2024-05-03 01:38
» Replies: 1
» Views: 57
[Sci-Am] How Ugandan Tobacco Farmers Inadvertently Spread Ba...
Last Post: Scientific American
2024-05-02 09:12
» Replies: 0
» Views: 33
[Sci-Am] Will the Amazon Rain Forest Help Save the Planet?
Last Post: Scientific American
2024-05-01 19:43
» Replies: 0
» Views: 38
[Sci-Am] The U.S. Spends a Fortune on Beach Sand That Storms...
Last Post: Scientific American
2024-05-01 06:15
» Replies: 0
» Views: 35
[Sci-Am] Could JWST Solve One of Cosmology's Greatest Myster...
Last Post: Scientific American
2024-04-30 03:14
» Replies: 0
» Views: 59
[Sci-Am] How to See the Lunar Far Side Right Here on Earth
Last Post: Scientific American
2024-04-29 13:40
» Replies: 0
» Views: 59