Tech Rumors
3 subscribers
235K photos
239K links
Download Telegram
dev.to

November 15-19, 2022 FLiP Stack Weekly
November 15-19, 2022 FLiP Stack Weekly
More talks coming this month! Join Tim around the virtual world at various conferences.
MerryChristmas

Podcast
Take a look at recent podcasts in audio or video format.

https://www.buzzsprout.com/2062659/11463086-messaging-streaming-and-events-101-episode-1-of-crossing-the-streams

https://www.youtube.com/watch?v=U8aPBhlvDHU&feature=emb_imp_woyt

CODE + COMMUNITY
Join my meetup group NJ/NYC/Philly/Virtual. We will have a hybrid event on December 8th.

http…
#apachepulsar #opensource #java


theverge.com

1. Hyundai wants to help you put solar and batteries in your home
Hyundai Home aims to be a one-stop shop for sustainable energy products. | Image: Hyundai

A sustainable future requires a multipronged approach. It’s more than just replacing a gas car with one that runs on electrons or sitting back and hoping that your local utility moves as quickly as possible to renewables.
For those with the means, solar panels paired with a home battery can add an additional layer of eco-consciousness and power stability to their lives. Yet navigating the myriad solar pa…

2. Black Friday sales on Sonos soundbars are live at Best Buy
The second-gen Sonos Beam and other Sonos speakers are on sale at Best Buy. | Photo by Chris Welch / The Verge

Best Buy is rolling out its Black Friday sales on Sonos soundbars in addition to its existing Black Friday sales. From now through November 28th, you can find a number of excellent Sonos speakers, all discounted to their lowest price ever. There are plenty of options when it comes to soundbars and speakers, but Sonos makes some of the best on the market, making this sale worth checkin…
dev.to

1. A quick overview about AWS Application Composer
A couple of days ago, in re:invent 2022 , Werner Vogels, Amazon's CTO announced launching "AWS Application Composer", a visual designer that you can use to build your serverless applications from multiple AWS services 🤯.

It has an interactive builder to design your application
architecture by selecting, connecting, and defining AWS resources on a canvas. As you design, Application Composer automatically develops your infrastructure as code (IaC) templates, following AWS best practices.

You ca…
#aws #cloud #devops #community

2. December 5, 2022: FLiP Stack Weekly
December 5, 2022

FLiP Stack Weekly

A few good talks and some cool stuff for the rest of the year.

Check out our channel:

https://www.youtube.com/@streamnativecommunity8124/featured

New Stuff

https://cwiki.apache.org/confluence/display/NIFI/Release+Notes#ReleaseNotes-Version1.19.0

A quick preview of Apache Pulsar + Apache Pinot.

type="application/x-shockwave-flash"
wmode="transparent" width="425" height="350" />

https://youtu.be/KMbTlmoDXXA

https://github.com/tspannhw/pulsar-thermal
#apachepulsar #apacheflink #apachenifi #opensource
dev.to

Dec 12, 2022 FLiP Stack Weekly
Dec 12, 2022 FLiP Stack Weekly

People are FLiPN out about https://chat.openai.com/chat. It is a game changer, add another few years and this should be 10x better.

ChatGPT wrote me this Pulsar function:

import org.apache.pulsar.functions.api.Context;
import org.apache.pulsar.functions.api.Function;

