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
LIBRARY ieee; | |
USE ieee.std_logic_1164.ALL; | |
ENTITY fsm IS | |
PORT ( | |
clk : IN std_logic; | |
rst : IN std_logic; | |
initial : IN std_logic; -- initial image to be encrypted | |
key : IN std_logic_vector (199 DOWNTO 0); -- secret key to encrypt or decrypt the image | |
encrypt : IN std_logic; -- if 1 >> encrypt -- if 0 >> decrypt | |
outImage : OUT std_logic |
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
Hello Reviewer, I'm Mohamed Rashad, ECE Undergrad & Software Engineer from Egypt, as you know, Egypt lies in the sector of poor countries, with average annual US salaries of 2000 USD. I'm an engineering student and also I work as a part time Machine Learning Engineer to cover my expenses, which include my dorm, public college fees and transportation. | |
For me it seems impossible to pay for an entire course by myself. My parents neither can help me. I would say the main reason I'm asking you for the Financial Aid is my inability to pay for it due to the economical reasons I live in my country. | |
Receiving this Financial Aid will open for me a new horizons of the world of Coursera courses , which in turn will help me in future of my career and education allowing me to be more oriented meet the market needs for my career path. | |
--------------------------- | |
By my nature I am a very curious person. I chose my specialty as well my job based on my interest. I strongly believe that making your job a hobby will allow |
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
(function() { | |
// Add marked library and wait for it to load | |
const markedScript = document.createElement('script'); | |
markedScript.src = 'https://cdn.jsdelivr.net/npm/[email protected]/marked.min.js'; | |
markedScript.onload = () => { | |
// Initialize marked options once loaded | |
marked.setOptions({ | |
breaks: true, // Adds <br> on single line breaks | |
gfm: true, // GitHub Flavored Markdown | |
sanitize: false // Allow HTML in the input |
OlderNewer