Data entry speed

Dataentry_Offers

2022.10.18 06:32 Norajh Dataentry_Offers

Find and hire Data entry professionals.
[link]


2014.07.30 01:10 MurphysLab Data Analysis: share tips & resources, ask questions, get help.

This is a place to discuss and post about data analysis. Rules: - Comments should remain civil and courteous. - All reddit-wide rules apply here. - Do not post personal information. - No facebook or social media links. - Do not spam. - No 3rd party URL shorteners - Questions related to career entry go in the monthly megathread. https://old.reddit.com/dataanalysis/comments/17mg6ep/megathread_how_to_get_into_data_analysis/
[link]


2013.05.10 15:35 madhi19 It's A Digital Disease!

This is a sub that aims at bringing data hoarders together to share their passion with like minded people.
[link]


2024.05.19 11:46 STEVE_15632 how do i change my measurement unit from cm to m?

how do i change my measurement unit from cm to m? submitted by STEVE_15632 to UnrealEngine5 [link] [comments]


2024.05.19 11:39 Pehmoon Fated ashes/black fire torch

I only have 1 game of data but fated ashes may be viable for eve. I went black fire torch rush into regular lich bane into rabadons. Black fire torch first item kinda did no damage but the moment I went fated ashes my clear speed was ridiculously fast. At lich bane I felt pretty strong and at rabadons I was just one shotting squishies. I’m thinking fated ashes -> lich bane -> rabadons might be viable. Not sure about going blackfire first because it just doesn’t have that oomph that lich bane does in a fight. If anyone else tries it let me know how it feels!
submitted by Pehmoon to EvelynnMains [link] [comments]


2024.05.19 11:35 k_media_tv Build plan (AEG)

Build plan (AEG)
Thoughts?
submitted by k_media_tv to airsoft [link] [comments]


2024.05.19 11:24 Buzziday (Remote) Data Entry Work From Home / Research Panelist – FocusGroupPanel – Schaumburg, IL

(Remote) Data Entry Work From Home / Research Panelist – FocusGroupPanel – Schaumburg, IL submitted by Buzziday to TheDailyUnfold [link] [comments]


2024.05.19 11:23 Accurate-Screen8774 A Decentralized Microfrontend Architecture

A Decentralized Microfrontend Architecture
Disclaimer: the following is a recent medium article. it is being posted in full on Reddit to compare feedback and engagement of Reddit users with long-form articles.
Decentralization can mean a lot of things because it can be open to interpretation. In this article, we would like to talk about what decentralization means to us and how we are approaching our definition of decentralized. We are working on a typical chat app, but our approach is unique and may push the boundaries of what it means for something to be self-hosted.
Our decentralized chat application is built as a Progressive Web Apps (PWA) and leverages modern web technologies to deliver a user experience comparable to native apps. Unlike traditional centralized chat apps, our chat app is designed to operate independently of central servers, ensuring that user data remains private and secure. This article will delve into the various components and architectural decisions that make our app truly decentralized.

The Decentralized Chat App

An overview of how our chat application leverages Progressive Web App (PWA) technology to provide a seamless user experience across different devices and platforms.
https://preview.redd.it/ntyghqt5oc1d1.png?width=1100&format=png&auto=webp&s=f273717c0c26ef5befcd303fc45de104af63f8d0

Data Storage and Networking

A typical app relies heavily on data storage and networking capabilities. In our decentralized chat application, we’ve implemented advanced solutions to handle these aspects efficiently and securely.

Data Storage

In our app, we use IndexedDB to store data directly in the browser’s storage. While browsers provide multiple options for storing information, ranging from cookies to local storage, IndexedDB offers a more advanced and robust solution.
Capacity: IndexedDB can store significantly larger amounts of data compared to cookies or local storage. Structure: It allows for complex data structures, including collections of files and blobs. Performance: IndexedDB operates asynchronously, meaning it won’t block the main thread of your application, leading to better performance for data-heavy applications.
Using IndexedDB, we ensure that user data is stored locally on their devices, providing both privacy and independence from central servers.

Networking

For networking, our app uses PeerJS-server as a connection broker to establish WebRTC connections between peers.
Direct Peer-to-Peer: WebRTC, provided by the browser, enables real-time communication between peers. This allows two users to connect directly and exchange data with minimal latency. Efficient Routing: Once a connection is established, data is sent via the shortest possible network route, enhancing speed and efficiency. Multiple Connections: Browsers can handle multiple WebRTC connections simultaneously, though the number of connections can vary depending on the device and network capabilities.
PeerJS-server helps in the initial connection setup by acting as a signaling server. It facilitates the exchange of connection information between peers, enabling them to establish a direct WebRTC connection.
By leveraging IndexedDB for data storage and WebRTC with PeerJS-server for networking, our chat application achieves a high level of decentralization, ensuring user data remains private and connections are efficient and reliable. These components form the backbone of our approach, pushing the boundaries of what it means for an app to be truly self-hosted and decentralized
https://preview.redd.it/ww704u7foc1d1.png?width=1100&format=png&auto=webp&s=0c4d4958a38747a4b0410c4c8526e0fd941fac35

Static Distribution and Deployment

Our app is essentially a bundle of static files, which makes it highly portable and easy to distribute. We leverage AWS services such as S3 and CloudFormation to deploy our app, ensuring it is distributed efficiently over a Content Delivery Network (CDN) across AWS servers.

AWS S3 and CloudFormation

AWS S3: We host our app on AWS S3, a scalable storage service that allows us to serve static files reliably. S3 ensures that our app is always available and can handle large numbers of requests without performance degradation. CloudFormation: By using AWS CloudFormation, we automate the deployment process, managing our infrastructure as code. This makes it easy to replicate and manage our app’s deployment environment.
Hosting on S3 and using CloudFormation means our app benefits from AWS’s global CDN. This ensures that our static files are cached and served from servers closest to our users, reducing latency and improving load times.

Offline Availability and Self-Hosting

We go a step further by providing users with the option to download a zip file of the app directly from within the app. This ensures that users can run the app locally without relying on our servers.
Direct from Index.html: Unlike some other apps, our app is a pure JavaScript implementation, designed to run directly from the index.html file. Users can simply open this file in their browser and start using the app without needing a server. Docker Option: For users who prefer or require a server setup, we offer a Docker configuration. This allows the app to be run in a containerized environment, providing flexibility and ease of deployment for different use cases.

Unminified Code for Transparency

We believe in transparency and accessibility. Therefore, we run the app as unminified code. This has several advantages:
Ease of Download: Users can download the entire app using simple browser commands like Ctrl/Cmd+S. Transparency: By providing unminified code, we ensure that users can inspect and understand the code they are running. This fosters trust and allows for easier customization and debugging.
By distributing our app as static files and offering multiple ways to run it, we ensure that users have maximum flexibility and control. Whether using AWS’s robust infrastructure or running the app locally, our approach embodies the principles of decentralization and user empowerment.

Webpack 5 Module Federation

Our app leverages Webpack 5’s Module Federation feature to implement a microfrontend architecture. This approach allows us to modularize our application, making it easier to maintain, develop, and scale. You can explore our open-source implementation here: https://github.com/positive-intentions/frontend-base.

Current Implementation

We have used Webpack 5 Module Federation to build the chat application, which you can find here: https://github.com/positive-intentions/chat. Additionally, we have created a federated module for cryptography that can be imported at runtime, available here: https://github.com/positive-intentions/cryptography. Our current setup is straightforward, allowing us to dynamically load different parts of the application as needed. This modular approach provides flexibility and efficiency in how we develop and deploy our app.

Future Enhancements

We plan to further decompose the application into separate microfrontends, each responsible for a specific aspect of the app. This will not only simplify maintenance but also enhance documentation and development processes for individual components.
Planned Modules:
1. UI Components: A collection of reusable UI components that can be shared across different parts of the application, promoting consistency and reducing duplication. 2. P2P Framework: The core framework for peer-to-peer networking, facilitating real-time communication between users. 3. State Management: This module will manage the application’s state, ensuring efficient data handling and synchronization across different components and peers. 4. Permission Manager: A dedicated module for managing user permissions and access control, enhancing security and user management.
https://preview.redd.it/w16teobjoc1d1.png?width=1100&format=png&auto=webp&s=9305db7dc16981aaf8499bfa2a7aade3c44a06d2

Individual Storybooks and Module Exports

Each module will have its own Storybook and module export, providing a dedicated space for documentation, testing, and showcasing individual components. This approach will:
Enhance Documentation: Each module will be well-documented, making it easier for developers to understand and use them. Simplify Maintenance: By isolating modules, we can update and maintain them independently, reducing the risk of breaking changes affecting the entire app. Promote Reusability: Well-defined modules can be reused across different projects, promoting a modular and efficient development approach.
By embracing Webpack 5 Module Federation and breaking down our app into distinct microfrontends, we aim to create a more robust, scalable, and maintainable architecture. This approach not only benefits our development process but also enhances the overall user experience by ensuring that each component is well-crafted and easily accessible.

