12 Easy and Smart Ways to Speed Up Your Home Wi-Fi

Sharon Christine
Updated on 23-Jan-2020 05:38:06

183 Views

Wi-Fi is now one of the most useful and basic requirements- right along with Electricity and Running water, and yet it’s also one of the most frustrating features at home. There are few things more dreadful than slowly watching a web page load as you’re working to meet a deadline. Or just chilling at home, watching a movie on Netflix, when the video constantly pauses to buffer. Internet problems constantly plagued by slow speeds, bad reception, and other Wi-Fi issues. But there are some easy ways you can take to ensure better, stronger Wi-Fi throughout your house.Better Router PlacementThis is ... Read More

Ten Things to Know About Google Glass

Sharon Christine
Updated on 23-Jan-2020 05:27:41

541 Views

Most of us have heard of Google Glass by now and are aware of the potential things it can do, in spite of it being in a developmental stage. Google glass is a hi-tech eyewear gadget that is an augmented reality device as well as a compact hands-free computer. For example, few people put it on while doing extreme stuff like skydiving and share their point of view experience with their friends and kin.Minuscule, Yet Power-Packed HardwareGoogle Glass has built-in features like Bluetooth, Wi-Fi, GPS, speakers, a camera, microphone, touchpad and maybe even a gyroscope to detect head movements.Then there’s ... Read More

10 Reasons Why You Should Learn Python

Sharon Christine
Updated on 23-Jan-2020 05:21:27

2K+ Views

Python is a totally free language to download, use, and code. Its commands are mostly in simple English. This makes it easy to remember and write commands. The code is readable and with a little knowledge, a developer can learn many things just by looking at the code.It has standard libraries that offer a lot of functionalities which lets you implement complex applications with ease. Python was designed with the newbies in mind. The use of white space and common expressions has eliminated the need for tedious variable declarations and ugly braces.Your First Steps in ProgrammingPython can be your starting ... Read More

Methods Supported by Get-ChildItem in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 12:44:39

430 Views

There are methods or functions which are useful for directories and file operations.Methods for the directory.TypeName: System.IO.DirectoryInfo Name                      MemberType ----                      ---------- Create                    Method CreateObjRef              Method CreateSubdirectory        Method Delete                    Method EnumerateDirectories      Method EnumerateFiles            Method EnumerateFileSystemInfos  Method Equals                    Method ... Read More

Print a Pattern Without Using Any Loop in C++

sudhir sharma
Updated on 22-Jan-2020 12:44:25

711 Views

In this problem, we are given a number n. Our task is to print patterns with decreasing to 0 or negative then increasing back to the number.Let’s take an example to understand the problem,Input: n = 12 Output: 12 7 2 -3 2 7 12To solve this problem, we will use recursion and call the function after each update. The track of update is kept using the flag variable which tells the function to increase or decrease the number by 5.ExampleThe below code gives the implementation of our solution, Live Demo#include using namespace std; void printNextValue(int m){    if (m > 0){       cout

Print a String in Wave Pattern in C++

sudhir sharma
Updated on 22-Jan-2020 12:42:59

545 Views

In this problem, we are given a string and an integer n. Our task is to print the given string in a wave pattern of n lines.Let’s take an example to understand the problem, Input: Tutorial n = 3 Output: T             r    U       o       i       s       t                lWave patterns are printed by printing each character of the string one by one in the next line and tab space away from the next element till ... Read More

List Directory Content in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 12:42:10

40K+ Views

To display the directory content, Get-ChildItem cmdlet is used. You need to provide the path of the directory or if you are in the same directory, you need to use only Get-ChildItem directly. In the below example, we need to display the contents of the D:\temp directory.When Get-ChildItem command is run outside of this directory then the path of the directory should be provided. This is called the absolute path.PS C:\> Get-ChildItem D:\Temp\CommandWhen this command is run directly within the directory then simply run this command. This is called a relative path.PS D:\Temp> Get-ChildItem OutputDirectory: D:\Temp Mode       ... Read More

Retrieve Specific File Information Using Get-ChildItem in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 12:40:58

3K+ Views

When the item (file) path is provided to the Get-ChildItem cmdlet, it extracts the file information like Name, LastWriteTime, Size, etc.ExampleGet-ChildItem -Path D:\Temp\style.cssOutputDirectory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- -a----       08-12-2017     10:16            393 style.cssCommandTo get the full properties of the file then you need to use fl * (Format-List *) pipeline command.Get-ChildItem -Path D:\Temp\style.css | fl * OutputPSPath            : Microsoft.PowerShell.Core\FileSystem::D:\Temp\style.css ... Read More

Parameters Supported by Get-ChildItem in PowerShell

Chirag Nagrekar
Updated on 22-Jan-2020 12:39:08

348 Views

Below parameters are supported by Get-ChildItems. Get-ChildItem[[-Path] ] [[-Filter] ] [-Include ] [-Exclude ] [-Recurse] [-Depth ] [-Force] [-Name] [-Attributes ] [-FollowSymlink] [-Directory] [-File] [-Hidden] [-ReadOnly] [-System] []

Print All 3-Digit Repeating Numbers in a Very Large Number in C++

sudhir sharma
Updated on 22-Jan-2020 12:38:07

319 Views

In this problem, we are given a number. And we have to print all 3 digit repeating numbers.Let’s take an example to understand the problem, Input: 98769876598765 Output:    987: 3 times    876: 3 times    765: 2 timesTo solve this problem, we will use the large number which is stored string. The digits of the numbers are counted as characters. Now, we will check the first three numbers and then start from the 3rd index to the end and get a new number. After this, we will check for the next 3 digit numbers are count its frequency. ... Read More

Advertisements