diff --git a/pages/vi/profiles/21stchannel.md b/pages/vi/profiles/21stchannel.md deleted file mode 100644 index 24575bdbf8..0000000000 --- a/pages/vi/profiles/21stchannel.md +++ /dev/null @@ -1,40 +0,0 @@ -# Yan Yi (Ryan) - -## General Information - -**Location:** US -**Time Zone:** PDT -**OS:** macOS 10.12.5 - -## Myself - -> Hello all! -> I am a grad student from UCSD and my major is Computer Engineering. - -![](https://ucsd.edu/_resources/img/logo_UCSD.png) - -**Languages** - -- English -- Chinese -- Japanese - -[My Github](https://github.com/21stChannel) - -## Skill Set - -- Java -- Spring Boot -- Ruby on Rails -- SQL -- HTML/CSS/JS -- Twitter Bootstrap - -## Projects - -| Project Name | Year | -|--------------------------------|------| -| Personal Website: Alfred Knows | 2017 | -| Movie Recommender System | 2016 | -| Page Rank System Design | 2016 | -| Java Playlist Crawler | 2016 | \ No newline at end of file diff --git a/pages/vi/profiles/314159265359.md b/pages/vi/profiles/314159265359.md deleted file mode 100644 index 145cd2e689..0000000000 --- a/pages/vi/profiles/314159265359.md +++ /dev/null @@ -1,13 +0,0 @@ -# Karen Thomas - -# New York / EST - -## ubuntu 15.10 - -> When I discovered software development I started out with C programming. -> Now I am studying Java and Android development. -> I have an A.A. in Computer Engineering (C++) and am working towards a B.S. in Computer Science. - - -* Email: kthom3001@gmail.com -* Github: [KarenT](https://github.com/314159265359) \ No newline at end of file diff --git a/pages/vi/profiles/aas919.md b/pages/vi/profiles/aas919.md deleted file mode 100644 index 9575d18366..0000000000 --- a/pages/vi/profiles/aas919.md +++ /dev/null @@ -1,15 +0,0 @@ -# Ajinkya Shukla -Jersey City, NJ / EST -Windows 7 Home - -> I am passionate about writing code, solving problems and building something awesome! - -### #NYU CS Graduate - -### Progamming Languages: -* Java -* Scala -* Python -* Javascript - -[LinkedIn](https://www.linkedin.com/in/ajinkyashukla) | diff --git a/pages/vi/profiles/abdusamaraie.md b/pages/vi/profiles/abdusamaraie.md deleted file mode 100644 index e189c8325e..0000000000 --- a/pages/vi/profiles/abdusamaraie.md +++ /dev/null @@ -1,45 +0,0 @@ -# Welcome to my Profile -___________ - -**location:** US - -**Time Zone:** EST - -**OS:** Ubuntu 18.04 - - -![alt MY Country <](https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/%D8%B3%D8%A7%D8%AD%D8%A9-%D8%A7%D9%84%D8%AA%D8%AC%D8%B1%D9%8A%D8%B1.png/400px-%D8%B3%D8%A7%D8%AD%D8%A9-%D8%A7%D9%84%D8%AA%D8%AC%D8%B1%D9%8A%D8%B1.png "Photo of my home town") - -## About Me: - -My name is Abdu Samaraie and I am a Computer Science student. I am very passionate programmer, and I like learning new technologies that will help me excel in the field of Software Engineering. In my freetime, I am constantly learning by watching toturials on Youtube. - -I graduated from the University at Buffalo This year (2019) - - -![Image logo](https://www.suny.edu/media/suny/content-assets/images/campus-profiles/logos/buffalo.jpg) - -Add me on [LinkedIn](https://www.linkedin.com/in/abdu-samaraie/) - - -#### My Favorite Programming Languages: -* Python -* JavaScript -* SQL - - -`Best quote` -> "The greatest of richness is the richness of the soul." ->> __ Prophet Muhammad (peace be upon him) - -```python -def reverseItRightOrGoHome(): - my_string = "ABCDE" - reversed_string = my_string[::-1] - return reversed_string -``` -| SE Project name | Year -| ------------- |:-------------: -| [My personal Website](https://github.com/abdusamaraie/my_portfolio) | 2018 -| [cacheMap](https://github.com/abdusamaraie/cse442-capstone-project) | 2019 -| [Blockchain Webstore](https://github.com/abdusamaraie/blockchain-bookstore) | 2019 diff --git a/pages/vi/profiles/adewale2018.md b/pages/vi/profiles/adewale2018.md deleted file mode 100644 index 28dc77e205..0000000000 --- a/pages/vi/profiles/adewale2018.md +++ /dev/null @@ -1,32 +0,0 @@ -#### `Firstname: ` SAHEED -___ -#### `Middlename:` ADEWALE -___ -#### `Surname:` SHITTU -___ -#### `Location:` LAGOS, NIGERIA -___ -#### `Time zone:` GMT + 1 -___ -#### `OS:` WINDOWS 10, ACER 2018. -___ -#### `ABOUT ME:` -``` - I am from Nigeria. I studied mechanical engineering and was working in a flour mill company before I switched - to learning software development. I always look for opportunity to acquire the technical and the soft skills - needed to become a world-class software engineer. It gladdens my heart to be on the process of becoming a - member of this great community. Nice to meet you all!. -``` -___ -##### `JOURNEY OF ALMOST A YEAR:` - - HTML5 - - CSS3 - - BOOTSTRAP - - JAVASCRIPT - - JQUERY - - GIT WORKFLOW - - PIVOTAL-TRACKER - - LEARNING REACT - ___ - ##### `I LOVE COLLABORATION` - ![](https://images.unsplash.com/photo-1531545514256-b1400bc00f31?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60) diff --git a/pages/vi/profiles/adhikara.md b/pages/vi/profiles/adhikara.md deleted file mode 100644 index ee0a844510..0000000000 --- a/pages/vi/profiles/adhikara.md +++ /dev/null @@ -1,54 +0,0 @@ -# My name is Akrish. - -I'm on the **west coast time zone or PT**. I use **Mac OS X El Capitan**. I am a **college student** at Reed College in Portland, OR studying French literature and computer science. I am _so excited_ to work with OLE! - -> [Here](https://github.com/adhikara) are some short projects I've worked on if you're interested. - -I like to write clean code with documentation: - -```python -def tryDefine(word): - - localSearch = local(word) # METHOD 1 = Look through Wiktionary dumps - - if localSearch != "word not found": - return localSearch - - parserSearch = wiki1(word) # METHOD 2 = Look through Wiktionary using JSON parser - - if parserSearch != "word not found": - return parserSearch - - wikiSearch = wiki2(word) # METHOD 3 = Look through Wiktionary dumps for nuances like participles and singulars - - if wikiSearch != "word not found": - return wikiSearch - - return linguee(word) # METHOD 4 = crawl through Linguee as a final recourse -``` - ---- - -Here is a fun table of places I've been to: - -| Country | City | Local transport used | -| :-----: |:----:| :-------------------:| -| France | Lille | Metro, Bus | -| France | Paris | Metro, Bus, Uber | -| Italy | Rome | Metro, Bus, Uber | -| Belgium | Brussels | Metro, Bus | - -Where have I gotten fined, for using the wrong service of transport, or not having complete documents? - -`Paris` -`Brussels` - -In other words, big cities suck. - ---- - -Watch this fun song if you are learning French: - - \ No newline at end of file diff --git a/pages/vi/profiles/adiec7.md b/pages/vi/profiles/adiec7.md deleted file mode 100644 index 4998834b56..0000000000 --- a/pages/vi/profiles/adiec7.md +++ /dev/null @@ -1,22 +0,0 @@ - -

Bio

A self-taught web developer,skilled in HTML5,CSS3.Javascript,React,git/github. Has worked as a web developer with Glory carriers ministry Nigeria as a lead developer, -studied biology and education from Benue state university Makurdi benue state Nigeria.loves to learn and stay up to date with latest technologies.
-

Things i can do for you besides coding.

- -

Where i spend my time

-