Free with your library card!

View this email in your browser
Your library card gives you access to hundreds of free and reliable ways to learn and stay informed. Don’t have a Library card? Get immediate access to online information, eBooks, and classes with an eCard.Digital Image Newspapers
Your library card allows you to search current and archived issues with full-color newspaper pages, full-text articles, and content only published online. Digital image newspapers are available for the Daily Camera and Denver Post.The New York Times
Whether you are at the library or at home, you can read The New York Times daily edition and all online-only articles including news, investigations, opinion, photos, and videos by journalists from more than 150 countries around the world.Consumer Reports
Consumer Reports is an independent organization that works side by side with consumers for truth, transparency, and fairness in the marketplace. Access Consumer Reports through the user-friendly website for product reviews, news, and consumer articles.Access World News
Access World News provides extensive coverage at any level—local, state, regional, national, and international. 

America’s News Magazines
Get access to full-text articles from magazines, such as U.S. News & World Report, Newsweek, Time, Fortune, and Foreign Affairs.

Newspaper Source
Newspaper Source includes more than 860 full-text newspapers, providing more than 35 million full-text articles. In addition, the database features more than 857,000 television and radio news transcripts.

Newswires
Newswires provides near real-time access to top worldwide news from Associated Press, United Press International, PR Newswire, Xinhua, CNN Wire, and Business Wire on a continuous basis.

Regional Business News
Regional Business News incorporates coverage of more than 80 regional business publications covering all metropolitan and rural areas within the United States.

Web News
Web News provides near real-time access to thousands of top news feeds from around the globe. This collection includes over 14,000 feeds covering a range of business and general news topics.View the Full List of Online Resources

Кефалония

https://trip.dir.bg/patevoditel/zabravete-za-mikonos-veche-ne-e-hit-kefaloniya-e-nay-dobriyat-gratski-ostrov

Free Drinks in Vegas: How to Get Them & What to Order (& best places to go in 2023)

AI Resources

Audio and Video AI Tools:
————————-
1. VoicePen AI:Convert audio content into blog posts, using AI.
https://voicepen.ai

2. Krisp: AI tool for removing background voices, noises, and echo from calls.
https://krisp.ai/

3. Beatoven: AI tool for creating custom royalty-free music.
https://www.beatoven.ai/

4. Cleanvoice: AI tool for automatically editing podcast episodes.
https://cleanvoice.ai/

5. Podcastle: AI tool for studio-quality recording from your computer.
https://podcastle.ai/

6. Vidyo: AI tool for making short-form videos from long-form content.
https://vidyo.ai/

7. Maverick: AI tool for generating personalized videos at scale.
https://lnkd.in/eptCVijb

8. Soundraw: AI tool for creating original music.
https://soundraw.io/

9. Otter: AI tool for capturing and sharing insights from meetings.
https://otter.ai/

Design AI Tools:
——————-
1. Flair: AI tool for designing branded content.
https://flair.ai/

2. Illustroke: AI tool for creating vector images from text prompts.
https://illustroke.com/

3. Stockimg: AI tool for generating the perfect stock photo.
https://stockimg.ai/

4. Looka: AI tool for designing your brand.
https://looka.com/

Copy and Content AI Tools:
—————————
1. Copy: AI tool for generating copy that increases conversions.
https://www.copy.ai/

2. CopyMonkey: AI tool for creating Amazon listings in seconds.
http://copymonkey.ai/

3. Ocoya: AI tool for creating and scheduling social media content.
https://www.ocoya.com/

4. Unbounce Smart Copy: AI tool for writing high-performing cold emails at scale.
https://unbounce.com/

5. Puzzle: AI tool for building a knowledge base for your team and customers.
https://www.puzzlelabs.ai/

Image and Content Clean-up AI Tools:
——————————-

1. Cleanup: AI tool for removing objects, defects, people, or text from pictures.
https://cleanup.pictures/

2. Inkforall: AI tool for content generation, optimization, and performance.
https://inkforall.com/

AI Data Presentation :
——————–
1. STORYD : It creates AI data presentations leaders love, in seconds. Beta goes live in a few weeks.
https://storyd.ai

AI Database:
—————
1. SyntheticAIdata : https://lnkd.in/efKXxUkU
2. theresanaiforthat : https://lnkd.in/esexMFzt

pfSense Qemu Guest Agent

https://codingpackets.com/blog/pfsense-qemu-guest-agent/

Intro

I use Proxmox for my hypervsior and recently installed pfSense as a firewall. I use the QEMU Guest Agent to get more detailed info about the VM’s that are running in the Proxmox console.

This post shows the process to get the QEMU Guest Agent running on a pfSense firewall.

Software Versions

The following software versions were used in this post.

  • pfSense Community Edition – 2.6.0
  • QEMU Guest Agent – 5.0.1

Install

Install the qemu-guest-agent package.

cmd

pkg install -y qemu-guest-agent

If you get an error “insufficient privileges to install packages”, you need to make sure the default admin account is enabled and you need to log in as admin. You may need to install the sudo package too.

# pkg install sudo

The default sudoers file is located here: /usr/local/etc/sudoers. To edit it and add rules you need to use the visudo command.

$ su -
$ visudo

Then to give a user access to everything as root:

userX ALL=(ALL) ALL

To become root (as userX):

$ sudo -s
-or-
$ sudo -i

Once installed, there is a note on how to setup the agent.

=======================================================
Modify your `/etc/rc.conf` by adding these settings

qemu_guest_agent_enable="YES"
qemu_guest_agent_flags="-d -v -l /var/log/qemu-ga.log"

and run
# service qemu-guest-agent start

For detailed help use `qemu-ga -h`
=======================================================

Configure

I am following the steps in the script here (with slight modifications).

Append to the /etc/rc.conf.local file.

cmd

cat >> /etc/rc.conf.local << EOF
qemu_guest_agent_enable="YES"
qemu_guest_agent_flags="-d -v -l /var/log/qemu-ga.log"
#virtio_console_load="YES"
EOF

Create the /usr/local/etc/rc.d/qemu-agent.sh file.

cmd

cat > /usr/local/etc/rc.d/qemu-agent.sh << EOF
#!/bin/sh
sleep 3
service qemu-guest-agent start
EOF

Make the /usr/local/etc/rc.d/qemu-agent.sh file executable.

cmd

chmod +x /usr/local/etc/rc.d/qemu-agent.sh

Start the QEMU Guest Agent service.

cmd

service qemu-guest-agent start

Confirm the QEMU Guest Agent service is running.

cmd

service qemu-guest-agent status

# Output
qemu_guest_agent is running as pid 85066.