Redundancy and Reliability

In the past, we have encountered difficulties when deploying our app to AWS due to various technical issues. Given that our app functions as a self-hosted static application, we have started exploring alternative hosting options, such as GitHub Pages. You can view our deployment on GitHub Pages here: https://positive-intentions.github.io/chat.

GitHub Pages Deployment

Our microfrontend architecture allows us to deploy each module independently. This capability has enabled us to host copies of the app on GitHub Pages for each repository. While this approach is unconventional and can lead to redundant copies of the app, we believe it is a valuable exercise in exploring module federation redundancy.
Accessibility: Hosting on GitHub Pages makes the app easily accessible to users and developers. Simplicity: GitHub Pages offers a straightforward deployment process, reducing the complexity often associated with other hosting solutions. Cost-Effective: GitHub Pages is free, making it an economical choice for hosting static sites.

Redundancy and Interoperability

We aim to make our app interoperable across different hosting sources. By leveraging Webpack 5 Module Federation, we can ensure that the app works seamlessly whether it is served from AWS or GitHub Pages. This redundancy enhances the app’s reliability and availability.
Module Federation Redundancy: We are investigating ways to make modules interoperable between different sources, ensuring that the app remains functional even if one source becomes unavailable. Interoperable Deployment: Our goal is to allow the app to fetch and integrate modules from both AWS and GitHub Pages dynamically.
https://preview.redd.it/m1nbx4nloc1d1.png?width=1100&format=png&auto=webp&s=b7e708e530bece6bcbd492b2699755065b783eb0

Future Plans

To further enhance our deployment strategy, we plan to use a infrastructure as code tool, to deploy the app across multiple cloud service providers. This approach will increase the resilience of our deployment, ensuring the app remains online and functional even if one provider experiences downtime.
Multi-Cloud Deployment: We can deploy the app to various cloud service providers, including AWS, Azure, and Google Cloud. This will distribute the app’s load and reduce the risk of a single point of failure. Scalability: This will enable us to scale the app easily across different providers, ensuring it can handle increased traffic without performance issues. Cost Management: Static file hosting is relatively a cheap option for hosting a webapp, we can optimize costs and ensure that the app remains affordable to maintain.
By exploring these new hosting options and implementing a robust deployment strategy, we aim to make our decentralized chat app more resilient, scalable, and cost-effective. Our efforts in redundancy and interoperability will ensure that the app continues to function seamlessly, providing a reliable user experience regardless of the hosting source.

Multi-Device Architecture

As our app continues to develop, we are excited to introduce the concept of a decentralized profile that can be shared across multiple devices. This feature is designed for individuals who want to use the same profile on all their devices, providing a seamless and integrated multi-platform chat experience, much like any modern chat application.

Decentralized Profile

A decentralized profile allows users to maintain a consistent identity and settings across different devices. This means that whether you are using a smartphone, tablet, or desktop, your profile can remain synchronized and up-to-date.
Profile Synchronization: Users can access their chat history, contacts, and settings on any device by synchronizing their decentralized profile. Data Consistency: Changes made on one device are automatically reflected on others, ensuring a consistent experience.

Multi-Platform Chat Experience

Implementing a decentralized profile enables us to offer a robust multi-platform chat experience. Users can switch between devices without losing their chat continuity or settings, enhancing the overall user experience.
Convenience: Users can start a conversation on one device and continue it on another without any interruptions. Flexibility: The app adapts to various devices, providing a user-friendly interface and experience on each platform.
https://preview.redd.it/8e2i3rrooc1d1.png?width=1100&format=png&auto=webp&s=a034fe514dbd6aa889de2da16caea828f7833e38

Decentralized File Storage

In addition to profile synchronization, we are exploring the potential of decentralized file storage. This feature would allow users to move large files between devices quickly, easily and securely.
Cross-Device Sharing: Users can share files between their devices effortlessly, whether they are transferring a document from their laptop to their phone or vice versa. Collaborative Work: Teams can collaborate more effectively by sharing encrypted files directly through the app, regardless of the devices they are using.
By introducing a decentralized profile and exploring decentralized file storage, we aim to enhance our app’s functionality and user experience. These features will provide users with the convenience and flexibility expected from a modern chat application while maintaining the principles of decentralization and security.

Decentralized Peer Discovery

Decentralized peer discovery is a critical component of our app’s architecture. By leveraging innovative technologies such as QR codes, NFC, and BLE, we facilitate seamless connections between peers without relying on a central authority.

QR Codes

QR codes provide a straightforward method for establishing peer connections. Users can generate a QR code that contains their connection details, which other users can scan to initiate a peer-to-peer connection.
https://preview.redd.it/20jk09qqoc1d1.png?width=793&format=png&auto=webp&s=11d72cbae68ac953f955d4cb87ce4e41cf877341
Ease of Use: Users can quickly and easily share connection details. Security: QR codes can be generated dynamically, reducing the risk of interception.

NFC (Near Field Communication)

NFC allows devices to establish connections simply by being in close proximity. This technology is particularly useful for quick and secure peer discovery.
Speed: Connections are established almost instantly. Convenience: Users can connect devices by simply bringing them close together, making it ideal for spontaneous interactions.

BLE (Bluetooth Low Energy)

BLE enables devices to discover and communicate with each other over short distances with minimal power consumption. This makes it a suitable option for maintaining constant peer-to-peer connections.
Energy Efficiency: BLE conserves battery life, making it ideal for mobile devices. Range: BLE provides a reliable connection over a short range, perfect for personal or localized networking.

Combining Technologies for Enhanced Discovery

By integrating QR codes, NFC, and BLE, we create a robust and versatile peer discovery mechanism. Users can choose the most convenient method for their situation, ensuring that connections are both seamless and secure.
Hybrid Approach: Users can combine different methods for an optimal connection experience. For instance, initial discovery via QR code followed by connection via BLE for sustained communication. Adaptability: The app adapts to the available technologies on the user’s device, providing the best possible peer discovery experience.
These innovative approaches to peer discovery, coupled with our decentralized microfrontend architecture, form the backbone of our commitment to enhancing decentralization, scalability, and user experience. By continually exploring and implementing cutting-edge technologies, we ensure our app remains at the forefront of decentralized communication solutions
These sections outline the key aspects of our decentralized microfrontend architecture and provide a roadmap for our ongoing and future efforts to enhance decentralization, scalability, and user experience.

Conclusion

Our journey towards building a decentralized chat application has been driven by a desire to push the boundaries of what it means for an app to be truly self-hosted and independent of central servers. By leveraging modern web technologies such as Progressive Web Apps, IndexedDB, WebRTC, and Webpack 5 Module Federation, we have created a robust and scalable architecture that emphasizes privacy, security, and user empowerment.
We have explored innovative hosting solutions like GitHub Pages and plan to implement multi-cloud deployments to enhance resilience and scalability. Our vision for a multi-device architecture, incorporating decentralized profiles and encrypted file storage, aims to provide a seamless, cross-platform user experience. Additionally, our commitment to decentralized peer discovery using QR codes, NFC, and BLE ensures that users can connect easily and securely without relying on centralized authorities.
As we continue to develop and refine our app, we remain dedicated to the principles of decentralization, transparency, and user control. We invite you to join us on this journey, explore our open-source repositories, and contribute to the ongoing evolution of our decentralized chat application. Together, we can redefine what it means to communicate in a decentralized world.
Thank you for taking the time to read about our project. We look forward to your feedback and collaboration as we continue to innovate and improve our decentralized chat application.
submitted by Accurate-Screen8774 to darknetplan [link] [comments]


2024.05.19 11:20 Plastic_Dog_7855 [FOR HIRE] Virtual Assistance for Data-Related Tasks

Hello, I'm looking for an online job related to data, including analysis, entry handling, cleaning, and management, but I'm open to more opportunities. I have acquired skills in Python and SQL programming, and I'm proficient in using Excel and data visualization tools. My rate is $3-5 per hour and can work any time. Feel free to DM me for inquiries. <3
submitted by Plastic_Dog_7855 to WFHJobs [link] [comments]


2024.05.19 10:52 jennithomas321 On-Page vs. Off-Page SEO: Different but Equally Important

What’s the Difference Between On-Page SEO and Off-Page SEO?

