1625668440
Here’s how to get NerdFont working on Windows in the new Windows Terminal from the Microsoft Store, and in WSL.
Instructions: https://webinstall.dev/nerdfont
Beyond Code:
(Learn to Code in 15 Minutes a Day)
Bootcamp Playlist: https://www.youtube.com/playlist?list=PLxki0D-ilnqZfyo2dZe11ZNGP7RJxJcoA
Subscribe on YouTube: https://youtube.com/channel/UC2KJHARTj6KRpKzLU1sVxBA
Join on Facebook: https://fb.com/beyondcodebootcamp
Follow on Twitter: https://twitter.com/@_beyondcode
AJ’s Live Streams:
Watch on Twitch: https://twitch.tv/coolaj86
Subscribe on YouTube: https://youtube.com/coolaj86
Watch on Facebook: https://fb.com/coolaj86
Health, Wealth, Commitment
(My Morning Shower Thoughts as a Daily Lifestyle Vlog)
Join on Facebook: https://www.facebook.com/groups/5406824179391158
Subscribe on YouTube: https://www.youtube.com/channel/UCbw2SbqD0OofAEVF_T61wCQ
#softwaredevelopment #softwareengineer #webdevelopment #webdeveloper
#nerdfonts #windows #windows terminal #linux #wsl2 #webdeveloper
1625668440
Here’s how to get NerdFont working on Windows in the new Windows Terminal from the Microsoft Store, and in WSL.
Instructions: https://webinstall.dev/nerdfont
Beyond Code:
(Learn to Code in 15 Minutes a Day)
Bootcamp Playlist: https://www.youtube.com/playlist?list=PLxki0D-ilnqZfyo2dZe11ZNGP7RJxJcoA
Subscribe on YouTube: https://youtube.com/channel/UC2KJHARTj6KRpKzLU1sVxBA
Join on Facebook: https://fb.com/beyondcodebootcamp
Follow on Twitter: https://twitter.com/@_beyondcode
AJ’s Live Streams:
Watch on Twitch: https://twitch.tv/coolaj86
Subscribe on YouTube: https://youtube.com/coolaj86
Watch on Facebook: https://fb.com/coolaj86
Health, Wealth, Commitment
(My Morning Shower Thoughts as a Daily Lifestyle Vlog)
Join on Facebook: https://www.facebook.com/groups/5406824179391158
Subscribe on YouTube: https://www.youtube.com/channel/UCbw2SbqD0OofAEVF_T61wCQ
#softwaredevelopment #softwareengineer #webdevelopment #webdeveloper
#nerdfonts #windows #windows terminal #linux #wsl2 #webdeveloper
1625672160
There are a lot of misleading / outdated instructions out there. I’ve created a simple installer that Just Works.
In short: httsp://webinstall.dev/wsl
If ever the terminal appears to freeze, just hit enter.
Ubuntu WILL NOT show up in Windows SEARCH until it has EXITED CLEANLY!!
Beyond Code:
(Learn to Code in 15 Minutes a Day)
Bootcamp Playlist: https://www.youtube.com/playlist?list=PLxki0D-ilnqZfyo2dZe11ZNGP7RJxJcoA
Subscribe on YouTube: https://youtube.com/channel/UC2KJHARTj6KRpKzLU1sVxBA
Join on Facebook: https://fb.com/beyondcodebootcamp
Follow on Twitter: https://twitter.com/@_beyondcode
AJ’s Live Streams:
Watch on Twitch: https://twitch.tv/coolaj86
Subscribe on YouTube: https://youtube.com/coolaj86
Watch on Facebook: https://fb.com/coolaj86
Health, Wealth, Commitment
(My Morning Shower Thoughts as a Daily Lifestyle Vlog)
Join on Facebook: https://www.facebook.com/groups/5406824179391158
Subscribe on YouTube: https://www.youtube.com/channel/UCbw2SbqD0OofAEVF_T61wCQ
#softwaredevelopment #softwareengineer #webdevelopment #webdeveloper
#wsl #wsl2 #webdeveloper #webdevelopment #linux #windows
1601550900
The Windows Subsystem for Linux lets developers run a GNU/Linux environment — including most command-line tools, utilities, and applications — directly on Windows, unmodified, without the overhead of a traditional virtual machine or dualboot setup.
Using the following link here install the WSL 2 on your Windows 10. The Microsoft tutorial is very simple and clean.
#linux-on-windows #windows-10 #wsl-2 #linux
1619280312
When you are trying to login into Windows Live Mail Account and you forget your login credentials, then you are unable to access your account. If you want immediate help to fix Windows Live Mail Login Problems, so you can dial our toll-free number and talk to our email expert customer support team. Our team of professionals provides an exact solution related to your own issues. We are always ready to guide you in any possible manner.
Follow the steps to reset your password:
Go to the official login page (You must be there already.)
Enter your email id. Click ‘Next.’
On the screen that follows, find the ‘Forgot my password’ link below the ‘Sign in’ button. Click it.
You will be redirected to the ‘Change Windows Live Mail Password’ page.
forgot my password windows live mail
Select from the explanations why you can’t check-in. Click ‘Next.’
Enter the e-mail address you used for check-in. this might be an email with Microsoft domain (hotmail.com or outlook.com) or the other like gmail.com or yahoo.com.
Enter the characters you see within the CAPTCHA. This identifies that you simply aren’t a robot and it’s not an effort to hack your account. Click ‘Next.’
If you’ve got entered the safety (recovery) details at the time of check-in, you’ll receive a security code on your telephone number or alternate email id.
Enter the safety within the field provided and click on ‘Next.’
You can now set a replacement password for your account and regain access.
OR
If you haven’t provided any security option or can’t access it, click on the ‘I can’t access this verification option’ link.
You will be redirected to a page where you’ll enter the other alternate email address which you’ll access. Enter it and click on ‘Next.’
Enter the safety code you received and click on ‘Next.’
You can now reset your password and check in to your account with this new password.
If you’ve got any issues with the reset process, contact Windows Live Mail Support and the repair team for help.
#windows live email login problems #windows live email login issues #windows live mail login issues #windows live mail login problems
1604008800
Static code analysis refers to the technique of approximating the runtime behavior of a program. In other words, it is the process of predicting the output of a program without actually executing it.
Lately, however, the term “Static Code Analysis” is more commonly used to refer to one of the applications of this technique rather than the technique itself — program comprehension — understanding the program and detecting issues in it (anything from syntax errors to type mismatches, performance hogs likely bugs, security loopholes, etc.). This is the usage we’d be referring to throughout this post.
“The refinement of techniques for the prompt discovery of error serves as well as any other as a hallmark of what we mean by science.”
We cover a lot of ground in this post. The aim is to build an understanding of static code analysis and to equip you with the basic theory, and the right tools so that you can write analyzers on your own.
We start our journey with laying down the essential parts of the pipeline which a compiler follows to understand what a piece of code does. We learn where to tap points in this pipeline to plug in our analyzers and extract meaningful information. In the latter half, we get our feet wet, and write four such static analyzers, completely from scratch, in Python.
Note that although the ideas here are discussed in light of Python, static code analyzers across all programming languages are carved out along similar lines. We chose Python because of the availability of an easy to use ast
module, and wide adoption of the language itself.
Before a computer can finally “understand” and execute a piece of code, it goes through a series of complicated transformations:
As you can see in the diagram (go ahead, zoom it!), the static analyzers feed on the output of these stages. To be able to better understand the static analysis techniques, let’s look at each of these steps in some more detail:
The first thing that a compiler does when trying to understand a piece of code is to break it down into smaller chunks, also known as tokens. Tokens are akin to what words are in a language.
A token might consist of either a single character, like (
, or literals (like integers, strings, e.g., 7
, Bob
, etc.), or reserved keywords of that language (e.g, def
in Python). Characters which do not contribute towards the semantics of a program, like trailing whitespace, comments, etc. are often discarded by the scanner.
Python provides the tokenize
module in its standard library to let you play around with tokens:
Python
1
import io
2
import tokenize
3
4
code = b"color = input('Enter your favourite color: ')"
5
6
for token in tokenize.tokenize(io.BytesIO(code).readline):
7
print(token)
Python
1
TokenInfo(type=62 (ENCODING), string='utf-8')
2
TokenInfo(type=1 (NAME), string='color')
3
TokenInfo(type=54 (OP), string='=')
4
TokenInfo(type=1 (NAME), string='input')
5
TokenInfo(type=54 (OP), string='(')
6
TokenInfo(type=3 (STRING), string="'Enter your favourite color: '")
7
TokenInfo(type=54 (OP), string=')')
8
TokenInfo(type=4 (NEWLINE), string='')
9
TokenInfo(type=0 (ENDMARKER), string='')
(Note that for the sake of readability, I’ve omitted a few columns from the result above — metadata like starting index, ending index, a copy of the line on which a token occurs, etc.)
#code quality #code review #static analysis #static code analysis #code analysis #static analysis tools #code review tips #static code analyzer #static code analysis tool #static analyzer