This file contains 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 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 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
#!flask/bin/python | |
from flask import Flask, jsonify, abort, request, make_response, url_for | |
from flask.ext.httpauth import HTTPBasicAuth | |
app = Flask(__name__, static_url_path = "") | |
auth = HTTPBasicAuth() | |
@auth.get_password | |
def get_password(username): | |
if username == 'miguel': |
This file contains 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 <stdio.h> | |
int main(int argc, char** argv) { | |
double x, y, z, n; | |
char a; | |
printf("===== Calculator App =====\n\n"); | |
printf("Choose Operation : \n\n"); | |
printf("1-Add"); |
This file contains 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 <stdio.h> | |
void vowelCounters() { | |
printf("Enter your String : "); | |
scanf("%s", & input); | |
printf("\n\nYour String : %s", input); | |
for (i = 0; i <= 20; i++) { |
This file contains 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 <iostream> | |
#include <string> | |
#define PI 3.1415926 | |
using namespace std; | |
///////////////////------------------Variables---------------///////////////////////// |
This file contains 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
uint32_t power(uint32_t n,uint32_t m){ | |
if (m == 0) return 1; | |
if (m == 1) return n; | |
return n * power(m - 1); | |
} |
This file contains 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
public class FizzBuzz { | |
public static void main(String[] args) { | |
for (int i = 1; i <= 100; i++) { | |
if (i%3 == 0 && i%5 == 0) | |
System.out.println("FizzBuzz"); | |
else if (i%5 == 0) | |
System.out.println("Buzz"); |
This file contains 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
uint32_t fibonacci(uint32_t n){ | |
if (n == 0) return 0; | |
if (n == 1) return 1; | |
return fibonacci(n - 1) + fibonacci(n - 2); | |
} |
This file contains 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
package com.dummy.app; | |
import android.support.v4.app.Fragment; | |
import android.support.v4.app.FragmentTransaction; | |
public class FragmentChange { | |
FragmentTransaction fragmentTransaction; | |
public void setCurrentFragment(Fragment newFragment, Context mContext) { |
NewerOlder