Category: typescript
-
Bingo for meetings – part 3 – finalizing the “Create Meeting” scenario
In the “Create Meeting” scenario it was something that we have passed : ” application generates an unique Id that I can access the bingo cards ( state : not checked) for that meeting ” ( see https://github.com/alexandru360/PresentationBingoCards/projects/1#card-24165690 ) How we can emulate this ? Obviously,the meeting starts with a set of cards – but…
-
Bingo for meetings–part 2–working at tests
So now because we have created the objects and a function to create meetings,we do create some tests. We decided to work with JEST. Steps: We read many tutorials (https://medium.com/@mtiller/debugging-with-typescript-jest-ts-jest-and-visual-studio-code-ef9ca8644132,https://rjzaworski.com/2016/12/testing-typescript-with-jest,https://github.com/facebook/jest/tree/master/examples/typescript,https://amenallah.com/node-js-typescript-jest-starter/,https://basarat.gitbooks.io/typescript/docs/testing/jest.html,https://dev.to/muhajirdev/unit-testing-with-typescript-and-jest-2gln ) We solve many errors ( forgetting put “ export default class “,“ jest unexpected token import “,jest.config.json as opposed to jest.config.js Read jest expect…
-
New project: Bingo for meetings–part 1
I have decided to start a new project. The name is “Bingo for meetings”. What it does: Every time in a meeting that a participant hears a phrase (like “ Hi,can you hear me?” or “ can everyone see my screen?” or others …) he can check one of the cards. In the final you…
-
7 Steps from (Angular) WebApplication to Windows Store
I have deployed fairly easy the .NET Core Alphabet applcation to Windows Store . Supposing that you already have registered the name of the application to the windows store (https://partner.microsoft.com/en-us/dashboard/windows/overview ) Those are the steps: 1. Compile the Angular Application ( with ng build –prod –build-optimizer ) 2. Create a new WinJS App for Universal…
-
.NET Core Alphabet
What I wanted is a simple application ( Web,Mobile,Desktop) that can list,alphabetically,the .NET Core keywords. What is the purpose? For interviews – suppose you want to test the people knowledge in C#. You start the application( again: Desktop or Web or Mobile) and let the candidate choose a letter. Then you see the keywords for…
-
Literary awards–part 5 – interactive
Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/ I was wandering how to make more attractive the application – and also gain some interactivity. I was thinking of the possibility to can say what authors / books did you have read – and make some charts from…
-
Literary awards–part 4 – publish
Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/ The publishing part is the tricky one. I wanted Web and Mobile ( could someone help me with the Windows/Linux part ? ) Github let’s you have the gh-pages as an website – see https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/ . What this means in practice ? Menas that,if…
-
Literary Awards–part 3–data
Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/ The data – this was the difficult part. As I said,I wanted the data to be local – but how can I put the first time ? And where ? I cannot be cookie,since the authors are a large database for cookies… There are…
-
Literary Awards–part 2–design
Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/ One of the first problem that I was design. How to make a design that works on mobile and web and desktop ? Nowadays,the standard seems to be a menu on the left,that will be hidden when the mobile is rendering . Also,this menu…
-
Literary Awards–part 1–start
Part 1: http://msprogrammer.serviciipeweb.ro/2018/10/08/literary-awardspart-1/ Part 2: http://msprogrammer.serviciipeweb.ro/2018/10/15/literary-awardspart-2/ Part 3: http://msprogrammer.serviciipeweb.ro/2018/10/22/literary-awardspart-3/ Part 4: http://msprogrammer.serviciipeweb.ro/2018/10/29/literary-awardspart-4/ Part 5: http://msprogrammer.serviciipeweb.ro/2018/11/05/literary-awardspart-5/ I was curious to make a project for web and mobile. The constraints: 1. database just on local,not on a central repository. 2. All with Javascript( OK,TypeScript)., 3. To work on web,mobile,desktop without changing something The purpose of the project was to list…