[-]
Who's Online
There are currently 791 online users. [Complete List]
» 5 Member(s) | 786 Guest(s)
AvatarAvatarAvatarAvatar
Avatar

[-]
Latest Threads
[SOLVED] Need ROM for ZH960-MB-V4.1
Last Post: dejanx
Yesterday 16:44
» Replies: 1
» Views: 187
K107-MB-V4.2
Last Post: Alby
2024-04-24 00:37
» Replies: 0
» Views: 165
[ROM] NEED ROM ZH960-MB-V5.0 MTK 6592
Last Post: sendycat2
2024-04-21 08:57
» Replies: 0
» Views: 126
ZH960 Tablet Bricked
Last Post: luis mar que
2024-03-20 19:52
» Replies: 14
» Views: 9762
Thanks, I've been looking for this for a...
Last Post: StevenRip
2024-02-25 05:00
» Replies: 0
» Views: 99
NEED ROM ZH960-MB-V4.1
Last Post: ery1988
2024-02-21 08:53
» Replies: 18
» Views: 13655
Budget phone choice help needed
Last Post: sabir7272
2024-02-10 06:52
» Replies: 4
» Views: 4246
ZH960-MB-V3.1 SOLVE
Last Post: Pranav1
2023-12-20 20:22
» Replies: 74
» Views: 33698
Need ROM for SONIM XP7S Android 5.1.1
Last Post: Alpa
2023-11-29 22:17
» Replies: 0
» Views: 125
Need rom for X101 Mt6592
Last Post: carencell
2023-11-24 21:30
» Replies: 3
» Views: 2099
Gizbeat 101: Get your MTK6589 MTK6577 MT...
Last Post: Alexia78
2023-11-13 11:28
» Replies: 8
» Views: 22292
Need rom for a tablet with board id "K10...
Last Post: oliver2
2023-10-24 20:23
» Replies: 6
» Views: 5343
How to Connect open public wifi
Last Post: oliverben45
2023-10-24 16:03
» Replies: 11
» Views: 8853
I NEED FILE FOR ITEL MOBILE PHONE AND TO...
Last Post: Meghnad45
2023-10-22 02:38
» Replies: 1
» Views: 1400
NEED Help Bricked my phone.
Last Post: Meghnad45
2023-10-22 02:36
» Replies: 4
» Views: 4818
Introduction
Last Post: ezrahidaya
2023-10-14 14:38
» Replies: 3
» Views: 1318
Needs help to root a china tablet brand ...
Last Post: ezrahidaya
2023-10-14 14:37
» Replies: 1
» Views: 196
Any tips to stay awake?
Last Post: ezrahidaya
2023-10-14 14:35
» Replies: 6
» Views: 5461
Need ROM for china TAb MT6797
Last Post: ezrahidaya
2023-10-14 14:34
» Replies: 1
» Views: 353
need this stock firmware for my tablet M...
Last Post: ramzii888
2023-10-14 02:20
» Replies: 4
» Views: 4530
Encryption Unsuccessful - Reset Android
Last Post: Aakriti
2023-10-13 16:51
» Replies: 3
» Views: 12399
betools
Last Post: egdeim
2023-09-21 12:41
» Replies: 4
» Views: 5032
[Movie Suggestion] Automata with Antonio...
Last Post: GottaGetX
2023-09-07 09:19
» Replies: 3
» Views: 4141





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,772 2017-06-16, 00:47
Last Post: Pedroalb3721
  [ROM] Stock ROM Acer Liquid Z3 bao 0 1,877 2016-08-29, 23:39
Last Post: bao
  [Question] MT6735 Mediacom Phonepad S552U - Recovery mod Casley79 8 5,583 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: 1 Guest(s)
