This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int n = 123456789; | |
| int m = 0; | |
| while (n != 0) { | |
| m = (10 * m) + (n % 10); | |
| System.out.print(m); | |
| n = n / 10; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install python-software-properties | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java8-installer | |
| sudo apt-get install oracle-java8-set-default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p><br></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| from datetime import date | |
| from sqlalchemy import create_engine, func,select, asc, desc, Table, Column, Integer, String, MetaData, ForeignKey | |
| from sqlalchemy.orm import sessionmaker | |
| from database_setup import Base, Restaurant, MenuItem | |
| engine = create_engine('sqlite:///restaurantmenu.db') | |
| Base.metadata.bind = engine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var b = require('bonescript'); | |
| var led = "USR3"; | |
| var state = 0; | |
| b.pinMode(led, 'out'); | |
| toggleLED = function() { | |
| state = state ? 0 : 1; | |
| b.digitalWrite(led, state); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Sorry <a href="https://github.com/ehab93">ehab93</a> for being absent these weeks. :(</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Test #1<br></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <br> | |
| <div style='overflow:hidden; display: block;'> | |
| <div style='width:320px;height:215px; float:left; display:inline-block;'> | |
| <b>Exclusive Calendar Features: </b><br><br> | |
| <p style='line-height: 100%;'>> 14 mois</p> | |
| <p style='line-height: 100%;'>> Citations hebdomadaires par chefs d'entreprises</p> | |
| <p style='line-height: 100%;'>> Liste des Indicatifs Régionaux Téléphoniques</p> | |
| <p style='line-height: 100%;'>> Répertoire d’adresses</p> | |
| <p style='line-height: 100%;'>> Contacts</p> | |
| <p style='line-height: 100%;'>> Projets Pour 2017 </p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| We're adding a card to show it to <span style="font-family: Consolas, 'Lucida Console', monospace; font-size: 12.8000001907349px; text-indent: -7px; background-color: rgb(240, 247, 255);">ebadawy</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| install pyaudio | |
| git clone http://people.csail.mit.edu/hubert/git/pyaudio.git | |
| sudo apt-get install libportaudio0 libportaudio2 libportaudiocpp0 portaudio19-dev | |
| sudo apt-get install python-dev | |
| cd pyaudio/ | |
| sudo python setup.py install | |
| Install Speech Recognition | |
| git clone https://github.com/Uberi/speech_recognition.git | |
| cd speech_recognition/ |