├── Beautiful-BirthdayCounter ├── BirthdayCounter.sln ├── BirthdayCounter │ ├── App.config │ ├── BirthdayCounter.csproj │ ├── Bunifu.Cmd.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── assets │ │ ├── jetlight-studio.png │ │ └── profile.png ├── LICENSE └── README.md ├── BruteForcePasswordFinder ├── .gitignore ├── BruteForcePasswordFinder.sln ├── EncriptPassword │ ├── App.config │ ├── BruteForcePasswordFinder.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config └── README.md ├── CalculateAge ├── .gitignore ├── CalculateAge.sln ├── CalculateAge │ ├── App.config │ ├── CalculateAge.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── README.md ├── Calculator ├── .gitignore ├── Calculator.sln ├── Calculator │ ├── Calculator.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── README.md ├── Chronometre ├── .gitignore ├── Chronometre.sln ├── Cronometro │ ├── Chronometre.csproj │ ├── FrmCronometro.Designer.cs │ ├── FrmCronometro.cs │ ├── FrmCronometro.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 177331527.png │ │ ├── alecive-flatwoken-apps-stopwatch.ico │ │ ├── btnpause.png │ │ ├── btnplay.png │ │ ├── btnreiniciar.png │ │ ├── btntake.png │ │ ├── c.png │ │ ├── cronoPNGE.png │ │ ├── enter.png │ │ ├── fondo.png │ │ ├── i.png │ │ ├── ic .png │ │ ├── ic2 - Copie.png │ │ ├── info.png │ │ ├── r.png │ │ ├── stopwatch.jpg │ │ ├── stopwatch1.jpg │ │ └── timefondo.jpg │ ├── Round.cs │ ├── Settings.cs │ ├── Settings1.Designer.cs │ ├── Settings1.settings │ ├── app.config │ ├── cronoIco.ico │ └── packages.config └── README.md ├── Csharp-FlatUiFramwork ├── Controls │ ├── FlatButton.cs │ └── FlatCard.cs ├── README.md ├── Resources │ ├── Roboto-Medium.ttf │ └── Roboto-Regular.ttf └── UIManagers │ ├── DrawHelper.cs │ └── FontManager.cs ├── EmailFinder ├── .gitignore ├── EmailFinder.sln ├── EmailFinder │ ├── App.config │ ├── EmailFinder.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── README.md └── main.cs ├── EmailSender ├── .gitignore ├── README.md ├── SendMail.sln └── SendMail │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── communication-email-2-icon-7.png │ └── imageedit_1_9751612447.png │ ├── SendMail.csproj │ └── packages.config ├── Facturation-Management ├── FacturationMiniProjet.sln ├── FacturationMiniProjet │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Article │ │ ├── ArticlePage.xaml │ │ └── ArticlePage.xaml.cs │ ├── Client │ │ ├── ClientPage.xaml │ │ └── ClientPage.xaml.cs │ ├── Controllers │ │ └── HelperMySQL.cs │ ├── FacturationMiniProjet.csproj │ ├── Facture │ │ ├── FactureAdvPage.xaml │ │ ├── FactureAdvPage.xaml.cs │ │ ├── FacturePage.xaml │ │ └── FacturePage.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ └── SearchElement.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── LICENSE └── README.md ├── FileExplorer ├── .gitignore ├── FileBrowser.sln ├── FileManager │ ├── App.config │ ├── File Browser.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config └── README.md ├── FlatLogin ├── .gitignore ├── FlatLogin.sln ├── FlatLogin │ ├── App.config │ ├── FlatLogin.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Resources │ │ ├── circle.png │ │ ├── fb.png │ │ ├── password.png │ │ ├── twitter.png │ │ └── user.png ├── LICENSE └── README.md ├── FlatWhatsapp ├── FlatWhatsapp.sln ├── FlatWhatsapp │ ├── App.config │ ├── FlatWhatsapp.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── bubble.Designer.cs │ ├── bubble.cs │ ├── bubble.resx │ ├── chatbox.Designer.cs │ ├── chatbox.cs │ └── chatbox.resx ├── LICENSE └── README.md ├── FreeSmsSender ├── .gitignore ├── FreeSmsSender.sln ├── FreeSmsSender │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── Form3.Designer.cs │ ├── Form3.cs │ ├── Form3.resx │ ├── FreeSmsSender.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── imageedit_27_2246718037.png │ │ ├── imageedit_28_4728510387.png │ │ ├── imageedit_38_6656730346.png │ │ └── ss.png │ └── packages.config ├── LICENSE └── README.md ├── Goli ├── Goli.1.0.0.nupkg ├── Goli.csproj ├── LICENSE ├── Program.cs └── README.md ├── IphoneXPreviewer ├── IphoneXPreviewer.sln └── IphoneXPreviewer │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── HomePage.xaml │ ├── HomePage.xaml.cs │ ├── IphoneXPreviewer.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── assets │ ├── iphonex-white.png │ └── iphonex.png ├── JobSalaryPrediction ├── JobSalaryPrediction.csproj ├── MLNetUtilities.cs ├── Program.cs ├── README.md ├── SalaryData.cs ├── SalaryPrediction.cs └── datasets │ ├── SalaryData-test.csv │ └── SalaryData.csv ├── MNIST-Digits-Recognition ├── Digitz │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DigitRecognizer.cs │ ├── Digitz.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NuGet.config │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── digit.model ├── MNIST.sln ├── NuGet.config ├── README.md └── Training │ ├── AzureBatchAI_TF_MNIST.json │ ├── Distributed MNIST.json │ ├── Train_MNIST.py │ ├── Training.pyproj │ ├── install_mnist.py │ ├── mnist_utils.py │ └── output │ └── digit.model ├── Modern-Flat-UI-Kit ├── Modern-Flat-UI-Kit.sln ├── Modern-Flat-UI-Kit │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Modern-Flat-UI-Kit.csproj │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── README.md ├── MyFirstBot ├── Bot Application1.sln ├── Bot Application1 │ ├── App_Start │ │ └── WebApiConfig.cs │ ├── Bot Application1.csproj │ ├── Bot Application1.csproj.user │ ├── Controllers │ │ └── MessagesController.cs │ ├── Dialogs │ │ └── RootDialog.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── default.htm │ └── packages.config └── README.md ├── NotePad ├── LICENSE ├── MaterialNotePad.sln ├── MaterialNotePad │ ├── AmineProject_TemporaryKey.pfx │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MaterialNotePad.csproj │ ├── MaterialNotePad.csproj.user │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── assets │ │ ├── Create New_48px.png │ │ ├── Delete_48px_1.png │ │ ├── Info_48px.png │ │ ├── Open Folder_48px.png │ │ ├── Print_48px.png │ │ ├── Save Close_40px.png │ │ ├── Save as_48px.png │ │ └── logo.ico └── README.md ├── PasswordEncrypter ├── .gitignore ├── EncriptPassword.sln ├── EncriptPassword │ ├── App.config │ ├── EncriptPassword.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config └── README.md ├── PhotoshopSplash ├── LICENSE ├── PhotoshopSplash.sln ├── PhotoshopSplash │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── PhotoshopSplash.csproj │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── README.md ├── PrintCalendar ├── README.md └── main.cs ├── Pyramid ├── README.md └── main.cs ├── README.md ├── SerialEncryption ├── Program.cs └── SerialEncryption.csproj ├── TextToSpeech ├── .gitignore ├── README.md ├── TextToSpeech.sln └── TextToSpeech │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TextToSpeech.csproj │ └── packages.config ├── ToDoList ├── .gitignore ├── README.md ├── ToDoList.sln └── ToDoList │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ToDoList.csproj │ └── packages.config ├── WebBrowser ├── .gitignore ├── MaterialWebBrowser.sln ├── MaterialWebBrowser │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MaterialWebBrowser.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── arrow-back-icon.png │ │ ├── arrow-back-icon1.png │ │ ├── arrow-next-icon.png │ │ ├── imageedit_11_9408023457.png │ │ ├── imageedit_17_5895264945.png │ │ ├── imageedit_19_5559597548.png │ │ ├── imageedit_21_7268843814.png │ │ ├── imageedit_24_3748458653.png │ │ ├── imageedit_26_4427527852.png │ │ ├── imageedit_8_7399709366.png │ │ ├── imageedit_9_4948628913.png │ │ ├── in1.png │ │ └── maxresdefault.jpg │ └── packages.config └── README.md └── YouTubeDownloader ├── .gitignore ├── LICENSE ├── README.md ├── YoutubeDownloader.sln └── YoutubeDownloader ├── App.config ├── Apps_youtube.ico ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── RoundButton.cs ├── YoutubeDownloader.csproj ├── about.Designer.cs ├── about.cs ├── about.resx ├── assets ├── Apps youtube.png ├── Apps_youtube.ico └── bb2.png └── packages.config /Beautiful-BirthdayCounter/BirthdayCounter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter.sln -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/App.config -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/BirthdayCounter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/BirthdayCounter.csproj -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Bunifu.Cmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Bunifu.Cmd.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Form1.Designer.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Form1.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Form1.resx -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Program.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Properties/Resources.resx -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/Properties/Settings.settings -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/assets/jetlight-studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/assets/jetlight-studio.png -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/BirthdayCounter/assets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/BirthdayCounter/assets/profile.png -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/LICENSE -------------------------------------------------------------------------------- /Beautiful-BirthdayCounter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Beautiful-BirthdayCounter/README.md -------------------------------------------------------------------------------- /BruteForcePasswordFinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/.gitignore -------------------------------------------------------------------------------- /BruteForcePasswordFinder/BruteForcePasswordFinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/BruteForcePasswordFinder.sln -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/App.config -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/BruteForcePasswordFinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/BruteForcePasswordFinder.csproj -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Form1.Designer.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Form1.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Form1.resx -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Program.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /BruteForcePasswordFinder/EncriptPassword/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/EncriptPassword/packages.config -------------------------------------------------------------------------------- /BruteForcePasswordFinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/BruteForcePasswordFinder/README.md -------------------------------------------------------------------------------- /CalculateAge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/.gitignore -------------------------------------------------------------------------------- /CalculateAge/CalculateAge.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge.sln -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/App.config -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/CalculateAge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/CalculateAge.csproj -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Form1.Designer.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Form1.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Form1.resx -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Program.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Properties/Resources.resx -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CalculateAge/CalculateAge/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/CalculateAge/Properties/Settings.settings -------------------------------------------------------------------------------- /CalculateAge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/CalculateAge/README.md -------------------------------------------------------------------------------- /Calculator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/.gitignore -------------------------------------------------------------------------------- /Calculator/Calculator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator.sln -------------------------------------------------------------------------------- /Calculator/Calculator/Calculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Calculator.csproj -------------------------------------------------------------------------------- /Calculator/Calculator/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Form1.Designer.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Form1.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Form1.resx -------------------------------------------------------------------------------- /Calculator/Calculator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Program.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Properties/Resources.resx -------------------------------------------------------------------------------- /Calculator/Calculator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Calculator/Calculator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/Calculator/Properties/Settings.settings -------------------------------------------------------------------------------- /Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Calculator/README.md -------------------------------------------------------------------------------- /Chronometre/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/.gitignore -------------------------------------------------------------------------------- /Chronometre/Chronometre.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Chronometre.sln -------------------------------------------------------------------------------- /Chronometre/Cronometro/Chronometre.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Chronometre.csproj -------------------------------------------------------------------------------- /Chronometre/Cronometro/FrmCronometro.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/FrmCronometro.Designer.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/FrmCronometro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/FrmCronometro.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/FrmCronometro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/FrmCronometro.resx -------------------------------------------------------------------------------- /Chronometre/Cronometro/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Program.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Properties/Resources.resx -------------------------------------------------------------------------------- /Chronometre/Cronometro/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Properties/Settings.settings -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/177331527.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/177331527.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/alecive-flatwoken-apps-stopwatch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/alecive-flatwoken-apps-stopwatch.ico -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/btnpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/btnpause.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/btnplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/btnplay.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/btnreiniciar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/btnreiniciar.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/btntake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/btntake.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/c.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/cronoPNGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/cronoPNGE.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/enter.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/fondo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/fondo.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/i.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/ic .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/ic .png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/ic2 - Copie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/ic2 - Copie.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/info.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/r.png -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/stopwatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/stopwatch.jpg -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/stopwatch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/stopwatch1.jpg -------------------------------------------------------------------------------- /Chronometre/Cronometro/Resources/timefondo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Resources/timefondo.jpg -------------------------------------------------------------------------------- /Chronometre/Cronometro/Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Round.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Settings.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Settings1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Settings1.Designer.cs -------------------------------------------------------------------------------- /Chronometre/Cronometro/Settings1.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/Settings1.settings -------------------------------------------------------------------------------- /Chronometre/Cronometro/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/app.config -------------------------------------------------------------------------------- /Chronometre/Cronometro/cronoIco.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/cronoIco.ico -------------------------------------------------------------------------------- /Chronometre/Cronometro/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/Cronometro/packages.config -------------------------------------------------------------------------------- /Chronometre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Chronometre/README.md -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/Controls/FlatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/Controls/FlatButton.cs -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/Controls/FlatCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/Controls/FlatCard.cs -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/README.md -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/Resources/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/Resources/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/Resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/Resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/UIManagers/DrawHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/UIManagers/DrawHelper.cs -------------------------------------------------------------------------------- /Csharp-FlatUiFramwork/UIManagers/FontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Csharp-FlatUiFramwork/UIManagers/FontManager.cs -------------------------------------------------------------------------------- /EmailFinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/.gitignore -------------------------------------------------------------------------------- /EmailFinder/EmailFinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder.sln -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/App.config -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/EmailFinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/EmailFinder.csproj -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Form1.Designer.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Form1.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Form1.resx -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Program.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Properties/Resources.resx -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/Properties/Settings.settings -------------------------------------------------------------------------------- /EmailFinder/EmailFinder/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/EmailFinder/packages.config -------------------------------------------------------------------------------- /EmailFinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/README.md -------------------------------------------------------------------------------- /EmailFinder/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailFinder/main.cs -------------------------------------------------------------------------------- /EmailSender/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/.gitignore -------------------------------------------------------------------------------- /EmailSender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/README.md -------------------------------------------------------------------------------- /EmailSender/SendMail.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail.sln -------------------------------------------------------------------------------- /EmailSender/SendMail/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/App.config -------------------------------------------------------------------------------- /EmailSender/SendMail/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Form1.Designer.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Form1.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Form1.resx -------------------------------------------------------------------------------- /EmailSender/SendMail/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Program.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Properties/Resources.resx -------------------------------------------------------------------------------- /EmailSender/SendMail/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EmailSender/SendMail/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Properties/Settings.settings -------------------------------------------------------------------------------- /EmailSender/SendMail/Resources/communication-email-2-icon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Resources/communication-email-2-icon-7.png -------------------------------------------------------------------------------- /EmailSender/SendMail/Resources/imageedit_1_9751612447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/Resources/imageedit_1_9751612447.png -------------------------------------------------------------------------------- /EmailSender/SendMail/SendMail.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/SendMail.csproj -------------------------------------------------------------------------------- /EmailSender/SendMail/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/EmailSender/SendMail/packages.config -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet.sln -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/App.config -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/App.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/App.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Article/ArticlePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Article/ArticlePage.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Article/ArticlePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Article/ArticlePage.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Client/ClientPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Client/ClientPage.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Client/ClientPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Client/ClientPage.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Controllers/HelperMySQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Controllers/HelperMySQL.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/FacturationMiniProjet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/FacturationMiniProjet.csproj -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Facture/FactureAdvPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Facture/FactureAdvPage.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Facture/FactureAdvPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Facture/FactureAdvPage.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Facture/FacturePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Facture/FacturePage.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Facture/FacturePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Facture/FacturePage.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/MainWindow.xaml -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Models/SearchElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Models/SearchElement.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Properties/Resources.resx -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/Properties/Settings.settings -------------------------------------------------------------------------------- /Facturation-Management/FacturationMiniProjet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/FacturationMiniProjet/packages.config -------------------------------------------------------------------------------- /Facturation-Management/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Facturation-Management/LICENSE -------------------------------------------------------------------------------- /Facturation-Management/README.md: -------------------------------------------------------------------------------- 1 | # Facturation-Management -------------------------------------------------------------------------------- /FileExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/.gitignore -------------------------------------------------------------------------------- /FileExplorer/FileBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileBrowser.sln -------------------------------------------------------------------------------- /FileExplorer/FileManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/App.config -------------------------------------------------------------------------------- /FileExplorer/FileManager/File Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/File Browser.csproj -------------------------------------------------------------------------------- /FileExplorer/FileManager/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Form1.Designer.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Form1.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Form1.resx -------------------------------------------------------------------------------- /FileExplorer/FileManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Program.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Properties/Resources.resx -------------------------------------------------------------------------------- /FileExplorer/FileManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FileExplorer/FileManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/Properties/Settings.settings -------------------------------------------------------------------------------- /FileExplorer/FileManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/FileManager/packages.config -------------------------------------------------------------------------------- /FileExplorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FileExplorer/README.md -------------------------------------------------------------------------------- /FlatLogin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/.gitignore -------------------------------------------------------------------------------- /FlatLogin/FlatLogin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin.sln -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/App.config -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/FlatLogin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/FlatLogin.csproj -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Form1.Designer.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Form1.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Form1.resx -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Program.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Properties/Resources.resx -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Properties/Settings.settings -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Resources/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Resources/circle.png -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Resources/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Resources/fb.png -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Resources/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Resources/password.png -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Resources/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Resources/twitter.png -------------------------------------------------------------------------------- /FlatLogin/FlatLogin/Resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/FlatLogin/Resources/user.png -------------------------------------------------------------------------------- /FlatLogin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/LICENSE -------------------------------------------------------------------------------- /FlatLogin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatLogin/README.md -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp.sln -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/App.config -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/FlatWhatsapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/FlatWhatsapp.csproj -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Form1.Designer.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Form1.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Form1.resx -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Program.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Properties/Resources.resx -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/Properties/Settings.settings -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/bubble.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/bubble.Designer.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/bubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/bubble.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/bubble.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/bubble.resx -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/chatbox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/chatbox.Designer.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/chatbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/chatbox.cs -------------------------------------------------------------------------------- /FlatWhatsapp/FlatWhatsapp/chatbox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/FlatWhatsapp/chatbox.resx -------------------------------------------------------------------------------- /FlatWhatsapp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/LICENSE -------------------------------------------------------------------------------- /FlatWhatsapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FlatWhatsapp/README.md -------------------------------------------------------------------------------- /FreeSmsSender/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/.gitignore -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender.sln -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/App.config -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form1.Designer.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form1.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form1.resx -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form2.Designer.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form2.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form2.resx -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form3.Designer.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form3.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Form3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Form3.resx -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/FreeSmsSender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/FreeSmsSender.csproj -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Program.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Properties/Resources.resx -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Properties/Settings.settings -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Resources/imageedit_27_2246718037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Resources/imageedit_27_2246718037.png -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Resources/imageedit_28_4728510387.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Resources/imageedit_28_4728510387.png -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Resources/imageedit_38_6656730346.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Resources/imageedit_38_6656730346.png -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/Resources/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/Resources/ss.png -------------------------------------------------------------------------------- /FreeSmsSender/FreeSmsSender/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/FreeSmsSender/packages.config -------------------------------------------------------------------------------- /FreeSmsSender/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/LICENSE -------------------------------------------------------------------------------- /FreeSmsSender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/FreeSmsSender/README.md -------------------------------------------------------------------------------- /Goli/Goli.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Goli/Goli.1.0.0.nupkg -------------------------------------------------------------------------------- /Goli/Goli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Goli/Goli.csproj -------------------------------------------------------------------------------- /Goli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Goli/LICENSE -------------------------------------------------------------------------------- /Goli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Goli/Program.cs -------------------------------------------------------------------------------- /Goli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Goli/README.md -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer.sln -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/App.config -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/App.xaml -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/App.xaml.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/HomePage.xaml -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/HomePage.xaml.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/IphoneXPreviewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/IphoneXPreviewer.csproj -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/MainWindow.xaml -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/Properties/Resources.resx -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/Properties/Settings.settings -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/assets/iphonex-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/assets/iphonex-white.png -------------------------------------------------------------------------------- /IphoneXPreviewer/IphoneXPreviewer/assets/iphonex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/IphoneXPreviewer/IphoneXPreviewer/assets/iphonex.png -------------------------------------------------------------------------------- /JobSalaryPrediction/JobSalaryPrediction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/JobSalaryPrediction.csproj -------------------------------------------------------------------------------- /JobSalaryPrediction/MLNetUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/MLNetUtilities.cs -------------------------------------------------------------------------------- /JobSalaryPrediction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/Program.cs -------------------------------------------------------------------------------- /JobSalaryPrediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/README.md -------------------------------------------------------------------------------- /JobSalaryPrediction/SalaryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/SalaryData.cs -------------------------------------------------------------------------------- /JobSalaryPrediction/SalaryPrediction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/SalaryPrediction.cs -------------------------------------------------------------------------------- /JobSalaryPrediction/datasets/SalaryData-test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/datasets/SalaryData-test.csv -------------------------------------------------------------------------------- /JobSalaryPrediction/datasets/SalaryData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/JobSalaryPrediction/datasets/SalaryData.csv -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/App.config -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/App.xaml -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/App.xaml.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/DigitRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/DigitRecognizer.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Digitz.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Digitz.csproj -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/MainWindow.xaml -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/NuGet.config -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Properties/Resources.resx -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/Properties/Settings.settings -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Digitz/digit.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Digitz/digit.model -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/MNIST.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/MNIST.sln -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/NuGet.config -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/README.md -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/AzureBatchAI_TF_MNIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/AzureBatchAI_TF_MNIST.json -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/Distributed MNIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/Distributed MNIST.json -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/Train_MNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/Train_MNIST.py -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/Training.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/Training.pyproj -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/install_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/install_mnist.py -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/mnist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/mnist_utils.py -------------------------------------------------------------------------------- /MNIST-Digits-Recognition/Training/output/digit.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MNIST-Digits-Recognition/Training/output/digit.model -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit.sln -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/App.config -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.Designer.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Form1.resx -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit.csproj -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Program.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Resources.resx -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/Modern-Flat-UI-Kit/Properties/Settings.settings -------------------------------------------------------------------------------- /Modern-Flat-UI-Kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Modern-Flat-UI-Kit/README.md -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1.sln -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Bot Application1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Bot Application1.csproj -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Bot Application1.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Bot Application1.csproj.user -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Dialogs/RootDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Dialogs/RootDialog.cs -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Global.asax -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Global.asax.cs -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Web.Debug.config -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Web.Release.config -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/Web.config -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/default.htm -------------------------------------------------------------------------------- /MyFirstBot/Bot Application1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/Bot Application1/packages.config -------------------------------------------------------------------------------- /MyFirstBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/MyFirstBot/README.md -------------------------------------------------------------------------------- /NotePad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/LICENSE -------------------------------------------------------------------------------- /NotePad/MaterialNotePad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad.sln -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/AmineProject_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/AmineProject_TemporaryKey.pfx -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/App.config -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Form1.Designer.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Form1.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Form1.resx -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/MaterialNotePad.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/MaterialNotePad.csproj -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/MaterialNotePad.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/MaterialNotePad.csproj.user -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Program.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Properties/Resources.resx -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/Properties/Settings.settings -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Create New_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Create New_48px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Delete_48px_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Delete_48px_1.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Info_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Info_48px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Open Folder_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Open Folder_48px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Print_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Print_48px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Save Close_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Save Close_40px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/Save as_48px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/Save as_48px.png -------------------------------------------------------------------------------- /NotePad/MaterialNotePad/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/MaterialNotePad/assets/logo.ico -------------------------------------------------------------------------------- /NotePad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/NotePad/README.md -------------------------------------------------------------------------------- /PasswordEncrypter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/.gitignore -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword.sln -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/App.config -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/EncriptPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/EncriptPassword.csproj -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Form1.Designer.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Form1.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Form1.resx -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Program.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Properties/Resources.resx -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/Properties/Settings.settings -------------------------------------------------------------------------------- /PasswordEncrypter/EncriptPassword/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/EncriptPassword/packages.config -------------------------------------------------------------------------------- /PasswordEncrypter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PasswordEncrypter/README.md -------------------------------------------------------------------------------- /PhotoshopSplash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/LICENSE -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash.sln -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/App.config -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Form1.Designer.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Form1.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Form1.resx -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/PhotoshopSplash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/PhotoshopSplash.csproj -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Program.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Properties/Resources.resx -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PhotoshopSplash/PhotoshopSplash/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/PhotoshopSplash/Properties/Settings.settings -------------------------------------------------------------------------------- /PhotoshopSplash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PhotoshopSplash/README.md -------------------------------------------------------------------------------- /PrintCalendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PrintCalendar/README.md -------------------------------------------------------------------------------- /PrintCalendar/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/PrintCalendar/main.cs -------------------------------------------------------------------------------- /Pyramid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Pyramid/README.md -------------------------------------------------------------------------------- /Pyramid/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/Pyramid/main.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/README.md -------------------------------------------------------------------------------- /SerialEncryption/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/SerialEncryption/Program.cs -------------------------------------------------------------------------------- /SerialEncryption/SerialEncryption.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/SerialEncryption/SerialEncryption.csproj -------------------------------------------------------------------------------- /TextToSpeech/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/.gitignore -------------------------------------------------------------------------------- /TextToSpeech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/README.md -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech.sln -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/App.config -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Form1.Designer.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Form1.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Form1.resx -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Program.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Properties/Resources.resx -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/Properties/Settings.settings -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/TextToSpeech.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/TextToSpeech.csproj -------------------------------------------------------------------------------- /TextToSpeech/TextToSpeech/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/TextToSpeech/TextToSpeech/packages.config -------------------------------------------------------------------------------- /ToDoList/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/.gitignore -------------------------------------------------------------------------------- /ToDoList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/README.md -------------------------------------------------------------------------------- /ToDoList/ToDoList.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList.sln -------------------------------------------------------------------------------- /ToDoList/ToDoList/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/App.config -------------------------------------------------------------------------------- /ToDoList/ToDoList/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Form1.Designer.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Form1.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Form1.resx -------------------------------------------------------------------------------- /ToDoList/ToDoList/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Program.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Properties/Resources.resx -------------------------------------------------------------------------------- /ToDoList/ToDoList/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ToDoList/ToDoList/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/Properties/Settings.settings -------------------------------------------------------------------------------- /ToDoList/ToDoList/ToDoList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/ToDoList.csproj -------------------------------------------------------------------------------- /ToDoList/ToDoList/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/ToDoList/ToDoList/packages.config -------------------------------------------------------------------------------- /WebBrowser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/.gitignore -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser.sln -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/App.config -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Form1.Designer.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Form1.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Form1.resx -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/MaterialWebBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/MaterialWebBrowser.csproj -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Program.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Properties/Resources.resx -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Properties/Settings.settings -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/arrow-back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/arrow-back-icon.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/arrow-back-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/arrow-back-icon1.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/arrow-next-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/arrow-next-icon.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_11_9408023457.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_11_9408023457.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_17_5895264945.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_17_5895264945.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_19_5559597548.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_19_5559597548.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_21_7268843814.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_21_7268843814.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_24_3748458653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_24_3748458653.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_26_4427527852.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_26_4427527852.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_8_7399709366.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_8_7399709366.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/imageedit_9_4948628913.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/imageedit_9_4948628913.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/in1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/in1.png -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/Resources/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/Resources/maxresdefault.jpg -------------------------------------------------------------------------------- /WebBrowser/MaterialWebBrowser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/MaterialWebBrowser/packages.config -------------------------------------------------------------------------------- /WebBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/WebBrowser/README.md -------------------------------------------------------------------------------- /YouTubeDownloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/.gitignore -------------------------------------------------------------------------------- /YouTubeDownloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/LICENSE -------------------------------------------------------------------------------- /YouTubeDownloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/README.md -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader.sln -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/App.config -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Apps_youtube.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Apps_youtube.ico -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Form1.Designer.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Form1.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Form1.resx -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Program.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Properties/Resources.resx -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/Properties/Settings.settings -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/RoundButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/RoundButton.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/YoutubeDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/YoutubeDownloader.csproj -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/about.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/about.Designer.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/about.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/about.cs -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/about.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/about.resx -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/assets/Apps youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/assets/Apps youtube.png -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/assets/Apps_youtube.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/assets/Apps_youtube.ico -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/assets/bb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/assets/bb2.png -------------------------------------------------------------------------------- /YouTubeDownloader/YoutubeDownloader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amine-Smahi/C-Sharp-Learning-Journey/HEAD/YouTubeDownloader/YoutubeDownloader/packages.config --------------------------------------------------------------------------------