-
Describe several situations in which an object is not in equilibrium, even though the net force on it is zero.
- An example would be using a wrench to turn a bolt. The force is pulling from one side and pushing from the other (going in opposite directions) and so the net force would be zero, however, because of the difference in torque, the bolt would rotate.
- Transitional and Rotational Equilibrium
-
A bungee jumper momentarily comes to rest at the bottom of the dive before he springs back upward. At that moment, is the bungee jumper in equilibrium? Explain.
- The rope of bungee jumping is like a spring. When the net force acting on an object is zero the object is said to be in translational equilibrium. The bungee jumping rope is like a spring. When the load is suspended, the rope stretches until the net force acting on the object is zero. When the weight of the object W and restoring force of the spring F is equal the object comes to rest. This point is the lowest
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQENBFsC8zQBCADAEsxxe/edeIlHh/nWizobcWGOGlEiQpKm2d6TQ7LMhC4Ph3El | |
hR8qflh5qS8CPng3qEqwrG23HgUlbC8+CB/brg3TWE8T7EqRO6bzfLzYzYpJUxsv | |
HUPrc347Cjf7rNyFxWS5s7uJlmPIkysjUYnLOE7dlxCn7U2qV8k9APsfHe4EBJXG | |
aJESkXl3Hna/PxoDrM0WW6bertCyYNGaI+/VdWoh1nXf101/ChX/311NaK7JVqLj | |
55ejwc28WQ16Khd5USIVyDvOvgvFei1aJgNEPNhYAw8+6PSqoXCUscbGtjyMlb2h | |
JGgXB9scj22CyvFgoolu157efYp9TS1dw07vABEBAAG0K01hdGVqIFBsYXZldnNr | |
aSA8bWF0ZWoucGxhdmV2c2tpQGdtYWlsLmNvbT6JAVQEEwEIAD4WIQSZd42urvY8 | |
wJ//C5T3/vydk3XTigUCWwLzNAIbAwUJA8JnAAULCQgHAgYVCgkICwIEFgIDAQIe |
""" | |
main.py | |
That's it this is the entire API. | |
""" | |
from flask import Flask, jsonify | |
import markovify | |
app = Flask(__name__) | |
with open("nietzche.txt") as f: | |
text = f.read() |
cc.api_add_param(s,param) # for each parameter call this function. | |
#very mandatory for keeping a track of pythonapi call. Always must be set. | |
cc.my_pythonapi(s, callback) | |
#once done you are going to compile all params. | |
compile_ret = cc.compile_params(s,len(<params>)); |
We have a TVBox but there's nothing good on TV except HBO and rarely the Simpsons and South Park. I usually recorded the Simpsons episode but now the recording function broke. I know I can watch them using torrents but it's different watching on a bigger screen and taking the entire space on the couch. And After School I have a lot of free time but never actually check the TV. So my first idea is to connect an Arduino to a TV box and check the TV guide or based on the intro of the show usually the Simpsons start with the subtitle " the sinpsons". While the Arduino is parsing the data via a video experimenter shield and registers it it will send me an SMS via a gsm modem or a notification via an internet shield using Slacks API or pushbullet
Google Code-In is a competition happening during November till the end of the winter break that encourages teens from the age of 13 to 17 to learn more about Open Source and contribute to it.
During Code-In students are collaborating and working on solving problems ranging from coding, documentation, training, outreach, research, quality assurance and user interface to help the organization they picked.
Last year it was my first year participating in Google Code-In and that year I made a lot of friends that we are staying in touch. Together we work on collaborating on Projects of our own, Help each other when we are stuck and express our opinions on Linux Distributions.
Sadly I’m not a winner to talk about it but two of my best friends are and I’m really proud of them and their contributions. Great work guys!
Anyways I decided to do an interview too and learn more about what they did during Code-In and tips I can get to go to the magical paradise called Googleplex. This year they
# _*_ coding: utf-8 _*_ | |
import requests | |
import json | |
import time | |
res = requests.get('https://db.softver.org.mk/influxdb/query?db=status&q=SELECT+doorstatus+FROM+doorstatus+WHERE+location=%27hacklab%27+ORDER+BY+time+DESC+LIMIT+1&epoch=ms') | |
data = json.loads(res.text) | |
if data['results'][0]['series'][0]['values'][0][1] == 'OPEN': | |
print "Хаклабот е отворен! и тоа од: " + str(time.strftime("%H:%M", time.localtime(int(data['results'][0]['series'][0]['values'][0][0])))) |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#include <math.h> | |
using namespace std; | |
int main(){ | |
int eggs; |