<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.abuissa.net/index.php?action=history&amp;feed=atom&amp;title=Blog%3A_2025-10-23</id>
	<title>Blog: 2025-10-23 - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.abuissa.net/index.php?action=history&amp;feed=atom&amp;title=Blog%3A_2025-10-23"/>
	<link rel="alternate" type="text/html" href="https://wiki.abuissa.net/index.php?title=Blog:_2025-10-23&amp;action=history"/>
	<updated>2026-04-19T14:42:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.13</generator>
	<entry>
		<id>https://wiki.abuissa.net/index.php?title=Blog:_2025-10-23&amp;diff=1310&amp;oldid=prev</id>
		<title>Razzi: Created page with &quot;More #science ideas * make a dam in a sandbox and flood it * make an origami cube * Solve a mystery: use clues like secret code, fingerprinting, evidence, invisible ink, use cup as amplifier * phase changes: water, wax, butter?? * measure the wind * design your own board game * make a choose-your-own adventure book * rubber band whirlygig * what is matter made of - rocks, plants * gyroscope * gear ratios &amp; mechanical advantage * typewriter * microscope * models - how the...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.abuissa.net/index.php?title=Blog:_2025-10-23&amp;diff=1310&amp;oldid=prev"/>
		<updated>2025-10-24T03:11:23Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;More #science ideas * make a dam in a sandbox and flood it * make an origami cube * Solve a mystery: use clues like secret code, fingerprinting, evidence, invisible ink, use cup as amplifier * phase changes: water, wax, butter?? * measure the wind * design your own board game * make a choose-your-own adventure book * rubber band whirlygig * what is matter made of - rocks, plants * gyroscope * gear ratios &amp;amp; mechanical advantage * typewriter * microscope * models - how the...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;More #science ideas&lt;br /&gt;
* make a dam in a sandbox and flood it&lt;br /&gt;
* make an origami cube&lt;br /&gt;
* Solve a mystery: use clues like secret code, fingerprinting, evidence, invisible ink, use cup as amplifier&lt;br /&gt;
* phase changes: water, wax, butter??&lt;br /&gt;
* measure the wind&lt;br /&gt;
* design your own board game&lt;br /&gt;
* make a choose-your-own adventure book&lt;br /&gt;
* rubber band whirlygig&lt;br /&gt;
* what is matter made of - rocks, plants&lt;br /&gt;
* gyroscope&lt;br /&gt;
* gear ratios &amp;amp; mechanical advantage&lt;br /&gt;
* typewriter&lt;br /&gt;
* microscope&lt;br /&gt;
* models - how they are useful, limitations, make a model out of clay&lt;br /&gt;
* science safety - identify hazards, tell stories of famous science accidents&lt;br /&gt;
* make paper airplanes - careful with this one........&lt;br /&gt;
* paper boats&lt;br /&gt;
* send a message over a wire&lt;br /&gt;
* how do records work&lt;br /&gt;
* make a bridge out of popsickle sticks&lt;br /&gt;
* make a tunnel / arch out of popsickle sticks&lt;br /&gt;
* make an arch out of rocks&lt;br /&gt;
* catapult with rubber band&lt;br /&gt;
* waterwheel - translate force&lt;br /&gt;
* marble art &amp;amp; chaos theory - double pendulum or magnet pendulum&lt;br /&gt;
* morse code and light signals&lt;br /&gt;
* water making a wave - hold hands and feel the wave&lt;br /&gt;
* magnets - tiny flecks of metal demo&lt;br /&gt;
* splitting light into the rainbow using prism&lt;br /&gt;
* do a leaf pressing&lt;br /&gt;
* feedback&lt;br /&gt;
* estimate dollar amounts of coins by weight&lt;br /&gt;
* binary number system - state of all light switches&lt;br /&gt;
* hexadecimal number system&lt;br /&gt;
* stupid computer makes peanut butter sandwich&lt;br /&gt;
* space moon survival ranking activity&lt;br /&gt;
* science fair&lt;br /&gt;
* logic puzzles - one always lies, one always tells the truth, one always says yes, one always says no, one answers at random&lt;br /&gt;
* 20 questions&lt;br /&gt;
* binary search with a number between 1 and 10, 1 and 100, 1 and 1000: only takes 10 guesses&lt;br /&gt;
tomorrow ---------&lt;br /&gt;
binary search I guess :)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import random&lt;br /&gt;
import math&lt;br /&gt;
&lt;br /&gt;
high = 10000&lt;br /&gt;
&lt;br /&gt;
secret = random.randint(1, high)&lt;br /&gt;
# secret = 99&lt;br /&gt;
&lt;br /&gt;
seq = &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
rounds = math.ceil(math.log2(high))&lt;br /&gt;
&lt;br /&gt;
print(f&amp;quot;Range is 1 to {high}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
for n in range(1, rounds + 1):&lt;br /&gt;
    guess_input = input(&amp;quot;Guess! &amp;quot;)&lt;br /&gt;
    guess = int(guess_input)&lt;br /&gt;
    if guess &amp;gt; secret:&lt;br /&gt;
        print(&amp;quot;too high!&amp;quot;)&lt;br /&gt;
        seq += &amp;#039;0&amp;#039;&lt;br /&gt;
    elif guess &amp;lt; secret:&lt;br /&gt;
        print(&amp;quot;too low!&amp;quot;)&lt;br /&gt;
        seq += &amp;#039;1&amp;#039;&lt;br /&gt;
    else:&lt;br /&gt;
        print(&amp;quot;win!&amp;quot;)&lt;br /&gt;
        seq += &amp;#039;1&amp;#039;&lt;br /&gt;
        seq += (rounds - n) * &amp;#039;0&amp;#039;&lt;br /&gt;
        break&lt;br /&gt;
&lt;br /&gt;
print(seq)&lt;br /&gt;
print(int(seq, 2))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Razzi</name></author>
	</entry>
</feed>