Friday, December 15, 2017

iCrest Sdn Bhd

Address For The Embassy of Malaysia in Dhaka:
Address: House No. 19, Road No. 6 Baridhara Diplomatic Enclave Dhaka – 1212 Bangladesh
Malaysian Embassy Phone Numbers in Dhaka:
Telephone: (02) 882.7759 – Telephone (Int): +880.2.882.7759

Work days: Sunday - Thursday 8.30 a.m - 4.30 p.m (Lunch Break: 12.30 pm - 1.30 pm)
Public Holidays: Friday & Saturday

http://www.kln.gov.my/web/bgd_dhaka/home

http://www.kln.gov.my/web/bgd_dhaka/other_information/-/asset_publisher/2TQe/content/requirements-for-visa-application?redirect=%2Fweb%2Fbgd_dhaka%2Fother_information




to processed future kindly share us the below documents for the HR verification and Job proposal form.


1) Educational certification & Marksheets.
2) Experience letters.
3) Current Company offer letter.
4) Last three Month Payslip.
5) Passport Scan Copy (All Pages)
6) Passport Size Photo (blue background) 

You may use this letter as confirmation of offer to you and you may tender resignation at your current company. Send us the accepted email. Please send to us the copy of resignation approval from your current company.


Please sign and send back to us the offer letter attached with documents request in pervious email.



https://www.linkedin.com/search/results/people/?facetCurrentCompany=%5B%222376269%22%5D&lipi=urn%3Ali%3Apage%3Ad_flagship3_company%3BX%2BSBoCcFTW%2B7OVAQqiRpnw%3D%3D

http://www.icrest.com.my/services-Software-Development.html

https://www.jobstreet.com.my/en/companies/609947-western-digital-malaysia/jobs


Architecture
http://www.c-sharpcorner.com/article/onion-architecture-in-asp-net-core-mvc/
https://code.msdn.microsoft.com/Onion-Architecture-In-9c58c06d
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/step-by-step-implementing-onion-architecture-in-Asp-Net-mvc/


Learning

Complex Stored Procedures

https://www.youtube.com/watch?v=IC9v8aMuTx8

Database 

https://www.youtube.com/watch?v=Ewf5bivTKdI
https://www.youtube.com/watch?v=P3uBWp0qvlo

Saturday, December 9, 2017

Canada




http://www.cic.gc.ca/english/immigrate/skilled/crs-tool.asp
https://www.canada.ca/en/immigration-refugees-citizenship/services/immigrate-canada/express-entry/become-candidate/rounds-invitations.html


https://www.canada.ca/en/immigration-refugees-citizenship/corporate/publications-manuals/operational-bulletins-manuals/standard-requirements/language-requirements/test-equivalency-charts.html
https://www.youtube.com/watch?v=vs-M2afwOfo

https://www.canada.ca/en/immigration-refugees-citizenship/services/immigrate-canada/express-entry/become-candidate/eligibility/federal-skilled-workers/six-selection-factors-federal-skilled-workers.html




https://www.youtube.com/watch?v=geMNO07WobU

https://www.youtube.com/watch?v=maF6OgdB-UQ

https://moving2canada.com/pnp-canada-live-tracker/

https://twitter.com/info2canada

https://www.canadavisa.com/canada-federal-skilled-trades-program-fstc.html

Express Entry draw figures
https://moving2canada.com/express-entry-draw/

PNPs by province

https://www.canadavisa.com/provincial-nomination-program.html

https://www.cicnews.com/2017/07/express-entry-report-canada-day-special-review-2017-so-far-079282.html#gs.ZlaY60E

CRS Calculator

https://www.canadavisa.com/comprehensive-ranking-score-calculator.html

Ontario Express Entry Stream Targets Information and Communications Technology Workers

https://www.cicnews.com/2017/06/ontario-express-entry-stream-targets-information-and-communications-technology-workers-069278.html#gs.FvtXXAk

Friday, December 8, 2017

UI

https://getbootstrap.com/docs/3.3/javascript/#scrollspy

