Chicken curry
One of my most liked thai dishes is Chicken Curry. The first time I made it I enjoyed it so much that I made it a second time. Cooking time was about 30 minutes. Ingredients: Instructions In a large skillet begin by heating olive oil. Add chicken and season with salt and pepper. Cook for […]
How to use net use command
Net use is available within the command prompt in windows XP, Windows Vista, Windows 7, Windows 8, Windows 10, and Windows 11. at the dos prompt type net use /? Examples of Net Use Temporary Map Drive the example above will connect to the folder My Folder located on a computer named server. the * […]
San Antonio Police Department needs change! No Justice!
It is very disappointing and heartbreaking to hear how Mr. Mathias Ometu was treated by San Antonio’s finest. Hearing what he endured this morning reminded me of how SAPD has failed to change its policies and procedures. In some cases, there are no procedures or policies in place to handle such situations. Maybe they are […]
Oppose It: The Pre-K 4 SA Initiative
by Iris Dimmick October 25, 2012 (Rivard Report) Why I Oppose San Antonio’s Pre-K Plan As an Early Childhood Educator I was born and raised in San Antonio and have always carried in my heart the sense that our unique history and culture has the makings of a city whose exceptional qualities will benefit many, even […]
The end of Windows 7
Intuit and Windows 7 – End of Life As of January 14, 2020, Microsoft will no longer provide security updates or support for PCs running Windows 7. This means that computers running on Windows 7 will be more vulnerable to security risks and viruses. To avoid these risks, Microsoft recommends upgrading to Windows 10. –Read […]
Basic Cisco Switch Configuration
Basic steps needed to configure and setup a Cisco switch from scratch. I. Connect to the device via consoleUsing software such as PuTTY, connect to the console of the switch. You’ll get the initial command prompt Switch> Type enable and hit enter. You’ll get into priviled EXEC mode Switch# Now, get into Global Configuration Mode: […]
Set Default Calendar Sharing Permissions for all users
Open Notepad Copy the following cmdlets and edit as required: 3. Save the file as a PowerShell Script file. 4. Open Windows PowerShell 5. Run your script file 6. Enter your Office 365 admin credentials and click ok Access Rights Roles Author CreateItems, DeleteOwnedItems, EditOwnedItems, FolderVisible, ReadItems Contributor CreateItems, FolderVisible Editor CreateItems, DeleteAllItems, DeleteOwnedItems, EditAllItems, EditOwnedItems, […]
Excel Formula SUM Functions
SUM functions Probably the most frequently used function in Excel (or any other spreadsheet program), =SUM does just that: It sums a column, row, or range of numbers—but it doesn’t just sum. It also subtracts, multiplies, divides, and uses any of the comparison operators to return a result of 1 (true) or 0 (false). You […]
Superfetch 100% disk usage
Superfetch is a Windows service that is intended to make your applications launch faster and improve your system respond speed. It does so by pre-loading programs you frequently use into RAM so that they don’t have to be called from the hard drive every time you run them. If this service is affecting your computer performance, […]
How to list Windows 10 Upgrades
Do you need to know when a particular upgrade for windows 10 was done? Open Powershell Open Windows PowerShell and run the following two cmdlets PS > $AllBuilds = $(gci “HKLM:\System\Setup” | ? {$_.Name -match “\Source\s”}) | % { $_ | Select @{n=”UpdateTime”;e={if ($_.Name -match “Updated\son\s(\d{1,2}\/\d{1,2}\/\d{4}\s\d{2}:\d{2}:\d{2}))$”) {[dateTime]::Parse($Matches[1],([Globalization.CultureInfo]::CreateSpecificCulture(‘en-US’)))}}}, @{n=”ReleaseID”;e={$_.GetValue(“ReleaseID”)}},@{n=”Branch”;e={$_.GetValue(“BuildBranch”)}},@{n=”Build”;e={$_.GetValue(“CurrentBuild”)}},@{n=”ProductName”;e={$_.GetValue(“ProductName”)}},@{n=”InstallTime”;e={[datetime]::FromFileTime($_.GetValue(“InstallTime”))}} }; PS > $AllBuilds | Sort UpdateTime […]