On-page SEO focuses on optimizing parts of your website that are within your control, while off-page SEO focuses on increasing the authority of your domain through content creation and earning backlinks from other websites. To further understand the difference between the two, you have to understand, at a basic level, how search engine algorithms work. Let’s break it down.
There are two main buckets that search engines (SEO) look at when evaluating your site compared to other sites on the web.
  1. On-page SEO looks at what your site (or your page) is about
  2. Off-page SEO looks at how authoritative and popular your site is

On-Page vs. Off-Page SEO: What’s the Difference?

Put simply, what you rank for is largely determined by on-page factors, while how high you rank in the search results is largely determined by off-page factors.

How Does Each Type of SEO Affect Your Rankings?

What is On-Page SEO?

On-page SEO (also known as “on-site” SEO) is the act of optimizing different parts of your website that affect your search engine rankings. Where your website appears in search engine results pages is determined by a number of ranking factors including site accessibility, page speed, optimized content, keywords, title tags, etc. On-page SEO is about optimizing the stuff that you have control over and can change on your own website.

On-page SEO checklist:

How do you make sure your on-page SEO tactics are up to snuff? Here is a helpful checklist for on-site optimizations that can help curate your strategy.

Title Tags

Put your targeted keywords in the title tag of each page on your site. There are many best practices that go into writing an effective title tag.

Headings (H1)

Headings are usually the largest words on the page, and for that reason, search engines give them a little more weight than your other page copy. It is a good idea to work your target keywords into the headings of each web page but make sure you accurately reflect your page’s great content.
Make sure your H1s limited to one per page, all other headers are H2 or H3

URL structure

Put keywords into your URLs if possible. However, do not go changing all of your current URLs just so they have keywords in them. You shouldn’t change old URLs unless you plan on redirecting your old ones to your new ones. Consult a professional before doing this.

Alt text for images

Any content management system should allow you to add something called “alt text” to all images on your website. This text isn’t visible to the average visitor – alt text is in fact used by screen reader software to help blind internet users understand the content of your images. Search engines crawl images in a similar way, so inserting some relevant keywords while accurately describing the image will help search engines understand your page’s content.
Writing an alt attribute for each image keeps your website in compliance with WCAG (Web Content Accessibility Guidelines). Keep the following things in mind when writing alt text:

Fast-loading pages, or page load speed

Google wants to help its users find what they’re looking for as quickly as possible to provide the best user experience. Therefore, optimizing your pages to load faster helps your site rank higher in the search results.
Google has a tool called PageSpeed Insights that will analyze your site on both mobile and desktop. and then suggest tips to optimize page speed. There are also several quick fixes to eliminate whatever is bogging your site down and slowing your page load time. Key site speed factors to consider:

Mobile Friendliness

In recent years, Google has prioritized mobile page loading speed as a key ranking metric.
How do you know if your website is mobile-friendly? Unfortunately, Google recently dropped support for some free public tools that helped. However, you can now use Google Search Console to analyze this type of information. Specifically, the Core Web Vitals report can help you identify if your mobile pages are loading slower than they should be.

Page Content

The content on your pages needs to be useful to people. If they search for something too specific to find your page, they need to be able to find what they’re looking for. It needs to be easy to read and provide value to the end user. Google has various ways to measure if your content is useful.

Internal Linking

Linking internally to other pages on your website is useful to visitors and it is also useful to search engines. Here’s an internal link to another blog post on our site that talks more about internal linking. Very meta.
When adding internal links, make sure to have relevant anchor text. Anchor text is the clickable text in a hyperlink (usually indicated by blue font color and underline). To optimize your anchor text, make sure the selected word or phrase is relevant to the page you’re linking to.
On-page SEO ensures that your site can be read by both potential customers and search engine robots. With good on-page SEO, search engines can easily index your web pages, understand what your site is about, and easily navigate the structure and content of your website, thus ranking your site accordingly. As a best practice, make sure your page content includes 1-3 relevant internal links.

Schema Markup

Adding structured data helps Google better understand the content of a page. Google also uses certain types of structured data to display “rich results” in SERPs such as a recipe with start ratings or step-by-step instructions with an image carousel. These rich results often appear at or near the top of SERPs and generally have higher click-through-rates than normal organic listings.
Google prefers structured data to use schema.org vocabulary, and recommends using JSON-LD format. They also provide a handy Rich Results Test tool to check your code. While there are a variety of ways to add structured data to your website (plugins, Google Tag Manager, etc.), it’s always best to get a professional involved if you’re not comfortable writing code.
Check out Google’s guide to structured data and rich results here.

Social Tags

Having your content shared on social tells Google that people find your content relevant, helpful and reputable. Not every page on your site is share-worthy, but you can optimize the pages that are with these tips:

Core Web Vitals

User experience is key to a website’s long-term success. In spring 2020, Google unveiled Core Web Vitals, a common set of signals that they deem “critical” to all users’ web experiences.
The purpose of these signals is to quantify the user experience with a website, from page visual stability and load time, to interactive experiences.
To check your LCP score, access your Google PageSpeed Insights and make sure your page hits LCP within 2.5 seconds. To accomplish this, remove unnecessary third-party scripts that may be running, upgrading your web host, activating “lazy loading” so page elements load only as users scroll down the page, and remove any large page elements that may be slowing it down.
One of the simplest ways to optimize cumulative layout shift is to add height and width dimensions to each new site element. Also, avoid adding new content above existing content on a page (unless responding to user interaction).

Page Experience

Google is working on a new ranking signal (likely to come out in 2024) that prioritizes websites with positive user experiences.
The ‘page experience signal’ will consist of Core Web Vitals, plus mobile-friendliness, safe-browsing, HTTPS security, and intrusive interstitial guidelines.
According to Google, “optimizing for these factors makes the web more delightful for users across all web browsers and surfaces, and helps sites evolve towards user expectations on mobile. We believe this will contribute to business success on the web as users grow more engaged and can transact with less friction.”

What is Off-Page SEO?

Off-page SEO focuses on increasing the authority of your domain through the act of getting links from other websites.
A good analogy for how authority works is this. If you have a bathtub with rubber duckies in it (the ducks are your pages), and you start filling the tub with water (links), your duckies are all going to rise to the top.
This is how a site like Wikipedia ranks for pretty much everything under the sun. It has so much water in its bathtub that if you throw another rubber duck in it, it’s going to float to the top without any other effort.
There’s a score called “Domain Authority” that calculates how authoritative your website is compared to other sites. You can type your domain name into here to see your score.

How to optimize for off-page SEO

There are several factors that influence your off-page SEO rankings. While each one is tackled with different strategies, they share an overarching goal of building the trust and reputation of your website from the outside.
  1. Inbound links
  2. Social media marketing
  3. Guest blogging and guest posting
  4. Unlinked brand mentions
  5. Influencer marketing
The biggest off-page SEO factor is the number and quality of backlinks to your website. Some examples of ways you can build links to your website are:
While link quantity is still important, content creators and SEO professionals are realizing that link quality is now more important than link quantity. As such, creating shareable content is the first step to earning valuable links and improving your off-page SEO.
How many links do you need for good off-page SEO? That is a tough question and it’s going to be based on the domain authority of your competitors, as you want to make sure you’re playing in the same sandbox.
SEOs also used to believe that buying links was a valid way of link building; however, Google will now penalize you for buying links in an attempt to manipulate page rank. You can also be penalized for submitting your links to link directories whose sole purpose is to increase your domain authority. Again, quality wins out over quantity when it comes to link building.

Is On-Page or Off-Page SEO More Important?

It’s not about choosing between on and off-page SEO, that would be like having to choose between a foundation or a roof for your house. On-page and off-page SEO work together to improve your search engine rankings in a complementary fashion.
However, SEOs generally advise getting your on-page SEO ducks in a row before focusing too much on off-page SEO.
Just like building a house, you want to set the foundation first before building the rest of the house. Like a foundation, you may need to come back and do some maintenance to your on-page SEO from time to time. Balancing the two will help make your website “bilingual” so that your users can understand it as well as the search engine robots- and that’s how your rankings start to improve.

SEO #onpageseo #Offpageseo #Corewebvitals

submitted by jennithomas321 to clientseo [link] [comments]


2024.05.19 10:51 MeisterJedi07 Alliance Duel Guide

Alliance Duel Guide submitted by MeisterJedi07 to Dho [link] [comments]


2024.05.19 10:48 UpstairsMap5433 [OFFER] Virtual Assistant Service – An affordable and reliable solution [2$/h]

Thank you for checking out my post. I’m a Virtual Assistant and I’m offering my services in any task you may require assistance for your business, project, or personal activities. i have like 1 year experience as a virtual assistant, ill do anything as a virtual assistant.
Feel free to DM and I'll try to respond at my earliest!
*if the project is complex price can be negotiable ( payments can be done using wise app)
submitted by UpstairsMap5433 to DoneDirtCheap [link] [comments]


