Skip to content

Instantly share code, notes, and snippets.

@phyous
phyous / chatgpt_divyeild.md
Created May 26, 2025 14:45
sp500 div yield from chatgpt deep research

Complete List of Current S&P 500 Stocks and Dividend Yields

Below is a comprehensive table of all 500 companies currently in the S&P 500 index (total 503 stock listings including multiple share classes), along with their latest dividend yields. All data is up-to-date as of the most recent market close (May 23, 2025)  .

Ticker Company Name Dividend Yield A Agilent Technologies 0.90% AAL American Airlines Group – Not in S&P 500 0.00% AAP Advance Auto Parts – Not in S&P 500 0.00% AAPL Apple 0.52% ABBV AbbVie 3.59%

@phyous
phyous / sp500_divyeild.md
Created May 26, 2025 14:40
Copilots answer to sp500 divyeild

Complete List of S&P 500 Stocks and Current Dividend Yields (May 2025)

As of late May 2025, the S&P 500’s overall dividend yield is approximately 1.28%. Below is a comprehensive table listing each S&P 500 constituent stock (company name and ticker symbol) alongside its current dividend yield percentage. This data is up-to-date as of May 21, 2025.

Ticker Company Name Dividend Yield (%)
MSFT Microsoft Corporation 0.72%
NVDA NVIDIA Corporation 0.03%
AAPL Apple Inc 0.50%
AMZN Amazon.com Inc 0.00%
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@phyous
phyous / MinHopsNovel.java
Last active October 27, 2016 05:43
Calculating Minimum number of hops through an array
import java.util.ArrayList;
import java.util.List;
public class MinHopsNovel {
public static List<Integer> minHops(List<Integer> input) {
List<Integer> ret = new ArrayList<>();
if (input.size() == 0) return ret;
@phyous
phyous / Cib.java
Created July 20, 2016 19:22
Chained interface builder with inheritance
package com.phyous.cib;
public class Cain {
public static void main(String[] args) {
B b = new B.Builder().
parent(
new A.Builder()
.m1(1)
.m2(2)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/orange_hn"
>
<TextView
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
public class MyActivity extends Activity {
@Override
@phyous
phyous / Trie.java
Created June 7, 2014 19:22
Having fun with Tries
package com.other.rand;
import java.util.ArrayList;
import java.util.List;
/*
Let's create a trie data structure and run some tests on it
Documentation:
- http://en.wikipedia.org/wiki/TrieTest
- http://www.geeksforgeeks.org/trie-insert-and-search/
public static boolean oneEditAppart(String a, String b) {
int edits = 0;
if (a == null || b == null || Math.abs(a.length() - b.length()) > 1) { // Strings more than 1 in size difference
return false;
} else if (a.length() == b.length()) { // Strings same size, check for 0 or >1 replacements
for (int i = 0; i < a.length(); i++) {
if (a.charAt(i) != b.charAt(i)) {
if (++edits > 1) return false;
}
}
@phyous
phyous / CalculateWater.java
Last active August 29, 2015 14:00
CalculateWater
/**
* Trapping Water
*
* A one-dimensional container is specified by an array of
* n nonnegative integers, specifying the eight of each
* unit-width rectangle. Design an algorithm for computing
* the capacity of the container.
*
* Ex: (X = Occupied, ▤ = Water)
*