Posts

Steps to Setup Shopify Dev Environment using Homebrew for Mac

Image
If you're a developer setting up a Shopify development environment on a MacBook (for building themes, apps, or custom features), you’ll need to install some tools like the Shopify CLI. Follow below steps for installation:

VISA SPONSORSHIP PATHWAYS FOR UNITED KINGDOM

Image
In this article we will discuss different pathways to live and work in the United Kingdom. If you are looking to move and work in the UK, below are a few visa types which may help you. Different Visa pathways Tier 2 - Skilled workers visa Full list of registered sponsor employers can be found here below. These employers have the ability to hire employees from outside the UK and sponsor them with Tier 2 Skilled workers visa. https://www.gov.uk/government/publications/register-of-licensed-sponsors-workers https://uktiersponsors.co.uk/ Global Talent Visa - https://www.gov.uk/global-talent Scale-Up Worker - https://www.gov.uk/scale-up-worker-visa Graduate Route - https://www.gov.uk/graduate-visa This article is not a legal advice. Consult with immigration lawyers to find the best suitable option for you. Furthermore, Network with other individuals who have done it before. Further Reading can be done on UK Government website ...

HOW TO SECURE A JOB IN THE UNITED KINGDOM FROM ABROAD

Image
In this article we will discuss how you can secure a job in the United Kingdom if you live abroad TIPS TO TRANSLATE YOUR FOREIGN EDUCATION AND EXPERIENCE TO UK STANDARDS If you are a working professional seeking a job in the United Kingdom, but your education or work experience is not UK-Based, then here are a few tips on how you can translate your education and experience to UK standards. Use Recognizable UK Terminology For example, Instead of “Bachelor of Engineering,” say “Bachelor’s degree in Engineering (UK equivalent)” Clarify grading if it's not on a UK-style scale (mention % or GPA equivalent) Read more on this here: https://gpacalculator.net/grade-conversion/united-kingdom/ and https://yocket.com/blog/uk-grading-system Use online converters for your foreign grades to get UK equivalent grades. For example: https://collegesgyan.com/tools/gpa-to-percentage-calculator/ Use U...

POPULAR JOB SKILLS AND OCCUPATIONS IN THE UNITED KINGDOM

Image
In this article we will discuss the in-demand skills and occupations in the United Kingdom. Having these skills will enable you to secure a job in the United Kindom easily. IN-DEMAND SKILLS IN INFORMATION TECHNOLOGY(IT) FOR GETTING A JOB IN UK: Software Development (JavaScript, React, Python, .NET, Java) Cloud (AWS, Azure, GCP) Data & AI (Data Engineers, ML, SQL, Big Data) Cybersecurity DevOps / SRE Business Analysis & Product Management UX/UI Design FULL LIST OF IN-DEMAND OCCUPATIONS IN THE UK ACROSS ALL SECTORS For in-demand skills in other sectors like Health-Care, business, etc. Access the full list of in-demand occupations click here In-Demand Occupations in the United Kingdom UK GOVERNMENT OFFICIAL LIST OF IN-DEMAND OCCUPATIONS Official in-demand occupation list from the UK government can be accessed here OFFICIAL LIST OF IN-DEMAND OCCUPATIONS IN THE UK FURTHER READING This article is a ...

TIPS TO SECURE A JOB AND VISA SPONSORSHIP IN THE UNITED KINGDOM

Image
In this article I will share with you How to secure a visa-sponsored job in the United Kingdom and different visa pathways available to professionals wanting to work and move to the United Kingdom. POPULAR JOB BOARDS IN UK To increase your chances of finding a job in the United Kingdom(UK), use the following job-boards which are popularly used by UK based recruiters. Indeed UK - https://uk.indeed.com/ Linkedin - https://www.linkedin.com/ CV Library UK - https://www.cv-library.co.uk/ Total Jobs - https://www.totaljobs.com/ Reed UK - https://www.reed.co.uk/ CW Jobs - https://www.cwjobs.co.uk/ TIPS TO FIND UK VISA-SPONSORED JOBS EASILY Use filters like “Visa Sponsorship” or keywords like “Skilled Worker Visa” Apply early, most sponsored roles get high applications quickly Follow recruiters of your target companies on LinkedIn Perform targetted job search i...

SEO for your Press Releases [Updated 2025 list]

Image
This article will help you Search Engine Optimize and Publish your/client's Press Releases Online: Prepare and proof-read the press release for Online Submissions: Make the press release easy to find online. Know the search terms that the online audiences use when they search for you on Google. Incorporate those search terms into the press release, particularly into the first 250 words. Wherever possible, convert keyword phrases into anchor text, which will greatly increase the Search Engine Optimization value of the online press release. Accompany the press-release with an image/video to increase the readership Include complete contact information on the bottom of your press release including your name, phone number, e-mail address, physical address and website URL. Utilize low cost or free press release submission sites that are also SEO friendly to publish the press release. Submit the press relea...

Magento 2: Delete sample data and test data from your store

Here is a script to delete all the test data from your magento store. This can come in handy especially at the time of launching your website from beta to production mode. Don't forget to bookmark it for your next launch. NOTE: It is advisable to take full database backup before performing any operations below: SCRIPT: SET FOREIGN_KEY_CHECKS=0; # Clean order history TRUNCATE TABLE `sales_bestsellers_aggregated_daily`; TRUNCATE TABLE `sales_bestsellers_aggregated_monthly`; TRUNCATE TABLE `sales_bestsellers_aggregated_yearly`; # Clean order infos TRUNCATE TABLE `sales_creditmemo`; TRUNCATE TABLE `sales_creditmemo_comment`; TRUNCATE TABLE `sales_creditmemo_grid`; TRUNCATE TABLE `sales_creditmemo_item`; TRUNCATE TABLE `sales_invoice`; TRUNCATE TABLE `sales_invoiced_aggregated`; TRUNCATE TABLE `sales_invoiced_aggregated_order`; TRUNCATE TABLE `sales_invoice_comment`; TRUNCATE TABLE `sales_invoice_grid`; TRUNCATE TABLE `sales_invoice_item`; TRUNCATE TABLE `sales_order`; TRUNCATE...

Magento 2 - How to generate translation strings for your magento project

If you have want to create a multi-language store then you may require to translate all English strings into the language of your choice. For this you will need accumulate all of the eligible strings for translation into a CSV file. In this article we will discuss how to generate this list of strings from your Magento project which are eligible for translations. Magento allows the list generation with following command: For Whole Project: php bin/magento i18n:collect-phrases --magento -o translations.csv cat translations.csv For A Particular Module: php bin/magento i18n:collect-phrases path/to/my/module -o translations.csv cat translations.csv Thenafter, this CSV file (translations.csv in above example) can be translated either manually or using third party translator extensions like Qordoba.

Elastic Search - How to install and manage multiple versions of elastic search

It is possible to install and manage multiple versions of elastic search using an Elastic search version Manager. You can simply follow below steps to install EVM and start Elastic search with your desired version: STEPS sudo curl -o /usr/local/bin/evm https://raw.githubusercontent.com/duydo/evm/master/evm sudo chmod +x /usr/local/bin/evm evm install 7.4.0 /** You can replace 7.4.0 with your desired elastic search version **/ evm install 5.4.0 /** You can replace 5.4.0 with your desired elastic search version **/ evm use 7.4.0 /** You can replace 7.4.0 with your desired elastic search version **/ evm start curl http://localhost:9200 If you want to install another version, then you can stop the EVM and install another version in the similar manner. NOTE: For this Tutorial we have used Duydo EVM which is available here: https://github.com/duydo/evm to download and run elasticsearch version 7.4.0.