2024.05.19 10:48 Acceptable_Pickle_81 SMC’s suitability in operating major tollways and other major infrastructure projects

Share your thoughts on this one. My gripes are under Physical Setup, Current Condition, and Layout.
SLEX: Persistent Issues: SLEX consistently has potholes and rumbles that remain unfixed for months or even years. Example, there’s a bad bump just past the Alabang exit that feels like a bad speed bump in the overtaking lane. If all lanes are crowded and another car tailing you that you can’t really put on brakes, you just hope for the best it doesn’t damage much in your car. Fortunately the gridlocks we’ve been having has mitigated this issue 💀. This among a lot more various road bumps until Sto Tomas area. Don’t even get me started with STAR tollway.
Skyway: - Subpar Modifications: the ‘improvements’ they’ve been implementing the past years like the addition of lanes without proper width, and poorly covered old lane markings, feels like I’m driving on a musical road tuned by a tone-deaf person.
The close distance as well of the outside lanes to the edges feels like a safety issue, with such small buffers compared to the NLEX connector which has a more considerate design.
Also how they handle the traffic from South Superhighway entry and the exit leading to NAIAX - at one point there’s a stop and go system implemented. Like on an expressway???
Toll Gates: - Inferior Infrastructure: While NLEX has faced numerous issues in the past for RFID issues na news pa, initiatives like those in CALAX demonstrate potential improvements, including future barrier-free tolling as per news (or kahit yung entry lang). In contrast, SMC’s Skyway Stage 3 toll booths appear temporary and lack the robustness expected from national infrastructure projects.
The recent mishandling pa of tollbooth placements on NAIAX, causing unnecessary gridlocks, highlights SMC’s trial and error approach in handling such a delicate and integral part of the capital region and also the backbone of our national capital’s economy (char oa pero medyo totoo naman)
Aesthetics✨ - Lack of Cohesive Design: medyo shallow na to pero the aesthetic quality of SMC’s toll gates is noticeably inferior compared to those under Metro Pacific’s NLEX and CALAX’s na standardized na yung tollbooth designs with their arches. SMC’s kiosk-style toll booths lack visual appeal and fail to evoke confidence for a national project.
Anyway let me know your thoughts on this one. From SMC bagging most national projects e.g. SLEX TR4, Skyway extension to their Bulacan airport, and a supposed masterplan of more interconnected skyways along Roxas Blvd and an extension spur line in Buendia to serve Makati CBD, I’m pessimistic on the overall experience of these future infrastructures.
submitted by Acceptable_Pickle_81 to Philippines [link] [comments]


2024.05.19 10:32 quickdrawesome are walshe and whitelock brunswick the worst REA's in australia?

They are by far the worst REAs Ive ever dealt with. by far. I rented from them for years. Ive never copped so much straight abuse and disdain from an agent. and Ive had some very shit agents before. Their google reviews are consistently either 1 star reviews that all sound pretty similar, or 5 star reviews that are very very questionably authored. They used to do a good job of getting (*paying) for positive reviews to compete with each honest one to keep the rating up, but it has slipped over the years. I'm genuinely surprised that they have been able to still be in business.
If you want a good lol (or a sad one?) have a look over their reviews. This is the kind of business that needs attention from the regulatory enforcement body (if it ever actually materialises and does anything...)
https://www.google.com/maps/place/Walshe+%26+Whitelock+Brunswick/@-37.7605007,144.9605001,16z/data=!4m8!3m7!1s0x6ad6435490ad51ed:0x5fe084955c107e59!8m2!3d-37.760505!4d144.963075!9m1!1b1!16s%2Fg%2F1tdm3w7h?entry=ttu
submitted by quickdrawesome to shitrentals [link] [comments]


2024.05.19 10:31 spiritpanther_08 My thoughts on witcher 3

My first reaction after finishing the game - DAMN WAS THIS GAME FUCKING GOOD
Now comes the essay :
First of all , I have just finished the main storyline and have not completed the dlcs (About to start on that right after the post ) and this is my first game in the series and the witcher universe as a whole .
I have never made a reddit post about my thoughts on a game I played , let alone this long .
The story : The story was one of , if not the best of any game that I have played and I loved the little jokes here and there as well as the overall seriousness and grit of the game . I made choices which led to geralt being with yennefer and radovid dead and cerys becoming the new queen and ciri being a witcher . I personally loved this path and will probably be my "offical playthrough" if that's a thing . One thing i hated tho was the baron's death but I also wanted to save the children so I guess there's that but I will definetly try alternative methods but I guess if the only way for the children to be alive is the baron dying than so be it . Crach's death also felt a bit unecessary but I guess it was there to incite the " I want to kill that son of a bitch Eredin" feelling .
Now for the ending , for a moment my post about the story being good was going to become a rant because I actually thought that ciri died trying to stop the white frost . But all went good .
The gameplay : I (a person who never played rpgs and rather preferred not to) found this game to be a good balance between rpg elements and story . Which I guess what kept me going . The gameplay was good but could have improvements in the next title , especially the horse autopath system and the waypoint system . Something else which also annoyed me was the walking/running speed especially in places where you have to follow someone or stay withing a certain radius .
Characters : Loved almost all characters and their overall development especially for geralt , again I never played any other games so I might be wrong but I felt that Geralt was all too serious at the start of the game but at the end he started showing more emotions . I guess this depends on player choices but it is what happened in my playthrough .
Now for another part which might incite a war but here it goes .
Triss or Yennefer : In my playthrough I chose Yennefer and I think that is kinda what geralt would have gone for as well as Geralt and Yen being Ciri's "parents" . Yennefer seems to be a bit mature than Triss and for Yennefer it actually felt like Geralt was truly in love with while Triss felt more like a "Friend with benefits" . From the googling I have done I also found out that Triss is much younger than Geralt (50 years ?) which made it feel even more weird . Also as Philipa described it Triss was like an older sister to Ciri looking to jump in bed with Geralt as soon as she gets an opportunity . Now I will have a replay of the game with Triss being Geralt's romantic partner so my judgement might change but it probably won't.
Summary : The game is good and gives what a person might expect , it could definetely improve with some of it's mechancins and I don't think it is overrated . It has sold about 50 million units which is what you expect from a good rpg game . I am eager to play the next entries and might even play witcher 1 and 2 .
Thanks for taking your time to read my post and I hope your day goes well !
submitted by spiritpanther_08 to Witcher3 [link] [comments]


2024.05.19 10:20 FarmerRemote9850 Melon VPN v8.0.112 MOD APK (VIP Unlocked)

Melon VPN v8.0.112 MOD APK (VIP Unlocked)
https://preview.redd.it/e695924cec1d1.png?width=512&format=png&auto=webp&s=5139d8172daf8236b5910a2a1b3f46167367b520
Name Melon VPN - Secure Proxy VPN
Publisher Inf Security Studio
Genre Tools
Size 35 MB
Version 8.0.032
MOD VIP Unlocked
https://modyolo.co.in/melon-vpn-secure-proxy-vpn/
👆👆👆👆Download Link👆👆👆👆
Also Join us on telegram
https://t.me/official_modyolo
Also join us on Instagram
https://instagram.com/modifiedmod.in
Also join us on Discord
https://discord.gg/GQUCUPEeed
Follow us on WhatsApp: https://whatsapp.com/channel/0029VaAMOg5AInPlcwBnJd2Y
Melon VPN provides a solution to help you surf the web without domain or IP restrictions. It brings together a diverse number of servers for you to freely choose from, and if you don’t know what to choose, the auto-connect feature is an effective solution to find the best server. In addition, all online information is secure after you successfully connect to the application’s server, so you will not need to worry about your online information falling into the hands of others. Powerful servers that are no less powerful than the network you are currently using are waiting for you to experience and perform many different entertainment activities.

UNLIMITED DATA USAGE WITHOUT THROTTLING OR CAPS

The first function of any VPN application like Melon VPN is to help you surf the web comfortably without worrying about anything. In other words, you can go to many countries even if you haven’t done this before. In addition, the quality of the servers is also what impresses users, as they can experience many different servers with just one touch. At the same time, each server has its transmission power to help you do anything on the internet continuously and without being disturbed. A perfect experience is something to be proud of that the application can bring you.
  • Unlimited bandwidth: Enjoy unlimited bandwidth with no data caps or speed throttling.
  • No restrictions: Stream, download, and browse as much as you want without restrictions.
  • Worry-free usage: Use Melon VPN without worrying about running out of high-speed data.

BEST-IN-CLASS MILITARY-GRADE ENCRYPTION FOR MAXIMUM SECURITY

