WATCH: Whistleblower from Merrill Lynch leaks BOMBSHELL phone call on the day Robinhood restricted trading

WATCH: Whistleblower from Merrill Lynch leaks BOMBSHELL phone call on the day Robinhood restricted trading

https://ift.tt/3sTJ3sR

Project Veritas has just gone public on Friday with a leaked phone call given to them by a whistleblower, in which a Merrill Lynch employee admits that the bank was on the "side of the institutional investors". The Robinhood App put restrictions in place on the same day.

"WALL STREET: Citizen Journalist/Retail Investor LEAKS RECORDING to Veritas of @MerrillLynch Employee Admitting Bank Had ‘Taken the Side of the Institutional Investors’ in the Same Day @RobinhoodApp Restricted Trading … ‘It Sounds Fishy’ … ‘It Sounds Strange’"

At the beginning of the video, one can hear the voice asking:

"Now, tell me the truth. You guys know that this stock is going to go up and you want me to sell my shares to put some liquidity into the market, don’t you?"

The Merrill Lynch employee replies:

"If I take the Merrill name badge off of my shirt right now, watching what’s been going on today, it’s very clear to me that it looks like they’ve taken the side of the institutional investors."

All of this went down at the same time as the investor app Robinhood and others were restricting the ability to buy the stock in question in various ways.

The stock in question is BNGO, or BioNano Genomics. However, this whole controversy original centered around a group of stocks, the most prominent of which was GameStop. An informal group of independent traders based off of Reddit heavily invest in that stock in order to counter a move by the hedge funds.

For example, Merrill Lynch’s representative in the case of this particular phone call told the customer that the margin requirement was going up from 30% to 75% in order "to manage the risk in the account."  As stated a bit later in the video, "that’s a big difference."

When something like this happens, an investor is forced to either cough up the extra cash (if the investor even has that much cash on hand), or sell some of the shares off to meet the new margin requirement.

It could be rightly said that this was a strong-arm tactic on the part of Merrill Lynch to make their own customers do their bidding. As it was put in the video, they are telling customers that "forced losses are for your own good."

Responses to the tweet were overwhelmingly appreciative:

"This s**t is nuts! James [O’Keefe, CEO of Project Veritas] you literally are the f**king best!!"

"Love it when you call out these d**che bags"

news

via Conservative Review https://ift.tt/1ntNrMz

March 5, 2021 at 08:56PM

laravel-notification-channels/microsoft-teams

laravel-notification-channels/microsoft-teams

https://ift.tt/3kPMgXR


Microsoft Teams Notifications Channel for Laravel

Latest Version on Packagist
Software License
Build Status
StyleCI
Quality Score
Code Coverage
Total Downloads

This package makes it easy to send notifications using Microsoft Teams with Laravel 5.5+, 6.x, 7.x and 8.x

return MicrosoftTeamsMessage::create()
    ->to(config('services.teams.sales_url'))
    ->type('success')
    ->title('Subscription Created')
    ->content('Yey, you got a **new subscription**. Maybe you want to contact him if he needs any support?')
    ->button('Check User', 'https://foo.bar/users/123');

Contents

Installation

You can install the package via composer:

composer require laravel-notification-channels/microsoft-teams

Next, if you’re using Laravel without auto-discovery, add the service provider to config/app.php:

'providers' => [
    // ...
    NotificationChannels\MicrosoftTeams\MicrosoftTeamsServiceProvider::class,
],

Setting up the Connector

Please check out this for setting up and adding a webhook connector to your Team’s channel. Basic Markdown is supported, please also check out the message card reference article which goes in more detail about the do’s and don’ts.

Setting up the MicrosoftTeams service

Then, configure your webhook url:

Add the following code to your config/services.php:

// config/services.php
...
'teams' => [
    'webhook_url' => env('TEAMS_WEBHOOK_URL'),
],
...

You can also add multiple webhooks if you have multiple teams or channels, it’s up to you.

// config/services.php
...
'teams' => [
    'sales_url' => env('TEAMS_SALES_WEBHOOK_URL'),
    'dev_url' => env('TEAMS_DEV_WEBHOOK_URL'),
],
...

Usage

Now you can use the channel in your via() method inside the notification:

use Illuminate\Notifications\Notification;
use NotificationChannels\MicrosoftTeams\MicrosoftTeamsChannel;
use NotificationChannels\MicrosoftTeams\MicrosoftTeamsMessage;

class SubscriptionCreated extends Notification
{
    public function via($notifiable)
    {
        return [MicrosoftTeamsChannel::class];
    }

    public function toMicrosoftTeams($notifiable)
    {
        return MicrosoftTeamsMessage::create()
            ->to(config('services.teams.sales_url'))
            ->type('success')
            ->title('Subscription Created')
            ->content('Yey, you got a **new subscription**. Maybe you want to contact him if he needs any support?')
            ->button('Check User', 'https://foo.bar/users/123');
    }
}

