Last updated: 2026-02-06
This extension reads publicly visible profile information (name, headline) from LinkedIn pages you visit. This data is sent to your organization's Gazella Track server to look up or create candidate records.
Last updated: 2026-02-06
This extension reads publicly visible profile information (name, headline) from LinkedIn pages you visit. This data is sent to your organization's Gazella Track server to look up or create candidate records.
You're probably using development keys in production. Switch to use production keys!
| #!/bin/bash | |
| # URL containing the list of domains and dates | |
| URL="https://data.internetstiftelsen.se/bardate_domains.txt" | |
| echo "Starting script..." | |
| echo "Downloading domain list from $URL..." | |
| # Download the file and sort the entries by date | |
| sorted_entries=$(curl -s "$URL" | sort) |
| function escapeNewLines(str: string) { | |
| return str.replace(/\n/g, '\\n'); | |
| } | |
| function fixOpenAiNewLineResponse(str: string) { | |
| return str | |
| .split('"') | |
| .map((chunk, index) => { | |
| // Only replace \n inside the JSON string values, which are in every other index after splitting by " | |
| if (index % 2 === 1) { |
| import React, { Component } from 'react'; | |
| import { Redirect } from 'react-router-dom'; | |
| import { ApolloProvider } from 'react-apollo'; | |
| import { InMemoryCache } from 'apollo-cache-inmemory'; | |
| import ApolloClient from 'apollo-client'; | |
| import { setContext } from 'apollo-link-context'; | |
| import { WebSocketLink } from 'apollo-link-ws'; | |
| import { HttpLink } from 'apollo-link-http'; | |
| import { split } from 'apollo-link'; |
| > cat /etc/bluetooth/main.conf | |
| ControllerMode = bredr | |
| Disable=Headset | |
| AutoConnect=true | |
| Also: | |
| https://askubuntu.com/questions/689281/pulseaudio-can-not-load-bluetooth-module-15-10-16-04-16-10 |
| import React, { Component } from 'react'; | |
| import { withRouter } from 'react-router-dom'; // <--- import `withRouter`. We will use this in the bottom of our file. | |
| class ContactForm extends Component { | |
| submitForm (e) { | |
| e.preventDefault() | |
| this.props.history.push('/thank-you'); // <--- The page you want to redirect your user to. | |
| } |
| function timeElapsedString($ptime) | |
| { | |
| $etime = time() - $ptime; | |
| if ($etime < 1) | |
| { | |
| return '0 seconds'; | |
| } | |
| $a = array( 12 * 30 * 24 * 60 * 60 => 'år,år', |