https://www.w3schools.com/css/css_rwd_templates.asp

https://www.w3schools.com/css/

Positioning
Form, Color, Border, margin, Padding,
links, list, table, display, position, Navigation Bar, selector, Test, Multi column , Media Queries

Tuesday, November 14, 2017

Repository Pattern Async Await

https://www.youtube.com/watch?v=C5VhaxQWcpE

Async and Await are the two keywords that help us to program asynchronously. An async keyword is a method that performs asynchronous tasks such as fetching data from a database, reading a file, etc, they can be marked as “async”. Whereas await keyword making  “await” to a statement means suspending the execution of the async method it is residing in until the asynchronous task completes. After suspension, the control goes back to the caller method. Once the task completes, the control comes back to the states where await is mentioned and executes the remaining statements in the enclosing method.



---------------------------------------------





http://www.c-sharpcorner.com/UploadFile/8a67c0/Asp-Net-mvc-code-first-approach-with-repository-pattern/

http://www.c-sharpcorner.com/UploadFile/3d39b4/crud-using-the-repository-pattern-in-mvc/

http://freefrontend.com/html-bootstrap-ui-kits/

Async Await
http://www.c-sharpcorner.com/UploadFile/4b0136/async-and-await-in-asynchronous-programming-in-C-Sharp/


NodeJS

https://nodejs.org/en/download/

https://blogs.msdn.microsoft.com/webdev/2016/11/21/client-side-debugging-of-asp-net-projects-in-google-chrome/

Monday, November 6, 2017

Download Manager

The 15 Best Freelance Websites


https://www.entrepreneur.com/article/245953

Download Video from Plural Site

http://download.cnet.com/Internet-Download-Manager/3000-2071_4-10071618.html

  [Route("api/WorkFlowTask")]   
    public class WorkFlowTaskController : Controller
    {

        [HttpGet("GetQualifyingQuestions/{workflowVariantName}")] //http://localhost:61031/api/WorkFlowTask/GetQualifyingQuestions/soloklite           

        public async Task GetQualifyingQuestions(string workflowVariantName)
        {

            using (var client = new HttpClient())
            {
                try
                {
                    client.DefaultRequestHeaders.Accept.Clear();

                    client.BaseAddress = new Uri("http://localhost:49403");
                    var response = await client.GetAsync($"api/workflowtask/GetQualifyingQuestions/" + workflowVariantName);
                    response.EnsureSuccessStatusCode();
                    var stringResult = await response.Content.ReadAsStringAsync();

                    return Ok(stringResult);
                }
                catch (HttpRequestException httpRequestException)
                {
                    return BadRequest($"Service is Unavailable: {httpRequestException.Message}");
                }
            }

        }
    }

Wednesday, October 25, 2017

stackoverflow

http://it-ebooks.directory/book-0521670152.html
https://stackoverflow.com/jobs/remote-developer-jobs?med=clc

https://codility.com/public-report-detail/

https://codility.com/candidate-faq/
Dear Mr. Mohammad Nazmul Huda Rubol Chowdhury,

Thank you for your recent application for our company.

As a next step, we would like you to take a Video Interview and Programming Test.
Please refer as below for details:

----------------------
Video Interview
----------------------
Your video interview will consist of a set of prerecorded questions for you to answer using your computer webcam and microphone.
After this email, we will send you an invitation email separately.
If you are a competent candidate, you will be invited for a face-to-face first interview.

Video Interview Steps
- Introduction movie
- Interview starts
  Questions you will be asked:
(1) Could we have your name and the reason why you are interested in Rakuten?
(2) Please tell us your technical background and how you will be able to contribute to the success of the company.
  If you already have work experience,please share that as well.
(3) What is your greatest strength and how you leverage your strength for peak performance?Please give us an example.
(4)*This question is for only those who have worked before*
  Have you ever changed your job? or are you trying to change your job?Please tell us why.
(5) What are your career goal and career plans?
  How does this job fit into your career plans?