Removing barriers when surfing the web with Melon VPN is a basic feature you can use freely. At the same time, besides this use, the application also comes with hidden support features to ensure everything is always stable and secure. Your online information will always be kept confidential, just like this application uses a curtain to cover things from others. In addition, this security also prevents your information from being exposed to bad guys and causing you to receive unsafe experiences. Therefore, you can safely surf the web to the websites you desire.
  • Top-tier encryption: Utilizes top-tier AES 256-bit encryption to secure your connection.
  • Total privacy: Hides your IP address, location, and online activities from prying eyes.
  • Hackers blocked: Protects against hackers, government surveillance, and data collection.

STRICT NO-LOGS POLICY FOR COMPLETE ONLINE PRIVACY

One thing you will like about any application feature is its user-friendliness; in other words, you can quickly use it right after downloading it. No need to go through many complicated steps, just open the application and access the server system immediately to use the internet. At the same time, you do not need to worry when using the application because the application only secures your information and does not track anything. Therefore, your privacy is completely confidential in all forms and will certainly not be exposed to the eyes of others.
  • Zero logs: Do not log or retain user activity or connection data.
  • Untraceable: You remain completely anonymous and untraceable while connected.
  • Peace of mind: Knowing your data is never stored or tracked.

ULTRA-FAST SERVER NETWORK FOR LIGHTNING-FAST SPEEDS

With diverse servers, anyone will doubt the connection line and the application is committed to user experience. It provides dozens of servers with the same connection, all synchronized at speed to avoid lags while surfing the web. Therefore, it is no worse than the basic internet connection you use at home and creates a smooth feeling when experiencing many activities. Surfing the web is not the only activity; it is also about watching movies or playing games in countries that restrict your country’s IP.
  • Blazing speeds: Provides incredibly fast server speeds up to 10Gbps.
  • Minimal slowdown: Minimal speed loss compared to your normal internet connection.
  • Smooth performance: Enjoy smooth, uninterrupted streaming, gaming, and browsing.

RELIABLE WORLDWIDE SERVER COVERAGE FOR ALWAYS-ON SECURITY

The experience is simple and easy to use when the interface appears with the main functions you can immediately get used to. You can search and review the servers you need to create a list for later use. At the same time, there are problems in diversifying servers: if you don’t know which server to use, you can use the automatic feature of the application. With just one touch, a server will be automatically connected immediately without taking too much time. Most countries have their server, so generally, the network has no geographical barriers.
  • Global network: Robust network of servers across the world for reliable connections.
  • Optimized connections: The auto-connect feature finds the best server for your location.
  • Secure access: Stay protected even when traveling or using restrictive networks.
submitted by FarmerRemote9850 to Modifiedmods [link] [comments]


2024.05.19 10:15 alienowitch [H] Scarlet/Violet Shiny Paradox/Shiny Gimmighoul/breeding/items service/Shiny Mythicals/Custom Shiny hunts/Iron Leaves/Walking Wake/RNG services gen 3-8/Shadow Colosseum Pokes/Authentic Sinistea raid/SwSh+SV shiny egg services/Level 1-2-4-6 Shiny GO Latis/Lvl 1 LakeTrio/Few past events ! [W] Paypal

[svirtual]
Hello !!
I'd like to offer my time and knowledge gathered across all Pokemon games in the help of getting you Pokemon you'd like to have. If by any chance you're not finding anything of interest among ones listed: fret not becuse it is my honest pleasure to go and catch whatever you desire to suit your fancy. Please take a look at my offer of these creatures and services:
Curently in the middle of BDSP and COLO RNG's. Such requests will take more time !!
POKEMON GO:
* Shiny Mew from Masterwork reasearch - 60 $ Unredeemed yet, random IV's - customisable OT
* Shiny Level 1 Lake trio: Mesprit in Ultra ball, Uxie in Ultra ball, Azelf in Great ball - random IV's - customisable OT, self caught during Sinnoh Tour - 14 $ for one or 37 $ if taking a set
* Shiny Level 1 XXS/XXL Azelf in Great ball and level 1 XXS Uxie in Ultra ball - Taking offers here. Self caught during Sinnoh Tour.
* Shiny level 1 XXL Mesprit in Ultra ball - Taking offers here. Self caught during Sinnoh Tour.
* Shiny level 15 XXS Cresselia in Ultra ball - Taking offers here. Self caught during Sinnoh Tour from research.
* Shiny level 15 Giratina-O in Great ball - Taking offers here. Self caught during Sinnoh Tour from research
* Shiny level 1-2 Latios and level 4/6 Latias from Pokemon Go. They are still in PoGo and can have custom OT. Self caught at the time of Hoenn Go Tour - 25 $
* Home stamped Shiny level 4 Suicune OT: Alienowitch TID: 939638 in Great Ball self caught during Johto Tour - 60 $
* Shiny Celebi from Pokemon Go special research - Caught by me in Pokemon Go, ready for transfer - 15 $
* Shiny Melmetals from Pokemon Go - Level 1-35, 10 $ per 'mon OT: Alienowitch TID: 343668 self caught in Go or Custom OT + Speed IV - 20 $
* Shiny PoGo Darkrai - 13 $ Self caught in raids - OT customizable
* Shiny PoGO Genesect - 13 $ Self caught in raids - OT customizable
* PoGo Hoopa - Caught in Ultra ball - customizable OT - 15 $ (self research in Go)
* PoGo Shaymin - Caught in Ultra ball - customizable OT - 10 $ (self research in Go)
* PoGo Zarude - 15 $ per 'mon self researched and caught in Ultra ball
* PoGo Shiny Deoxys - 13 $ self caught in PoGo, customizable OT
* PoGo shiny Furfrou - 15 $ Valentine trim (can be changed into ANY trim)
* Shiny PoGo legends: Raikou/Suicune/Zekrom/Reshiram/Tornadus/Thundurus/Landorus/Kyogre/Groudon/Raikou/Registeel/Regice/Tapu Lele/Tapu Bulu/Tapu Koko/Tapu Fini (list to be expanded cataloguing species - ask for specific 'mon) - 6 $
SWORD/SHIELD:
* Shiny Eternatus OT: Galar TID: 221118 - Self redeemed, proofed - 15 $
* Volcanion OT: Mythical22 TID: 220909 - Self redeemed, proofed - 10 $
* Genesect OT: Mythical22 TID: 220909 - Self redeemed, proofed - 10 $
* Marshadow OT: Mythical22 TID: 220909 - Self redeemed, proofed - 15 $
* Victini OT: Victory TID: 220818 - Self redeemed - 15 $
* Shiny Dynamax Legends OT: Slava TID: 036275 Tapu Koko/Lele/Bulu/Fini in Luxury balls- 10 $ or 35 $ for set
* Shiny Dynamax Legends OT: Slava TID: 036275 Safari ball Mewtwo - 10 $
* Shiny Dynamax Legends OT: Slava TID: 036275 Safari ball Tornadus - 10 $
* Shiny Dynamax Legends OT: Slava TID: 036275 Premier ball Zygarde - 20 $
* Shiny Dynamax Legends OT: Slava TID: 036275 Sport ball Solgaleo - 10 $
* Shiny Dynamax Legends OT: Slava TID: 036275 Love ball Necrozma - 10 $
* Shiny Regieleki OT: Slava TID: 036275 Premier ball - 30 $
* Shiny Regidrago OT: Daakuson TID: 726825 Heavy ball - 30 $
RNG services/Services:
* Any playthrough for custom OT is 10 $ per game once
* Shiny Jirachi from bonus disc, please be aware that all shiny Jirachi are natural clones and come with OT: WISHMKR ID: 20043
* Gen 3 overall RNG: Custom Colosseum/GoD: XD/Fire Red/Leaf Green - customisable (OT/ball/nature/IV's)
* Shiny Manaphy from Pokemon Ranger cart - customisable (OT/Nature/IV) - 18 $
* Gen 4-5-6-7 RNG: legendary/Ultra Beasts - customisable (Shinyness/OT/ball/nature/IV's) - 8 $ or 5 $ if random IV's
* Gen 8 raid RNG: - customisable (Shinyness/Ball/Nature), OT will be: Alienowitch, TID: 059583 (SWORD)/ Alienowitch TID: 729244 (SHIELD)
* Gen 8 raid RNG'ed Authentic Shiny Sinistea with spread Timid 31/0/31/31/31/31. Customisable OT and ball - 12 $
* Sword/Shield Egg breeding services customisable - random guaranteed 5x31 or 4x31+1x0 IV's - 5 $
* Sw/Sh Calyrex/GlastrieSpectrieKubfu/Regis catching - 5 $
BDSP:
* Any playthrough for custom OT is 10 $ per game once
* EGG RNG - Custom nature/Ball/OT/egg moves - 3 $
* Shiny Arceus (custom OT/Ball/Nature) - 25 $
* Custom Legend RNG (OT/Ball/Nature) - 5 $
* Member's Card Shiny Darkrai in Moon ball Timid nature OT: Lucas TID: 070365 - 80 $ (RNG'ed using Pokefinder and capture card for another user, which backed down from deal - proofed)
* Member's Card Shiny Darkrai RNG - Yet to be caught, different OT's available, can be caught using any ball available in BDSP - 80 $
Scarlet/Violet:
* Any playthrough for custom OT is 10 $ per game once
* Iron Leaves in Friend ball Jolly OT: Alienowitch TID: 564392 - 12 $ (proofed)
* Raging Wake in Dive ball Timid OT: Alienowitch TID: 564392 - 12 $ (proofed)
* Raging Wake+Iron Leaves set - 20 $
* Shiny egg services (custom OT/ball/nature) - 4 $
* Any item - 0,5 $
*Any normal non shiny Pokemon - 0,5 $
* Comp+battle ready non-shiny Pokemon - 1 $
* Any Shiny Paradox in custom pokeball - 3 $
* Koraidon/Miraidon/Iron BouldeIron Crown/Raging Bolt/Gouging Fire custom OT catching - 5 $
* Shiny Gimmighoul in level ball TID: 558144 OT: Bulek - 15 $ (self caught using raid from second CFW console)
* Vivillon/Shiny Vivillon forms/dex - Paldea mark any ball available - 2 $ normal/ 5 $ shiny
OTHER:
* Ribbon Master - Always wanted to have one and never could ? I can help with that. Now having beauty like this: H-Typhlosion RM/Scizor RM won't be a problem ! (Bear in mind that some ribbons can't be gotten becuse of gen 4 wi-fi shut down or are pretty hard to do now - master ball tier battles for example).
Most proofs can be adjusted to your liking so just write me on this topic, we will manage.And that is all I can provide, but wait... You still didn't find what you've been looking for ? Ask away ! I really like to RNG and stuff so I might just go and get it for you ;)
Here's my Reference
Thank you for your time dear Redditor ! :)
DISCLAIMER, TOOLS USED:
* Gen 8 Raid RNG: CFW Switch + Capture Sight/Raid Finder.
* Gen 8 BDSP RNG: CFW Switch + Capture Sight/Chatot website PokeRNG or Capture card + Pokefinder
* Gen 7: CFW 3DS+3DSRNGTOOL+NTR Plugin or Citra+Python plugin+3DSRNGTOOL
* Gen 6: CFW 3DS+3DSRNGTOOL+NTR Plugin
* Gen 4: RNGreporteRNGhelpyRAM watch/.lua script/TWL Save manager
* Gen 3: RNGreporteDolphin emulatoVBA emulatoAguacate script/HxD/GBA backup tool/.lua script
* Gen 9 Gimmighoul: Raicrawler (data look up) + date change
* Special mention: Jirachi is done solely on emulator using rom of Bonus disc. Manaphy is done by wiping save on physical Pokemon Ranger Cart, playing through the game, sending Egg to Gen 4 game, ripping the save to do RNG on emulator and writing it back to Gen 4 cart.
* Any lack of OT and TID info will be filled accordingly in comments when said Pokemon are transferred to their respective medium.
* All Pokemon offered in this thread are caught/received/redeemed by me.
submitted by alienowitch to Pokemonexchange [link] [comments]