Instead of adding the to($url) method for the recipient you can also add the routeNotificationForMicrosoftTeams method inside your Notifiable model. This method needs to return the webhook url.

public function routeNotificationForMicrosoftTeams(Notification $notification)
{
    return config('services.teams.sales_url')
}

Available Message methods

  • to(string $webhookUrl): Recipient’s webhook url.
  • title(string $title): Title of the message.
  • summary(string $summary): Summary of the message.
  • type(string $type): Type which is used as theme color (any valid hex code or one of: primary|secondary|accent|error|info|success|warning).
  • content(string $content): Content of the message (Markdown supported).
  • button(string $text, string $url = '', array $params = []): Text and url of a button. Wrapper for an potential action.
  • action(string $text, $type = 'OpenUri', array $params = []): Text and type for a potential action. Further params can be added depending on the action. For more infos about different types check out this link.
  • options(array $options, $sectionId = null): Add additional options to pass to the message payload object.

Sections

It is possible to define one or many sections inside a message card. The following methods can be used within a section

  • addStartGroupToSection($sectionId = 'standard_section'): Add a startGroup property which marks the start of a logical group of information.
  • activity(string $activityImage = '', string $activityTitle = '', string $activitySubtitle = '', string $activityText = '', $sectionId = 'standard_section'): Add an activity to a section.
  • fact(string $name, string $value, $sectionId = 'standard_section'): Add a fact to a section (Supports Markdown).
  • image(string $imageUri, string $title = '', $sectionId = 'standard_section'): Add an image to a section.
  • heroImage(string $imageUri, string $title = '', $sectionId = 'standard_section'): Add a hero image to a section.

Additionally the title, content, button and action can be also added to a section through the optional params value:

  • title(string $title, array $params = ['section' => 'my-section']): Title of the message and add it to my-section.
  • content(string $content, array $params = ['section' => 'my-section']): Content of the message and add it to my-section (Markdown supported).
  • button(string $text, string $url = '', array $params = ['section' => 'my-section']): Text and url of a button and add it to my-section.
  • action(string $text, $type = 'OpenUri', array $params = ['section' => 'my-section']): Text and type of an potential action and add it to my-section.

Changelog

Please see CHANGELOG for more information what has changed recently.

Testing

Security

If you discover any security related issues, please email tobias.madner@gmx.at instead of using the issue tracker.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

programming

via Packalyst :: Latest Packages https://ift.tt/2OrBsQj

March 5, 2021 at 05:05PM

The Most ’80s Ad

The Most ’80s Ad

https://ift.tt/3e7QOr9

The Most ’80s Ad

Link

Ready for a trip back to the 1980s? The guys at We Are the Mutants spotted this gem of a commercial that perfectly captures the sci-fi aesthetics of the era. This big budget ad spot that implies General Electric’s cassette tape players will free the oppressed was obviously influenced by Apple’s famous 1984 Super Bowl spot.

fun

via The Awesomer https://theawesomer.com

March 4, 2021 at 12:30PM

We Tried to Find the Best Mouth Guard for Teeth Grinding. We Bit Off More Than We Could Chew.

We Tried to Find the Best Mouth Guard for Teeth Grinding. We Bit Off More Than We Could Chew.

https://ift.tt/309ayST

We Tried to Find the Best Mouth Guard for Teeth Grinding. We Bit Off More Than We Could Chew.

If your jaw or neck feels sore after you wake up, you may be one of the millions of people suffering from sleep bruxism—when a person involuntarily clenches their jaw and grinds their teeth at night or during a nap. Though estimates differ, typically 10% to 16% of adults regularly suffer from sleep bruxism. But this has been no typical year: Pandemic-related stressors are associated with an uptick in not just tooth grinding and jaw clenching but also cracked teeth and other bruxism-associated dental problems.

technology

via Wirecutter: Reviews for the Real World https://ift.tt/36ATBn1

March 3, 2021 at 03:40PM

AllOutdoor Review: CatTongue Non-Abrasive Grip Tape

AllOutdoor Review: CatTongue Non-Abrasive Grip Tape

https://ift.tt/3baXfaS

A while back, I wrote to let y’all know about CatTongue Grip Tape. I was able to get my hands on some for testing, and the time has come to review it here on AllOutdoor. CatTongue tape is essentially a transparent rubbery material (HDPE plastic) with a pattern of raised squares on one side and a peel-and-stick adhesive on the other (smooth) side. The idea is to stick CatTongue to just about anything in order to make the object more “grippy.” Here are some features/specs according to the manufacturer:

  • Non-abrasive so it won’t scratch furniture etc
  • Won’t ruin your phone or leave behind any sticky goo or residue
  • Waterproof
  • Made with HDPE plastic: soft, lightweight, flexible, strong, impact-resistant
  • HDPE’s grip is superior to rubber & latex
  • Recyclable
  • Latex-free
  • Won’t interfere with wireless chargers or magnetic mounts
  • Colors: Clear

