Posts

Showing posts from April, 2021

Digital Marketing

How to fix mailx sends text body as an attachment

Due to non-US-ASCII or non-printable characters, when mailx processes the input, it correctly sets the MIME type to application/octet-stream when non-US-ASCII or non-printable characters are present. Non-Unix text files that use carriage return (^M, \r) characters in addition will be treated as binary data; to send such files as text, strip these characters e. g. by my-script.sh | tr -d '[\015\200-\377]' | mailx -s "my mail" ...

Log PowerMTA transient errors to monitor throttling by ISPs

The PowerMTA accounting logs are often used to record deliveries or bounces.  Enabling logging of transient errors for debugging and information about the delivery, and how to optimize it.  When ISPs' limit is reached, they return a temporary error, which can be logged by PowerMTA. This information can be used to adjust the volume for IP seasoning (warm-up) or maximum rate of sending, or tune the configuration of the back-off mode.

Delete a git branch remotely

git push <remote> --delete <branch>. Example: git push origin --delete my-branch

List the remote git branches

 $ git branch -r

Install Ansible on EC2

 sudo amazon-linux-extras install ansible2

Setting Ansible Inventory

Ansible allows us to manage multiple nodes or hosts at the same time. The default location for the inventory resides in /etc/ansible/hosts. In this file, we can define groups and sub-groups. Example: [docker_group] docker_host ansible_host=your-managed-host-ip ansible_user=ansadmin ansible_ssh_private_key_file=/home/ansadmin/.ssh/ansible ansible_python_interpreter=/usr/bin/python3 ansible_1 ansible_connection=local

Share WSL ssh connection to VScode on Windows

 In a .bat file of your choice, write C:\Windows\system32\wsl.exe ssh %* In VSCode configurations, change remote.ssh.path to the path of the file created in step 1, such as c:\Users\goyuninfo\ssh.bat Leave remote.SSH.config empty. 

Convert PuTTYGen keys

Open PuTTYGen locally and load the private key you want to convert. Select Conversions > Export OpenSSH key from the application menu. Save the converted key to a local location under the.ssh directory in your user profile folder (for example C:\Users\youruser\.ssh). Validate that this new local file is owned by you and no other user has permissions to access it.

Reset VS Code to the default settings

Press F1 key and Search for open settings json and select Preferences: Open Settings (JSON). Delete everything inside the root braces and save the file.

The Visual Studio Code Remote - SSH extension allows you to open a remote folder on any remote machine, virtual machine, or container with a running SSH server

Take full advantage of VS Code's feature set on remote SSH server.  Once connected to a server, you can interact with files and folders anywhere on the remote filesystem.

Installing Google Authenticator on EC2 Instance

Install and enable EPEL on EC2 cd /tmp wget -O epel.rpm –nv \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo yum install -y ./epel.rpm Installing Google Authenticator sudo yum install google-authenticator -y

Install #Ansible on CentOS 8

dnf install python38 pip3 install ansible ansible --version

Run-Ansible-inside-a-Docker-container

Run-Ansible-inside-a-Docker-container FROM ubuntu ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y gcc python-dev libkrb5-dev && \ apt-get install python3-pip -y && \ pip3 install --upgrade pip && \ pip3 install --upgrade virtualenv && \ pip3 install pywinrm[kerberos] && \ apt install krb5-user -y && \ pip3 install pywinrm && \ pip3 install ansible

In the world of CI/CD process, Jenkins is a popular tool for provisioning development/production environments as well as application deployment through pipeline flow.

Share ssh conection from WSL to visual studio code

Create ssh.bat file under windows with the content: C:\Windows\system32\wsl.exe ssh %* And than set VS Code setting "remote.SSH.path" to point to that bat file.

Difference between Ansible Playbook and Roles

        Roles    Playbooks Roles are reusable subsets of a play. Playbooks contain Plays. A set of tasks for accomplishing certain role. Mapps among hosts and roles. Example: common, webservers. Example: site.yml, fooservers.yml, webservers.yml.