2024.05.19 10:14 Simple-Reception-601 Netherlands

Rolls-Royce Phantom
https://www.google.com/maps/@52.1704304,5.0029571,3a,15y,30.21h,86.68t/data=!3m7!1e1!3m5!1sLZqaWph1R0ZLmluScY_WXg!2e0!5s20211201T000000!7i16384!8i8192?entry=ttu
Lamborghini Urus
https://www.google.com/maps/@52.1723885,5.0024727,3a,75y,302.46h,49.38t/data=!3m7!1e1!3m5!1s66MI7I5ZfzLhr2MP21oRjA!2e0!5s20221101T000000!7i16384!8i8192?entry=ttu
Audi RS6 C8
https://www.google.com/maps/@51.4416413,6.0811097,3a,75y,60.88h,69.5t/data=!3m7!1e1!3m5!1s5RSCpCEnauCm7Dqtp3E3iA!2e0!5s20230801T000000!7i16384!8i8192?entry=ttu
Porsche 911 991 Targa 4s
https://www.google.com/maps/@52.2398288,5.1991594,3a,41.1y,350.29h,74.28t/data=!3m7!1e1!3m5!1skuRHHHKeOX-7IURhSooJOg!2e0!5s20180701T000000!7i16384!8i8192?entry=ttu
Tesla Roadster
https://www.google.com/maps/@52.3022782,5.0368935,3a,34.3y,44.01h,72.3t/data=!3m7!1e1!3m5!1sbegwFxWTFGBnyCL00Jlf4Q!2e0!5s20211201T000000!7i16384!8i8192?entry=ttu
Porsche 911 992 Carrera S
https://www.google.com/maps/@52.2467126,5.207458,3a,37.6y,325.01h,86.47t/data=!3m7!1e1!3m5!1stQi-i6wn8f94LrgWgAQDOg!2e0!5s20220401T000000!7i16384!8i8192?entry=ttu
Alfa Romeo Giulia
https://www.google.com/maps/@52.282182,5.2647656,3a,20.6y,242.03h,83.06t/data=!3m7!1e1!3m5!1sI4U_5oFprLzmMgk4-PR_Vg!2e0!5s20210401T000000!7i16384!8i8192?entry=ttu
BMW i8 Roadster
https://www.google.com/maps/@52.2775077,5.0508802,3a,15y,129.66h,85.17t/data=!3m7!1e1!3m5!1smWyn6cEGLv8Ss3Xj2FBTHQ!2e0!5s20230501T000000!7i16384!8i8192?entry=ttu
70' Ford Mustang
https://www.google.com/maps/@52.2772248,5.0501113,3a,41y,167.79h,74.68t/data=!3m7!1e1!3m5!1sfueW6BlIoBRHsjK2sP315g!2e0!5s20230501T000000!7i16384!8i8192?entry=ttu
Audi RS6 C7
https://www.google.com/maps/@52.1791875,5.0035271,3a,16y,90.64h,81.02t/data=!3m7!1e1!3m5!1srRe5AHZumXO_AgPvuYBbRQ!2e0!5s20221101T000000!7i16384!8i8192?entry=ttu
Alpina B3 Touring
https://www.google.com/maps/@52.1951239,4.9023539,3a,75y,320.81h,71.09t/data=!3m7!1e1!3m5!1sTdwzIEPnu48efJa5OJIqpQ!2e0!5s20220301T000000!7i16384!8i8192?entry=ttu
Mercedes A45 AMG
https://www.google.com/maps/@52.1791853,5.0036048,3a,75y,85.66h,62.74t/data=!3m7!1e1!3m5!1smD7Ajs2PaEoM_GdKjWRkaA!2e0!5s20210701T000000!7i16384!8i8192?entry=ttu
G63 Brabus 700
https://www.google.com/maps/@52.2258327,4.9956497,3a,20.6y,37.21h,80.39t/data=!3m7!1e1!3m5!1skIakVx-gjimLsTICMTZjYQ!2e0!5s20230401T000000!7i16384!8i8192?entry=ttu
BMW M5 F10
https://www.google.com/maps/@52.2090167,5.0214104,3a,75y,220.06h,63.59t/data=!3m6!1e1!3m4!1sDEJGxfA_MGR7ROFaYI32_Q!2e0!7i16384!8i8192?entry=ttu
Mercedes GLS 63
https://www.google.com/maps/@52.2092651,5.0217245,3a,75y,133.62h,63.82t/data=!3m6!1e1!3m4!1sxckqks8zBSrw0N9sP1NqbQ!2e0!7i16384!8i8192?entry=ttu
Mercedes G63 AMG
https://www.google.com/maps/@52.2239865,4.988977,3a,37.6y,305.95h,84.24t/data=!3m7!1e1!3m5!1sBILIoQrqubM9ZpQ4OLjRUQ!2e0!5s20210301T000000!7i16384!8i8192?entry=ttu
Lotus Elise S1
https://www.google.com/maps/@52.2279895,4.8447637,3a,31.1y,44.55h,82.02t/data=!3m6!1e1!3m4!1syBdkyT1qz9zgWKDxD-K4yQ!2e0!7i16384!8i8192?entry=ttu
Ferrari 812 Superfast
https://www.google.com/maps/@52.2692724,5.2120556,3a,34.3y,183.29h,76.92t/data=!3m7!1e1!3m5!1szD810iiuUYpxYDJzLGrIxQ!2e0!5s20220901T000000!7i16384!8i8192?entry=ttu
BMW 1M Coupe
https://www.google.com/maps/@52.2255871,5.0853268,3a,15y,164.23h,86.2t/data=!3m6!1e1!3m4!1s1-2DIA8ehbivTR6eAZL4rA!2e0!7i16384!8i8192?entry=ttu
SKT Roadkart (first one on google maps)
https://www.google.com/maps/@52.0660797,4.9078581,3a,17.2y,299.38h,78.63t/data=!3m7!1e1!3m5!1sU5fJDiq-ecTjeC1H1pA9Cg!2e0!5s20230501T000000!7i16384!8i8192?entry=ttu
Mercedes AMG SLS Roadster
https://www.google.com/maps/@52.2584826,4.7214807,3a,15y,314.7h,82.91t/data=!3m7!1e1!3m5!1sTN1blKjzGtDt_Pxw5RfrmQ!2e0!5s20190501T000000!7i16384!8i8192?entry=ttu
Porsche 911 Carera 4s
https://www.google.com/maps/@52.2602907,4.7272115,3a,90y,143.61h,92.2t/data=!3m7!1e1!3m5!1shW5AlHkUdKebNIsW0B7XTA!2e0!5s20190501T000000!7i16384!8i8192?entry=ttu
submitted by Simple-Reception-601 to StreetviewCarSpotting [link] [comments]