[-]
Tech & Science
[Sci-Am] Cicadas Are Basically Safe for You—And Your Dog—to ...
Last Post: Scientific American
Today 20:00
» Replies: 0
» Views: 2
[Sci-Am] The Threat of a Solar Superstorm Is Growing—And We’...
Last Post: Scientific American
Today 06:40
» Replies: 0
» Views: 10
[Sci-Am] New Pollution Regulations Could Largely Eliminate C...
Last Post: Scientific American
Yesterday 16:11
» Replies: 0
» Views: 8
[Sci-Am] Extrovert or Introvert: Most People Are Actually Am...
Last Post: Scientific American
Yesterday 02:50
» Replies: 0
» Views: 6
[Sci-Am] Lemon-Scented Marijuana Compound Reduces Weed’s ‘Pa...
Last Post: Scientific American
2024-05-03 13:20
» Replies: 0
» Views: 11
[Sci-Am] New Interactive Map Shows Where Extreme Heat Threat...
Last Post: macikus
2024-05-03 01:38
» Replies: 1
» Views: 44
[Sci-Am] How Ugandan Tobacco Farmers Inadvertently Spread Ba...
Last Post: Scientific American
2024-05-02 09:12
» Replies: 0
» Views: 23
[Sci-Am] Will the Amazon Rain Forest Help Save the Planet?
Last Post: Scientific American
2024-05-01 19:43
» Replies: 0
» Views: 23
[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: 25
[Sci-Am] Could JWST Solve One of Cosmology's Greatest Myster...
Last Post: Scientific American
2024-04-30 03:14
» Replies: 0
» Views: 41
[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: 47
[Sci-Am] How Big a Threat Is Bird Flu?
Last Post: Scientific American
2024-04-29 00:05
» Replies: 0
» Views: 39
[Sci-Am] The Amazon's Record-Breaking Drought Is about More ...
Last Post: Tauma
2024-04-28 22:35
» Replies: 1
» Views: 42
[Sci-Am] FDA Recalls Heart Pumps Linked to Deaths and Injuri...
Last Post: Scientific American
2024-04-28 09:53
» Replies: 0
» Views: 19
[Sci-Am] Deadly African Heat Wave Would Not Have Been Possib...
Last Post: Scientific American
2024-04-27 20:10
» Replies: 0
» Views: 18
[Harvard] Getting ahead of dyslexia
Last Post: Harvard
2024-04-27 06:36
» Replies: 0
» Views: 28
[Sci-Am] Hollywood Should Give Brain Science a Star Turn
Last Post: Scientific American
2024-04-26 17:14
» Replies: 0
» Views: 38
[Sci-Am] Milky Way's 'Sleeping Giant' Black Hole Lurks Shock...
Last Post: Scientific American
2024-04-26 03:48
» Replies: 0
» Views: 51
[Harvard] Why AI fairness conversations must include disable...
Last Post: Harvard
2024-04-25 13:58
» Replies: 0
» Views: 60
[Sci-Am] How a New AI Model Helps Volcanic History Rise from...
Last Post: Scientific American
2024-04-24 23:17
» Replies: 0
» Views: 60
[Sci-Am] Everyone Will Have Fewer Relatives in the Future
Last Post: Scientific American
2024-04-24 09:25
» Replies: 0
» Views: 45
[Sci-Am] The Dark Side of Nostalgia for Wild, Untouched Plac...
Last Post: Scientific American
2024-04-23 19:59
» Replies: 0
» Views: 37
[Harvard] How did you get that frog to float?
Last Post: Harvard
2024-04-23 19:59
» Replies: 0
» Views: 52
[Sci-Am] In Matters of Scientific Debate, Follow the Houdini...
Last Post: Scientific American
2024-04-23 06:34
» Replies: 0
» Views: 32
[Harvard] Lifting a few with my chatbot
Last Post: Harvard
2024-04-23 06:34
» Replies: 0
» Views: 39
[Sci-Am] This Tiny Fish Makes an Ear-Blasting Screech for Lo...
Last Post: Scientific American
2024-04-22 17:01
» Replies: 0
» Views: 36
[Sci-Am] How Plant Intelligence Can Soothe Climate Anxiety
Last Post: Scientific American
2024-04-22 02:57
» Replies: 0
» Views: 50
[Sci-Am] Contributors to Scientific American’s May 2024 Issu...
Last Post: Scientific American
2024-04-21 13:36
» Replies: 0
» Views: 40
[Sci-Am] A ‘Computer’ Built from DNA Can Find Patterns in Ph...
Last Post: Scientific American
2024-04-20 23:27
» Replies: 0
» Views: 70
[Sci-Am] Unraveling the Secrets of This Weird Beetle’s 48-Ho...
Last Post: Scientific American
2024-04-20 09:17
» Replies: 0
» Views: 52
[Sci-Am] We Are Living in the Pyrocene, the Age of Fire that...
Last Post: Scientific American
2024-04-18 16:45
» Replies: 0
» Views: 98
[Harvard] Hate mosquitoes? Who doesn’t? But maybe we shouldn...
Last Post: Harvard
2024-04-18 03:05
» Replies: 0
» Views: 96
[Sci-Am] Why Some People Always Get Lost—And Others Never Do
Last Post: Scientific American
2024-04-17 13:33
» Replies: 0
» Views: 60
[Sci-Am] U.S. Carbon Removal Needs Have a $100-Billion Price...
Last Post: Scientific American
2024-04-16 23:48
» Replies: 0
» Views: 62
[Sci-Am] New Books Help Parents Explain Climate Disasters to...
Last Post: Scientific American
2024-04-16 10:13
» Replies: 0
» Views: 74
[Sci-Am] Renewable Energy Shatters Records in the U.S.
Last Post: Scientific American
2024-04-15 20:19
» Replies: 0
» Views: 84
[Sci-Am] The Dunning-Kruger Effect Shows that People Don’t K...
Last Post: Scientific American
2024-04-15 06:47
» Replies: 0
» Views: 80