Advantages of Ansible

Agentless, it doesn’t require any extra package/daemons to be installed Very low overhead Good performance Idempotent Very Easy to learn Declarative not procedural

#Cloud Spot Virtual Machines are great for workloads that can handle interruptions like batch processing jobs, dev/test environments, large compute workloads, and more.

Email is the key to your customer communication strategy.

DMARC is the key to improving Email Deliverability!

Email is the key to your customer communication strategy.

DMARC is the key to improving Email Deliverability!

BSON is a binary-encoded format that extends the JSON model to provide additional data types and other capabilities.

AES vs SHA

The Advanced Encryption Standard (AES) is a symmetric encryption standard. SHA isn't encryption, it's a one-way hash function. 

Fix mongo Error parsing command line: unrecognised option '--tls'

 MongoDB Atlas requires SSL/TLS for all connections. This command-line error indicates your version of the mongo shell does not include SSL/TLS support or your version doesn't match with the server.

Integration With Google Cloud Enables Enterprise Customers To Securely Encrypt and Control All Data Stored on Google Cloud

Integration With Google Cloud Enables Enterprise Customers To Securely Encrypt and Control All Data Stored on Google Cloud https://prn.to/3t1BVLq  

#Google #Cloud joins the #FinOps Foundation

Google Cloud today announced that it is joining the FinOps Foundation as a Premier Member. 

#Cloud managed disks must be paid for whether they're currently in use or not.

Edward Jones named one of the best employers in Canada for 19th year in a row

https://www.edwardjones.ca/ca-en/

Edward Jones named one of the best employers in Canada for 19th year in a row

https://www.edwardjones.ca/ca-en/

How to customize navbar in blogger?

You can click Customize on NavBar while visiting your blog. The Edit HTML page under Template tab should be loaded. Click on the drop down box beside Change the Blogger NavBar and select Off . Click on SAVE TEMPLATE CHANGES button when done. 

How to customize navbar in blogger?

You can click Customize on NavBar while visiting your blog. The Edit HTML page under Template tab should be loaded. Click on the drop down box beside Change the Blogger NavBar and select Off . Click on SAVE TEMPLATE CHANGES button when done. 

How to customize navbar in blogger?

You can click Customize on NavBar while visiting your blog. The Edit HTML page under Template tab should be loaded. Click on the drop down box beside Change the Blogger NavBar and select Off . Click on SAVE TEMPLATE CHANGES button when done. 

What is an RSS feed?

An RSS feed is a web format used to serve regularly changing content. If a website you like has an RSS feed, you can add it into your reader and stay up-to-date with new articles without even navigating to the website itself. RSS feeds are typically used for news websites, blogs and podcasts. Advantages of using an RSS reader are that you no longer have to visit individual websites separately to get updates, and you will no longer miss out on the latest news or the newest episodes of your favorite podcasts.

Hypermedia as the Engine of Application State (HATEOAS) is a component of the REST application architecture that distinguishes it from other network application architectures.

A REST client enters a REST application through a simple fixed URL. All future actions the client may take are discovered within resource representations returned from the server. The media types used for these representations, and the link relations they may contain, are standardized. The client transitions through application states by selecting from the links within a representation or by manipulating the representation in other ways afforded by its media type. In this way, RESTful interaction is driven by hypermedia, rather than out-of-band information.

Jakarta #Servlet is the quintessential API in Jakarta EE.

Jakarta #Servlet is the quintessential API in Jakarta EE.

#JSF 2.3 officially deprecated its own managed bean system in favor of using #CDI beans

Best practices for using your #AWS Cloud9 environment

Use source control and backup your environment frequently. AWS Cloud9 does not perform automatic backups. Perform regular updates of software on your environment. AWS Cloud9 does not perform automatic updates on your behalf. Turn on AWS CloudTrail in your AWS account to track activity in your environment.  Only share your environment with trusted users.

Best practices for using your #AWS Cloud9 environment