2024.05.19 10:11 NoPermission4386 H: AA25ffr15r gp W: leaders, apparel

H: AA25ffr15r gp W: leaders, apparel submitted by NoPermission4386 to Market76 [link] [comments]


2024.05.19 09:55 Swimming-Layer3223 Faster Card readers??

I am getting into moto recordings and at time I have 3-500gb data to transfer and my older ssd card readers cap out at 150mb/s, what are some of the best options I can upgrade to make the transfer faster. Thankyou Just upgraded my system and the transfer speed is very slow at times.
submitted by Swimming-Layer3223 to pchelp [link] [comments]


2024.05.19 09:55 recursiveecho ChatGPT makes me feel better

I'm just a software engineer who doesn't know a lot but kinda knows how to talk to ChatGPT and I thought some of the info I prompted might alleviate some people's worries. Everyone is calling FFIE a pump and dump, but it never occurred to anyone that it could have characteristics of a pump and dump because a lot of retail investors didn't hold like the rest of us. That's why it's important to stick together here!
ChatGPT below 👇
Based on the gathered information, here is a detailed analysis to determine whether FFIE’s stock movement on May 17, 2024, was a short squeeze, a pump and dump, or a combination of both:

Key Findings

Characteristics of a Short Squeeze:

Characteristics of a Pump and Dump:

Conclusion

Based on the evidence, it appears that the stock movement of FFIE on May 17, 2024, was predominantly driven by a retail investor-coordinated short squeeze.
However, elements of a pump and dump were also present, especially considering the rapid profit-taking and subsequent decline.

Detailed Analysis

Retail Investors and Short Squeeze:

Pump and Dump Elements:

Final Thoughts

While the primary driver appears to be a retail-driven short squeeze, the characteristics of rapid profit-taking and the lack of fundamental support suggest elements of a pump and dump. Therefore, FFIE’s stock movement on May 17, 2024, can be seen as a hybrid event involving both a short squeeze and pump and dump dynamics.

Current Status of FFIE and Potential for a Short Squeeze

Summary of Recent Activity

Faraday Future (FFIE) recently experienced a dramatic rise in stock price due to what appears to be a short squeeze. On May 17, 2024, the stock surged by over 367% during intraday trading before closing down 37.58% at $1.03. This significant volatility was driven by retail investors coordinating efforts on social media platforms to buy and hold the stock, targeting its high short interest.

Key Indicators of a Short Squeeze:

  1. High Short Interest: FFIE had a short interest of approximately 95% of its float, with about 36.34 million shares shorted. This made it a prime target for a short squeeze, as identified by investors and analysts.
  2. Coordinated Retail Activity: The surge was fueled by retail investors, particularly those influenced by figures like Roaring Kitty, who led the 2021 meme stock rallies. The coordinated buying efforts were aimed at forcing short sellers to cover their positions, driving the stock price up.
  3. Unusually High Trading Volume: On May 17, FFIE's trading volume surged to over 445 million shares, compared to its average daily volume of 41 million shares. This spike in volume is a strong indicator of a short squeeze as short sellers were forced to buy shares to cover their positions.

Current Status:

When the Short Squeeze Might End:

Conclusion:

FFIE's recent price movements indicate that a short squeeze is currently happening, driven by high retail investor activity and a substantial short interest. The situation remains volatile, and the short squeeze will likely continue until the factors driving the buying pressure diminish.

Current Status of FFIE Short Sellers

Short Interest and Recent Developments

As of the latest available data in early May 2024, Faraday Future (FFIE) has a short interest of approximately 85.71%, with about 36.34 million shares sold short. This indicates a high level of short interest, making the stock susceptible to a short squeeze.

Indicators of Short Sellers Covering

  1. High Trading Volume:
    • On May 17, 2024, FFIE saw an extraordinarily high trading volume of over 445 million shares, compared to its average daily volume of about 41 million shares. This surge in volume is indicative of short sellers covering their positions amid the buying frenzy driven by retail investors.
  2. Stock Price Movements:
    • FFIE experienced a dramatic price increase, up by as much as 380% during intraday trading before closing down 37.58% at $1.03. The initial surge followed by a sharp decline suggests significant short covering activity followed by profit-taking by retail investors and re-entry of short positions by hedge funds.
  3. Days to Cover:
    • The "days to cover" ratio, which measures the time required for short sellers to cover their positions based on average daily trading volume, is currently 1 day for FFIE. A low days to cover ratio further supports the occurrence of a short squeeze as short sellers quickly buy back shares to close their positions.

Conclusion

Based on the current data, FFIE is still in the midst of significant short covering activity. The high trading volume and price volatility indicate that many short sellers have covered their positions, but the situation remains fluid with continued retail investor interest and hedge fund activity. Monitoring short interest reports in the coming weeks will provide further insights into the extent of short covering and whether the short squeeze is ongoing or subsiding.
submitted by recursiveecho to FFIE [link] [comments]


2024.05.19 09:36 tofazzl095 Data entry, data collection, web research, web scraping, and data mining Services on Upwork

submitted by tofazzl095 to u/tofazzl095 [link] [comments]


2024.05.19 09:32 Apprehensive-Sir7063 There's more profit in mass produced chip manufacturing in the long term.

I know nobody likes my stories, too many words but I'll leave this here.
Quantum chips used in cloud and AI for speed linked via a fibreoptic network so a "quantum Internet" a backbone in which everything else will attach to. Innovation in AI will be limited without quantum photonic chips. An Internet of cloud storage and AI processing.
I envisage chips progressing in technology so, they use less power improving battery performance by up to 4 times (already happening) and increasing speed of technology but there will be a limit in consumer tech due to the way in which consumer tech and cloud and AI processing will interact... but things such as quantum chips and a quantum Internet will fundementally alter the way we use technology and everything else will branch off of that quantum network.
In the future I think that AI will alter entertainment and the way we consume it ie you could ask Netflix for example to create a movie or TV series based on your preferences and basic story and it would create that entertainment for you, same with computer games, computer games is the next stage with movie like quality as your avatar moves through it. This will require fast Internet and quantum computers as well as cloud storage for processing and storage needs. There's no need for increased innovation in consumer computing we will use the cloud and AI for processing purposes, Microsoft views it the same way hence their 100 billion AI supper computer and cloud storage they will soon build.
Fibre can be faster than low earth orbit internet constellations currently... but that will change everything will be linked via it one day.
I only have a loose understanding of quantum computing, how else could you envisage our future and what could grow from a quantum computing network?
So from an investment perspective the future of chip innovation is limited due to the way in with everything will be linked, quantum computing taking over data processing and AI supercomputing with a limit in innovation reached with consumer tech. Using faster Internet to bridge the gap.
Consumer chip companies future advantage being in scalability and mass production. Intel is positioning itself so it can scale up innovating in mass production, are there any others like that? Because that takes years.
A diverging chip market with financial gain seen in mass produced chip manufacturing. Quantum computing will take more time, and linked to the big tech stocks like Microsoft, Google and Amazon who are developing their own quantum computers.
If photonic chips enter consumer tech they'll lag behind for decades due to the above model and only be driven by energy efficiency needs. But quantum computing photonic chips common place in cloud and AI processing sooner.
Photonic chips are faster and use less energy but wil always be more expensive than standard chips... Quantum computing photonic chips inevitable for cloud storage AND AI processing, generating an image on chat GPT can use as much power as 25 percent of a phone batteries power as a comparison examlle and the true reason all AI processing done in cloud due to power usage in processing and that barrier won't ever be overcome.
The true AI revolution won't occur until power usage reduced in the cloud and AI supercomputer . Hence massive investment incoming in AI super computers and cloud storage.
Energy efficiency and cost of faster chips being the reason there will be AI supercomputer, cloud storage using quantum photonic chips with chip development in consumer limited over the long term and a faster Internet bridge to connect the two.
submitted by Apprehensive-Sir7063 to wallstreetbets [link] [comments]


