Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
Count all http response status codes in a web application log files on linux
Here is one way to count all the HTTP response status codes in a web application log file on Linux:
- Open the log file using the
cat
command:
cat log_file
- Use the
grep
command to search for lines that contain an HTTP status code:
cat log_file | grep -Eo 'HTTP/[0-9\.]+ [0-9]+'
This will output all the lines in the log file that contain an HTTP status code.
- Use the
awk
command to extract the status code from each line:
cat log_file | grep -Eo 'HTTP/[0-9\.]+ [0-9]+' | awk '{print $2}'
This will output a list of all the status codes in the log file.
- Use the
sort
anduniq
commands to count the number of occurrences of each status code:
cat log_file | grep -Eo 'HTTP/[0-9\.]+ [0-9]+' | awk '{print $2}' | sort | uniq -c
1- Sample Log file:
Given the log file below, we want to know all http response status code and sort them from the highest amount of response code to the lowest.
2- Use this command below to Count all http response status codes in a web application log files on linux:
awk '{print $9}' sample_log.log | sort | uniq -c | sort -rn
3- Output
Script with hash tables on windows and Linux
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to declare and write a script with hash tables on windows and linux
A hash table, also known as a hash map, is a data structure that is used to store key-value pairs. It is an efficient way to store data that can be quickly retrieved using a unique key.
Here is an example of how to declare and write a script with a hash table in Python:
# Declare an empty hash tablehash_table = {}
# Add some key-value pairs to the hash table
hash_table[‘key1’] = ‘value1’
hash_table[‘key2’] = ‘value2’
hash_table[‘key3’] = ‘value3’
# Access a value using its key
print(hash_table[‘key2’]) # Output: “value2”
# Modify a value using its key
hash_table[‘key2’] = ‘new value’
print(hash_table[‘key2’]) # Output: “new value”
# Delete a key-value pair using the `del` statement
del hash_table[‘key1’]
# Check if a key is in the hash table using the `in` operator
print(‘key1’ in hash_table) # Output: False
# Output: False
In this example, we declare an empty hash table using the {}
syntax. We then add some key-value pairs to the hash table using the []
syntax. We access a value using its key, modify a value using its key, delete a key-value pair using the del
statement, and check if a key is in the hash table using the in
operator.
I hope this helps! Let me know if you have any questions.
Hash tables with powershell on windows
Declaration:
$states=@{“Alberta” = “Calgary”; “British Columbia” = “Vancouver”; “Ontario” = “Toronto” ; “Quebec” = “Montreal”}Name
_____Value
_______Alberta Calgary British Columbia Vancouver Ontario Toronto Quebec Montreal Add new key-value in hashtable:
$states.Add(“Manitoba”,”Winnipeg”)Remove key-value in hashtable:
$states.Remove(“Manitoba”,”Winnipeg”)
Change value in hashtable:
$states.Set_Item(“Ontario”,”Ottawa”)
Retrieve value in hashtable:
$states.Get_Item(“Alberta”)
Find key in hashtable:
$states.ContainsKey(“Alberta”)
Find Value in hashtable:
$states.ContainsValue(“Calgary”)
Count items in hashtable:
$states.Count
Sort items by Name in hashtable:
$states.GetEnumerator() | Sort-Object Name -descending
Sort items by Value in hashtable:
$states.GetEnumerator() | Sort-Object Value -descendingHash tables with perl on linux or windows
Declaration:
my %hash = (); #Initialize a hash
my $hash_ref = {}; # Initialize a hash reference. ref will return HASH
Clear (or empty) a hash
for (keys %hash)
{
delete $hash{$_};
}
Clear (or empty) a hash reference
for (keys %$href)
{
delete $href->{$_};
}
Add a key/value pair to a hash
$hash{ ‘key’ } = ‘value’; # hash
$hash{ $key } = $value; # hash, using variables
Using Hash Reference
$href->{ ‘key’ } = ‘value’; # hash ref
$href->{ $key } = $value; # hash ref, using variables
Add several key/value pairs to a hash
%hash = ( ‘key1’, ‘value1’, ‘key2’, ‘value2’, ‘key3’, ‘value3’ );
%hash = (
key1 => ‘value1’,
key2 => ‘value2’,
key3 => ‘value3’,
);Copy a hash
my %hash_copy = %hash; # copy a hash
my $href_copy = $href; # copy a hash ref
Delete a single key/value pair
delete $hash{$key};
delete $hash_ref->{$key};
Hash tables with python on linux or windows
Hash tables are called dictionary in python.
Declaration:
dict = {‘Name’: ‘Zara’, ‘Age’: 7, ‘Class’: ‘First’}
Accessing Values
print “dict[‘Name’]: “, dict[‘Name’]
print “dict[‘Age’]: “, dict[‘Age’]
Output:
dict[‘Name’]: Zara
dict[‘Age’]: 7
Updating Dictionary
dict = {‘Name’: ‘Zara’, ‘Age’: 7, ‘Class’: ‘First’}
dict[‘Age’] = 8; # update existing entry
dict[‘School’] = “DPS School”; # Add new entry
Delete Dictionary Elements
#!/usr/bin/python
dict = {‘Name’: ‘Zara’, ‘Age’: 7, ‘Class’: ‘First’}
del dict[‘Name’]; # remove entry with key ‘Name’
dict.clear(); # remove all entries in dict
del dict ; # delete entire dictionary
Source:
How to pipe grep on command line on windows and Linux
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to pipe grep on command line on Windows and Linux?
Let’s find how to pipe grep or find a specific string after running a command using shell, batch and powershell (windows and Linux)
On Linux via shell
ls -al | grep filename
On Windows via powershell
GetChildItem | Select-Object “filename”
or
GetChildItem | where-Object {$_ -match “filename”}On Windows via batch
Dir | findstr “filename”
On both Windows and Linux, you can use the grep
command in combination with the |
(pipe) operator to filter the output of another command. The |
operator takes the output of the command on the left and passes it as input to the command on the right.
Here is an example of how to use the grep
command with the |
operator on both Windows and Linux:
On Linux:
# List all the files in the current directory and filter the output to show only the files that contain the word "example"
ls | grep example
On Windows:
# List all the files in the current directory and filter the output to show only the files that contain the word "example"
dir | findstr example
In this example, the ls
(Linux) or dir
(Windows) command lists all the files in the current directory, and the grep
(Linux) or findstr
(Windows) command filters the output to show only the lines that contain the word “example”.
You can use the grep
command with the |
operator in combination with other command-line utilities to perform various tasks. For example, you can use the grep
command to filter the output of the ps
command to show only the processes that contain a particular string in their command line arguments.
# Show all the processes that contain the string "python" in their command line arguments
ps -aux | grep python
I hope this helps! Let me know if you have any questions.
reverse a string on Linux and Windows
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to reverse a string on Linux and Windows
On Linux:
- Using the
rev
command: Therev
command is a utility that reverses the lines of a file or the characters in a string. To reverse a string, you can use theecho
command to pass the string torev
:
echo "string" | rev
- Using the
sed
command: Thesed
command is a powerful utility that can perform various text transformations. To reverse a string, you can use thesed
command with the-r
option and the's/.*(.)/\1/g'
expression:
echo "string" | sed -r 's/.*(.)/\1/g'
- Using the
awk
command: Theawk
command is a programming language that is used for text processing. To reverse a string, you can use theawk
command with the{print}
action:
echo "string" | awk '{print $1}'
On Windows:
- Using the
powershell
command: Thepowershell
command is a shell that provides a command-line interface for Windows. To reverse a string, you can use thepowershell
command with the-C
option and the'[System.Text.Encoding]::Unicode.GetString([System.Text.Encoding]::Unicode.GetBytes("string"))'
expression:
powershell -C "[System.Text.Encoding]::Unicode.GetString([System.Text.Encoding]::Unicode.GetBytes("string"))"
- Using the
cmd
command: Thecmd
command is the command-line interpreter for Windows. To reverse a string, you can use thecmd
command with thefor
loop:
cmd /c "for /L %i in (1,1,%len%) do @echo !string:~%len%-%i,1!"
These are some ways to reverse a string on Linux and Windows. There are other ways to achieve this, using different utilities or programming languages.
Via shell script on Linux
sh-3.2# vi reverse.sh
#### Start Script #####
#!/bin/bash
input_string=”$1″
reverse_string=””
input_string_length=${#input_string}
for (( i=$input_string_length-1; i>=0; i– ))
do
reverse_string=”$reverse_string${input_string:$i:1}”
done
echo “$reverse_string”
##### End Script #####
Let’s run it:
sh-3.2# chmod 775 reverse.sh
sh-3.2# ./reverse.sh Etienne
enneitE
Via powershell script on Windows
#Let’s use the script reverse.ps1 below.
######
$string=”Etienne”
$string_array=$string -split “”
[array]::Reverse($string_array)
$string_array -join ”
#####Output#####
PS C:\Users\etienne_noumen\Documents\Etienne\Scripting> .\reverse.ps1
E t i e n n e
enneitE
Via powershell script on Windows in one line
([regex]::Matches($String,’.’,’RightToLeft’) | ForEach {$_.value}) -join ”
Via batch script on Windows
::Note: ReverseStr also calls StrLen
::and string length is not greater than 80 chars
:: but can be changed.
@echo off
SetLocal EnableDelayedExpansion
cls
set Str=Etienne
call :StrLen %Str%
echo Length=%Len%
call :ReverseStr %Str%
echo String=%Str%
echo Reverse Str=%Reverse%
exit /b
Set yourself up for promotion or get a better job by Acing the AWS Certified Data Engineer Associate Exam (DEA-C01) with the eBook or App below (Data and AI)
Download the Ace AWS DEA-C01 Exam App:
iOS - Android
AI Dashboard is available on the Web, Apple, Google, and Microsoft, PRO version
::—————-
:: Calc Var Length
::—————-
:: %*=Str to Check
:: Returns %Len%
:: —————
:StrLen %*
set Data=%*
for /L %%a in (0,1,80) do (
set Char=!Data:~%%a,1!
if not “!Char!”==”” (
set /a Len=%%a+1
) else (exit /b)
)
exit /b
::—————
:: Reverse String
::—————
:: %* Str to Reverse
:: Returns %Reverse%
::——————
:ReverseStr %*
set Data=%*
call :StrLen %Data%
for /L %%a in (!Len!,-1,0) do (
set Char=!Data:~%%a,1!
set Reverse=!Reverse!!Char!
)
exit /b
Invest in your future today by enrolling in this Azure Fundamentals - Pass the Azure Fundamentals Exam with Ease: Master the AZ-900 Certification with the Comprehensive Exam Preparation Guide!
- AWS Certified AI Practitioner (AIF-C01): Conquer the AWS Certified AI Practitioner exam with our AI and Machine Learning For Dummies test prep. Master fundamental AI concepts, AWS AI services, and ethical considerations.
- Azure AI Fundamentals: Ace the Azure AI Fundamentals exam with our comprehensive test prep. Learn the basics of AI, Azure AI services, and their applications.
- Google Cloud Professional Machine Learning Engineer: Nail the Google Professional Machine Learning Engineer exam with our expert-designed test prep. Deepen your understanding of ML algorithms, models, and deployment strategies.
- AWS Certified Machine Learning Specialty: Dominate the AWS Certified Machine Learning Specialty exam with our targeted test prep. Master advanced ML techniques, AWS ML services, and practical applications.
- AWS Certified Data Engineer Associate (DEA-C01): Set yourself up for promotion, get a better job or Increase your salary by Acing the AWS DEA-C01 Certification.
Via perl script on Windows or Linux
Via python script on Windows or Linux
def reverse_string(a_string)
return a_string[::-1]
reverse_string(“etienne”) returns “enneite”
Source:
Remove all empty lines in a file
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to Remove all empty lines in a file on Linux and Windows?
Remove empty lines from file.txt via Linux command line
- Option 1: sed -i ‘/^$/d’ file.txt
- Option 2: awk ‘NF > 0’ file.txt > output.txt
- Option 3: perl -i.backup -n -e “print if /\S/” file.txt
- Option 4: grep . file.txt > output.txt
Remove empty lines from file.txt using Powershell script on Windows
List only regular file names in a directory
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to List only regular file names in a directory on Linux and Windows
Listing regular files in a directory without including . and .. files.
On Linux
Solution 1:$ ls -p | grep -v /
Solution 2: $ ls -F | grep -v ‘[/@=|]’
Solution 3: $for list in `ls` ; do ls -ld $list | grep -v ^d > /dev/null && echo $list ; done ;
Solution4:$ for list in `ls` ; do ls -ld $list | grep ^d > /dev/null || echo $list ; done ;
Solution5 (exclude sym links):$ for list in `ls` ; do ls -ld $list | grep -v ^l > /dev/null && echo $list ; done ;On Windows
Solution 1: dir /a-d /b >..\File_List.txt
prompt and read input variables from keyboard
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
Let’s find how to prompt and read input variables from keyboard while executing a script using shell, perl, python, batch and powershell (windows and Linux)
On Linux via shell
read -p “Enter your name: ” name
echo “Hi, $name. Let’s be friend!”
On Windows via powershell
$name=read-host “Enter your name:”
write-host “Hi $name, Let’s be friend!”On Windows via batch
Set /p Name=”Enter your name:”
echo “Hi %name%, Let’s be friend!”On Windows or Linux via perl
print “Enter your name “;
my $name =;
chomp $name; # Get rid of newline character at the end
print “Hello $name, let’s be friend”;On Windows or Linux via python
name=input(“Enter your name: “)
print (“Hello ” + name + ” let’s be friend”)
Replace all instances of a string in a file
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to Replace all instances of a string in a file?
- Open the file in read mode using the
open()
function. - Read the contents of the file into a string using the
read()
method. - Use the
replace()
method to replace all instances of the target string with the new string. - Open the file in write mode using the
open()
function. - Write the modified string to the file using the
write()
method. - Close the file using the
close()
method.
Here is an example code snippet:
This will replace all instances of old_string
with new_string
in the file file.txt
.
# Open the file in read mode
with open(‘file.txt’, ‘r’) as f:
# Read the contents of the file into a string
contents = f.read()
# Replace all instances of the target string
contents = contents.replace(‘old_string’, ‘new_string’)
# Open the file in write mode
with open(‘file.txt’, ‘w’) as f:
# Write the modified string to the file
f.write(contents)
# Close the file
f.close()
Shell script to replace all instances of a string in a file on Linux & Windows.
On Linux via bash script
sed “s/$stringToReplace/$replaceWith/g” $File_Name > $File_Name
On Windows using Powershell
( get-content $File_Name ) | % { $_ -replace $stringToReplace, $replaceWith } | set-content $File_Name
On Windows using Batch
set str=teh cat in teh hat
echo.%str%
set str=%str:teh=the%
echo.%str%Script Output:
teh cat in teh hat
the cat in the hatOn Windows or Linux using Perl
perl -pi.orig -e “s///g;”
On Windows or Linux using Python
Source:
Browse the internet via command line
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to browse the internet via command line on Linux and Windows?
On Linux
lynx http://google.ca
If you don’t have lynx on your linux installation, you will have to install it. On Linux Red hat, install it like this:
yum list lynx (to check the availability of the package)
yum -y install lynx (to install the package)
you can also use: curl -0 http://yoursite/index.html to get the source code of a specific file.
On Windows
start /max http://google.ca
Will open the url using your default browser.
Check how many CPU cores on Windows and on Linux
Elevate Your Career with AI & Machine Learning For Dummies PRO and Start mastering the technologies shaping the future—download now and take the next step in your professional journey!
How to check how many CPU cores I have on Windows & Linux?
What is a core in a CPU?
In summary, a core is a small CPU or processor built into a big CPU or CPU socket. It can independently perform or process all computational tasks. From this perspective, we can consider a core to be a smaller CPU or a smaller processor within a big processor.
Today, CPUs have been two and 18 cores, each of which can work on a different task. A core can work on one task, while another core works a different task, so the more cores a CPU has, the more efficient it is.
Open a command prompt (Windows) or Terminal (Linux) and type:
- Windows: WMIC CPU Get /Format:List
- Linux: cat /proc/cpuinfo | grep processor | wc -l
For more details on Linux: ls /sys/devices/system/cpu/
What does 4 CPU cores mean?
A quad-core CPU has four processing cores in a single chip. It is similar to a dual-core CPU, but has four separate processors (rather than two), which can process instructions at the same time.
What is Google Workspace?
Google Workspace is a cloud-based productivity suite that helps teams communicate, collaborate and get things done from anywhere and on any device. It's simple to set up, use and manage, so your business can focus on what really matters.
Watch a video or find out more here.
Here are some highlights:
Business email for your domain
Look professional and communicate as you@yourcompany.com. Gmail's simple features help you build your brand while getting more done.
Access from any location or device
Check emails, share files, edit documents, hold video meetings and more, whether you're at work, at home or on the move. You can pick up where you left off from a computer, tablet or phone.
Enterprise-level management tools
Robust admin settings give you total command over users, devices, security and more.
Sign up using my link https://referworkspace.app.goo.gl/Q371 and get a 14-day trial, and message me to get an exclusive discount when you try Google Workspace for your business.
Google Workspace Business Standard Promotion code for the Americas
63F733CLLY7R7MM
63F7D7CPD9XXUVT
63FLKQHWV3AEEE6
63JGLWWK36CP7WM
Email me for more promo codes
Active Hydrating Toner, Anti-Aging Replenishing Advanced Face Moisturizer, with Vitamins A, C, E & Natural Botanicals to Promote Skin Balance & Collagen Production, 6.7 Fl Oz
Age Defying 0.3% Retinol Serum, Anti-Aging Dark Spot Remover for Face, Fine Lines & Wrinkle Pore Minimizer, with Vitamin E & Natural Botanicals
Firming Moisturizer, Advanced Hydrating Facial Replenishing Cream, with Hyaluronic Acid, Resveratrol & Natural Botanicals to Restore Skin's Strength, Radiance, and Resilience, 1.75 Oz
Skin Stem Cell Serum
Smartphone 101 - Pick a smartphone for me - android or iOS - Apple iPhone or Samsung Galaxy or Huawei or Xaomi or Google Pixel
Can AI Really Predict Lottery Results? We Asked an Expert.
Djamgatech
Read Photos and PDFs Aloud for me iOS
Read Photos and PDFs Aloud for me android
Read Photos and PDFs Aloud For me Windows 10/11
Read Photos and PDFs Aloud For Amazon
Get 20% off Google Workspace (Google Meet) Business Plan (AMERICAS): M9HNXHX3WC9H7YE (Email us for more)
Get 20% off Google Google Workspace (Google Meet) Standard Plan with the following codes: 96DRHDRA9J7GTN6(Email us for more)
FREE 10000+ Quiz Trivia and and Brain Teasers for All Topics including Cloud Computing, General Knowledge, History, Television, Music, Art, Science, Movies, Films, US History, Soccer Football, World Cup, Data Science, Machine Learning, Geography, etc....
List of Freely available programming books - What is the single most influential book every Programmers should read
- Bjarne Stroustrup - The C++ Programming Language
- Brian W. Kernighan, Rob Pike - The Practice of Programming
- Donald Knuth - The Art of Computer Programming
- Ellen Ullman - Close to the Machine
- Ellis Horowitz - Fundamentals of Computer Algorithms
- Eric Raymond - The Art of Unix Programming
- Gerald M. Weinberg - The Psychology of Computer Programming
- James Gosling - The Java Programming Language
- Joel Spolsky - The Best Software Writing I
- Keith Curtis - After the Software Wars
- Richard M. Stallman - Free Software, Free Society
- Richard P. Gabriel - Patterns of Software
- Richard P. Gabriel - Innovation Happens Elsewhere
- Code Complete (2nd edition) by Steve McConnell
- The Pragmatic Programmer
- Structure and Interpretation of Computer Programs
- The C Programming Language by Kernighan and Ritchie
- Introduction to Algorithms by Cormen, Leiserson, Rivest & Stein
- Design Patterns by the Gang of Four
- Refactoring: Improving the Design of Existing Code
- The Mythical Man Month
- The Art of Computer Programming by Donald Knuth
- Compilers: Principles, Techniques and Tools by Alfred V. Aho, Ravi Sethi and Jeffrey D. Ullman
- Gödel, Escher, Bach by Douglas Hofstadter
- Clean Code: A Handbook of Agile Software Craftsmanship by Robert C. Martin
- Effective C++
- More Effective C++
- CODE by Charles Petzold
- Programming Pearls by Jon Bentley
- Working Effectively with Legacy Code by Michael C. Feathers
- Peopleware by Demarco and Lister
- Coders at Work by Peter Seibel
- Surely You're Joking, Mr. Feynman!
- Effective Java 2nd edition
- Patterns of Enterprise Application Architecture by Martin Fowler
- The Little Schemer
- The Seasoned Schemer
- Why's (Poignant) Guide to Ruby
- The Inmates Are Running The Asylum: Why High Tech Products Drive Us Crazy and How to Restore the Sanity
- The Art of Unix Programming
- Test-Driven Development: By Example by Kent Beck
- Practices of an Agile Developer
- Don't Make Me Think
- Agile Software Development, Principles, Patterns, and Practices by Robert C. Martin
- Domain Driven Designs by Eric Evans
- The Design of Everyday Things by Donald Norman
- Modern C++ Design by Andrei Alexandrescu
- Best Software Writing I by Joel Spolsky
- The Practice of Programming by Kernighan and Pike
- Pragmatic Thinking and Learning: Refactor Your Wetware by Andy Hunt
- Software Estimation: Demystifying the Black Art by Steve McConnel
- The Passionate Programmer (My Job Went To India) by Chad Fowler
- Hackers: Heroes of the Computer Revolution
- Algorithms + Data Structures = Programs
- Writing Solid Code
- JavaScript - The Good Parts
- Getting Real by 37 Signals
- Foundations of Programming by Karl Seguin
- Computer Graphics: Principles and Practice in C (2nd Edition)
- Thinking in Java by Bruce Eckel
- The Elements of Computing Systems
- Refactoring to Patterns by Joshua Kerievsky
- Modern Operating Systems by Andrew S. Tanenbaum
- The Annotated Turing
- Things That Make Us Smart by Donald Norman
- The Timeless Way of Building by Christopher Alexander
- The Deadline: A Novel About Project Management by Tom DeMarco
- The C++ Programming Language (3rd edition) by Stroustrup
- Patterns of Enterprise Application Architecture
- Computer Systems - A Programmer's Perspective
- Agile Principles, Patterns, and Practices in C# by Robert C. Martin
- Growing Object-Oriented Software, Guided by Tests
- Framework Design Guidelines by Brad Abrams
- Object Thinking by Dr. David West
- Advanced Programming in the UNIX Environment by W. Richard Stevens
- Hackers and Painters: Big Ideas from the Computer Age
- The Soul of a New Machine by Tracy Kidder
- CLR via C# by Jeffrey Richter
- The Timeless Way of Building by Christopher Alexander
- Design Patterns in C# by Steve Metsker
- Alice in Wonderland by Lewis Carol
- Zen and the Art of Motorcycle Maintenance by Robert M. Pirsig
- About Face - The Essentials of Interaction Design
- Here Comes Everybody: The Power of Organizing Without Organizations by Clay Shirky
- The Tao of Programming
- Computational Beauty of Nature
- Writing Solid Code by Steve Maguire
- Philip and Alex's Guide to Web Publishing
- Object-Oriented Analysis and Design with Applications by Grady Booch
- Effective Java by Joshua Bloch
- Computability by N. J. Cutland
- Masterminds of Programming
- The Tao Te Ching
- The Productive Programmer
- The Art of Deception by Kevin Mitnick
- The Career Programmer: Guerilla Tactics for an Imperfect World by Christopher Duncan
- Paradigms of Artificial Intelligence Programming: Case studies in Common Lisp
- Masters of Doom
- Pragmatic Unit Testing in C# with NUnit by Andy Hunt and Dave Thomas with Matt Hargett
- How To Solve It by George Polya
- The Alchemist by Paulo Coelho
- Smalltalk-80: The Language and its Implementation
- Writing Secure Code (2nd Edition) by Michael Howard
- Introduction to Functional Programming by Philip Wadler and Richard Bird
- No Bugs! by David Thielen
- Rework by Jason Freid and DHH
- JUnit in Action
#BlackOwned #BlackEntrepreneurs #BlackBuniness #AWSCertified #AWSCloudPractitioner #AWSCertification #AWSCLFC02 #CloudComputing #AWSStudyGuide #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AWSBasics #AWSCertified #AWSMachineLearning #AWSCertification #AWSSpecialty #MachineLearning #AWSStudyGuide #CloudComputing #DataScience #AWSCertified #AWSSolutionsArchitect #AWSArchitectAssociate #AWSCertification #AWSStudyGuide #CloudComputing #AWSArchitecture #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AzureFundamentals #AZ900 #MicrosoftAzure #ITCertification #CertificationPrep #StudyMaterials #TechLearning #MicrosoftCertified #AzureCertification #TechBooks
Top 1000 Canada Quiz and trivia: CANADA CITIZENSHIP TEST- HISTORY - GEOGRAPHY - GOVERNMENT- CULTURE - PEOPLE - LANGUAGES - TRAVEL - WILDLIFE - HOCKEY - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
Top 1000 Africa Quiz and trivia: HISTORY - GEOGRAPHY - WILDLIFE - CULTURE - PEOPLE - LANGUAGES - TRAVEL - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
Exploring the Pros and Cons of Visiting All Provinces and Territories in Canada.
Exploring the Advantages and Disadvantages of Visiting All 50 States in the USA
Health Health, a science-based community to discuss human health
- Scientists in Italy discover rare gene that could cause Alzheimer’sby /u/euronews-english on January 22, 2025 at 1:49 pm
submitted by /u/euronews-english [link] [comments]
- Childhood Vaccination Rates Continue to Slipby /u/Generalaverage89 on January 22, 2025 at 1:20 pm
submitted by /u/Generalaverage89 [link] [comments]
- Trump’s Plan to Leave the WHO Is a Health Disasterby /u/wiredmagazine on January 22, 2025 at 11:17 am
submitted by /u/wiredmagazine [link] [comments]
- FDA allows standalone use of nasal spray antidepressant Spravato (esketamine)by /u/Maxcactus on January 22, 2025 at 10:35 am
submitted by /u/Maxcactus [link] [comments]
- Eating too much red meat linked to an increased risk of dementia and cognitive declineby /u/euronews-english on January 22, 2025 at 9:49 am
submitted by /u/euronews-english [link] [comments]
Today I Learned (TIL) You learn something new every day; what did you learn today? Submit interesting and specific facts about something that you just found out here.
- TIL the T4 Program was a Nazi German euthanasia program that forcibly killed the physically or mentally disabled, the emotionally distraught, elderly people and the incurably ill. The death toll may have reached 200,000 or moreby /u/wilsonofoz on January 22, 2025 at 2:19 pm
submitted by /u/wilsonofoz [link] [comments]
- TIL that inventors of the two most impactful weapon technologies of WWII, Merle Tuve (proximity fuse) and Ernest Lawrence (uranium enrichment for the atomic bomb) were childhood friends and neighbors from the same small town in South Dakotaby /u/JiveChicken00 on January 22, 2025 at 1:38 pm
submitted by /u/JiveChicken00 [link] [comments]
- TIL that there is a species of whale that has been living in the oceans for millions of years, but it was only recently discovered due to its isolation in the deep depths.by /u/QuietKnightX on January 22, 2025 at 10:13 am
submitted by /u/QuietKnightX [link] [comments]
- TIL In the Netherland a town exists that fully encloses 22 small exclaves of a Belgian town.by /u/Bangfis on January 22, 2025 at 10:08 am
submitted by /u/Bangfis [link] [comments]
- TIL that a huge 20m (66ft) rogue wave hit the bulk carrier, MV Derbyshire with such force that it sent the ship underwater almost instantly, not even giving its crew enough time to save themselves, let alone send a distress signal.by /u/zahrul3 on January 22, 2025 at 9:10 am
submitted by /u/zahrul3 [link] [comments]
Reddit Science This community is a place to share and discuss new scientific research. Read about the latest advances in astronomy, biology, medicine, physics, social science, and more. Find and submit new publications and popular science coverage of current research.
- Black immigrants attract white residents to neighborhoods, while native Black residents move out, study finds.by /u/geoff199 on January 22, 2025 at 1:24 pm
submitted by /u/geoff199 [link] [comments]
- Antibiotics, antivirals and vaccines could help tackle dementia, study suggests. Using drugs approved for other conditions could dramatically speed up hunt for cure, experts say.by /u/mvea on January 22, 2025 at 12:10 pm
submitted by /u/mvea [link] [comments]
- Study links early emotional regulation difficulties to ADHD and conduct problems | The findings highlight the importance of early emotional development and could guide targeted support for children at risk.by /u/chrisdh79 on January 22, 2025 at 11:02 am
submitted by /u/chrisdh79 [link] [comments]
- Researchers have discovered that proteins in the mollusk’s blood not only have bacteria-killing properties, raising the possibility of a new antibiotic, but also increase the effectiveness of some existing antibiotics.by /u/chrisdh79 on January 22, 2025 at 10:59 am
submitted by /u/chrisdh79 [link] [comments]
- A new study highlights how scaling up COVID-19 testing in the USA saved an estimated 1.4 million lives and averted 7 million hospitalisations. It emphasises the vital role of rapid testing in reducing severe outcomes and preparing for future pandemics.by /u/calliope_kekule on January 22, 2025 at 10:22 am
submitted by /u/calliope_kekule [link] [comments]
Reddit Sports Sports News and Highlights from the NFL, NBA, NHL, MLB, MLS, and leagues around the world.
- NFL news roundup: Saints rescheduling HC interviews due to severe weatherby /u/EvelynClede on January 22, 2025 at 7:33 am
submitted by /u/EvelynClede [link] [comments]
- 4 arrested in connection with burglary at Joe Burrow's houseby /u/Oldtimer_2 on January 22, 2025 at 4:01 am
submitted by /u/Oldtimer_2 [link] [comments]
- Madison Keys reaches the Australian Open semifinals with a win over Elina Svitolinaby /u/Oldtimer_2 on January 22, 2025 at 3:52 am
submitted by /u/Oldtimer_2 [link] [comments]
- Ichiro Suzuki, CC Sabathia and Billy Wagner elected to Baseball Hall of Fameby /u/Oldtimer_2 on January 22, 2025 at 12:27 am
submitted by /u/Oldtimer_2 [link] [comments]
- Young collector nabs rare Paul Skenes card that could offer him a hefty haul in trade with Piratesby /u/Oldtimer_2 on January 22, 2025 at 12:16 am
submitted by /u/Oldtimer_2 [link] [comments]