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
| from urllib.request import Request, urlopen | |
| from bs4 import BeautifulSoup | |
| #https://translate.google.com/#view=home&op=translate&sl=en&tl=en&text=hello | |
| #tlid-transliteration-content transliteration-content full | |
| class Phonetizer: | |
| def __init__(self,sentence : str,language_ : str = 'en'): | |
| self.words=sentence.split() | |
| self.language=language_ |
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
| \documentclass{article} | |
| \usepackage{amsmath} | |
| \usepackage{tikz} | |
| \usepackage{tikz-3dplot} | |
| \usetikzlibrary{backgrounds} | |
| \begin{document} | |
| \tdplotsetmaincoords{65}{60} | |
| \begin{tikzpicture}[tdplot_main_coords] | |
| \begin{scope}[canvas is xz plane at y=2,transform shape] | |
| \node[inner xsep=-3pt,inner ysep=-0.3pt] (mat1){$\displaystyle |
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
| #!/usr/local/bin/python3 | |
| from PIL import Image | |
| # Open Paddington | |
| img = Image.open("input_file_name.jpg") | |
| #increase for high resulation | |
| si=16 |
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
| /* A simple program to sequentially turn on and turn off 12 LEDs */ | |
| int LED1 = 13; | |
| int LED2 = 12; | |
| int LED3 = 11; | |
| int LED4 = 10; | |
| int LED5 = 9; | |
| int LED6 = 8; | |
| int LED7 = 7; |
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 javafx.scene.input.KeyCode; | |
| import javax.swing.*; | |
| import javax.xml.soap.Text; | |
| import java.awt.event.KeyAdapter; | |
| import java.awt.event.KeyEvent; | |
| import java.security.Key; | |
| public class Test extends JFrame { |
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
| #include<bits/stdc++.h> | |
| using namespace std; | |
| int main() | |
| { | |
| long long pow=1; | |
| long long n=1; | |
| while(cin >> n >> pow && pow && n) |
NewerOlder