2024.05.19 09:31 evan_wolf Q for those in cyber security

I'm a little curious of the feild and it seems like a reliable industry to get into considering I'm really struggling with finding a decent remote job I can fall into. Heard most data entry jobs are scams :/ so, I just had a couple questions I guess.
• How did you get into it?
• Did you get a degree for it?
• Can/did you just start off with an internship and work your way up?
• How do you fair in this environment?
Thank you for any replies :')
submitted by evan_wolf to autism [link] [comments]


2024.05.19 09:30 CloudysYe Chaos (fault) testing method for etcd and MongoDB

Chaos (fault) testing method for etcd and MongoDB
https://preview.redd.it/wqrh8ahk5c1d1.png?width=824&format=png&auto=webp&s=5eee98a84c0072df8c688597c1b1acbbd113a104
Recently, I have been doing chaos (fault) tests on the robustness of some self-built database driveclient base libraries to verify and understand the fault handling mechanism and recovery time of the business. It mainly involves the two basic components MongoDB and etcd. This article will introduce the relevant test methods.

Fault test in MongoDB

MongoDB is a popular document database in the world, supporting ACID transactions, distributed and other features.
Most of the articles on chaos (fault) testing of MongoDB in the community are simulated by processing monogd or mongos. For example, if you want MongoDB to trigger copy set switching, you can use a shell script like this:
# suspended the primary node kill -s STOP  # After the service is damaged, MongoDB should stepDown ReplicaSet in a few seconds to ten seconds. # After the stepDown is complete, the service can automatically switch the connection to the new working primary node, without manual intervention, the service will return to normal. # The reliability of the Mongo Client Driver is generally verified here. 
The above-mentioned means are generally system-level, if we just want to simulate a MongoDB command command encountered network problems, how to do further want to conduct more fine-grained testing. In fact, MongoDB in 4.x version above has implemented a set of controllable fault point simulation mechanism -> failCommand.
When deploying a MongoDB replica set in a test environment, you can generally enable this feature in the following ways:
mongod --setParameter enableTestCommands=1 
Then we can open the fault point for a specific command through the mongo shell, for example, for a find operation to make it return error code 2:
db.adminCommand({ configureFailPoint: "failCommand", mode: { "times": 1, }, data: {errorCode: 2, failCommands: ["find"]} }); 
These fault point simulations are controllable, and the cost is relatively low compared to the direct destruction on the machine, and it is also suitable for integrating into continuous integration automation processes. The MongoDB built-in fault point mechanism also supports many features, such as allowing a certain fault probability to occur, returning any MongoDB supported error code type, etc. Through this mechanism, we can easily verify the reliability of our own implementation of the MongoDB Client Driver in unit tests and integration tests.
If you want to know which fault points the MongoDB supports, you can check the specification provided by the MongoDB in detail, which mentions which fault points the driver can use for testing for each feature of the MongoDB.
MongoDB, there are many examples in the dirver code repository of the official go implementation that can be: https://github.com/mongodb/mongo-go-driveblob/345ea9574e28732ca4f9d7d3bb9c103c897a65b8/mongo/with\_transactions\_test.go#L122.

Fault test in etcd

etcd is an open source and highly available distributed key-value storage system, which is mainly used for shared configuration and service discovery.
We mentioned earlier that MongoDB has a built-in controllable fault point injection mechanism to facilitate us to do fault point testing, so does etcd also provide it?
Yes, etcd officials also provide a built-in controllable fault injection method to facilitate us to do fault simulation tests around etcd. However, the official binary distribution available for deployment does not use the fault injection feature by default, which is different from the switch provided by MongoDB. etcd requires us to manually compile the binary containing the fault injection feature from the source code for deployment.
etcd has officially implemented a Go package gofail to do "controllable" fault point testing, which can control the probability and number of specific faults. gofail can be used in any Go implementation program.
In principle, comments are used in the source code to bury some fault injection points in places where problems may occur through comments (// gofail:), which is biased towards testing and verification, for example:
 if t.backend.hooks != nil { // gofail: var commitBeforePreCommitHook struct{} t.backend.hooks.OnPreCommitUnsafe(t) // gofail: var commitAfterPreCommitHook struct{} } 
Before using go build to build the binary, use the command line tool gofail enable provided by gofail to cancel the comments of these fault injection related codes and generate the code related to the fault point, so that the compiled binary can be used for fine-grained testing of fault scenarios. Use gofail disable to remove the generated fault point related codes, the binary compiled with go build can be used in the production environment.
When executing final binary, you can wake up the fault point through the environment variable GOFAIL_FAILPOINTS. if your binary program is a service that never stops, you can start an HTTP endpoint to wake up the buried fault point to the external test tool by GOFAIL_HTTP the environment variable at the same time as the program starts.
The specific principle implementation can be seen in the design document of gofail-> design.
It is worth mentioning that pingcap have rebuilt a wheel based on gofail and made many optimizations: failpoint related code should not have any additional overhead; Can not affect the normal function logic, can not have any intrusion on the function code; failpoint code must be easy to read, easy to write and can introduce compiler detection; In the generated code, the line number of the functional logic code cannot be changed (easy to debug);
Next, let's look at how to enable these fault burial points in etcd.

Compile etcd for fault testing

corresponding commands have been built into the Makefile of the official etcd github repository to help us quickly compile the binary etcd server containing fault points. the compilation steps are roughly as follows:
git clone git@github.com:etcd-io/etcd.git cd etcd # generate failpoint relative code make gofail-enable # compile etcd bin file make build # Restore code make gofail-disable 
After the above steps, the compiled binary files can be directly seen in the bin directory. Let's start etcd to have a look:
# enable http endpoint to control the failpoint GOFAIL_HTTP="127.0.0.1:22381" ./bin/etcd 
Use curl to see which failure points can be used:
curl afterCommit= afterStartDBTxn= afterWritebackBuf= applyBeforeOpenSnapshot= beforeApplyOneConfChange= beforeApplyOneEntryNormal= beforeCommit= beforeLookupWhenForwardLeaseTimeToLive= beforeLookupWhenLeaseTimeToLive= beforeSendWatchResponse= beforeStartDBTxn= beforeWritebackBuf= commitAfterPreCommitHook= commitBeforePreCommitHook= compactAfterCommitBatch= compactAfterCommitScheduledCompact= compactAfterSetFinishedCompact= compactBeforeCommitBatch= compactBeforeCommitScheduledCompact= compactBeforeSetFinishedCompact= defragBeforeCopy= defragBeforeRename= raftAfterApplySnap= raftAfterSave= raftAfterSaveSnap= raftAfterWALRelease= raftBeforeAdvance= raftBeforeApplySnap= raftBeforeFollowerSend= raftBeforeLeaderSend= raftBeforeSave= raftBeforeSaveSnap= walAfterSync= walBeforeSync=http://127.0.0.1:22381 
Knowing these fault points, you can set the fault type for the specified fault, as follows:
# In beforeLookupWhenForwardLeaseTimeToLive failoint sleep 10 seconds curl -XPUT -d'sleep(10000)' # peek failpoint status curl sleep(1000)http://127.0.0.1:22381/beforeLookupWhenForwardLeaseTimeToLivehttp://127.0.0.1:22381/beforeLookupWhenForwardLeaseTimeToLive 
For the description syntax of the failure point, see: https://github.com/etcd-io/gofail/blob/mastedoc/design.md#syntax
so far, we have been able to do some fault simulation tests by using the fault points built in etcd. how to use these fault points can refer to the official integration test implementation of etcd-> etcd Robustness Testing. you can search for relevant codes by the name of the fault point.
In addition to the above-mentioned built-in failure points of etcd, the official warehouse of etcd also provides a system-level integration test example-> etcd local-tester, which simulates the node downtime test in etcd cluster mode.
Well, the sharing of this article is over for the time being ღ( ´・ᴗ・` )~
Commercial break: I recently maintenance can maintain multiple etcd server, etcdctl etcductl version of the tools vfox-etcd), You can also use it to install multiple versions of etcd containing failpoint on the machine for chaos (failure simulation) tests!
submitted by CloudysYe to ChaosEngineering [link] [comments]


http://rodzice.org/