*Please answer in English.
*You have two to three minutes(Max. 5 minutes)to answer each question.
*To go to the next question, please click "End recording"

Approximate time required: 20-30 minutes
Deadline: Thursday November 2nd, 2017 9am JST

Information:
*Please prepare Webcam and PC microphone.
*Casual dress is OK.
*Please access the video interview from web browser other than Internet Explorer (Google Chrome, Firefox is OK).
*When you click on the interview invitation link, you can use Practice Mode to help you get comfortable with the video interview platform before taking the actual interview.

*At the end of the interview, you will see a message "thank you for completing the interview!"
Below this message, there is a questionnaire "Help us help you."  Please note you do not need to complete this questionnaire.
If you have any questions concerning recruiting process, please send your inquiries to:tech-career@mail.rakuten.com

--------------------------------
Programming Test -Codility-
--------------------------------
Also after this email, we will send you an invitation email
separately.
Deadline: Thursday November 2nd, 2017 9am JST

*Web browser: Google Chrome, Firefox3.5, IE9.0, Opera10.0, Safari5.0
*Test begins when you click "BEGIN TEST NOW"
You CANNOT stop and start over once you click this button.
Please click the button only when you are ready to take the test.


-------------------------------------
Pre-Interview Questionnaire
-------------------------------------

Please answer the questionnaire from the URL below.

Deadline: Thursday November 2nd, 2017 9am JST

If we do not hear from you by the deadline, we might cancel your application.

Thank you for your cooperation and we look forward to hearing from you.
  

To
Today at 1:33 PM
Hi Mohammad Chowdhury,
Thank you for your interest in Rakuten, Inc.!
We would like you to take a short programming challenge so we can get a better sense of your programming skills.
Please use the following link to access your test. After clicking the link you will be able to practice with a demo or start the test.
Before you begin, please see the Codility Candidate FAQ at https://codility.com/candidate-faq/ for more information about the test. If you have any questions, feel free to reach out to us.
Happy coding!
Rakuten, Inc.


Monday, October 16, 2017

Node.js Typescript

https://code.msdn.microsoft.com/

https://www.tutorialspoint.com/typescript/typescript_types.htm
https://www.tutorialspoint.com/angularjs/index.htm

Node.js is an open source, cross-platform runtime environment for server-side JavaScript. Node.js is required to run JavaScript without a browser support. It uses Google V8 JavaScript engine to execute code. You may download Node.js source code or a pre-built installer for your platform.

https://www.tutorialspoint.com/typescript/typescript_environment_setup.htm


TypeScript

let isDone: boolean = false;
let decimal: number = 6;
let color: string = "blue";

let a: null = null;

let b: number = 123;

let c: number = 123.456;

let d: string = ‘Geeks’;

let e: undefined = undefined;

let f: boolean = true;

let g: number = 0b111001; // Binary

let h: number = 0o436; // Octal

let i: number = 0xadf0d; // Hexa-Decimal

In built-in data types, any is a special data-type, also the super data-type of all data types. If a variable is declared with any data type then we can assign any type value to that variable.

Examples:


let a: any = null;

let b: any =123;

let c: any = 123.456;

let d: any = ‘Geeks’;

let e: any = undefined;

let f: any = true;

let dynamicList: any[] = [ "Kunal Chowdhury",

                           "Free User",

                           21,

                           true

                         ]; 

const announcement = "Hello World!";

const user = {
name: "Daniel",
age: 26,
};

Tuple Types

// correct
let person: [string, number] = ["Kunal", 2018];
------------------------------------------------------

Array types can be written in one of two ways. In the first, you use the type of the elements followed by [] to denote an array of that element type:

let list: number[] = [1, 2, 3];
Try

The second way uses a generic array type, Array<elemType>:

let list: Array<number> = [1, 2, 3];

-------------------------------------------------
let firstName: string = "Kunal"; let lastName: string = "Chowdhury";
let message: string = `Hi, my name is: ${firstName} ${lastName}`; let spannedMessage: string = `Hi, My name is: ${firstName} ${lastName}`;