Use source control and backup your environment frequently. AWS Cloud9 does not perform automatic backups. Perform regular updates of software on your environment. AWS Cloud9 does not perform automatic updates on your behalf. Turn on AWS CloudTrail in your AWS account to track activity in your environment.  Only share your environment with trusted users.

Educational television

 Public Broadcasting Service (PBS) Annenberg Foundation (The Annenberg Channel) NASA TV TVOntario Discovery Channel

Public Broadcasting Service (PBS) is an American public broadcaster and television program distributor.

PBS is a nonprofit organization and the most prominent provider of educational television programming to public television stations in the United States

Past performance is not a predictor of future results.

All investing involves risk of loss and individual investments may vary.

5G is one of the greatest arrivals in technology since the birth of the internet.

5G is one of the greatest arrivals in technology since the birth of the internet.

Use pip to install the #aws-shell

 To use pip to install the aws-shell, run the following command. sudo pip install aws-shell

Lightsail is the easiest way to get started with #AWS

Lightsail provides developers compute, storage, and networking capacity and capabilities to deploy and manage websites and web applications in the cloud. Lightsail includes everything you need to launch your project quickly—a virtual machine, SSD-based storage, data transfer, DNS management, and a static IP—for a low, predictable monthly price.

Until June 30th 2021, all new and existing AWS customers can try the t4g.micro instances free for up to 750 hours per month.

During the free-trial period, customers who run a t4g.micro instance will automatically get 750 free hours per month deducted from their monthly bill through June 2021. 

[On JVM] Until June 30th 2021, all new and existing AWS customers can try the t4g.micro instances free for up to 750 hours per month.

During the free-trial period, customers who run a t4g.micro instance will automatically get 750 free hours per month deducted from their monthly bill through June 2021. 

[On JVM] Until June 30th 2021, all new and existing AWS customers can try the t4g.micro instances free for up to 750 hours per month.

During the free-trial period, customers who run a t4g.micro instance will automatically get 750 free hours per month deducted from their monthly bill through June 2021. 

TLS is enabled on Amazon #DocumentDB clusters by default

Linux find command

Usage: find [-H] [-L] [-P] [-Olevel] [-D debugopts] [path...] [expression] default path is the current directory; default expression is -print expression may consist of: operators, options, tests, and actions: operators (decreasing precedence; -and is implicit where no others are given):       ( EXPR )   ! EXPR   -not EXPR   EXPR1 -a EXPR2   EXPR1 -and EXPR2       EXPR1 -o EXPR2   EXPR1 -or EXPR2   EXPR1 , EXPR2 positional options (always true): -daystart -follow -regextype normal options (always true, specified before other expressions):       -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf       --version -xdev -ignore_readdir_race -noignore_readdir_race tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N       -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME       -ilname PATTERN -iname PATTERN -inum N -iwholename PATTERN -iregex PATTERN       -links N -lname PATTERN -mmin N -mtime N -name PATTERN -newer FILE       -nouser -nogroup

A SQL Join statement is used to combine data or rows from two or more tables based on a common field between them.

Different types of SQL Joins are: INNER JOIN LEFT JOIN RIGHT JOIN FULL JOIN

Immersive Network Partners With Blockchain Mega-Platform Starport To Connect Entertainment ...

"Today's launch has made it clear that the future of our industry will include blockchain technology and cryptocurrency network financing." Funding ...

Cardano Blockchain Achieves 100% Decentralization – Community Now Controls All Block ...

Meanwhile, the blockchain's native cryptocurrency ADA traded higher at $1.20 at press time. ADA has rallied over 566% since the beginning of the ...

Better Business Bytes: Curious about cryptocurrency?

Cryptocurrency is a resource for investing and transferring money all over the world without incurring hefty fees or government regulation. Unlike the U.S. ...

San Diego Padre Fernando Tatis, Jr. has inspired a new cryptocurrency: The TatisCoin

Baseball's hottest player is getting in on the cryptocurrency craze — even if it isn't his idea. A 22-year-old San Diego Padres fan has created his own ...

'Blockchain Recovery' Scam Is Posing as a Legit Firm, UK FCA Warns

