Friday, 4 September 2020
Lenovo releases first Fedora Linux ThinkPad laptop
Fedora, Red Hat's community Linux for developers, is finally available from a mainstream PC vendor, Lenovo.
For years, ThinkPads, first from IBM and then from Lenovo, were Linux users' top laptop pick. Then, in 2008 Lenovo turned its back on desktop Linux. Lenovo has seen the error of its ways. Today, for the first time in much too long, Lenovo has released a ThinkPad with a ready-to-run Linux. And, not just any Linux, but Red Hat's community Linux, Fedora.
Source : https://www.zdnet.com/google-amp/article/lenovo-releases-first-fedora-linux-thinkpad-laptop/
Xbox Series X tech will supercharge Windows 10 PCs — here's how
Xbox Series X storage tech is coming to Windows 10
United states test launches intercontinental ballistic missile.
The US has launched an unarmed Minuteman III intercontinental ballistic missile, equipped with a test reentry vehicle, from Vandenberg Air Force Base in California.
Thursday, 3 September 2020
what is robots.txt and how to make perfect robots.txt file.
web crawler first checks robots.txt file .
robots.txt file gives information to web crawler about on what pages to crawl and on what pages not to crawl.
this saves so much time of web crawler so crawler can easily crawl your website.
and it optimizes SEO .
It makes your website easily available on search engine very fast.
you can add custom robots.txt in your website's code.
you can check your robots,txt file by just typing the URL your website url/robots.txt/
Here is the explanation by Neil Patel.
https://neilpatel.com/blog/robots-txt/
pic : neilpatel.com
Wednesday, 2 September 2020
Vowel Recognition Sum of vowels in all substrings of a string.#hackerearth | using prefix_sum | Python.. and in C++
Natural Language Understanding is the subdomain of Natural Language Processing where people used to design AI based applications have ability to understand the human languages. HashInclude Speech Processing team has a project named Virtual Assistant. For this project they appointed you as a data engineer (who has good knowledge of creating clean datasets by writing efficient code). As a data engineer your first task is to make vowel recognition dataset. In this task you have to find the presence of vowels in all possible substrings of the given string. For each given string you have to print the total number of vowels.
Input First line contains an integer T, denoting the number of test cases. Each of the next lines contains a string, string contains both lower case and upper case . Output Print the vowel sum Answer for each test case should be printed in a new line. SAMPLE INPUT 1 baceb SAMPLE OUTPUT 16 Explanation First line is number of input string, In given example, string is "baceb" so the substrings will be like -"b, ba, bac, bace, a, ac, ace, aceb, c, ce, ceb, e, eb, baceb" now the number of vowels in each substring will be 0, 1, 1, 2, 1, 1, 2, 2, 0, 1, 1, 1, 1, 2 and the total number will be sum of all presence which is 16.in C++ :
Friday, 26 June 2020
Which Ubuntu 20.0 command , I use most of the time?? Guess??
Why I prefer Angular over React
Use modern web platform capabilities to deliver app-like experiences. High performance, offline, and zero-step installation.
Build native mobile apps with strategies from Cordova, Ionic, or NativeScript.
Create desktop-installed apps across Mac, Windows, and Linux using the same Angular methods you've learned for the web plus the ability to access native OS APIs.
Speed and Performance
Angular turns your templates into code that's highly optimized for today's JavaScript virtual machines, giving you all the benefits of hand-written code with the productivity of a framework.
Serve the first view of your application on Node.js®, .NET, PHP, and other servers for near-instant rendering in just HTML and CSS. Also paves the way for sites that optimize for SEO.
Angular apps load quickly with the new Component Router, which delivers automatic code-splitting so users only load code required to render the view they request.
Quickly create UI views with simple and powerful template syntax.
Command line tools: start building fast, add components and tests, then instantly deploy.
Get intelligent code completion, instant errors, and other feedback in popular editors and IDEs.
With Karma for unit tests, you can know if you've broken things every time you save. And Protractor makes your scenario tests run faster and in a stable manner.
Create high-performance, complex choreographies and animation timelines with very little code through Angular's intuitive API.
Create accessible applications with ARIA-enabled components, developer guides, and built-in a11y test infrastructure.
Source : angular.io
Why is Python simplest language and very good for competitive programming
Business Ideas
Monday, 22 June 2020
Connect computing with biology
Source : Moleculargenetics.it
Bio computers use systems of biologically derived molecules—such as DNA and proteins—to perform computational calculations involving storing, retrieving, and processing data.
The development of biocomputers has been made possible by the expanding new science of nanobiotechnology. The term nanobiotechnology can be defined in multiple ways; in a more general sense, nanobiotechnology can be defined as any type of technology that uses both nano-scale materials (i.e. materials having characteristic dimensions of 1-100 nanometers) and biologically based materials.[1] A more restrictive definition views nanobiotechnology more specifically as the design and engineering of proteins that can then be assembled into larger, functional structures[2][3] The implementation of nanobiotechnology, as defined in this narrower sense, provides scientists with the ability to engineer biomolecular systems specifically so that they interact in a fashion that can ultimately result in the computational functionality of a computer.
Source : WikipediaTry these sites once in your life
Saturday, 20 June 2020
My 3 favourite Books..you should read these books.
Future of the windows subsystem for Linux.
Sunday, 17 May 2020
Codeforces Round #643 (Div. 2) : C. Count Triangles : Solution in python
Like any unknown mathematician, Yuri has favourite numbers:
holds?
Yuri is preparing problems for a new contest now, so he is very busy. That's why he asked you to calculate the number of triangles with described property.
The triangle is called non-degenerate if and only if its vertices are not collinear.
The first line contains four integers:
) — Yuri's favourite numbers.
Print the number of non-degenerate triangles with integer sides
holds.
1 2 3 4
4
1 2 2 5
3
500000 500000 500000 500000
1
In the first example Yuri can make up triangles with sides
.
In the second example Yuri can make up triangles with sides
.
In the third example Yuri can make up only one equilateral triangle with sides equal to
length = len(l)
count = 0
for a in range(l[0] , l[1]+1) :
for b in range(l[1],l[2]+1) :
for c in range(l[2] ,l[3]+1) :
if a+b > c and b+c > a and c+a > b :
count += 1
print(count)
Blog Archive
-
▼
2020
(27)
-
▼
September
(7)
- When CoronaVirus hits someone..
- Lenovo releases first Fedora Linux ThinkPad laptop
- Xbox Series X tech will supercharge Windows 10 PCs...
- United states test launches intercontinental balli...
- what is robots.txt and how to make perfect robots....
- Supreme Subset (1 D & Data Structures Practice Pro...
- Vowel Recognition Sum of vowels in all substrings ...
-
►
June
(11)
- Which Ubuntu 20.0 command , I use most of the time...
- Why I prefer Angular over React
- Why is Python simplest language and very good for ...
- Business Ideas
- Connect computing with biology
- This picture depicts life in a Graph.
- if you are spending your life like this picture . ...
- Try these sites once in your life
- My 3 favourite Books..you should read these books.
- Covid 19 tracking app will be automatically downlo...
- Future of the windows subsystem for Linux.
-
▼
September
(7)