let dynamicValue: any = "Kunal Chowdhury";

By default, the enum values start from 0 (zero), but you can also set it by manually entering the value of its members. Consider the following two examples:









Tuesday, August 1, 2017

IELTS Speaking


(Part – 1)

1) Name: My full name is _____. You can call me _____.
2) Home district: The name of my home district is _____. It’s famous for _____. I love my home district very much because it is a place of natural beauty and tranquility.
3) Residence: I have been living in Dhaka since my birth / for….. years. It’s the capital city of Bangladesh.
4) Educational Background: I’ve graduated from ______ University in the Dept. of _____. Before that, I did my pre schooling and schooling from ______ School and college from ______.


5) Family: Our family consists of ______ members. It’s a nuclear family. Excluding me, I’ve _____ siblings. My father is a/an _____. My mother is a/an _____. We are a happy family.
6) Aim in life / job: As a student of …………..department, I want to be a/an _____ in future.
7) Future plans: I have two types of goals. They are short term and long term. Short term goals are based on 2014. They are….
 #_______
#_______
#_______
# _______
 #_______
My long term goals are
#_______
# _______
# _______
# _______
# _______

Leisure interest: In my leisure time, I usually read ______. Sometimes, I watch different type of TV programs. Occasionally, I listen music.
 9) Student life: In my school life, I was so naughty but brilliant. I miss my all school teachers, friends and my classmates. … (3sentences)………………………………………
In my college life, I was so sincere about study. I miss my all college teachers, friends and my classmates. ……… (3sentences)………………………………………………………
In my university life, I was so career orient. I miss my all university teachers, friends and my classmates. ……………… (3sentences)………………………………………………………
10) Favorite: Person: My Favorite person is _____, because I like his/her personality.
Teacher: My Favorite teacher is _____, because I like his/her teaching style.
Actor: My Favorite actor is _____, because I like his acting very much.
Actress: My Favorite actress is _____, because I like her acting.
Singer: My Favorite singer is _____, because I like his/her singing style.
Game: My Favorite game is _____, because it is very exciting sport.
Player: My Favorite player is _____, because he/she plays very well.
TV Programs: My Favorite TV program is _____, because it is very entertaining / educative.
Color: My Favorite color is _____, because it is a symbol of …………
 Book: My Favorite book is _____, because ________.
Place: My Favorite place is _____, because ________.
Food: My Favorite food is _____, because it is our traditional food..
Restaurant: My Favorite restaurant is _____, because I like the menu, environment and service quality of that.
Movie: My Favorite movie is _____, because is very entertaining / educative.
Dress: My Favorite dress is _____, because ________.

11) My qualities: I am very sincere; responsible about my work. I am trustworthy, down to earth, dedicated and extroverted. I love to interact with people and making connectivity. Because I believe Connectivity is the Productivity.


বই পরিচিতি
Listening: লিসেনিং-এর জন্য Cambridge-এর সিরিজ আছে। খুব ভালো। তবে প্রথম দুটো (মানে 1 এবং 2 খুব সাধারণ মানের)। ভালো কিছু শেখা যাবে 3, 4, 5, 6 -এই বইগুলো থেকে। এই বইগুলো CD-সহ কিনতে হবে। অথবা কারো থেকে পেনড্রাইভে সফ্‌ট কপিও সংগ্রহ করে নিতে পারেন।
Reading: অধিকাংশ শিক্ষার্থীদের মতে রিডিং-এর জন্য Saifur’s-এর বইটা সহজ এবং বোধগম্য।
Writing: রাইটিং-এর জন্য ভালো বই হচ্ছে Moniruzzaman’s IELTS Writing বইটি।

Speaking: স্পীকিং-এর জন্য Khan’s Cue-Card 1 এবং 2 বেশ কার্যকরী।

Driving

 https://youtube.com/shorts/5Ac2qZHrApU?si=_X-G7pJFHiZoD-s7 https://www.youtube.com/watch?v=f6pSsex87oU