public class BertQAFunction implements Function {

@Override
public String process(String input, Context context) {
// Parse the input JSON into a Java object using a JSON library
// such as Ja…
#apachepulsar #apacheflink #opensource #serverless
dev.to

1. FLiP Stack Weekly 19-dec-2022
19-Dec-2022

FLiP Stack Weekly

Welcome to one of the last newsletters of 2022.

It is a honor to receive recognition from my long term blog supersite DZone. Always the best place for #IoT, #BigData, #ML, #Streaming, #ML and other technology deep dives, ref cards and in-depth reports. Thanks for marking me a Top AI/ML Expert and Top IoT Expert.

New Stuff

https://github.com/tspannhw/FLiP-Pi-Iceberg-Thermal

Release of 0.1.0 for Spring + Apache Pulsar Framework
https://spring.io/blog/2022/12/1
#apachepulsar #opensource #apacheflink #apachenifi

2. c ++ 6-dars
#include
using namespace std ;

int main5() {

// kutubxona

float a;
cin >> a;

cout << round(a);

return 0;
}

int main4() {
int son;
cin >> son;

char a = char (son);
cout << son << endl;
cout << a;

return 0;
}

int main3() {

int a = 65;

char b = 'z';

cout << char (a);
cout << endl << int (b);

return 0;
}

int main2() {

// bool => boolean

bool a = true;

cout << (10<5);

return 0;
}

int main1() {

int a = 10;
float b = 10.5;
double c = 10.252153515136;
string d = "ikkichi…
#programming

3. Overcoming Struggles: 6 Tips for Software Engineers Looking to Thrive in Their Career
If you are a software engineer struggling through your career, here are some tips that might help you get back on track:

Seek guidance and mentorship from experienced professionals. Don't be afraid to ask for help or advice from your colleagues or mentors. They can provide valuable insights and guidance that can help you overcome your struggles.
Keep learning and improving your skills. The field of software engineering is constantly evolving, so it's important to stay up-to-date with the latest…
#career #help #advice #beginners
dev.to

1. AWS Services for Machine Learning
AWS-Services-for-Machine-Learning

Amazon Augmented AI (Amazon A2I)

is a machine learning service that makes it easy to build the workflows required for human review.

Amazon CodeGuru

is a developer tool that provides intelligent recommendations to improve code quality and identify an application’s most expensive lines of code.

CodeGuru Reviewer

uses machine learning and automated reasoning to identify critical issues, security vulnerabilities, and hard-to-find bugs during application dev…
#aws #machinelearning #ai #cloud

2. Final FLiP Stack Weekly of 2022
31-Dec-2022

FLiP Stack Weekly

Welcome to the first newsletter of 2023. I will be on vacation so we will skip a week. Lots of things will be in the next one.

Tim Spann @PaaSDev

New Stuff

HTAP Virtual Summit

https://www.pingcap.com/htap-summit/auth/login/?next=/htap-summit/auth/watch/super-charging-real-time-analytics-at-scale

Spring Pulsar Reactive has been updated and I've updated my example.

https://github.com/tspannhw/spring-pulsar-reactiveair

PODCAST

Take a look at recent podcast…
#apachepulsar #apacheflink #opensource #java
dev.to

1. SSH Key Pair
SSH-Key

Accessing a remote repository via SSH without the need to provide username and password every time I pull or push.

Go to your command line prompt (e.g. the GitHub CLI installed previously), and run:

ssh-keygen

Use the same command for Windows, only with .exe extension.

Just hit Enter for each of the questions asked...
It will generate a .ssh/ directory in your home dir with key-pair inside, in the form of 2 files:

id_rsa - is the private key - which I always keep locally on my comp…
#osdc #opensource #ssh

2. FLiP Stack Weekly 28-Jan-2023
28-Jan-2023

FLiP Stack Weekly

Welcome to the fourth newsletter of 2023.

Tim Spann @PaaSDev

Get some training

https://www.eventbrite.com/e/practical-apache-pulsar-application-development-by-streamnative-tickets-522950859097

PODCAST

Take a look at recent podcasts in audio or video format.

https://www.buzzsprout.com/2062659/11463086-messaging-streaming-and-events-101-episode-1-of-crossing-the-streams

https://www.youtube.com/watch?v=U8aPBhlvDHU&feature=emb_imp_woyt

CODE + COMMUNITY

Jo…
#apachepulsar #apacheflink #opensource

3. Insurance Cost Prediction using Machine Learning with Python.
Machine learning (ML) is a sub set of artificial intelligence (AI) that allows software applications to become more accurate at predicting outcomes without being explicitly programmed to do so.
Machine learning algorithms uses historical data as input to predict new output values.

In this project, I worked on developing an end to end machine learning project using linear regression.
Data cleaning, Extensive data visulaization, Exploratory data analysis was also done.

Data Description:

The dat…
#machinelearning #python #datascience #ai
dev.to

1. I went to the Firebase Summit 2022 -NYC
Hi friends! I recently had the fantastic opportunity to attend the Firebase Summit 2022 in New York City! I’m here to tell you how it went and share some fantastic moments of this great event.

First of all, if you don’t know what Firebase is, that’s okay!

What is Firebase?
A lot of you have heard of Firebase, which is way more than just a database.

Firebase is a web and mobile development platform. It has 19 products and is used by millions of apps. Also, it is backed by our friends at Google…
#webdev #firebase #mobile #cloud

2. The idea,🌐Browsemates- Connect with others on the same webpage as you🔥
Introduction

The world is rapidly changing 🌍 and with the rise of remote work and online collaboration, the way people communicate and collaborate while browsing the web has become increasingly important 💻 That's why I am thrilled 🤗 to announce my latest project, Browsemates 🚀 - a platform that connects people on the same webpage in real-time 💬

What is Browsemates? 🤔

At its core, Browsemates is a real-time communication platform that allows users to communicate with others who are on the sam…
#webdev #javascript #programming #startup

3. FLiP Stack Weekly 28 Jan 2023
28-Jan-2023

FLiP Stack Weekly

Welcome to the fourth newsletter of 2023.

Tim Spann @PaaSDev

Get some training

https://www.eventbrite.com/e/practical-apache-pulsar-application-development-by-streamnative-tickets-522950859097

PODCAST

Take a look at recent podcasts in audio or video format.

https://www.buzzsprout.com/2062659/11463086-messaging-streaming-and-events-101-episode-1-of-crossing-the-streams

https://www.youtube.com/watch?v=U8aPBhlvDHU&feature=emb_imp_woyt

CODE + COMMUNITY

Jo…
#apachepulsar #opensource #apacheflink #apachenifi
dev.to

FLiP Stack Weekly for 13-Feb-2023
13-February-2023 FLiP Stack Weekly Welcome to the sixth newsletter of 2023. ...
#apachepulsar #apacheflink #apachenifi #opensource
dev.to

FLiP-FLaNK Stack Weekly 20-February-2023
20-February-2023 FLiPN-FLaNK Stack Weekly Welcome to the seventh newsletter...
#apachepulsar #apacheflink #apacenifi #apachekafka
dev.to

FLiPN-FLaNK Stack Weekly 27Feb2023
27-February-2023 FLiPN-FLaNK Stack Weekly Welcome to the eighth newsletter of...
#apachenifi #apacheflink #apachekafka #apachepulsar
dev.to

FLiPN-FLaNK Stack for March 6, 2023
06-March-2023 FLiPN-FLaNK Stack Weekly Welcome to the nineth newsletter of...
#apachenifi #apachepulsar #streaming #apacheflink
dev.to

FLiP Stack Weekly for 13 March 2023
13-March-2023 FLiPN-FLaNK Stack Weekly Welcome to the tenth newsletter of 2023....
#apachenifi #apacheflink #apachekafka #apachepulsar