AskMeCode
The Journal
Don’t Overlook the Importance of Kerning
If you’ve ever looked at a logo or typeface and thought to yourself “That looks odd, I can’t quite put my finger on it…”, the odds are good that it was the kerning that stood out to you. While most people understand the importance of choosing the right typeface, and even how to use bold […]
what are the most common coding interview questions? Here you go
The time has come to share the top 50 most common coding interview questions asked in interviews. These questions have been picked from different sources, like TopCoder, Glassdoor, Quora and just by my own experience. I hope these questions will help you prepare for your next coding interview. These are the most popular so I […]
What Every Beginner Should Know Before Learning Coding
Before learning any coding language, it’s important to know what you want to get out of it. Do you want to make games? Websites? Applications for your phone? Write software for a company? These are all great reasons, but I recommend thinking about it a bit more. Coding is empowering. It gives you the ability […]
Handling Asynchronous Errors in Python
A common pattern in async code is to handle errors with try/except: async def main(): task1 = asyncio.create_task(factorial(“A”, 2)) task2 = asyncio.create_task(factorial(“B”, 1)) await task1 await task2 try: asyncio.run(main()) except Exception as e: print(f”Caught error: {e!r}”) import math def factorial(n): if n == 0: return 1 else: recurse = factorial(n-1) result = n * recurse […]
Python 3 Cheat Sheet
The Python Programming for Beginners Cheat Sheet is created by our very own developer, Patrick King. This free cheatsheet contains a variety of helpful tips and tricks that can help you become a Python programmer. What’s your favorite feature or trick? Leave it in the comments below! If you want to start programming, or if […]
How to Hire an Agency? Look at their Work
How to Hire an Agency? Look at their Work: A blog on hiring an agency and evaluating their portfolio. This is a guest post by Abhishek Kumar, co-founder of Sketch2Code. Sketch2Code is a Visual Studio Code extension that enables developers to get the HTML code from handwritten user interface mockups. This extension works with Microsoft […]
7 Tips to Improve your Python Programming
This blog is all about top 7 tips to improve your python programming. 1. Make use of inbuilt functions. 2. Write readable code with proper comments and documentation. 3. Follow PEP8 style guide and avoid common mistakes like variable name should be lowercase, function names should be written in lower case and words are separated […]
What Is A Good Scale For A Job Interview? – cmu codes
What Is A Good Scale For A Job Interview? I’ve been asked this question a lot lately. The answer is that it depends on your needs. What are you looking to get out of the interview? What are you trying to accomplish? If you want a good job, then by all means go with the […]
An Overview of Python Basics and Data Types
This is a quick overview of the Python programming language, including its syntax, variables, data types, and more. Python is an open-source programming language that was released in 1991. Since then, it has gained widespread use across all types of technology. It’s known for its simplicity and flexibility. For example, you can use Python for […]
How To Find Your Bra Size
Finding the right bra size can be confusing. First, you will need a measuring tape and pen to write your measurements down. Put on a thin shirt and no bra. Then, measure your bust width by bringing the tape measure around your back and across the fullest part of your breasts. Write this measurement down. […]
Introducing the Newest Version of GitHUB & Codespace
Introducing the Newest Version of GitHUB & Codespace GitHub has now launched a new version of GitHub Codespaces. It’s a comprehensive development environment within GitHub, which allows you to code in the browser and thus get rid of the need for local setup. This is especially helpful if you wish to start coding right away, […]
How To Install Python and Jupyter Notebook on Windows
How To Install Python and Jupyter Notebook on Windows: A blog about installing the Jupyter Notebook on windows. Python is one of the most popular programming languages for Machine Learning (ML). Theano, Flutter, KNime, Mean.js, Weka, Solidity, Org.Json, AWS QuickSight, JSON.Simple, Jackson Annotations, Passay, Boon, MuleSoft, Nagios, Matplotlib, Java NIO. If you have looked for […]