An audacious new scamming syndicate is targeting cryptocurrency investors by imitating a legitimate firm supervised by the U.K.'s Financial Conduct ...

iM Intelligent Mining (iM) Announces Solar-Powered Blockchain Mining

Token holders retain fractional ownership of autonomous mining farms whose present value is independent of cryptocurrency , but whose potential value ...

Affiliate Marketing Tracking Software Market 2021 Analysis To Observe Strong Development By ...

The Global Affiliate Market research study is a full compilation of the information related to all the crucial aspects of the Affiliate industry. The in depth ...

Online Marketing Platform Market 2021 | Covid19 Impact Analysis | Business Demand, Cost ...

The report evaluates the global Online Marketing Platform market size, share, and growth rate and provides an accurate ... Affiliate Marketing . Industry ...

Argon Announces a New Blockchain Platform for Freelancers

Argon offers freelancers the chance to participate in the latest blockchain technology. The freelance world post-pandemic continues to expand, with ...

PM Lee Hsien Loong warns his Twitter profile used on cryptocurrency platform

... his Twitter profile has been used without his authorisation on a blockchain platform for users to buy and speculate with its proprietary cryptocurrency .

Chinese hydropower hub reveals 'blockchain computing' plan

Quick Take. The government of the Chinese province of Yunnan has set out a plan to support local blockchain development. One notable part of the plan ...

Iowa House approves bill to legally recognize blockchain smart contracts

The Iowa House of Representatives passed a bill this week that seeks to legally recognize transactions and registrations made via blockchain smart ...

Global Affiliate Marketing Platform Market 2019-2025 Top Companies Analysis – ConvertKit ...

Global Affiliate Marketing Platform Market 2019-2025 Top Companies Analysis – ConvertKit, Tapgerine, eBay, Shopify, MaxBounty, Clickbank, ...

United States: MoForecast: Predictions On Cryptocurrency

James Koukios speaks with Dario de Martino and Brian Kidd about what to expect in cryptocurrency regulation under the Biden Administration.

Orbs Blockchain to Pioneer Single-Sided Liquidity for Yield Farming

Public enterprise blockchain Orbs has announced the launch of a liquidity-as-a-service solution that enables users to participate in yield farming using ...

Amsterdam-headquartered Hotmart raises €110M to grow its digital enablement platform ...

The company offers features like product and content management, email marketing, affiliate marketing , payment via Hotpay, PCI Compliance and ...

Affiliate Marketing Platform Market Next Big Thing | Major Giants- Amazon, eBay, Shopify, Clickbank

The latest update of Global Affiliate Marketing Platform Market study provides comprehensive information on the development activities by industry ...

Fruit & Vegetable Seeds Market to Witness Robust Expansion by 2027 | Bayer Cropscience ...

Fruit & Vegetable Seeds Market research is an intelligence report with ... Global Affiliate Marketing Platform Market 2025: AWIN, ShareASale, Taobao, ...

Global Affiliate Marketing Platform Market Industry's Quantitative and Qualitative Insights Into ...

Global Affiliate Marketing Platform Market Size Analysis – Competition Benchmarking, Industry Trends, Market Share & Forecast, 2020-2025. The ...

Top 3 common misconceptions about blockchain

A cryptocurrency is a digital asset used as a medium of exchange, like the Euro or US dollar. · Blockchain is a public ledger that uses a chain of blocks to ...

Riot Blockchain Stock Price Target Gets a Big Boost

Tear might be an understatement when considering Bitcoin miner Riot Blockchain's (RIOT) performance. The stock is up by a barely believable ...

Mark Cuban on his cryptocurrency portfolio: 'I own a lot of Ethereum because I think it's the closest ...

Cuban is also very interested in Ethereum — the blockchain where ether, the second largest cryptocurrency below bitcoin, is built — mainly due to the ...

Is Chipotle's bitcoin burrito deal bullish for cryptocurrency?