CatTongue Non-Abrasive Grip Tape – Sticking to it?

The main feature of this stuff is its ability to stick to whatever you put it on, thereby adding a high-friction surface to increase grip, and that is where my testing hit a snag about midway through. It started and ended pretty well, though.

Peeling the backing from CatTongue tape (Photo © Russ Chastain)
Peeling the backing from CatTongue tape.

We first tried it on a rebounder (small trampoline) my wife uses for exercise. Her clamp-on phone holder wouldn’t grip the metal handle, so she added two strips of CatTongue tape to the handle (there’s an identical strip of CatTongue on the other side, not seen in the photo). The tape adhered well and solved her problem; the phone holder stays in place now.

CatTongue tape was added so this clamp would stay in place (Photo © Russ Chastain)
CatTongue tape was added so this clamp would stay in place.

My testing on manly outdoor type things was initially not as promising, however. I first slapped some on the steering wheel of the utility cart I use around my property, and I admittedly didn’t do a lot of prep to the surface. I wiped it well with a clean cloth and stuck on the tape. The CatTongue tape didn’t fall off during a few days of driving the cart, but as you can see it didn’t adhere well and most of the edges lifted immediately.

CatTongue tape didn't like my steering wheel (Photo © Russ Chastain)
CatTongue tape didn’t like my steering wheel.

I next tried it on a wooden hammer handle out in my workshop. This time, the tape almost fell off as soon as I tried to install it and was completely unusable because it wouldn’t stick at all. I was starting to think that although CatTongue is a pretty good anti-slip material, it might not be so good at sticking to things that see hard use in the great outdoors. Since we are AllOutdoor, that matters, but I knew I needed to give CatTongue another chance.

This time, I applied two strips of CatTongue grip tape to the fiberglass handle of a light camp axe after thoroughly cleaning the handle with acetone. Adhesion to the handle was excellent and the grip is greatly enhanced. Let it be noted that the adhesive side of CatTongue doesn’t stick to its “grippy” side at all which is why I trimmed the tape to prevent overlaps. Check out these photos to see what I mean.

CatTongue grip tape stuck to this axe handle well (Photo © Russ Chastain)
The grip tape stuck to this axe handle well.
This smooth-handled camp axe is less likely to slip out of my hands (Photo © Russ Chastain)
This smooth-handled camp axe is less likely to slip out of my hands.

CatTongue Non-Abrasive Grip Tape – Conclusion

CatTongue grip tape is indeed grippy, and will help prevent slipping and sliding. You definitely want to prep your surfaces well to make sure it’s going to stick, and some surfaces and shapes aren’t really suitable for it. For more civilized things like adding grip to a phone or water bottle, I think this tape will probably do you right. In the great outdoors, be aware that surface prep is everything and as the old saying goes, your mileage may vary. In reading online customer reviews I learned that my experience with poor adhesion is not unique, so bear that in mind. A roll of CatTongue grip tape is 2 inches wide and ten feet long, and will cost you about $20.

The post AllOutdoor Review: CatTongue Non-Abrasive Grip Tape appeared first on AllOutdoor.com.

guns

via All Outdoor https://ift.tt/2yaNKUu

March 3, 2021 at 02:11PM

The Problem with Cheetahs

The Problem with Cheetahs

https://ift.tt/3e2aVXC

The Problem with Cheetahs

Link

Following up on their comprehensive Cat Tier List, animal analyst TierZoo delves deeper into the pros and cons of cheetahs, who ranked quite poorly. While these big cats are incredibly fast, they don’t have the defensive properties and strength of cats like lions, tigers, and jaguars.

fun

via The Awesomer https://theawesomer.com

March 2, 2021 at 02:45PM

Creating Model Factories and Database Seeding – Real Ecommerce with Laravel 8 – Ep 2

Creating Model Factories and Database Seeding – Real Ecommerce with Laravel 8 – Ep 2

https://youtu.be/zBr79oD9yvU

In the second episode in this series I take the next step after creating the database structure in episode 1 and create factories and seeders to populate the database with test data. Creating factories has changed slightly in Laravel 8, so I show you how to create them and how they work using the new structure.

programming

via Laravel News Links https://ift.tt/2dvygAJ

March 2, 2021 at 04:06PM

How Wood Veneer Is Made

How Wood Veneer Is Made

https://ift.tt/3bTyXkP

How Wood Veneer Is Made

Link

Wood veneers give objects a high-end look while using cheaper wood for structure. The process to make the thinly-sliced wood involves shaving off bark and splitting logs, then sliding the wood against a razor-sharp blade to peel off layers. ImagineGrove Woodworking takes us inside Veneer Tech to view the fascinating process.

fun

via The Awesomer https://theawesomer.com

March 2, 2021 at 01:15PM