<div id="footerHSForm"></div> | |
<!--[if lte IE 8]> | |
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2-legacy.js"></script> | |
<![endif]--> | |
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/v2.js"></script> | |
<script type="text/javascript"> | |
hbspt.forms.create({ | |
css: '', | |
// Add portalId | |
portalId: '', |
LinkedIn is a valuable resource, but sometimes it sucks. One of those times is when you want to delete messages. You have to select each message one by one. It takes about 4 "clicks" to successfully delete a message.
This script should help. Since LI requires you to perform multiple steps, I decided to automate it for you. Once you initiate the script, it will run every second. If a message has the ability to be deleted, it will be. If not, it will be archived. Some "InMail" messages cannot be deleted on the web app. This script should work as long as LI doesn't change their page layout or element names, which happens often.
Last tested & verified working on: June, 10, 2022
Special Thanks to @noncent for the updated script.
#!/bin/bash | |
open -a Google\ Chrome "https://www.youtube.com/watch?v=JSvdW1zs1No" | |
sleep 16 | |
say "roll out" | |
sleep 0.8 | |
say "roll out" | |
sleep 0.8 | |
say "roll out" | |
sleep 0.8 |
In AppDelegate.m
#import <React/RCTLog.h>
Then in the didFinishLaunchingWithOptions
function add:
RCTSetLogThreshold(RCTLogLevelInfo - 1);
<body> | |
<div class="my class name"> | |
<div> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Form Builder</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<form> |
- Go to User Menu > Preferences > Sidebar Theme
- In the bottom of the window, look for a "customize your theme and share it with others" link
- Copy and paste the values below
#213037,#737e84,#737e84,#FFFFFF,#4A5664,#FFFFFF,#6fbab6,#6fbab6
const request = require('request'); | |
const fs = require('fs'); | |
const csv = require('json2csv'); | |
var githubURL = 'https://api.github.com'; | |
var githubHeaders = { | |
'User-Agent': 'request', | |
'Authorization': 'token <token-here>' | |
}; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Cool Web Page</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<p class="my-title">Hello World</p> | |
<p class="my-likes"> | |
Likes: <span class="likes-count">0</span> |