Chipotle chief marketing officer Chris Brandt on giving away $100k worth of bitcoin and $100k worth of burritos for National Burrito Day. Chipotle is ...

How TikTok Influencer & Others Lost Money In 'Mando' Cryptocurrency Scam

A TikTok creator has recently issued an apology video for promoting the 'Mando' cryptocurrency after it proved to be a scam — claiming to have lost ...

Best cryptocurrency to invest in April 2021: forget about BTC and ETH

Tron was founded by the charismatic Justin Sun, who is a regular commentator on Twitter and recently paid $6m for a piece of digital blockchain art.

UK AML update: New obligations for cryptocurrency firms

Mark Steward, executive director of enforcement and market oversight at the U.K. Financial Conduct Authority (FCA), recently shared insights into the ...

Lucas Lee-Tyson: The Young Online Advertising Pro Who Sharpened His Expertise and Now ...

... trading stocks, Amazon FBA, affiliate marketing , and a few more, Lucas continued fiddling around with other business models until he discovered ...

Turkey demands user information from cryptocurrency platforms

Treasury and Finance Ministry was said to have asked for information from ID number and title to the value of the cryptocurrency in Turkish lira. In a ...

QuikNode is building a blockchain developer cloud platform to compete with AWS

The NFT boom and rising cryptocurrency prices have brought more attention to applications running on the blockchain , but the dominant cloud service ...

Casivo.co.uk Promises To Find The Best Casino Sites in the UK

The company also has successful brands in other markets, including ... where they continue to be a great example of how affiliate marketing should be ...

Music School Accepts Cryptocurrency For Lessons

The Morningside School of Music in Edinburgh is the first music school in Scotland to accept cryptocurrency as payment for music lessons.

Watch out for cryptocurrency fraud

In recent months, Saskatchewan has seen an increase in fraudulent investment opportunities that involve cryptocurrency . The Financial and ...

Patents on Transactions Using Cryptocurrency: Square versus PayPal

... on blockchain technology that uses a network of computers to keep a public ledger of past transactions. The most popular cryptocurrency is Bitcoin, ...

How Overstock used blockchain to distribute its digital dividend

While blockchain is a disruptive force in the capital markets, there haven't been many IR use-cases identified yet – but Overstock could be paving the ...

How Blockchain Enables Purpose-Driven Customers to Shop Green

While much has been said about blockchain and climate change since Elon Musk, founder of one of the world's most prominent purpose-driven brands, ...

How Blockchain Enables Green Buyers to "Shop Green"

Industry must account for its contribution to flooding, drought, deforestation, stripmining, and other unsustainable practices. Though governments must ...

Cryptocurrency Filecoin Beats Chainlink and LTC

Cryptocurrency Filecoin (FIL) has entered the list of top 10 digital currencies in the world after the digital asset jumped approximately 40% in a single ...

Tracking innovation affiliate marketers could see in the future

This is one area of affiliate marketing that needs further development to better help detect weaknesses in programs and aid with full optimisation.

How Affiliate Managers Can Leverage Clubhouse To Grow Their Affiliate Programs

Affiliate Marketing Strategist. Owner of Affiliate Insider (An Affiliate Marketing Agency, Media Hub + Training Business). Beautiful Young African ...

Affiliate Marketing Tracking Software Market Top Vendors like Everflow, LinkTrust, AffTrack, Hitpath

The report presents a thorough overview of the competitive landscape of the global Affiliate Marketing Tracking Software Market and the detailed ...

Affiliate Marketing Podcast – Affiliate management value bombs with Evan Weber

Tips to build a successful affiliate program ; Keys to be a good affiliate manager. AffiliateINSIDER - Affiliate Marketing Podcast.

Affiliate Marketing Platform Market Business Overview, Challenges, Opportunities by Top Players ...

The Affiliate Marketing Platform marketplace will increase with a notable CAGR between 2021 to 2027. The report split the entire global Affiliate ...

How to start a blog: a complete guide for beginners

Some common ways to make money from your blog are affiliate programs , ... In blogging, they're intended for marketing purposes, such as updating ...