diff --git a/README.md b/README.md
deleted file mode 100644
index 9c2719a..0000000
--- a/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# get-tweets
-Get a user's tweets without an API key or doing any web scraping. This script uses web requests to get a user's tweets as if you were an unauthenticated user.
-
-Data you get:
-* Tweets (including retweets & replies)
-* id
-* text
-* created_at
-* retweet_count
-* favorite_count
-* reply_count
-* quote_count
-* retweeted
-* is_quote_status
-* possibly_sensitive
-
-Requirements are:
-* requests - To make the http requests to get the tweet data
-
-
-# Usage
-
-1. clone the repo
-2. pip install -r requirements.txt
-3. python get-tweets username --output name_of_file.csv
-
-
-
diff --git a/api/main.py b/api/main.py
deleted file mode 100644
index 4600fbf..0000000
--- a/api/main.py
+++ /dev/null
@@ -1,415 +0,0 @@
-import dash
-from dash import dcc, html
-from dash.dependencies import Input, Output, State
-import plotly.graph_objs as go
-import pandas as pd
-import pytz
-from datetime import datetime, timedelta
-from sqlalchemy import create_engine
-from dash import clientside_callback
-
-# Database connection configuration (unchanged)
-DB_CONFIG = {
- 'host': '8.155.23.172',
- 'port': 3306,
- 'user': 'root2',
- 'password': 'tG0f6PVYh18le41BCb',
- 'database': 'elonX'
-}
-TABLE_NAME = 'elon_tweets'
-
-db_uri = f"mysql+pymysql://{DB_CONFIG['user']}:{DB_CONFIG['password']}@{DB_CONFIG['host']}:{DB_CONFIG['port']}/{DB_CONFIG['database']}"
-engine = create_engine(db_uri)
-
-# Load data (unchanged)
-df = pd.read_sql(f'SELECT timestamp FROM {TABLE_NAME}', con=engine)
-eastern = pytz.timezone('America/New_York')
-pacific = pytz.timezone('America/Los_Angeles')
-central = pytz.timezone('America/Chicago')
-df['datetime'] = pd.to_datetime(df['timestamp'], unit='s')
-df['datetime_est'] = df['datetime'].dt.tz_localize('UTC').dt.tz_convert(eastern)
-df['date'] = df['datetime_est'].dt.date
-df['minute_of_day'] = df['datetime_est'].dt.hour * 60 + df['datetime_est'].dt.minute
-agg_df = df.groupby(['date', 'minute_of_day']).size().reset_index(name='tweet_count')
-
-all_dates = sorted(agg_df['date'].unique(), reverse=True)
-default_date = [str(all_dates[0])]
-
-# Initialize Dash app (unchanged)
-external_stylesheets = ['/assets/bWLwgP.css']
-app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
-
-# Time interval and days options (Modified: removed 1 day, added 120 and 240 days)
-interval_options = [
- {'label': '1 minute', 'value': 1},
- {'label': '5 minutes', 'value': 5},
- {'label': '10 minutes', 'value': 10},
- {'label': '30 minutes', 'value': 30},
- {'label': '60 minutes', 'value': 60}
-]
-
-days_options = [
- {'label': '7 days', 'value': 7},
- {'label': '30 days', 'value': 30},
- {'label': '90 days', 'value': 90},
- {'label': '120 days', 'value': 120},
- {'label': '240 days', 'value': 240}
-]
-
-# Dash app layout (unchanged except default days value)
-app.layout = html.Div([
- # Left sidebar with clock button and tooltip (unchanged)
- html.Div(
- id='clock-container',
- children=[
- html.Div(
- id='clock-button',
- children='🕒',
- style={
- 'fontSize': '24px',
- 'cursor': 'pointer',
- 'padding': '5px',
- }
- ),
- html.Div(
- id='clock-tooltip',
- children=[
- html.Div(id='pst-clock'),
- html.Div(id='cst-clock'),
- html.Div(id='est-clock')
- ],
- style={
- 'position': 'absolute',
- 'left': '35px',
- 'top': '0px',
- 'backgroundColor': 'rgba(0, 0, 0, 0.8)',
- 'color': 'white',
- 'padding': '10px',
- 'borderRadius': '5px',
- 'fontSize': '14px',
- 'display': 'none',
- 'whiteSpace': 'nowrap'
- }
- ),
- html.Div(
- id='play-button',
- children='▶️',
- n_clicks=0,
- style={
- 'fontSize': '24px',
- 'cursor': 'pointer',
- 'padding': '5px',
- 'marginTop': '10px'
- }
- )
- ],
- style={
- 'position': 'fixed',
- 'left': '10px',
- 'top': '50%',
- 'transform': 'translateY(-50%)',
- 'zIndex': 1000
- }
- ),
- # Main content
- html.Div([
- html.H1("Elon Musk Tweet Time Analysis (EST)"),
- html.Div(id='date-picker-container', children=[
- dcc.Dropdown(
- id='multi-date-picker',
- options=[{'label': str(date), 'value': str(date)} for date in all_dates],
- value=default_date,
- multi=True,
- searchable=True,
- placeholder="Search and select dates (YYYY-MM-DD)",
- style={'width': '100%'}
- )
- ]),
- dcc.Dropdown(
- id='multi-interval-picker',
- options=interval_options,
- value=10,
- style={'width': '50%', 'marginTop': '10px'}
- ),
- html.Div(id='days-display-container', style={'display': 'none'}, children=[
- dcc.Dropdown(
- id='days-display-picker',
- options=days_options,
- value=30, # Default changed to 30 since 1 is removed
- style={'width': '50%', 'marginTop': '10px'}
- )
- ]),
- html.Div(id='multi-day-warning', style={'color': 'red', 'margin': '10px'}),
- dcc.Checklist(
- id='time-zone-checklist',
- options=[
- {'label': 'California Time (PST)', 'value': 'PST'},
- {'label': 'Texas Time (CST)', 'value': 'CST'}
- ],
- value=['PST'],
- style={'margin': '10px'}
- ),
- html.Div(id='multi-tweet-summary', style={'fontSize': '20px', 'margin': '10px'}),
- dcc.Tabs(id='tabs', value='line', children=[
- dcc.Tab(label='Line Chart', value='line'),
- dcc.Tab(label='Heatmap', value='heatmap'),
- dcc.Tab(label='Scatter Plot', value='scatter'),
- ]),
- html.Div(id='tabs-content'),
- ], style={'marginLeft': '50px'}),
- dcc.Interval(id='clock-interval', interval=1000, n_intervals=0)
-])
-
-clientside_callback(
- """
- function(n_intervals) {
- const button = document.getElementById('clock-button');
- const tooltip = document.getElementById('clock-tooltip');
- if (button && tooltip) {
- button.addEventListener('mouseover', () => {
- tooltip.style.display = 'block';
- });
- button.addEventListener('mouseout', () => {
- tooltip.style.display = 'none';
- });
- }
- return window.dash_clientside.no_update;
- }
- """,
- Output('clock-container', 'id'),
- Input('clock-interval', 'n_intervals'),
- prevent_initial_call=False
-)
-
-clientside_callback(
- """
- function(n_clicks, existing_children) {
- const button = document.getElementById('play-button');
- if (!button) return '▶️';
-
- if (n_clicks > 0) {
- button.style.cursor = 'wait';
- button.innerHTML = '🔄'; // 立即显示加载状态
- setTimeout(() => {
- button.innerHTML = '✅'; // 1秒后显示完成状态
- button.style.cursor = 'pointer';
- setTimeout(() => {
- button.innerHTML = '▶️'; // 2秒后恢复初始状态
- }, 2000);
- }, 1000);
- return '🔄'; // 返回当前状态
- }
- return '▶️'; // 默认状态
- }
- """,
- Output('play-button', 'children'),
- Input('play-button', 'n_clicks'),
- State('play-button', 'children')
-)
-
-
-# Auxiliary functions (unchanged)
-def aggregate_data(data, interval):
- all_minutes = pd.DataFrame({'interval_group': range(0, 1440, interval)})
- result = []
- for date in data['date'].unique():
- day_data = data[data['date'] == date].copy()
- day_data['interval_group'] = (day_data['minute_of_day'] // interval) * interval
- agg = day_data.groupby('interval_group').size().reset_index(name='tweet_count')
- complete_data = all_minutes.merge(agg, on='interval_group', how='left').fillna({'tweet_count': 0})
- complete_data['date'] = date
- result.append(complete_data)
- return pd.concat(result, ignore_index=True)
-
-
-def generate_xticks(interval):
- if interval <= 5:
- tick_step = 60
- elif interval <= 10:
- tick_step = 60
- elif interval <= 30:
- tick_step = 120
- else:
- tick_step = 240
- ticks = list(range(0, 1440, tick_step))
- tick_labels = [f"{m // 60:02d}:{m % 60:02d}" for m in ticks]
- return ticks, tick_labels
-
-
-def minutes_to_time(minutes):
- hours = minutes // 60
- mins = minutes % 60
- return f"{hours:02d}:{mins:02d}"
-
-
-# Callback for updating clocks (unchanged)
-@app.callback(
- [Output('pst-clock', 'children'),
- Output('cst-clock', 'children'),
- Output('est-clock', 'children')],
- [Input('clock-interval', 'n_intervals')]
-)
-def update_clocks(n):
- now_utc = datetime.now(pytz.UTC)
- pst_time = now_utc.astimezone(pacific).strftime('%Y-%m-%d %H:%M:%S PST')
- cst_time = now_utc.astimezone(central).strftime('%Y-%m-%d %H:%M:%S CST')
- est_time = now_utc.astimezone(eastern).strftime('%Y-%m-%d %H:%M:%S EST')
- return f"𝕏: {pst_time}", f"🚀: {cst_time}", f"🏛️/🌴: {est_time}"
-
-
-# Callback for toggling controls visibility (unchanged)
-@app.callback(
- [Output('date-picker-container', 'style'),
- Output('days-display-container', 'style')],
- [Input('tabs', 'value')]
-)
-def toggle_controls_visibility(tab):
- if tab == 'heatmap':
- return {'display': 'none'}, {'display': 'block'}
- return {'display': 'block'}, {'display': 'none'}
-
-
-# Callback for updating tabs content (Modified to add Thursday-Friday lines)
-@app.callback(
- [Output('tabs-content', 'children'),
- Output('multi-day-warning', 'children'),
- Output('multi-tweet-summary', 'children')],
- [Input('tabs', 'value'),
- Input('multi-date-picker', 'value'),
- Input('multi-interval-picker', 'value'),
- Input('time-zone-checklist', 'value'),
- Input('days-display-picker', 'value')]
-)
-def render_tab_content(tab, selected_dates, interval, time_zones, days_to_display):
- warning = ""
- if tab != 'heatmap':
- if len(selected_dates) > 10:
- selected_dates = selected_dates[:10]
- warning = "Maximum of 10 days can be selected. Showing first 10 selected days."
- selected_dates = [datetime.strptime(date, '%Y-%m-%d').date() for date in selected_dates]
- else:
- selected_dates = sorted(all_dates, reverse=True)[:days_to_display]
-
- multi_data_agg = agg_df[agg_df['date'].isin(selected_dates)].copy()
- if multi_data_agg.empty:
- multi_data_agg = pd.DataFrame({'date': selected_dates, 'minute_of_day': [0] * len(selected_dates)})
- tweet_count_total = 0
- else:
- tweet_count_total = multi_data_agg['tweet_count'].sum()
-
- multi_data_raw = df[df['date'].isin(selected_dates)].copy()
- if multi_data_raw.empty:
- tweet_count_total = 0
-
- agg_data = aggregate_data(multi_data_agg, interval)
- xticks, xtick_labels = generate_xticks(interval)
-
- if tab == 'line':
- fig = go.Figure()
- for date in selected_dates:
- day_data = agg_data[agg_data['date'] == date]
- hover_times = [f"{date} {minutes_to_time(minute)} EST" for minute in day_data['interval_group']]
- fig.add_trace(go.Scatter(
- x=day_data['interval_group'],
- y=day_data['tweet_count'],
- mode='lines',
- name=str(date),
- customdata=hover_times,
- hovertemplate='%{customdata}
Tweets: %{y}'
- ))
-
- elif tab == 'heatmap':
- pivot_data = agg_data.pivot(index='date', columns='interval_group', values='tweet_count').fillna(0)
- pivot_data.index = pivot_data.index.astype(str)
- fig = go.Figure(data=go.Heatmap(
- z=pivot_data.values,
- x=[minutes_to_time(m) for m in pivot_data.columns],
- y=pivot_data.index,
- colorscale='Viridis',
- hoverongaps=False,
- hovertemplate='%{y} %{x} EST
Tweets: %{z}'
- ))
-
- for i, date_str in enumerate(pivot_data.index):
- date = datetime.strptime(date_str, '%Y-%m-%d').date()
- if date.weekday() == 4: # Friday
- prev_date = date - timedelta(days=1)
- if str(prev_date) in pivot_data.index:
- y_position = i / len(pivot_data.index)
- fig.add_hline(
- y=1-y_position,
- line_dash="dash",
- line_color="white",
- xref="x",
- yref="paper"
- )
- fig.update_layout(
- title = f'Tweet Heatmap (Interval: {interval} minutes, EST, {len(selected_dates)} days)',
- xaxis_title = 'Time of Day (HH:MM EST)',
- yaxis_title = 'Date',
- height = max(400, len(selected_dates) * 20),
- yaxis = dict(autorange='reversed')
- )
-
- elif tab == 'scatter':
- fig = go.Figure()
- for date in selected_dates:
- day_data = multi_data_raw[multi_data_raw['date'] == date]
- if not day_data.empty:
- hover_times = [t.strftime('%Y-%m-%d %H:%M:%S EST') for t in day_data['datetime_est']]
- fig.add_trace(go.Scatter(
- x=day_data['minute_of_day'],
- y=[str(date)] * len(day_data),
- mode='markers',
- name=str(date),
- customdata=hover_times,
- hovertemplate='%{customdata}',
- marker=dict(size=8)
- ))
-
- if tab in ['line', 'scatter']:
- if 'PST' in time_zones:
- pacific_2am_est = (2 + 3) * 60
- pacific_7am_est = (7 + 3) * 60
- fig.add_vline(x=pacific_2am_est, line_dash="dash", line_color="blue", annotation_text="CA 2AM PST")
- fig.add_vline(x=pacific_7am_est, line_dash="dash", line_color="blue", annotation_text="CA 7AM PST")
- if 'CST' in time_zones:
- central_2am_est = (2 + 1) * 60
- central_7am_est = (7 + 1) * 60
- fig.add_vline(x=central_2am_est, line_dash="dash", line_color="green", annotation_text="TX 2AM CST")
- fig.add_vline(x=central_7am_est, line_dash="dash", line_color="green", annotation_text="TX 7AM CST")
-
- if tab in ['line', 'scatter']:
- fig.update_layout(
- title=f'{"Line" if tab == "line" else "Scatter"} Tweet Frequency (Interval: {interval} minutes, EST)',
- xaxis_title='Eastern Time (HH:MM)',
- yaxis_title='Tweet Count' if tab == 'line' else 'Date',
- xaxis=dict(range=[0, 1440], tickvals=xticks, ticktext=xtick_labels, tickangle=45),
- height=600,
- showlegend=True,
- yaxis=dict(autorange='reversed') if tab == 'scatter' else None
- )
-
- summary = f"Total tweets for selected dates: {int(tweet_count_total)}"
- return dcc.Graph(figure=fig), warning, summary
-
-@app.callback(
- Output('play-button', 'n_clicks'),
- Input('play-button', 'n_clicks'),
- prevent_initial_call=True
-)
-def execute_function(n_clicks):
- if n_clicks > 0:
- # Add your function to execute here
- # For example:
- print("Function executed!")
- # Simulate some work
- import time
- time.sleep(1)
- # Reset n_clicks to 0 to allow repeated clicks
- return 0
-
-
-# Run the app
-if __name__ == '__main__':
- app.run_server(debug=True)
\ No newline at end of file
diff --git a/api/assets/bWLwgP.css b/assets/bWLwgP.css
similarity index 100%
rename from api/assets/bWLwgP.css
rename to assets/bWLwgP.css
diff --git a/fixed.csv b/cache/fixed.csv
similarity index 98%
rename from fixed.csv
rename to cache/fixed.csv
index 7abc6bf..33053fc 100644
--- a/fixed.csv
+++ b/cache/fixed.csv
@@ -9869,8 +9869,8 @@ rank_id,id,text,created_at
9868,1886471738273247567,"Another description for these types of payments is “money laundering” https://t.co/I2o6IZz98e","Feb 3, 12:48:06 PM EST"
9869,1886482300206244336,"🇺🇸🇺🇸 https://t.co/rim3JWWQOm","Feb 3, 1:30:04 PM EST"
9870,1886492712700141634,"The corrupt politicians “protesting” outside the USAID building are the ones getting money from USAID. That’s why they’re there – they want your stolen tax dollars! https://t.co/5yVDqg0mjw","Feb 3, 2:11:26 PM EST"
-9871,1886493949109657616,"RT @KanekoaTheGreat: @alrwashdeh_abed Shut it down","Feb 3, 2:16:21 PM EST"
-9872,1886493947415195870,"RT @alrwashdeh_abed: @KanekoaTheGreat That’s my own opinion—> maybe I’m wrong🧐USAID should be shut down. It’s the largest source of insta…","Feb 3, 2:16:21 PM EST"
+9871,1886493947415195870,"RT @alrwashdeh_abed: @KanekoaTheGreat That’s my own opinion—> maybe I’m wrong🧐USAID should be shut down. It’s the largest source of insta…","Feb 3, 2:16:21 PM EST"
+9872,1886493949109657616,"RT @KanekoaTheGreat: @alrwashdeh_abed Shut it down","Feb 3, 2:16:21 PM EST"
9873,1886494235328962718,"RT @benhabib6: The @GreatBritishPAC is going to assist our politicians in delivering a proud independent sovereign and prosperous United Ki…","Feb 3, 2:17:29 PM EST"
9874,1886497226962403469,"💯 https://t.co/16w8MUYomb","Feb 3, 2:29:22 PM EST"
9875,1886497326862057858,"RT @HSajwanization: Please get verified on 𝕏 😡","Feb 3, 2:29:46 PM EST"
@@ -12747,3 +12747,180 @@ rank_id,id,text,created_at
12746,1896442688779723184,"RT @SecRubio: Being a peacemaker is not a bad thing. We should be applauding and supporting @POTUS's efforts to bring about peace. https://…","Mar 3, 1:09:05 AM EST"
12747,1896442743871959218,"RT @SpaceX: Falcon 9 delivers 21 @Starlink satellites to the constellation from Florida https://t.co/6PMELtitXj","Mar 3, 1:09:18 AM EST"
12748,1896443306739110004,"Deservedly so https://t.co/T1KCXRMO22","Mar 3, 1:11:33 AM EST"
+12749,1896454626855260658,"RT @cb_doge: All 7 Starship Launches https://t.co/psGsPgzwWG","Mar 3, 1:56:32 AM EST"
+12750,1896455473496490300,"RT @FloydMayweather: 💪🏾 https://t.co/ARyfTVBCxW","Mar 3, 1:59:53 AM EST"
+12751,1896456388781732113,"Wow https://t.co/nsmKkGkX5B","Mar 3, 2:03:32 AM EST"
+12752,1896456775114838305,"RT @GadSaad: 100-fold greater.","Mar 3, 2:05:04 AM EST"
+12753,1896457559755923750,"💯 https://t.co/o4lcaG30MX","Mar 3, 2:08:11 AM EST"
+12754,1896458441386058093,"RT @chamath: @WarClandestine https://t.co/FKqre8kpHA","Mar 3, 2:11:41 AM EST"
+12755,1896461656265556463,"RT @TheChiefNerd: MEGYN KELLY: “Last month on [CNN’s] YouTube feed, they had 155M views and we were 147M … Just me and my six producers ver…","Mar 3, 2:24:28 AM EST"
+12756,1896462253987389624,"RT @MarioNawfal: 🇺🇸 MEDIA TRUST HITS ALL-TIME LOW: ONLY 31% OF AMERICANS STILL BELIEVETrust in mass media has cratered to its lowest poin…","Mar 3, 2:26:50 AM EST"
+12757,1896462663779291491,"RT @MarioNawfal: ELON: I’M JUST TRYING TO KEEP CIVILIZATION GOINGJoe Rogan: “What kind of responsibility do you feel, knowing that if y…","Mar 3, 2:28:28 AM EST"
+12758,1896462966549340213,"RT @thecoercednurse: 🤯 I wanted to see how @grok would analyze some of my medical imaging. I pulled a couple screen shots and asked, no med…","Mar 3, 2:29:40 AM EST"
+12759,1896462993216647299,"RT @TheChiefNerd: I tested uploading multiple sets of bloodwork to @grok tonight and just WOW!! It not only explained the results but also…","Mar 3, 2:29:46 AM EST"
+12760,1896463753908310216,"Yes https://t.co/dEI1igWlO8","Mar 3, 2:32:48 AM EST"
+12761,1896464789242802259,"RT @Sadie_NC: The guy has time during a war to shoot a Vogue cover. This should tell you all you need to know about what is really going on…","Mar 3, 2:36:55 AM EST"
+12762,1896465825424683239,"RT @RapidResponse47: .@SecRubio: ""The sooner everyone grows up around here and figures out that this is a bad war that's heading in a bad d…","Mar 3, 2:41:02 AM EST"
+12763,1896466546610049210,"RT @cb_doge: “Each Raptor rocket engine produces twice as much thrust as all 4 engines on a 747. There are 33 Raptor engines powering the S…","Mar 3, 2:43:54 AM EST"
+12764,1896468346155225554,"RT @FoxNews: 'Reagan' screenwriter claims Oscars' DEI requirements excluded film from Best Picture consideration https://t.co/SICeIS2nw2","Mar 3, 2:51:03 AM EST"
+12765,1896470003387670554,"RT @davepl1968: #Grok3 just blew my mind. I'm attempting to set up (partition and format) an old SCSI drive on a 1980s PDP-11/73 connect…","Mar 3, 2:57:38 AM EST"
+12766,1896474520124547370,"🎯 https://t.co/b2y1CgbAhx","Mar 3, 3:15:35 AM EST"
+12767,1896522887127085085,"RT @CodeByPoonam: Grok 3 Voice Mode just dropped and it's INSANEEveryone on X is going crazy over its capabilities.Here are 7 wild exam…","Mar 3, 6:27:46 AM EST"
+12768,1896609674587472297,"Starship is the first rocket/spaceship capable of making life multiplanetary, which requires it to be both far more powerful and far more advanced than anything that came before. https://t.co/8E6UPRwb8V","Mar 3, 12:12:38 PM EST"
+12769,1896619960899948862,"A senior exec at Tesla sent me some funny pics from days in the factory where I was trying to show the construction team day shift what equipment wasn’t working and needed to be removed.So, I spray-painted stick figures on them 😂 https://t.co/ZWoE2yvVs","Mar 3, 12:53:30 PM EST"
+12770,1896620487046041778,"Zelensky wants a forever war, a never-ending graft meat grinder. This is evil. https://t.co/FVaEkIm7Gq","Mar 3, 12:55:36 PM EST"
+12771,1896622963098865855,"🤨 https://t.co/RPQBtQE6j4","Mar 3, 1:05:26 PM EST"
+12772,1896624661959709023,"🔥😂 https://t.co/WEUd8kUkTF","Mar 3, 1:12:11 PM EST"
+12773,1896624753743733091,"RT @cb_doge: BREAKING: In just 6 weeks, DOGE has saved American taxpayers ~$105 billion! https://t.co/9j7p4hqvZe","Mar 3, 1:12:33 PM EST"
+12774,1896624802968023441,"RT @PressSec: Remember when Joe Biden and Democrats said they needed a border bill to secure the border?President Trump did this in four…","Mar 3, 1:12:45 PM EST"
+12775,1896625472957796612,"Imagine if that were to happen … oh it already has https://t.co/bFUfKZ2mCa","Mar 3, 1:15:25 PM EST"
+12776,1896629486994821514,"RT @DonaldJTrumpJr: Instant classic.","Mar 3, 1:31:22 PM EST"
+12777,1896630661118874001,"Still very few people know about this https://t.co/15DoFSmsRe","Mar 3, 1:36:01 PM EST"
+12778,1896630890484338761,"The Tesla team did a great job clearing out the broken conveyor system within 48 hours!","Mar 3, 1:36:56 PM EST"
+12779,1896633484686643516,"RT @TheRabbitHole84: I’m hoping Trump mentions DOGE and cost cutting efforts for streamlining the government. Given that the United States…","Mar 3, 1:47:15 PM EST"
+12780,1896633761720389905,"Improved efficiency https://t.co/EbygKLQ41y","Mar 3, 1:48:21 PM EST"
+12781,1896639458478551297,"RT @charliekirk11: The Democrat exodus didn’t stop in November. @MichaelPruser has been giving updates on voter registration at the state l…","Mar 3, 2:10:59 PM EST"
+12782,1896639735696953753,"RT @DefiyantlyFree: Nancy Mace slams the left for being upset that DOGE and Elon Musk are finding 4 billion dollars a day in waste, fraud,…","Mar 3, 2:12:05 PM EST"
+12783,1896639830198743123,"RT @BasedMikeLee: Judges aren’t presidents If they want to be they can run for that officeIt’s fine to be a judge Or a president Bu…","Mar 3, 2:12:28 PM EST"
+12784,1896640340498772370,"RT @libsoftiktok: AOC lies claiming that the American people ""vehemently opposed"" to Elon cutting waste, fraud, and abuse from the federal…","Mar 3, 2:14:29 PM EST"
+12785,1896640842250776740,"RT @DC_Draino: DOGE may have uncovered over $1 Trillion in Social Security fraud?!Over 73% of Americans approve of what DOGE is doing b/c…","Mar 3, 2:16:29 PM EST"
+12786,1896641200796610863,"RT @WallStreetMav: DOGE has become one of the most popular aspects of the Trump Presidency.In order to make the changes long term, it nee…","Mar 3, 2:17:54 PM EST"
+12787,1896643553964814449,"Shady https://t.co/EqPUqu4Jgf","Mar 3, 2:27:15 PM EST"
+12788,1896643623040733528,"RT @WallStreetMav: 🎯 https://t.co/R4RzsNP3q9","Mar 3, 2:27:32 PM EST"
+12789,1896644021306654823,"Grok successfully predicted all Oscar winners!Download the @Grok app and try voice mode! https://t.co/Dq0OLtMHrO","Mar 3, 2:29:07 PM EST"
+12790,1896644332784058786,"RT @RapidResponse47: US Manufacturing Expands For Second Month Under Trump, Driven by Stronger Demand and Policy Shifts https://t.co/R7YtjE…","Mar 3, 2:30:21 PM EST"
+12791,1896644396692672814,"RT @teslaeurope: Model 3 comes with lots of the same improvements that you love about New Model YAnd starts at ~40,000 EUR in many countr…","Mar 3, 2:30:36 PM EST"
+12792,1896645680757866956,"RT @SERobinsonJr: Cybertruck via Cybertunnel https://t.co/rYI4GkgI1e","Mar 3, 2:35:42 PM EST"
+12793,1896646083042021496,"Download the @Grok app https://t.co/ZUsM3kfnI9","Mar 3, 2:37:18 PM EST"
+12794,1896653889296093313,"RT @MarshaBlackburn: For far too long federal bureaucrats abused the taxpayer and spent money like a drunken sailor.Those days have come…","Mar 3, 3:08:19 PM EST"
+12795,1896659139704877259,"RT @RapidResponse47: .@POTUS: ""President Zelenskyy supposedly made a statement today -- He said he thinks the war is going to go on for a l…","Mar 3, 3:29:11 PM EST"
+12796,1896660984762352079,"RT @fentasyl: Over $450,000,000 of HHS FY24 grant-funded projects contain terms used by the far-left to express their hatred -- Health Scie…","Mar 3, 3:36:31 PM EST"
+12797,1896667792923099434,"True https://t.co/TE4OcZ66pc","Mar 3, 4:03:34 PM EST"
+12798,1896668653833310573,"Interesting https://t.co/9hbztcM9wV","Mar 3, 4:07:00 PM EST"
+12799,1896669877236273331,"Even JFK and Clinton! https://t.co/MmOanHopxY","Mar 3, 4:11:51 PM EST"
+12800,1896671278494630128,"Interesting https://t.co/oBXMSlljCr","Mar 3, 4:17:25 PM EST"
+12801,1896671341345906923,"RT @cb_doge: BREAKING: President Trump is more popular than ever as per the new approval tracker by the Daily Mail and JL Partners. 🇺🇸 http…","Mar 3, 4:17:40 PM EST"
+12802,1896671937876877512,"RT @spacesudoer: Starship flight 8 mission profile. https://t.co/i1bkN8AFNx","Mar 3, 4:20:03 PM EST"
+12803,1896692431955112344,"We had an ace up our sleeve @xAI. Turns out to be just enough to hold first place!Upgrades are in work to address presentation quality/style vs competition. That will shift ELO meaningfully higher. https://t.co/qr0HiUqv7R","Mar 3, 5:41:29 PM EST"
+12804,1896692760926961928,"The NGOs are trying to destroy democracy! https://t.co/Kla23rPXHS","Mar 3, 5:42:47 PM EST"
+12805,1896693369948311986,"True. As distasteful as it is, Zelensky should be offered some kind of amnesty in a neutral country in exchange for a peaceful transition back to democracy in Ukraine. https://t.co/ZpF6nLIDtw","Mar 3, 5:45:12 PM EST"
+12806,1896694257865642411,"Major conflict of interest! https://t.co/ySLc2hl8Lt","Mar 3, 5:48:44 PM EST"
+12807,1896694292875513910,"RT @SpaceX: The Starship team is go for prop load. Targeting 5:45pm CT for liftoff of Starship’s eighth flight test.The launch webcast wi…","Mar 3, 5:48:52 PM EST"
+12808,1896694826462290180,"If you haven’t tried unhinged voice mode on the @Grok app, you’re missing out 🤣🤣","Mar 3, 5:51:00 PM EST"
+12809,1896695608720933024,"RT @Rothmus: 💯 https://t.co/cnfQ0fKGOd","Mar 3, 5:54:06 PM EST"
+12810,1896696427046445109,"RT @RapidResponse47: 🚨 President Donald J. Trump announces a new $100 billion investment by TSMC in U.S. chips manufacturing https://t.co/2…","Mar 3, 5:57:21 PM EST"
+12811,1896696896552583394,"RT @WhiteHouse: President Trump’s Address to Congress Theme Reveal!THE RENEWAL OF THE AMERICAN DREAM 🇺🇸Tomorrow night, 9 PM ET! https:/…","Mar 3, 5:59:13 PM EST"
+12812,1896697201109426293,"RT @MarioNawfal: 🚨GROK-3 CLAIMS TOP SPOT—xAI BEATS THE COMPETITIONGrok-3 just tied for #1 on the Arena AI leaderboard, proving it’s a pow…","Mar 3, 6:00:26 PM EST"
+12813,1896697802002149867,"About 42 minutes until Starship Test Flight 8! https://t.co/ehwWcap7Uh","Mar 3, 6:02:49 PM EST"
+12814,1896697983439347881,"RT @techdevnotes: Grok 3 is back on TOP!","Mar 3, 6:03:32 PM EST"
+12815,1896699910550147242,"This would be cool https://t.co/OB05J4xi8c","Mar 3, 6:11:12 PM EST"
+12816,1896703213434462640,"Raptor 3 has almost twice the thrust and much higher reliability than Raptor 1, despite costing about four times less! https://t.co/KfqMafJVKi","Mar 3, 6:24:19 PM EST"
+12817,1896704523609190587,"RT @SpaceX: Starship’s flight trajectory for today’s test https://t.co/UeshY3RHQf","Mar 3, 6:29:32 PM EST"
+12818,1896705733028360315,"RT @SpaceX: In addition to continued infrastructure development at Starbase, Texas, where SpaceX is headquartered, SpaceX is expanding its…","Mar 3, 6:34:20 PM EST"
+12819,1896718180695101800,"Too many question marks about this flight and then we were 20 bar low on ground spin start pressure. Best to destack, inspect both stages and try again in a day or two. https://t.co/TekpJ0uz5y","Mar 3, 7:23:48 PM EST"
+12820,1896721195845955757,"$80M in ridiculous spending eliminated! https://t.co/CHnMwzp4vY","Mar 3, 7:35:47 PM EST"
+12821,1896723100198445393,"Wow https://t.co/xWqI4gV4oQ","Mar 3, 7:43:21 PM EST"
+12822,1896723180720660693,"RT @nicksortor: 🚨 #BREAKING: Democrats just BLOCKED the bill meant to protect women and girls in sportsWhen Democrats say they’re fightin…","Mar 3, 7:43:40 PM EST"
+12823,1896723854518800497,"RT @RapidResponse47: The Protection of Women and Girls in Sports Act was just blocked in the Senate.Why do they want boys to play in your…","Mar 3, 7:46:20 PM EST"
+12824,1896729318585508170,"RT @WhiteHouse: MEN DO NOT BELONG IN WOMEN’S SPORTS. https://t.co/iskbT6H3YU","Mar 3, 8:08:03 PM EST"
+12825,1896729710635487570,"💯 https://t.co/rrrSKnNrEj","Mar 3, 8:09:37 PM EST"
+12826,1896730225704411173,"Congratulations! 🇺🇸🇺🇸 https://t.co/hYEGFplkum","Mar 3, 8:11:40 PM EST"
+12827,1896730644685992014,"RT @MarioNawfal: 🚨STEPHEN MILLER: TRUMP'S PRESIDENCY IS THE MOST SUCCESSFUL START IN HISTORY""President Trump is the greatest orator we've…","Mar 3, 8:13:19 PM EST"
+12828,1896740517800817082,"RT @MarioNawfal: 🇺🇸🇺🇦DAVID SACKS: WE NEED TO AUDIT UKRAINE""There's definitely been Ukrainian officials who've been caught leaving the cou…","Mar 3, 8:52:33 PM EST"
+12829,1896740708935193066,"RT @MarioNawfal: 🇺🇸🇺🇦DAVID SACKS: I DON'T THINK ZELENSKY WANTS PEACE""He says that the war needs to keep going on.If the war is over, he…","Mar 3, 8:53:19 PM EST"
+12830,1896741246825295948,"https://t.co/OgrrcTyUVi","Mar 3, 8:55:27 PM EST"
+12831,1896741410587738169,"Wow https://t.co/bZzShuUvTK","Mar 3, 8:56:06 PM EST"
+12832,1896744422114832571,"RT @KanekoaTheGreat: NEW: David Sacks says Democrats now support endless war, Zelensky wants the war to never end, and Joe Biden could have…","Mar 3, 9:08:04 PM EST"
+12833,1896757504459313663,"RT @JDVance: Hope is not a strategy to bring peace to Ukraine.The only person in town who seems to have a strategy is President Donald J.…","Mar 3, 10:00:03 PM EST"
+12834,1896757802330444198,"RT @DOGE: The Office of Personnel Management (~2500 employees) budgeted $370M for IT spending in FY2025. They believe this value can be re…","Mar 3, 10:01:14 PM EST"
+12835,1896763022238216246,"RT @SpaceX: To meet the growing global demand for high-speed internet, @Starlink is expanding its factory in Bastrop, Texas https://t.co/dx…","Mar 3, 10:21:59 PM EST"
+12836,1896763362098417801,"🎯😂 https://t.co/KEpQCoCkhv","Mar 3, 10:23:20 PM EST"
+12837,1896763814198317363,"RT @MarioNawfal: 🚨🇺🇸 SHELLENBERGER: DEMOCRATS ARE NOW THE PARTY OF 'NO, YOU CAN'T'""I don’t think people believe Elon is doing this for mo…","Mar 3, 10:25:08 PM EST"
+12838,1896764761343475832,"💯 https://t.co/6JbcywJEmU","Mar 3, 10:28:53 PM EST"
+12839,1896776799461535825,"“Big Balls” lmaooo https://t.co/v0qmeibHDe","Mar 3, 11:16:44 PM EST"
+12840,1896779474425032926,"So Senator Richard Blumenthal, aka “Dick”, really wants to meet “Big Balls”!!This is too good 🤣🤣 https://t.co/v0qmeibHDe","Mar 3, 11:27:21 PM EST"
+12841,1896779767674028269,"🤦♂️ Taxpayer-funded propaganda! https://t.co/XZLdMzXCuc","Mar 3, 11:28:31 PM EST"
+12842,1896780346567647347,"Unhinged @Grok is next-level 🤣🤣 https://t.co/yNzAVWROFu","Mar 3, 11:30:49 PM EST"
+12843,1896781364017704978,"🇺🇸🇺🇸 https://t.co/hQT4TUhqui","Mar 3, 11:34:52 PM EST"
+12844,1896782152668488122,"RT @MarioNawfal: 🚨🇺🇸 SCOTT JENNINGS: TRUMP IS MORE POPULAR THAN ANY DEMOCRAT—AND REPUBLICANS LOVE WHAT HE’S DOING""You guys keep trying to…","Mar 3, 11:38:00 PM EST"
+12845,1896783829278589120,"RT @ablenessy: Give Grok Android Beta a try, let me know what you think.https://t.co/lMiIh1AR9F","Mar 3, 11:44:40 PM EST"
+12846,1896784373799874931,"Maybe they should meet for tea …","Mar 3, 11:46:49 PM EST"
+12847,1896788581068538340,"RT @cb_doge: You are the media now. https://t.co/nq4PHeM4vl","Mar 4, 12:03:33 AM EST"
+12848,1896789742051787192,"RT @KristenWaggoner: The votes are in. Here’s the difference between the American public & U.S. Senate on who supports protecting women’s s…","Mar 4, 12:08:09 AM EST"
+12849,1896792179420570033,"RT @Truthful_ast: Oh man the two towers look sick https://t.co/KDez3z95cS","Mar 4, 12:17:50 AM EST"
+12850,1896793979842421011,"RT @DOGE: Updated data on DEI related contract cancellations (separate from grants) by agency: https://t.co/mq7RkMCFEE","Mar 4, 12:25:00 AM EST"
+12851,1896807731870527848,"Yeshttps://t.co/LNbqvhF5EK https://t.co/QZKrKnK1II","Mar 4, 1:19:38 AM EST"
+12852,1896808067997807092,"RT @MarioNawfal: 🚨🇺🇸HUMAN SMUGGLING RING BUSTED IN LOS ANGELESThis wasn’t just any smuggling ring—it was one of the biggest in U.S. histo…","Mar 4, 1:20:59 AM EST"
+12853,1896809849360695411,"RT @TheGigaCast: Every Tesla EV sold in America was made in America 🇺🇸 https://t.co/ahwhsyQtLi","Mar 4, 1:28:03 AM EST"
+12854,1896810342359126458,"Well, at least your federal tax dollars aren’t paying for it, just New York tax dollars pay for it now https://t.co/8MNQ3VllR8","Mar 4, 1:30:01 AM EST"
+12855,1896810495581245772,"RT @libsoftiktok: Giant male in a MA school injured 3 girls during a girls basketball match. They ended the game early before he can hurt m…","Mar 4, 1:30:37 AM EST"
+12856,1896813119999209477,"My post below was almost 2 years ago. Stop sending men to die for nothing. ENOUGH!! https://t.co/jpzqAbixtc","Mar 4, 1:41:03 AM EST"
+12857,1896813706975351137,"This was asked of children. Stop this madness. https://t.co/u8Ha2QtAlY","Mar 4, 1:43:23 AM EST"
+12858,1896816271569854684,"Yet another scam stealing your tax dollars has been stopped https://t.co/eyYfg7xemJ","Mar 4, 1:53:34 AM EST"
+12859,1896816749288579522,"Fixed now. Just basic block and tackle stuff. https://t.co/4Jb23a9l3H","Mar 4, 1:55:28 AM EST"
+12860,1896817607950655762,"RT @Regulawyer: A friend borrowed my Tesla with FSD for a week. Here’s how it went: (Note: She has never been a Tesla enthusiast. She’s a…","Mar 4, 1:58:53 AM EST"
+12861,1896822126516302132,"🚀 💫 https://t.co/03AXyhwBir","Mar 4, 2:16:50 AM EST"
+12862,1896835926221037845,"RT @sdamico: This is ~ahead of the modal Chinese consumer electronics factory. Crazy that in the US only SpaceX and Tesla can do it.","Mar 4, 3:11:40 AM EST"
+12863,1896842563098993114,"RT @libsoftiktok: DOGE canceled a $215 million contract for a Texas nonprofit which operated a housing facility for migrants.The housing…","Mar 4, 3:38:03 AM EST"
+12864,1896842853839769839,"RT @MarioNawfal: 🚨🇷🇴EXCLUSIVE: ROMANIAN MEP - WE ARE NO LONGER A TRUE DEMOCRACYGeorgiana Teodorescu:""We had a huge protest in Romania t…","Mar 4, 3:39:12 AM EST"
+12865,1896843688325869853,"RT @KingBobIIV: Remember in Orwell’s 1984 when, in the middle of Hate Week, Oceania suddenly switches its enemy? One minute, everyone is ra…","Mar 4, 3:42:31 AM EST"
+12866,1896845309093020052,"RT @MarioNawfal: 🚨69 𝕏 MINUTES – RAW. UNCENSORED. UNSTOPPABLE.Welcome to Episode 2 of 69 𝕏 Minutes—where no one’s pulling the strings, no…","Mar 4, 3:48:58 AM EST"
+12867,1896928784764596555,"RT @MarioNawfal: 🚨12 HOUR NEWS RECAP1. Trump paused all military aid to Ukraine, escalating tensions days after his heated Oval Office me…","Mar 4, 9:20:40 AM EST"
+12868,1896929847798268162,"They are all actors reading a script https://t.co/wemW9tE9PR","Mar 4, 9:24:53 AM EST"
+12869,1896930796310806835,"USAID was interfering in governments throughout the world and pushing radical left politics https://t.co/2qO9d3znnP","Mar 4, 9:28:39 AM EST"
+12870,1896931790226612720,"Who is writing the words that the puppets speak? That’s the real question. https://t.co/N8kaTj8vPU","Mar 4, 9:32:36 AM EST"
+12871,1896932070074823068,"RT @BasedMikeLee: It’s almost like someone’s telling Democrats what to say","Mar 4, 9:33:43 AM EST"
+12872,1896933830256398823,"Can’t someone be bothered to write three speeches? This is just lazy 😂 https://t.co/Ih43iMPV9Z","Mar 4, 9:40:43 AM EST"
+12873,1896939412522713221,"Exactly https://t.co/sdkuQLq258","Mar 4, 10:02:54 AM EST"
+12874,1896939718081925259,"It’s a valid point. The rules are asymmetric. https://t.co/XvKPmUQy6I","Mar 4, 10:04:06 AM EST"
+12875,1896942909196472598,"RT @LisaSu: Huge step forward for advanced chip manufacturing in the U.S. We have seen great results as a lead customer @TSMC in Arizona a…","Mar 4, 10:16:47 AM EST"
+12876,1896943837337235547,"True https://t.co/fM61ATI1GI","Mar 4, 10:20:28 AM EST"
+12877,1896944271879721169,"💯 https://t.co/miRfUYCnkz","Mar 4, 10:22:12 AM EST"
+12878,1896949130251084003,"RT @charliekirk11: Vice President @JDVance introduces Elbridge Colby to the Senate Armed Services Committee to become the 3rd highest ranki…","Mar 4, 10:41:30 AM EST"
+12879,1896953284906393754,"Ok, so who is sending the social media interns of the politicians what to post? https://t.co/FdMBEn3Kh1","Mar 4, 10:58:01 AM EST"
+12880,1896959643261493394,"Confirm @ElbridgeColby! https://t.co/u9HmvXNlkA","Mar 4, 11:23:17 AM EST"
+12881,1896959729819365541,"RT @Grummz: Blackrock drops DEI under Trumps new guidelines!This is monumental. Blackrock was the biggest pusher of DEI in 2020 and 2021,…","Mar 4, 11:23:38 AM EST"
+12882,1896959865815445887,"Worst puppet show ever 🤡🤣 https://t.co/4Fhh330ZtG","Mar 4, 11:24:10 AM EST"
+12883,1896960472211247361,"And who told them ALL to hold the microphone like they’re a teenager doing TikTok videos 🤣🤣 https://t.co/EKfr7VJhu9","Mar 4, 11:26:35 AM EST"
+12884,1896962300604805314,"17 politicians all saying the exact same thing at the same time!!Such lazy propagandists they are 🤨 https://t.co/AuGaeUiFtn","Mar 4, 11:33:50 AM EST"
+12885,1896964635418583498,"Did Adam Schiff commit treason? Sounds like he did. https://t.co/3XAzP6oSVe","Mar 4, 11:43:07 AM EST"
+12886,1896965855361294376,"Now we’re up to 22 Dem senators all doing the same cringe video simultaneously!I will buy a Cybertruck for anyone can provide proof of who wrote this particular piece of propaganda. First person to post proof in the replies to this post gets the truck","Mar 4, 11:47:58 AM EST"
+12887,1896965989797126213,"RT @nicksortor: 🚨 UPDATE: An ASTOUNDING **22** Democrat Senators have uploaded videos of themselves reading off an identical cringey script…","Mar 4, 11:48:30 AM EST"
+12888,1896966739189199025,"Actions, not words, are what matter. Let’s see what actions take place. https://t.co/mqmlXAjTGX","Mar 4, 11:51:29 AM EST"
+12889,1896969640141844625,"RT @jasondebolt: I wish more people understood this.If what David is saying here was more widely understood, there would be a lot less po…","Mar 4, 12:03:00 PM EST"
+12890,1896975038181728449,"💯 https://t.co/aRWF3iIgJU","Mar 4, 12:24:27 PM EST"
+12891,1896975177264848999,"😂 https://t.co/7UiVpQlfm4","Mar 4, 12:25:01 PM EST"
+12892,1896975871904505884,"Something to think about https://t.co/KbZQEMpFXP","Mar 4, 12:27:46 PM EST"
+12893,1896981952240214436,"The public now knows that they’re all just puppets with no mind of their own 🤡🤡 https://t.co/ZP7LP7OCjc","Mar 4, 12:51:56 PM EST"
+12894,1896982086139117581,"RT @karmaycholera: To everyone hating on @elonmusk:History is the ultimate judge. People have always been condemned by some and defended…","Mar 4, 12:52:28 PM EST"
+12895,1896982352305549738,"How many of the puppets below also have a picture with Soros?High correlation, I bet. https://t.co/HEfSsZbrJa","Mar 4, 12:53:31 PM EST"
+12896,1896982719093203269,"23 Dem senators too lazy even to reach for the thesaurus 🤣🤣 https://t.co/eAD1VYE9XT","Mar 4, 12:54:59 PM EST"
+12897,1896989474040766786,"Unlike the 23 Dem senators too lazy even to pick up a thesaurus, President @realDonaldTrump is his own person https://t.co/yCZd6ESlP8","Mar 4, 1:21:49 PM EST"
+12898,1896989859509846464,"Such lazy puppets smh https://t.co/kdtYetllAI","Mar 4, 1:23:21 PM EST"
+12899,1896990302512275665,"RT @TheRabbitHole84: 🛻 Honk 🛻 https://t.co/3rh0EeBNP6","Mar 4, 1:25:07 PM EST"
+12900,1896990708806115827,"🎯 https://t.co/shVpiti8Fz","Mar 4, 1:26:44 PM EST"
+12901,1896990879438791120,"A lot of people need to move from low to negative productivity roles in government (and some in industry) to high productivity roles in the commercial sector. That is temporarily disruptive, but ultimately for the best.","Mar 4, 1:27:24 PM EST"
+12902,1896994374195798037,"Strong men make good times https://t.co/h4ok05TzYz","Mar 4, 1:41:17 PM EST"
+12903,1896994479045009702,"RT @thatsKAIZEN: For God’s sake - Trump is literally stopping WW3 with Russia, stopping fentanyl coming across our borders with tariffs, ex…","Mar 4, 1:41:42 PM EST"
+12904,1896994698289668503,"They need to return the money https://t.co/OoT5SvQrtd","Mar 4, 1:42:35 PM EST"
+12905,1896994904133525813,"Yes https://t.co/a6XoJKYOYq","Mar 4, 1:43:24 PM EST"
+12906,1896995745280266333,"Making govt waste an offer it can’t refuse https://t.co/PGTdkXstvu","Mar 4, 1:46:44 PM EST"
+12907,1896997266084520053,"FAFO","Mar 4, 1:52:47 PM EST"
+12908,1896997721418162549,"Stole a million dollars of taxpayer money? 🤔 https://t.co/QIHkbynl8Y","Mar 4, 1:54:35 PM EST"
+12909,1896999314825863216,"I love that trick. Works every time 😂 https://t.co/92rtP1Ee1C","Mar 4, 2:00:55 PM EST"
+12910,1896999599837241468,"🎯 https://t.co/uJAa4eW9dz","Mar 4, 2:02:03 PM EST"
+12911,1897000036871102918,"Unhinged @Grok voice is next-level 🤣🤣 https://t.co/nQTq5JSvw7","Mar 4, 2:03:48 PM EST"
+12912,1897000224062890406,"Sorry 🤗 🤷♂️ 😂 https://t.co/XEmshEEmUC","Mar 4, 2:04:32 PM EST"
+12913,1897003882779382207,"Be careful what you wish for https://t.co/4dIHWamjsk","Mar 4, 2:19:04 PM EST"
+12914,1897009712903983165,"RT @DC_Draino: CitiBank has a lot of explaining to doThey’re caught up in a huge money laundering scam where they hold $20 Billion in tax…","Mar 4, 2:42:14 PM EST"
+12915,1897010842534834229,"RT @Fidias0: How to Legally Force the EU to Listen to You https://t.co/JeOHNu9oaA","Mar 4, 2:46:44 PM EST"
+12916,1897011191136051248,"It works https://t.co/bB19vfKusy","Mar 4, 2:48:07 PM EST"
+12917,1897013165843710049,"RT @cb_doge: Starship, Booster and Planet Earth 💫 https://t.co/hY547yUvVl","Mar 4, 2:55:58 PM EST"
+12918,1897013217727316448,"https://t.co/KRByjNe9iq","Mar 4, 2:56:10 PM EST"
+12919,1897017974978224169,"Important to note that the date of publication of the half trillion dollar annual fraud estimate from @USGAO is last year during the BIDEN administration https://t.co/tkRTk10LWC","Mar 4, 3:15:04 PM EST"
+12920,1897019044152402244,"RT @SawyerMerritt: DOGE now estimates they have saved a total of $105 billion to date, which equates to approximately $652 per taxpayer. ht…","Mar 4, 3:19:19 PM EST"
+12921,1897027549701791968,"So recent https://t.co/W7IzhzKIaf","Mar 4, 3:53:07 PM EST"
+12922,1897028911768461346,"Wow, some impressive use of @Grok here! https://t.co/LTNOBgvo5j","Mar 4, 3:58:32 PM EST"
+12923,1897030053680308288,"Should note that I grew up as English South African, not Afrikaans, and consider myself to be simply an American. No hyphen. That said, what’s happening in South Africa is deeply wrong. Not what Mandela intended at all. https://t.co/6Tqb8NS9vl","Mar 4, 4:03:04 PM EST"
+12924,1897062023005134910,"The oldest living American is Naomi Whitehead, who is 114 years old https://t.co/XHplAAv8zf","Mar 4, 6:10:06 PM EST"
+12925,1897067051145138592,"RT @naval: Anything the red Feds do, blue can undo, and vice versa.But *transfer* power and money from the Feds to the states - both red…","Mar 4, 6:30:05 PM EST"
diff --git a/elonmusk.csv b/elonmusk.csv
deleted file mode 100644
index c67029e..0000000
--- a/elonmusk.csv
+++ /dev/null
@@ -1,20279 +0,0 @@
-id,text,created_at
-1781090822034768255,"https://t.co/7gjy1KQT1Y","Apr 18, 6:41:57 PM EDT"
-1781091220816560330,"De Moraes absolutely interfered with the Brazil elections https://t.co/QYCQf02Vzq","Apr 18, 6:43:32 PM EDT"
-1781094892866781255,"Ironically, GDI pushes disinformation and should be shut down, with recriminations for the miscreants https://t.co/0wXau0T9gm","Apr 18, 6:58:08 PM EDT"
-1781098833700655158,"Crime is out of control https://t.co/oHoqsNy7Er","Apr 18, 7:13:47 PM EDT"
-1781100981037494538,"It’s a real problem! https://t.co/WJYqoTzzSR","Apr 18, 7:22:19 PM EDT"
-1781115210725511216,"RT @SpaceX: Ignition of the nine first stage Merlin engines and liftoff of Falcon 9! https://t.co/s8BKYKOsOm","Apr 18, 8:18:52 PM EDT"
-1781115316879212627,"RT @MarioNawfal: 🚨🇧🇷 BRAZILIAN X NEWS OUTLET LATEST CENSORSHIP VICTIM?!
-
-Brazilian Federal Police have reportedly summoned Brazilian news o…","Apr 18, 8:19:17 PM EDT"
-1781159551598743602,"RT @SpaceX: Falcon 9 launches 23 @Starlink satellites to low-Earth orbit from Florida https://t.co/v3SiSoZKbp","Apr 18, 11:15:04 PM EDT"
-1781159615167619449,"https://t.co/WhrDatC6Fq","Apr 18, 11:15:19 PM EDT"
-1781159792288899126,"Improved ad performance https://t.co/KrTl1RwtGf","Apr 18, 11:16:01 PM EDT"
-1781168624503275811,"We should send rockets not at each other, but rather to the stars https://t.co/h4apedUrsU","Apr 18, 11:51:07 PM EDT"
-1781183251731677264,"Any accounts doing engagement farming will be suspended and traced to source","Apr 19, 12:49:14 AM EDT"
-1781369713458552923,"RT @KanekoaTheGreat: .@elonmusk: "History is written by the victors. Well, yes, but not if your enemies are still alive and have a lot of t…","Apr 19, 1:10:10 PM EDT"
-1781384773388107994,"The opposition to free speech (under the guise of “hate speech”) in America by hard left activists is much greater than most people realize https://t.co/UCZQWQinvS","Apr 19, 2:10:01 PM EDT"
-1781387457193230338,"In my opinion, TikTok should not be banned in the USA, even though such a ban may benefit the 𝕏 platform.
-
-Doing so would be contrary to freedom of speech and expression. It is not what America stands for.","Apr 19, 2:20:41 PM EDT"
-1781390448717623490,"Mad insurance regulation & extremely high litigation costs are the root causes https://t.co/HsjYys34YK","Apr 19, 2:32:34 PM EDT"
-1781393250021941446,"Another major attack on the First Amendment by this administration https://t.co/OOxFAweA5E","Apr 19, 2:43:42 PM EDT"
-1781394185951563973,"The Australian censorship commissar is demanding *global* content bans! https://t.co/CRLglUYYIG","Apr 19, 2:47:25 PM EDT"
-1781394539376222499,"Insane https://t.co/CvDrBYZXbR","Apr 19, 2:48:49 PM EDT"
-1781394906491003000,"RT @Not_the_Bee: Scotland becomes latest country to join Team Reality, halts puberty blockers for children
-https://t.co/VvRm8ZmITd
-https://…","Apr 19, 2:50:17 PM EDT"
-1781411339744764027,"RT @cb_doge: 𝕏 is the #1 news app on the App Store in over 160 countries. 🥇
-
- https://t.co/2rtIgnu3XH","Apr 19, 3:55:35 PM EDT"
-1781433998079656088,"Same https://t.co/k0Zne3FsHC","Apr 19, 5:25:37 PM EDT"
-1781531716751876196,"Wow, Bill Maher hits the bullseye 🎯 https://t.co/WKmBXuw4UT","Apr 19, 11:53:55 PM EDT"
-1781534209837826524,"Almost everywhere on Earth had slavery for thousands of years and some places still do.
-
-The drive to end slavery on a worldwide basis was spearheaded by Britain in the early 1800’s.
-
-https://t.co/zO77pV1K9H. https://t.co/JYxuNUkbF9","Apr 20, 12:03:49 AM EDT"
-1781542250075316331,"RT @tesla_na: Our current referral program benefits will end after April 30 in all markets","Apr 20, 12:35:46 AM EDT"
-1781542490853503202,"Turns out that free speech is actually very expensive https://t.co/xfd1muOplk","Apr 20, 12:36:43 AM EDT"
-1781544288179851750,"https://t.co/Mkk4p5NAfM","Apr 20, 12:43:52 AM EDT"
-1781544584100659557,"And the gas savings are very real. That’s why so many Uber drivers use Tesla!","Apr 20, 12:45:03 AM EDT"
-1781544984404959721,"Your subscription is much appreciated.
-
-The days ahead for defending freedom of speech will be tough. https://t.co/vkTT03KLPY","Apr 20, 12:46:38 AM EDT"
-1781548457733292032,"RT @JTLonsdale: Great men are called upon by history when they see dangerous times ahead; this is one of those times.
-
-And despite our imme…","Apr 20, 1:00:26 AM EDT"
-1781559444196765877,"RT @Tesla_Megapack: 180MW / 315MWh of Tesla Megapacks at Enfinite’s 9 sites in Alberta provided historic levels of output this winter. At a…","Apr 20, 1:44:05 AM EDT"
-1781562388640108908,"Improvements to Notes https://t.co/8zZ9NUnIoh","Apr 20, 1:55:47 AM EDT"
-1781608499715129573,"Yeah https://t.co/cREs38ZWsB","Apr 20, 4:59:01 AM EDT"
-1781609025504755762,"This is crazy https://t.co/R8SYWhANU0","Apr 20, 5:01:07 AM EDT"
-1781610721282830454,"Legacy media is ideologically aligned with NPR https://t.co/BhD9o5zmFy","Apr 20, 5:07:51 AM EDT"
-1781616840935903351,"Exactly https://t.co/aca9E4uAB7","Apr 20, 5:32:10 AM EDT"
-1781619340942409949,"RT @cb_doge: 4/20
-
-First Starship Launch Anniversary Today
-
- https://t.co/g6GW9O9jHC","Apr 20, 5:42:06 AM EDT"
-1781694419642519835,"Absolutely disastrous https://t.co/JzDCyJbopK","Apr 20, 10:40:26 AM EDT"
-1781734977429737576,"The software must have exactly 420 lines of code on this auspicious day https://t.co/QEVwFb6Qb4","Apr 20, 1:21:36 PM EDT"
-1781736155651637327,"Shellenberger eloquently describes the severity of the situation in Brazil and the appropriate remedy https://t.co/Vtjulz32Hc","Apr 20, 1:26:17 PM EDT"
-1781736454923731285,"https://t.co/BTX7YnPo4t","Apr 20, 1:27:28 PM EDT"
-1781738783819370526,"RT @teslaownersSV: 𝕏 is defending free speech. Consider subscribing to 𝕏 premium.
-𝕏 is indispensable https://t.co/PpFlzKWX6G","Apr 20, 1:36:43 PM EDT"
-1781740249426624914,"Accurate https://t.co/mMPSvw8OPa","Apr 20, 1:42:33 PM EDT"
-1781742652313981271,"RT @tunguz: Trust the experts. https://t.co/XgMIwboQQu","Apr 20, 1:52:06 PM EDT"
-1781784134391840903,"A return to reasonableness and due process under Brazilian law is the right thing to do https://t.co/vi9Ld6EyTL","Apr 20, 4:36:56 PM EDT"
-1781832337354883502,"RT @XDevelopers: 𝕏 Developer Challenge Progress—
-
-Loading potential future features powered by our X platform and developers! https://t.co/…","Apr 20, 7:48:28 PM EDT"
-1781834537443418536,"Forward links to make sure your friends know what’s really happening https://t.co/VojN8LQuoP","Apr 20, 7:57:13 PM EDT"
-1781862255103037932,"https://t.co/IRklAnUBnj","Apr 20, 9:47:21 PM EDT"
-1782055225647391055,"RT @cb_doge: "To be clear, 𝕏 is only trying to follow the laws of Brazil without favor or disfavor to any political candidate." 🇧🇷
-
-一 Elon…","Apr 21, 10:34:09 AM EDT"
-1782064732649693535,"RT @TexasLindsay_: “Without censorship, Hitler never would have achieved his terrible power, nor would he be able to hold it.”
-
-“A censor t…","Apr 21, 11:11:56 AM EDT"
-1782065730713755931,"RT @JohnStossel: Remember California’s #AB5?
-
-It was meant to help freelancers.
-
-Instead, it killed their jobs.
-
-I thought politicians w…","Apr 21, 11:15:54 AM EDT"
-1782092258214330658,"Because he is against the will of the people and, therefore, democracy https://t.co/UKzeB4w1Zg","Apr 21, 1:01:18 PM EDT"
-1782099424979620094,"RT @teslaownersSV: Subscribe to 𝕏 premium and support free speech. https://t.co/99XbqesJ0V","Apr 21, 1:29:47 PM EDT"
-1782165979088179512,"And this is after Sheetz had to struggle for years with a challenging brand name! https://t.co/BfhMyr6pA9","Apr 21, 5:54:15 PM EDT"
-1782202582473040353,"Wow https://t.co/ripkRK0HgJ","Apr 21, 8:19:42 PM EDT"
-1782259484124991940,"Robbery in most of America is out of control https://t.co/id5K098qid","Apr 22, 12:05:48 AM EDT"
-1782262114230448586,"RT @cb_doge: Subscribing to your favorite accounts on 𝕏 is the best way to show your love and support.
-
-Please consider subscribing to as m…","Apr 22, 12:16:15 AM EDT"
-1782269474147606538,"RT @cb_doge: Grok v1.5 can explain memes 🔥 https://t.co/t3ba5AQ0SE","Apr 22, 12:45:30 AM EDT"
-1782279316497174840,"Time to make crime illegal again","Apr 22, 1:24:36 AM EDT"
-1782315558748254550,"RT @Tesla_Asia: Celebrating 10 years since the first-ever delivery of Tesla Model S in China—thanks to our 1.7 million Chinese owners, our…","Apr 22, 3:48:37 AM EDT"
-1782418703759315220,"https://t.co/5UVYrBNtsv","Apr 22, 10:38:29 AM EDT"
-1782431330606731694,"I’d like to take a moment to thank the PM for informing the public that this platform is the only truthful one https://t.co/EM0lF6n7SC","Apr 22, 11:28:39 AM EDT"
-1782439176937328651,"RT @Tesla: Tesla exists to accelerate the world’s transition to sustainable energy.
-
-Thank you to our owners, employees & advocates for sup…","Apr 22, 11:59:50 AM EDT"
-1782441020036145267,"Don’t take my word for it, just ask the Australian PM! https://t.co/ZJBKrstStQ","Apr 22, 12:07:09 PM EDT"
-1782504136849727898,"RT @gigafactories: With 3,000 newly planted flowers and plants and a widely visible mural, the Giga Berlin team is making a statement for t…","Apr 22, 4:17:58 PM EDT"
-1782538782593495206,"RT @cb_doge: Sign up for the 'Advertising on X 101' webinar
-
-Learn how to set up an ad campaign and grow your business with X Ads, directly…","Apr 22, 6:35:38 PM EDT"
-1782550334155420074,"Our concern is that if ANY country is allowed to censor content for ALL countries, which is what the Australian “eSafety Commissar” is demanding, then what is to stop any country from controlling the entire Internet?
-
-We have already censored the content ","Apr 22, 7:21:32 PM EDT"
-1782552013378634079,"Cool https://t.co/SAvMOB7UqK","Apr 22, 7:28:12 PM EDT"
-1782552493928460522,"Tesla is the lowest cost car to maintain https://t.co/VJjggL4l1E","Apr 22, 7:30:07 PM EDT"
-1782558405053268133,"RT @Tesla: A few stats:
-
-- In 2023, our owners avoided approximately 20 million tons of CO2e through use of our products
-
-- The more produc…","Apr 22, 7:53:36 PM EDT"
-1782566202117599544,"https://t.co/w5EHJAx5g6","Apr 22, 8:24:35 PM EDT"
-1782568012857417925,"The notification tab is currently in chronological order only.
-
-We’re working on a ranking option there, like For you vs Following.","Apr 22, 8:31:47 PM EDT"
-1782573789923914166,"Major milestone https://t.co/qc3apufWUD","Apr 22, 8:54:44 PM EDT"
-1782584820549202024,"That is exactly the issue.
-
-Should the eSafety Commissar (an unelected official) in Australia have authority over all countries on Earth? https://t.co/wzv4Uinx8y","Apr 22, 9:38:34 PM EDT"
-1782617349964640380,"RT @cb_doge: The eSafety Commissioner of Australia demanded that 𝕏 globally withhold certain posts or face a daily fine of $500,000
-
-𝕏 is f…","Apr 22, 11:47:50 PM EDT"
-1782626706974453943,"RT @SpaceX: One year since first flight test of Starship.
-
-Each successive launch has gone farther, and with more flights coming soon, we'…","Apr 23, 12:25:01 AM EDT"
-1782648405862338945,"RT @teslaownersSV: Starship = Hope https://t.co/txQmkIvJ3X","Apr 23, 1:51:14 AM EDT"
-1782788691255038263,"https://t.co/wE4xtPrZx0","Apr 23, 11:08:41 AM EDT"
-1782790676821790729,"RT @XNews: Coming soon to a television near you: X TV 👀 https://t.co/C7VWNa7jG5","Apr 23, 11:16:34 AM EDT"
-1782791181610418411,"RT @cb_doge: 𝕏 is growing 🔥
-
-• 𝕏 has seen a 63% increase in brand likes, 20% increase in brand re-posts and a 14% increase in brand impress…","Apr 23, 11:18:35 AM EDT"
-1782792093389176986,"Morgan Freeman is awesome https://t.co/JcIQ1yMDoc","Apr 23, 11:22:12 AM EDT"
-1782794328714174502,"RT @JohnStossel: Here is the FULL interview with Swedish author @johanknorberg on:
-
-Why Sweden is NOT a “socialist paradise.”
-
-The fake lon…","Apr 23, 11:31:05 AM EDT"
-1782801354877972959,"RT @XData: In the last month, people on X have spent a lot of time watching video – to the tune of 385 million hours! That’s 1.4 trillion s…","Apr 23, 11:59:00 AM EDT"
-1782806697112723553,"The Australian people want the truth.
-
-𝕏 is the only one standing up for their rights. https://t.co/6ZwzNejKLq","Apr 23, 12:20:14 PM EDT"
-1782808782143361047,"Model 3 is quicker than a Porsche 911 https://t.co/y3FUJ0zEOI","Apr 23, 12:28:31 PM EDT"
-1782814798985720164,"Yeah https://t.co/JdeXzYteQ2","Apr 23, 12:52:25 PM EDT"
-1782821354569679263,"Yikes https://t.co/xCQbRWzgHl","Apr 23, 1:18:28 PM EDT"
-1782826163326579110,"Tesla has now created over 30,000 manufacturing jobs in California! https://t.co/jjFX4FVlM2","Apr 23, 1:37:35 PM EDT"
-1782828815590519112,"RT @fasc1nate: How to sleep on the international space station. https://t.co/fTwiAjN6B0","Apr 23, 1:48:07 PM EDT"
-1782839788401557833,"RT @BillyM2k: the reason why progressive policies are bad is simple:
-
-- if you want more people to do something, make it easier
-
-- if you w…","Apr 23, 2:31:43 PM EDT"
-1782842393110409538,"RT @Rothmus: https://t.co/m1i70lfU6C","Apr 23, 2:42:04 PM EDT"
-1782848959993774350,"You are right! https://t.co/u0oURGyDgN","Apr 23, 3:08:10 PM EDT"
-1782852494076559510,"Wow https://t.co/3kyelKLL3p","Apr 23, 3:22:13 PM EDT"
-1782919954704351681,"RT @Tesla: Q1 Earnings Call starting in ~10 mins https://t.co/NSPNDuqW5D","Apr 23, 7:50:16 PM EDT"
-1782920736212189454,"Congrats @SpaceX team on 300 rocket landings! https://t.co/XdaKrfDCbq","Apr 23, 7:53:23 PM EDT"
-1782993311374225844,"RT @SpaceX: Engines full power and liftoff! https://t.co/FeW78mZio2","Apr 24, 12:41:46 AM EDT"
-1783037271719186587,"RT @Tesla: Preview of autonomous ride-hailing via Tesla app https://t.co/GPs5itjA84","Apr 24, 3:36:27 AM EDT"
-1783053802033332486,"This graph illustrates the woke mind virus taking over legacy media.
-
-Same happened with online media and the education system. Then it spread to other countries.
-
-Infection rate almost 100%.
-
-But now it will die. https://t.co/z5wMNfRym2","Apr 24, 4:42:08 AM EDT"
-1783058628238512597,"RT @cb_doge: 𝕏 will bring an end to the woke legacy media.
-
-People are already moving to 𝕏 to discover the truth in real-time. https://t.co…","Apr 24, 5:01:19 AM EDT"
-1783188100552012248,"People want the truth https://t.co/15JEasUUPF","Apr 24, 1:35:47 PM EDT"
-1783361651892535610,"RT @netanyahu: Anti-Semitism on campuses in the United States is reminiscent of what happened in German universities in the 1930s.
-
-The wo…","Apr 25, 1:05:25 AM EDT"
-1783434138789568823,"RT @shellenberger: We Exposed Censorship By Brazil’s Supreme Court, And Now President Lula Is Persecuting Me
-
-PLUS: Brazil’s Attorney Gen…","Apr 25, 5:53:27 AM EDT"
-1783446651031724484,"Concerning https://t.co/DFQd0Sw8c1","Apr 25, 6:43:11 AM EDT"
-1783456935779672560,"Starlink now available in Micronesia! https://t.co/flGAjYXiMA","Apr 25, 7:24:03 AM EDT"
-1783600579237032054,"While many other countries are worse, America is trending towards extinction! https://t.co/x6ak0T1k5r","Apr 25, 4:54:50 PM EDT"
-1783618672822759490,"People want the truth https://t.co/mHrv9qQ7Gr","Apr 25, 6:06:44 PM EDT"
-1783635782223474962,"Late last year, several 𝕏 employees were threatened by a guy with a machete outside the Walgreens on Market St in SF.
-
-They didn’t report it, because that doesn’t constitute an arrestable crime in California.
-
-That guy later killed 3 people. https://t.","Apr 25, 7:14:43 PM EDT"
-1783643000759091344,"Absolutely true!
-
-“The evidence is overwhelming that the majority of people on the street are there because of untreated mental illness or addiction, which leads people to use all their money to support their drug habit and be high, rather than work.” htt","Apr 25, 7:43:24 PM EDT"
-1783727565989134488,"The axiomatic error undermining much of Western Civilization is “weak makes right”.
-
-If someone accepts, explicitly or implicitly, that the oppressed are always the good guys, then the natural conclusion is that the strong are the bad guys.","Apr 26, 1:19:26 AM EDT"
-1783727843203268632,"Most of history had and still most of the world has “might makes right” as the axiomatic error.
-
-If any thought is given to it, you should obviously consider morality in the absolute! Deeds done determine good or bad, not whether one party is stronger or","Apr 26, 1:20:32 AM EDT"
-1783738055549239562,"Babe, tell me the truth … https://t.co/kkW3GXNBVl","Apr 26, 2:01:07 AM EDT"
-1783761202512036328,"Best illustration I’ve seen https://t.co/efMKHV0SQl","Apr 26, 3:33:06 AM EDT"
-1783884550021800053,"RT @elonmusk: @SciGuySpace Full & rapid reusability of booster & ship and orbital refilling of ship are the 2 fundamental technologies we a…","Apr 26, 11:43:14 AM EDT"
-1783927955464528134,"RT @cb_doge: Conferences on 𝕏 are coming soon! You'll be able to host meetings just like on Zoom, Google Meet, or Microsoft Teams. https://…","Apr 26, 2:35:43 PM EDT"
-1783930332166951417,"Great interview with @johanknorberg! https://t.co/GVXvOER85r","Apr 26, 2:45:09 PM EDT"
-1783949757460988001,"What more do we need to do to improve Communities? https://t.co/gZBaY7Tuv8","Apr 26, 4:02:21 PM EDT"
-1783971365349171640,"Try out Tesla supervised full self-driving and you’ll be amazed! https://t.co/ZQ3mYV27DN","Apr 26, 5:28:12 PM EDT"
-1783985189041086484,"https://t.co/Kt3efgjKEd","Apr 26, 6:23:08 PM EDT"
-1783989456414085339,"Dustin, wd u lik sum t? https://t.co/8m95snbLuJ","Apr 26, 6:40:05 PM EDT"
-1783994889040241057,"RT @reddit_lies: Incredible Starlink ad https://t.co/0BA4WDju8G","Apr 26, 7:01:41 PM EDT"
-1783995055084285996,"RT @XData: There’s been a 495% jump in Communities User Active Minutes Y/Y — and it’s only going to get better! Check out all the new impro…","Apr 26, 7:02:20 PM EDT"
-1783995316490137902,"RT @Teslaconomics: Massive tornado hits Lincoln, NE, while Starlink connects the car to the best internet https://t.co/pmLmr71Nei","Apr 26, 7:03:23 PM EDT"
-1784304234286252470,"RT @GavinSBaker: Can’t decide whether it is funny, ridiculous or sad that the CEOs of Occidental Petroleum and Delta Airlines are on the ne…","Apr 27, 3:30:54 PM EDT"
-1784305269910258042,"🤔 https://t.co/RYQXxfQsHQ","Apr 27, 3:35:01 PM EDT"
-1784310781087256961,"RT @JohnStossel: You might not know it…but sometimes my videos end up in your kids’ classrooms.
-
-I teach students about capitalism through…","Apr 27, 3:56:55 PM EDT"
-1784313954522759319,"RT @cb_doge: If you're a web user, I strongly recommend trying 𝕏-Pro; it's an incredible tool.
-
- https://t.co/qYXzNYL2lS","Apr 27, 4:09:32 PM EDT"
-1784365619640730029,"https://t.co/2cyem8ZxTD","Apr 27, 7:34:50 PM EDT"
-1784375472887066653,"As Cathie Wood states, Tesla is the biggest AI project on Earth https://t.co/yaWq1j6fEd","Apr 27, 8:13:59 PM EDT"
-1784388834538762425,"The problem with “Great Replacement Theory” is that it fails to address the foundational issue of low birth rates.
-
-Record low birth rates are leading to population collapse in Europe and even faster population collapse in most of Asia. Immigration is low","Apr 27, 9:07:05 PM EDT"
-1784399138739913009,"He knows what he’s talking about https://t.co/2b9CCvQdPp","Apr 27, 9:48:01 PM EDT"
-1784399533700726980,"Surely demanding overthrow of the government in Germany is illegal? https://t.co/WHsHHNJBg5","Apr 27, 9:49:36 PM EDT"
-1784400917904966118,"The Guardian is down by 2/3 since 2020 https://t.co/bL4C7cUdTV https://t.co/xk87Ai6yZY","Apr 27, 9:55:06 PM EDT"
-1784401157814903288,"https://t.co/suGbbJx8lR","Apr 27, 9:56:03 PM EDT"
-1784420304221290963,"An incredible epoch of aerospace https://t.co/e5056QmZ7L","Apr 27, 11:12:08 PM EDT"
-1784428001024938421,"If you teach that “weak makes right”, then the perceived stronger party – in this case, Israel – is wrong.
-
-Morals should be taught in the absolute, meaning that it is possible for either the strong or weak to be morally good, depending on their actions. ","Apr 27, 11:42:43 PM EDT"
-1784442916632760650,"Add your podcast to 𝕏 for vastly greater viewership! https://t.co/oR4rM8kWPY","Apr 28, 12:41:59 AM EDT"
-1784489995463524635,"RT @SpaceX: This Falcon 9 first stage has launched ~200 spacecraft as part of our Rideshare program, supported 13 @Starlink missions to hel…","Apr 28, 3:49:03 AM EDT"
-1784490023594901731,"RT @SpaceX: Falcon 9 launches from LC-39A in Florida https://t.co/VV4fDnmvgn","Apr 28, 3:49:10 AM EDT"
-1784490036177871231,"RT @SpaceX: After 36 days docked to the @space_station, the Dragon spacecraft supporting SpaceX’s 30th commercial resupply mission for @NAS…","Apr 28, 3:49:13 AM EDT"
-1784569030051033153,"Model 3 Performance is epic
- https://t.co/kyYRWFAF4X","Apr 28, 9:03:07 AM EDT"
-1784575094679011401,"Honored to meet with Premier Li Qiang.
-
-We have known each other now for many years, since early Shanghai days. https://t.co/JCnv6MbZ6W","Apr 28, 9:27:13 AM EDT"
-1784582875960267039,"This would be crazy! https://t.co/5BnRVangey","Apr 28, 9:58:08 AM EDT"
-1784658475785887812,"Make comedy legal again!
- https://t.co/nTf9wmlfzn","Apr 28, 2:58:32 PM EDT"
-1784767458219524332,"RT @SpaceX: Landing burn and touchdown on the Just Read the Instructions droneship https://t.co/qbVzhByVZZ","Apr 28, 10:11:36 PM EDT"
-1784768522645889111,"If birth rates continue to plummet, human civilization will end
-https://t.co/9PqnUW0QoG","Apr 28, 10:15:49 PM EDT"
-1784770321054330957,"RT @SpaceX: Liftoff and ascent of Falcon 9 https://t.co/bUyObEgTXf","Apr 28, 10:22:58 PM EDT"
-1784771684559729106,"RT @SpaceX: Falcon 9 takes flight from Florida, delivering 23 @Starlink satellites to low-Earth orbit https://t.co/UfbfHg8A7T","Apr 28, 10:28:23 PM EDT"
-1784967180477722838,"https://t.co/PJgxu0AszT","Apr 29, 11:25:13 AM EDT"
-1784982156823138657,"https://t.co/eygrdIhWZz","Apr 29, 12:24:44 PM EDT"
-1784985264231997523,"RT @Tesla: Big Cybertruck update","Apr 29, 12:37:05 PM EDT"
-1784985580977393957,"RT @Teslaconomics: I’m 6 feet 2 inches tall and I can go through my Cybertruck like a tunnel https://t.co/vm92dEDDdE","Apr 29, 12:38:20 PM EDT"
-1784999682227183947,"Worth hearing this lecture by @GadSaad
- https://t.co/WEsflJtXGV","Apr 29, 1:34:22 PM EDT"
-1785003514101481555,"RT @cb_doge: The results of the beta testing for the new optimized targeting feature in 𝕏 Ads are outstanding.
-
-Try 𝕏 Ads today!
-
- https://…","Apr 29, 1:49:36 PM EDT"
-1785004398793380294,"https://t.co/wl9k99TL3h","Apr 29, 1:53:07 PM EDT"
-1785010281615384785,"The USA only has ~4% of Earth’s population. Just 1% of Earth moving to America would overwhelm essential medical and other services.
-
-It’s not sustainable.
-
-As always, I’m very much in favor of *legal* immigration. Anyone smart, hardworking and honest s","Apr 29, 2:16:29 PM EDT"
-1785012847149506816,"Having babies is a “right-wing plot” to save humanity from extinction 😂 https://t.co/wQzs9fsL1b","Apr 29, 2:26:41 PM EDT"
-1785026696670019631,"RT @SawyerMerritt: SpaceX currently has human spaceflight seats available for Earth Orbit missions in late 2024.
-
-You book a flight to Spac…","Apr 29, 3:21:43 PM EDT"
-1785033150172651599,"Unfortunately, Meta/Facebook/Instagram is highly skilled at taking advertising credit for traffic that actually comes from our platform (sigh) https://t.co/Cunw2KDUB7","Apr 29, 3:47:21 PM EDT"
-1785037439498686689,"True https://t.co/BrgiCZsMVx","Apr 29, 4:04:24 PM EDT"
-1785041008381579503,"You can now play videos on most TVs from your phone https://t.co/XYmz6eUnf9","Apr 29, 4:18:35 PM EDT"
-1785133234893807716,"Subscribing to support free speech is much appreciated https://t.co/aJMpJbMIjp","Apr 29, 10:25:04 PM EDT"
-1785133571839070683,"RT @XNews: The @NFL and @X have renewed their content partnership which dates back to 2013, with a new multi-year agreement. X will continu…","Apr 29, 10:26:24 PM EDT"
-1785208341393723753,"Congrats @SpaceX team on completing the 30th CRS Dragon mission to and from @Space_Station! https://t.co/gbzHPeMsXm","Apr 30, 3:23:30 AM EDT"
-1785221909350670551,"RT @BillboardChris: Naturally, one of the nicest and most intelligent young women I met in Melbourne yesterday is from England, where they…","Apr 30, 4:17:25 AM EDT"
-1785225232858456323,"RT @teslaeurope: .@Cybertruck will be touring Europe & the Middle East for the next ~2 months 🇪🇺 🤝 📐
-
-All events & tour stops here → https:…","Apr 30, 4:30:38 AM EDT"
-1785226237809426517,"😂💯 https://t.co/reuigltcki","Apr 30, 4:34:37 AM EDT"
-1785406096804315305,"Wow https://t.co/mPNruDwgJF","Apr 30, 4:29:19 PM EDT"
-1785406795814510785,"Tesla still plans to grow the Supercharger network, just at a slower pace for new locations and more focus on 100% uptime and expansion of existing locations","Apr 30, 4:32:06 PM EDT"
-1785886077280018538,"RT @TrungTPhan: This is Andrea Bocelli performing “Con Te Partiro” for the first time in 1995 at an Italian singing contest.
-
-It almost nev…","May 2, 12:16:35 AM EDT"
-1785914774187913645,"Expand your bio! https://t.co/uAne0Z5C3u","May 2, 2:10:37 AM EDT"
-1786054505873781005,"Proposed law: if someone tears down the American flag and puts up another flag in its place, that person should get a free (but mandatory) one-way trip to that flag’s country","May 2, 11:25:52 AM EDT"
-1786073478711353576,"I’m not saying they can’t come back, but they have to experience that country for some period of time before returning","May 2, 12:41:15 PM EDT"
-1786083580994556304,"Posting long form text, audio & video content on 𝕏 will dramatically increase your reach!
-
-Over half a billion active users are on this platform and they are the smartest and most influential audience on Earth. https://t.co/EgDeX0IMWm","May 2, 1:21:24 PM EDT"
-1786083782837059625,"RT @elonmusk: @KanekoaTheGreat The Democratic National Convention this August has a good chance of outdoing 1968!
-https://t.co/iDyEYxY3t0","May 2, 1:22:12 PM EDT"
-1786088778034982990,"RT @cb_doge: 80% of users consume video on 𝕏 every day.
-
-Bring your video content to this platform to reach a global audience. https://t.co…","May 2, 1:42:03 PM EDT"
-1786097474664366323,"RT @gunsnrosesgirl3: I love you x https://t.co/jbd6r5O09K","May 2, 2:16:36 PM EDT"
-1786118126385459408,"RT @GadSaad: Absolutely! I've been posting my content directly on @X and it has been amazing in terms of my increased reach. Again, imagi…","May 2, 3:38:40 PM EDT"
-1786185820262535565,"RT @SpaceX: Views of stage separation during the @Maxar 1 mission https://t.co/avWsssSMSC","May 2, 8:07:39 PM EDT"
-1786225000808108105,"https://t.co/x09cC5Izhn","May 2, 10:43:21 PM EDT"
-1786237800179724376,"This is wild! https://t.co/9cS3yq96TG","May 2, 11:34:12 PM EDT"
-1786238084511654264,"Wow https://t.co/WhoMQzxImD","May 2, 11:35:20 PM EDT"
-1786238222495817977,"Time for spring cleaning 🧹 https://t.co/aUrXLoN6jv","May 2, 11:35:53 PM EDT"
-1786238357640540598,"RT @cb_doge: When was the last time you saw a social media platform raise its voice against censorship?
-
-No other social media network stan…","May 2, 11:36:25 PM EDT"
-1786242000221585900,"It will bring you good fortune https://t.co/pBcrCurb4X","May 2, 11:50:54 PM EDT"
-1786270266529554720,"This bill might have the opposite effect of its objective https://t.co/iVueyzJ5gG","May 3, 1:43:13 AM EDT"
-1786361002675597582,"Exactly https://t.co/OfJtT7naN2","May 3, 7:43:46 AM EDT"
-1786433229571920307,"RT @MartinViecha: Sign up for a chance to attend Tesla's Annual Shareholder Meeting in person 👇
-
-Manually verified shareholders will need t…","May 3, 12:30:46 PM EDT"
-1786477070337393036,"RT @Kantrowitz: New: @elonmusk emailed me about his plan for AI news on X.
-
-The idea is to use AI to blend breaking news and commentary, b…","May 3, 3:24:59 PM EDT"
-1786514140267208757,"This should make a big difference in defeating deepfakes (and shallowfakes) https://t.co/rQ8mtBB9qr","May 3, 5:52:17 PM EDT"
-1786521389429661789,"RT @XNews: https://t.co/EAm27TzrDb","May 3, 6:21:05 PM EDT"
-1786523291819086085,"RT @XNews: X is proud to fund a lawsuit filed by Dr. Matthew Strauss, an Ontario critical care physician and professor, against his former…","May 3, 6:28:39 PM EDT"
-1786580935334564236,"RT @alx: Please subscribe to 𝕏 @Premium to support this platform’s fight for Free Speech
-
- https://t.co/pWPrpmEQ9a","May 3, 10:17:42 PM EDT"
-1786636792781062579,"https://t.co/L46eXb3MVp","May 4, 1:59:40 AM EDT"
-1786638960170819624,"RT @cb_doge: Explore, Save and Share Real-time news stories curated by Grok.
-
-Feature live now for 𝕏 Premium Subscribers (Web and iOS)
-
- ht…","May 4, 2:08:16 AM EDT"
-1786656076844404998,"Entropy
-Entropy
-No escaping
-That for me","May 4, 3:16:17 AM EDT"
-1786771421890519127,"RT @rookisaacman: After 2+ years, the @SpaceX EVA suit has been unveiled. We are thrilled to have contributed to the dev & testing and exci…","May 4, 10:54:38 AM EDT"
-1786771434838389176,"RT @SpaceX: The SpaceX Extravehicular Activity (EVA) suit → https://t.co/z2Z9iVpt6x #Maythe4thBeWithYou https://t.co/peETlLCcDP","May 4, 10:54:41 AM EDT"
-1786777784414785908,"14 years ago https://t.co/sEnqkRxS5U","May 4, 11:19:55 AM EDT"
-1786788935999599014,"Lil X turns 4 today on May 4th https://t.co/YbyJ4DHTBa","May 4, 12:04:13 PM EDT"
-1786789825196282214,"Always think about this with my little fluffy dog. My big dog does look like a wolf. https://t.co/jNyvlyplZB","May 4, 12:07:45 PM EDT"
-1786826907297906699,"The standard Tesla Model Y now has a 320 mile range!
-
-Although it is rear-wheel-drive, the precision of Tesla’s electric motors means it still has great traction on snow & ice with all-season tires.
-
-https://t.co/Oj2hxF9yiE","May 4, 2:35:06 PM EDT"
-1786831499310022690,"Despite a massive bot purge, the 𝕏 platform reached another all-time high in usage this month!","May 4, 2:53:21 PM EDT"
-1786832253169123408,"RT @XUK: Welcome to the UK @grok! We’re so glad you’re here to share your wit, knowledge, and a some advice with our friends across the pon…","May 4, 2:56:21 PM EDT"
-1786833975228715221,"Whether you agree with Bolsonaro or not, the people of Brazil have a right to hear him speak https://t.co/ESKDgh8lpU","May 4, 3:03:12 PM EDT"
-1786834333493502281,"Please take a moment to vote your Tesla shares and let us know if you encounter any issues with voting https://t.co/bXd4UtUKZE","May 4, 3:04:37 PM EDT"
-1786838832287265191,"Doesn’t make sense that American taxpayers are forced to fund anti-American activities https://t.co/7ZAso8wN3W","May 4, 3:22:30 PM EDT"
-1786861963848671413,"This will improve the quality of your replies https://t.co/p0kNsYrWGI","May 4, 4:54:25 PM EDT"
-1786862058346258509,"RT @JohnnaCrider1: Thank you Elon Musk and SpaceX for creating Starlink.
-
-Even with obstructions (power lines) I have never seen internet…","May 4, 4:54:47 PM EDT"
-1786919815094894946,"RT @SpaceX: Chat with the Polaris Dawn crew and SpaceX team today ~3:00 p.m. ET on Spaces → https://t.co/qNTHQmQgw8","May 4, 8:44:17 PM EDT"
-1786965451093717077,"RT @FairElectFund: 🚨 If you are an election worker, organizer, or concerned citizen who has seen corruption in our elections firsthand, we…","May 4, 11:45:38 PM EDT"
-1787134970227474762,"RT @Tesla_Optimus: Trying to be useful lately! https://t.co/TlPF9YB61W","May 5, 10:59:14 AM EDT"
-1787165820512051626,"Maiden launch of Falcon Heavy, the most powerful operational rocket on Earth, with the first dual rocket landing
- https://t.co/CrzQGeQWU8","May 5, 1:01:50 PM EDT"
-1787169125942415521,"RT @teslaownersSV: Human scale vs Starship https://t.co/DWnYdT6kqZ","May 5, 1:14:58 PM EDT"
-1787171822489780728,"RT @cb_doge: Users are spending an average of ~34 minutes per day on 𝕏, a 13% year-over-year increase.
-
- https://t.co/KcVl0QvxWe","May 5, 1:25:41 PM EDT"
-1787283204828709363,"RT @cb_doge: 🥇 https://t.co/UmNt8sZ5uZ","May 5, 8:48:16 PM EDT"
-1787325802629251503,"RT @ByeonChansoo: Tesla FSD drove the entire way from underground garage to home after a Toronto FC game last night... (~50 minute drive).…","May 5, 11:37:32 PM EDT"
-1787523801070326120,"Boeing got $4.2 billion to develop an astronaut space capsule. SpaceX got $2.6 billion and finished 7 years faster.
-
-Too many non-technical managers at Boeing. https://t.co/bTXWAfxfrh","May 6, 12:44:19 PM EDT"
-1787531120852312388,"Although Boeing got $4.2 billion to develop an astronaut capsule and SpaceX only got $2.6 billion, SpaceX finished 4 years sooner.
-
-Note, the crew capsule design of Dragon 2 has almost nothing in common with Dragon 1.
-
-Too many non-technical managers at","May 6, 1:13:24 PM EDT"
-1787558974981906878,"RT @SpaceX: Falcon 9’s first stage booster lands on the Just Read the Instructions droneship for recovery and refurbishment ahead of its 16…","May 6, 3:04:05 PM EDT"
-1787585795815276595,"RT @Tesla: $99/month","May 6, 4:50:40 PM EDT"
-1787591856542667195,"Are you saying the fine was for repeating accurate government statistics?
-
-Was there anything inaccurate in what she said? https://t.co/itSzTx1Ybv","May 6, 5:14:45 PM EDT"
-1787627184812949968,"Great meeting with President @JMilei! https://t.co/qhZdAvJ5bf","May 6, 7:35:08 PM EDT"
-1787633266440470549,"https://t.co/0qbVey3kac","May 6, 7:59:17 PM EDT"
-1787633810361946264,"Streaming live from @MilkenInstitute in ~10 mins","May 6, 8:01:27 PM EDT"
-1787638333684027413,"https://t.co/n5At3jZYlG","May 6, 8:19:26 PM EDT"
-1787654457339342932,"I recommend investing in Argentina https://t.co/DIrcf8TsLN","May 6, 9:23:30 PM EDT"
-1787654568194822360,"RT @cb_doge: "Laws and regulations are immortal. If year after year there are more laws and regulations passed, eventually everything will…","May 6, 9:23:56 PM EDT"
-1787655174951154127,"RT @cb_doge: "SpaceX has roughly 6000 satellites and not once have we had to maneuver around a UFO.
-
-Civilization is rare. We should do eve…","May 6, 9:26:21 PM EDT"
-1787655913429709108,"RT @cb_doge: "I'm in favor of greatly expediting legal immigration. But having a secure southern border so there's some vetting of who come…","May 6, 9:29:17 PM EDT"
-1787656170985128147,"RT @stevenmarkryan: Elon Musk’s FULL Conversation At Milken Institute (silence removed to save you time) https://t.co/qj64yoveKp","May 6, 9:30:18 PM EDT"
-1787722886931005864,"RT @MilkenInstitute: Watch LIVE: @MilkenInstitute Chairman Mike Milken in conversation with @elonmusk at #MIGlobal https://t.co/P30xoZkExA","May 7, 1:55:25 AM EDT"
-1787723851167871099,"Good breakdown of the discussion https://t.co/y9V2D5L1W9","May 7, 1:59:15 AM EDT"
-1787740176695112185,"No humans, no humanity https://t.co/eyvx6O2v6K","May 7, 3:04:07 AM EDT"
-1787747492328861770,"This was Optimus not long ago https://t.co/nqlXuSYCkQ","May 7, 3:33:11 AM EDT"
-1787752278377824612,"Worth watching https://t.co/SQZgIaNV0H","May 7, 3:52:12 AM EDT"
-1787756348404650020,"RT @cb_doge: "The birth rate is dropping, which leads to a civilization that dies not with a bang, but with a whimper in adult diapers.
-
-On…","May 7, 4:08:23 AM EDT"
-1787759310392746384,"RT @cb_doge: Every school in the world should adopt this method of teaching! https://t.co/ClvmM5BoU2","May 7, 4:20:09 AM EDT"
-1787760912423870780,"RT @natemcgrady: NBA Live on X is 🔥
-https://t.co/US5yniYgSX","May 7, 4:26:31 AM EDT"
-1787764071267536948,"RT @MarioNawfal: 🇺🇸 ELON: CIVILIZATIONAL RISKS KEEP ME UP AT NIGHT, BUT KIDS KEEP ME GOING
-
-"Kids give me joy. I probably get the most joy…","May 7, 4:39:04 AM EDT"
-1787765015036199281,"Great idea https://t.co/xSCvWGZ3J5","May 7, 4:42:49 AM EDT"
-1787768103449010597,"Accurate analysis.
-
-Only about 1/10,000 of distance driven is useful for training.
-
-The limiting factor for FSD progress was AI training compute, but now it is validation, as the interventions are so rare. https://t.co/SL0FEZ6zqk","May 7, 4:55:05 AM EDT"
-1787769025461961108,"❤️ https://t.co/8s2awYeqgT","May 7, 4:58:45 AM EDT"
-1787907242651697651,"RT @ID_AA_Carmack: Act on press
-
-This is a UI design hill I will die on, and it dismays me how often and hard I have had to fight for it.…","May 7, 2:07:59 PM EDT"
-1787908517724344648,"Why it is so important for @xAI’s @Grok to succeed. This is a much bigger deal than it may seem. https://t.co/X9qjvn836A","May 7, 2:13:03 PM EDT"
-1787910522547093951,"This sounds insane if accurate!
-
-@CommunityNotes, please check https://t.co/RB1Ea0upTk","May 7, 2:21:01 PM EDT"
-1787914668570550511,"At the risk of sounding elitist, I prefer IHOP https://t.co/LbWnJEPNLn","May 7, 2:37:29 PM EDT"
-1787915449944219751,"RT @cb_doge: 𝕏 is the #1 news app on the AppStore in Argentina, leading both the free and grossing categories. 🥇 https://t.co/Y2NYuwGYOs","May 7, 2:40:35 PM EDT"
-1787916246404710478,"How to vote your Tesla shares https://t.co/PXWtyMLE7n","May 7, 2:43:45 PM EDT"
-1788028272628097460,"The latest version of Tesla’s (supervised) self-driving will blow your mind https://t.co/jiOluhlSPZ","May 7, 10:08:54 PM EDT"
-1788030832772563329,"RT @SpaceX: View of yesterday’s @Starlink deploy during an orbital sunrise https://t.co/DQRfPp0DEG","May 7, 10:19:05 PM EDT"
-1788065938220486764,"A terrible attack on the rights of Canadians to speak freely! https://t.co/X0ldHmfPQZ","May 8, 12:38:34 AM EDT"
-1788116543101882505,"RT @SpaceX: Falcon 9 launches 23 @Starlink satellites to low-Earth orbit from Florida https://t.co/pglMJwyULM","May 8, 3:59:40 AM EDT"
-1788266690708431234,"RT @cb_doge: Americans' trust in media over the years: https://t.co/C2T3YZYD4i","May 8, 1:56:18 PM EDT"
-1788383707880894957,"Successful 100 days with first human implant of @Neuralink https://t.co/RHU0PjlK1i","May 8, 9:41:17 PM EDT"
-1788390449259942164,"RT @cb_doge: If your company is hiring, consider signing up as a Verified Organization on 𝕏. You can then list your job openings directly o…","May 8, 10:08:04 PM EDT"
-1788442903481647566,"This is real https://t.co/0VERdNzUPB","May 9, 1:36:30 AM EDT"
-1788445088101650870,"RT @SpaceX: Photos from today’s Starship static fire https://t.co/94eXcIxfjF","May 9, 1:45:11 AM EDT"
-1788446671182926190,"RT @Tesla_Megapack: 60MW / 160MWh of Tesla Megapacks at @GridStorLLC's site in Goleta, CA are now Santa Barbara County's largest power reso…","May 9, 1:51:28 AM EDT"
-1788446894013780028,"RT @SpaceX: Static fire of Flight 5 Starship’s six Raptor engines https://t.co/UiF5UG432F","May 9, 1:52:21 AM EDT"
-1788447422294749665,"💯 https://t.co/2f5Tn421Cu","May 9, 1:54:27 AM EDT"
-1788564251931508966,"Given the terrible flooding in Rio Grande do Sul, @Starlink will donate 1000 terminals to emergency responders and make usage for all terminals in the region free until the region has recovered.
-
-I hope the best for the people of Brazil. https://t.co/NK6k","May 9, 9:38:42 AM EDT"
-1788633216116785528,"RT @kcoleman: When we started @CommunityNotes, all the concept testing showed people across the political spectrum wanted it. But could we…","May 9, 2:12:44 PM EDT"
-1788671611329007841,"This illustrates just how much the legacy media lies to the public! https://t.co/l6EAC7jdvl","May 9, 4:45:18 PM EDT"
-1788703645963362725,"RT @TeslaBoomerMama: Please hear me out for instructions on how to vote and what to do thereafter, to help maximize participation in Tesla'…","May 9, 6:52:36 PM EDT"
-1788706137824518260,"Post your movies, TV series or podcast on this platform and monetize by turning on subscriptions! https://t.co/7tMa6LUvcV","May 9, 7:02:30 PM EDT"
-1788709934835683555,"RT @cb_doge: You can upload 4hr long videos on this platform. 📽️ https://t.co/nMDbFhuzZ7","May 9, 7:17:35 PM EDT"
-1788710558704804208,"RT @XBusiness: 👀 Coming soon: AI Audiences
-
-Briefly describe the target audience for your ads and our AI systems will generate a pool of t…","May 9, 7:20:04 PM EDT"
-1788815539998953716,"RT @SpaceX: Watch Falcon 9 launch 20 @Starlink satellites to orbit from California, including 13 with Direct to Cell capabilities https://t…","May 10, 2:17:13 AM EDT"
-1788828194419736695,"What Earthlooks like in radio frequency from the @Starlink direct to phone satellites https://t.co/HATVQIsLQT","May 10, 3:07:31 AM EDT"
-1788834859110002716,"Just to reiterate: Tesla will spend well over $500M expanding our Supercharger network to create thousands of NEW chargers this year.
-
-That’s just on new sites and expansions, not counting operations costs, which are much higher.","May 10, 3:34:00 AM EDT"
-1788835845601952007,"Our 75th launch from Vandenberg, California https://t.co/b3VAzHOrwX","May 10, 3:37:55 AM EDT"
-1788838767165415549,"Just started a Supercharger Community
- https://t.co/o5QSGCfrp3","May 10, 3:49:31 AM EDT"
-1788847191160705030,"RT @TeslaCharging: New Tesla Supercharger: IOI City Mall Putrajaya, Malaysia (4 stalls)
-https://t.co/clVvuUvNTL https://t.co/1Ajy6ZrY5e","May 10, 4:23:00 AM EDT"
-1788936435589947426,"This is accurate https://t.co/iGVXmFtWH2","May 10, 10:17:37 AM EDT"
-1788938169284485583,"RT @SpaceX: Falcon 9 launches 20 @Starlink satellites – including 13 with Direct to Cell capabilities – completing the 75th launch from pad…","May 10, 10:24:31 AM EDT"
-1788943191598612505,"RT @farzyness: Neuralink's First Patient Reveals Astonishing Results.
-
-Here's an edit of @ModdedQuad first livestream explaining in detail…","May 10, 10:44:28 AM EDT"
-1788981896988242055,"RT @jack: don’t depend on corporations to grant you rights.
-defend them yourself using freedom technology.
-
-(you’re on one)","May 10, 1:18:16 PM EDT"
-1788995093698936990,"RT @DongWookChung2: I love X Communities because they provide a much bigger chance for great content from small accounts to be featured and…","May 10, 2:10:42 PM EDT"
-1788995750010995079,"RT @pmarca: Please enjoy @bhorowitz and me answering questions on the current state of AI!
-
-00:01:14 - How AI startups can compete with the…","May 10, 2:13:19 PM EDT"
-1788996442574450777,"Concerning https://t.co/PSIRZMZ01i","May 10, 2:16:04 PM EDT"
-1789013961796407406,"RT @pmarca: Please enjoy @bhorowitz and me answering questions on the current state of AI!
-
-01:14 How AI startups can compete with the bigg…","May 10, 3:25:41 PM EDT"
-1789039218607747137,"I doubt that the people of Australia agree with suppressing their rights https://t.co/FXh0crGGYH","May 10, 5:06:03 PM EDT"
-1789049294160621882,"Interesting https://t.co/qfgCOKqtEk","May 10, 5:46:05 PM EDT"
-1789118836157059356,"RT @jordanbpeterson: Mr. Musk
-
-@elonmusk
-
-It's much much worse than you have been informed: plans to shackle Canadians electronically if a…","May 10, 10:22:25 PM EDT"
-1789173902289338518,"Major geomagnetic solar storm happening right now. Biggest in a long time. Starlink satellites are under a lot of pressure, but holding up so far. https://t.co/TrEv5Acli2","May 11, 2:01:14 AM EDT"
-1789184117848059912,"RT @daltybrewer: I took my first road trip in my Tesla using FSD v12.3.6.
-
-My car drove me 366 miles with 0 disengagements.
-
-I can confiden…","May 11, 2:41:49 AM EDT"
-1789184692161569063,"Only 𝕏 resisted censoring your voice https://t.co/QzzvMXkguT","May 11, 2:44:06 AM EDT"
-1789273707552412034,"RT @cb_doge: Just a reminder:
-
-On 𝕏, the average cost per ad click is only $0.38, lowest as compared to other platforms. https://t.co/wKqu0…","May 11, 8:37:49 AM EDT"
-1789366024019886496,"Starships preparing for spaceflight https://t.co/cX5u17NHRQ","May 11, 2:44:39 PM EDT"
-1789374509285269663,"“You will use dongles and you will be happy” https://t.co/wCDUKIYorZ","May 11, 3:18:22 PM EDT"
-1789375681769423358,"RT @XNews: https://t.co/OWyvgLyFQm","May 11, 3:23:02 PM EDT"
-1789388954896113841,"RT @engineers_feed: The U.S. government has issued its first severe geomagnetic storm watch in nearly two decades, highlighting the risk fr…","May 11, 4:15:46 PM EDT"
-1789393397523915023,"You really feel that bass https://t.co/JrvQXCwGj5","May 11, 4:33:25 PM EDT"
-1789394404446282213,"How the Federal Reserve works https://t.co/3rRhbBfcJe","May 11, 4:37:26 PM EDT"
-1789400837095088157,"RT @SpaceX: Super Heavy booster for Flight 4 moving to the pad at Starbase https://t.co/jtDIvIXhOr","May 11, 5:02:59 PM EDT"
-1789676834420044102,"🥰 Happy Mother’s Day 🥰","May 12, 11:19:42 AM EDT"
-1789678328875745575,"https://t.co/pUnBcNla3C","May 12, 11:25:38 AM EDT"
-1789731229807333615,"Yup https://t.co/LTPIpdzPjE","May 12, 2:55:51 PM EDT"
-1789741310041272570,"RT @NASA: Have you seen the aurora this weekend?
-
-Follow @NASASun to learn more about how it happens—and keep an eye on @NOAA (and @NWSSWPC…","May 12, 3:35:54 PM EDT"
-1789783108528554071,"RT @alx: Someone should tell Johnny McEntee to start posting on 𝕏 🤣
-
- https://t.co/7jXnXTouzx","May 12, 6:22:00 PM EDT"
-1789910764553216021,"RT @SpaceX: Liftoff! https://t.co/9N3E7FDYW7","May 13, 2:49:15 AM EDT"
-1789910829221003742,"RT @SpaceX: Falcon 9 launches 23 @Starlink satellites to low-Earth orbit from Florida https://t.co/rNvtq9idUY","May 13, 2:49:31 AM EDT"
-1790099423118164402,"RT @ScarantinoX: This efficiency is NUTTY 🤯
-
-Currently projecting ~365miles of range at highway speed (75mph). Destination is +100ft elevat…","May 13, 3:18:55 PM EDT"
-1790118216196329917,"This sounds bad https://t.co/DeGVWRm5Ih","May 13, 4:33:36 PM EDT"
-1790118678865838540,"SpaceX’s mission is to extend consciousness to Mars and then the stars","May 13, 4:35:26 PM EDT"
-1790124424986849471,"Truth is stranger & funnier than fiction 😂 https://t.co/L7mY2NQ1dg","May 13, 4:58:16 PM EDT"
-1790243981323816962,"RT @cb_doge: You can also support this platform by sharing 𝕏.com links with your friends.
-
- https://t.co/C9FFUYhj5T","May 14, 12:53:20 AM EDT"
-1790245005291913422,"https://t.co/JeJgyBYm5G","May 14, 12:57:25 AM EDT"
-1790382311491445120,"https://t.co/zTCVL0NiMq","May 14, 10:03:01 AM EDT"
-1790391774097088608,"The true battle is:
-
-Extinctionists who want a holocaust for all of humanity.
-
-— Versus —
-
-Expansionists who want to reach the stars and Understand the Universe. https://t.co/1QqJKNoP6p","May 14, 10:40:37 AM EDT"
-1790399671564632243,"Now imagine if the extinctionist philosophy is programmed into AI.
-
-No need to imagine – this is already the case with Gemini and ChatGPT.","May 14, 11:12:00 AM EDT"
-1790402066940080398,"🫡 https://t.co/hsl9tKWGi6","May 14, 11:21:31 AM EDT"
-1790425166746382738,"Cool https://t.co/v4Ljn2eMpw","May 14, 12:53:18 PM EDT"
-1790428755917250570,"Wow https://t.co/vGWmq3NUdm","May 14, 1:07:34 PM EDT"
-1790620026925727764,"👌 https://t.co/I83VTEPBMy","May 15, 1:47:37 AM EDT"
-1790629998631723326,"Optimus will be amazing","May 15, 2:27:14 AM EDT"
-1790630211564052603,"RT @cb_doge: Reuters new logo is 🔥 https://t.co/AEnzwfBYZo","May 15, 2:28:05 AM EDT"
-1790630289418690624,"RT @imPenny2x: Sending 𝕏 links to your off platform friends is community service","May 15, 2:28:23 AM EDT"
-1790735431505682675,"Congrats @SpaceX Falcon team on 50 successful missions already this year!
-
-Highest flight rate of any rocket ever. https://t.co/y0MPfK9Uzo","May 15, 9:26:11 AM EDT"
-1790748130948030668,"RT @Tesla: FSD Supervised can help protect not just the occupants of the vehicle, but also others sharing the road","May 15, 10:16:39 AM EDT"
-1790916692471902713,"Interesting podcast! https://t.co/S6iiOic9wt","May 15, 9:26:27 PM EDT"
-1790978078233252341,"Stacking Starship https://t.co/FLAwrCI9Br","May 16, 1:30:23 AM EDT"
-1791028377517989896,"Grok will soon offer a humorous take on the news in the spirit of how The Daily Show and Colbert Report used to be in ancient times","May 16, 4:50:15 AM EDT"
-1791028785577631941,"19 years ago https://t.co/klEaImclLt","May 16, 4:51:52 AM EDT"
-1791029436651102240,"Early days of SpaceX
- https://t.co/y6TsAqYcvt","May 16, 4:54:28 AM EDT"
-1791031052569600176,"Thanks to all Tesla vote supporters! https://t.co/FV50lIJw8f","May 16, 5:00:53 AM EDT"
-1791035887297663176,"Grok now available in Europe https://t.co/aD8PsPq4X3","May 16, 5:20:06 AM EDT"
-1791037547273203815,"Now imagine if the philosophy that led to this outcome was programmed into AI https://t.co/TReAsYM1iD","May 16, 5:26:41 AM EDT"
-1791040271591031268,"Giga Berlin setting records for sustainability https://t.co/dmojsbNSam","May 16, 5:37:31 AM EDT"
-1791042021505020170,"Starlink now on over 200 cruise ships! https://t.co/NmUvNdbh7g","May 16, 5:44:28 AM EDT"
-1791074806810501124,"Thank you https://t.co/E1NASLlZXj","May 16, 7:54:45 AM EDT"
-1791332539220521079,"Neuralink is accepting applications for the second participant.
-
-This is our Telepathy cybernetic brain implant that allows you to control your phone and computer just by thinking.
-
-No one better than Noland (@ModdedQuad) himself to tell you about the f","May 17, 12:58:53 AM EDT"
-1791351500217754008,"All core systems are now on https://t.co/bOUOek5Cvy https://t.co/cwWu3h2vzr","May 17, 2:14:14 AM EDT"
-1791352738019709391,"RT @wanghaofei: Major improvements on For you today! Let us know your feedback over the next couple of days, is it getting better or worse?…","May 17, 2:19:09 AM EDT"
-1791480027416060350,"Prosecute/Fauci https://t.co/jx72bfhBJ5","May 17, 10:44:57 AM EDT"
-1791636698318745634,"Falcon going to orbit as seen from ocean https://t.co/Dclhju24ya","May 17, 9:07:30 PM EDT"
-1791640932711837938,"Interview with Noland, world’s first recipient of a Neuralink, which enables telepathic control of a computer or phone just by thinking!
-
-Long-term, I think we can bridge severed nerve signals to a 2nd Neuralink in the spine, restoring full body control. ","May 17, 9:24:20 PM EDT"
-1791670970052125073,"I’m looking forward to this 😂 https://t.co/LGqGlOTiuU","May 17, 11:23:41 PM EDT"
-1791671822145974413,"Sigh https://t.co/iWEaoBYxYx","May 17, 11:27:04 PM EDT"
-1791672112089882665,"https://t.co/4xDnuk3ZAv","May 17, 11:28:13 PM EDT"
-1791672494900089030,"Is this accurate? @CommunityNotes https://t.co/diW3dGpkBG","May 17, 11:29:45 PM EDT"
-1791675740603257138,"Yeah https://t.co/My0rGjP7uy","May 17, 11:42:38 PM EDT"
-1791683611218805023,"RT @SpaceX: Falcon 9 completes the first 21st launch and landing of a booster and delivers 23 @Starlink satellites to low-Earth orbit from…","May 18, 12:13:55 AM EDT"
-1791689030641578286,"Ice cream is an amazing invention https://t.co/l2tPcBMuy7","May 18, 12:35:27 AM EDT"
-1791692285757034788,"Cool https://t.co/oS0gzawPCg","May 18, 12:48:23 AM EDT"
-1791695064626057681,"Great example of companies posting updates as 𝕏 Articles https://t.co/GJ1C1M1Dko","May 18, 12:59:26 AM EDT"
-1791695511248080956,"Please reply in comments if you’re having difficulty voting your Tesla shares https://t.co/wxdkhwFWPc","May 18, 1:01:12 AM EDT"
-1791695760666607641,"Congrats Tesla Fremont team! https://t.co/swSfR3D7rE","May 18, 1:02:12 AM EDT"
-1791697765975876048,"RT @SpaceX: Liftoff! https://t.co/caAsrsKUyH","May 18, 1:10:10 AM EDT"
-1791703368630722658,"Extremely concerning https://t.co/ybkTCYiOLu","May 18, 1:32:25 AM EDT"
-1791707380952207523,"Grok upgrades.
-
-Also, you will soon be able to see a humorous take on the news from Grok if you chose “Fun Mode”. https://t.co/84J6pxG0Ee","May 18, 1:48:22 AM EDT"
-1791713117216612656,"Yes https://t.co/jCh9LM8KLz","May 18, 2:11:10 AM EDT"
-1791717405036847319,"RT @cb_doge: How to Grok?
-
-一 Post Conversation
-一 Copy Response Text
-一 Share Chat
-一 Rate Response
-一 Chat History
-一 Switch Modes
-一 New…","May 18, 2:28:12 AM EDT"
-1791859736666878033,"Please let us know if you have any difficulties voting your Tesla stock https://t.co/WvLakCCoKJ","May 18, 11:53:47 AM EDT"
-1791892242518741442,"There are no coincidences https://t.co/QYD65DNNCp","May 18, 2:02:57 PM EDT"
-1791916829201600753,"The Apple headphones are great","May 18, 3:40:38 PM EDT"
-1791993595215642845,"True https://t.co/tqFkzttWEx","May 18, 8:45:41 PM EDT"
-1792003357365936170,"Stream your gameplay on 𝕏!
- https://t.co/E8et5dq0xD","May 18, 9:24:28 PM EDT"
-1792075636217090332,"This is concerning. Tesla will reach out to these banks/brokers. Shareholders have the right to vote their shares! https://t.co/Uvg5QKcRQ8","May 19, 2:11:41 AM EDT"
-1792076597983613272,"Super low cost to charge your electric vehicle in Texas! https://t.co/0901txhqRB","May 19, 2:15:30 AM EDT"
-1792129080965681450,"Starlink will help a lot of people throughout the world https://t.co/cS4vmLUYDe","May 19, 5:44:03 AM EDT"
-1792129896690639175,"Honored to launch @Starlink in Indonesia! https://t.co/cAHRxm3jvn","May 19, 5:47:18 AM EDT"
-1792309903367061625,"Bringing connectivity to remote communities radically improves access to education and economic opportunities
- https://t.co/hDVYvpRDKZ","May 19, 5:42:35 PM EDT"
-1792321635019870377,"Very much worth listening to the Tides of History podcast! https://t.co/6JRzOc2TGC","May 19, 6:29:12 PM EDT"
-1792326610496246010,"Echoes of present day https://t.co/ZqNbKF3bN1","May 19, 6:48:58 PM EDT"
-1792403500472864839,"Starlink is now available in Fiji! 🇫🇯 https://t.co/MLa6ktFVqn","May 19, 11:54:30 PM EDT"
-1792436819117879477,"Reading the Grok newsfeed in fun mode is awesome 🙄 https://t.co/FNfXxy4Ra8","May 20, 2:06:54 AM EDT"
-1792536841725661392,"Starlink now available in 99 countries https://t.co/MLa6ktFVqn","May 20, 8:44:21 AM EDT"
-1792537777005031518,"RT @RubinReport: Pretty much every sane person right now.
-
-cc: @elonmusk https://t.co/iTkK4fwvyh","May 20, 8:48:04 AM EDT"
-1792541008665936051,"RT @cb_doge: If you're a website admin and still using the old icon, please update it to 𝕏. https://t.co/SgLLbLK7AY","May 20, 9:00:54 AM EDT"
-1792571388085358870,"Thanks @AvanzaBank! https://t.co/PdR09loIKY","May 20, 11:01:37 AM EDT"
-1792572030526886279,"The Tesla team put this together of their own volition (I did not ask for it). Thanks! https://t.co/8VRNhwmMxm","May 20, 11:04:11 AM EDT"
-1792573194278453324,"RT @farzyness: Elon Musk Reveals Plan to Solve World's Water.
-
-Here's an edit of @elonmusk's recent speech at the 10th World Water Forum. T…","May 20, 11:08:48 AM EDT"
-1792575469386179045,"RT @DimaZeniuk: “I would encourage everyone in a room to look at the cost of solar power has dropped dramatically over the years. The cost…","May 20, 11:17:51 AM EDT"
-1792614304858120395,"RT @pmarca: Please enjoy @bhorowitz and me on the American Dream! 🇺🇸💭🚀✨
-
-2:28 Home ownership, education and healthcare
-5:43 Self-actualizat…","May 20, 1:52:10 PM EDT"
-1792629142141177890,"Starship Flight 4 in about 2 weeks.
-
-Primary goal is getting through max reentry heating.
-
-Worth noting that no one has ever succeeded in creating a fully reusable heat shield. Shuttle required >6 months of rework. https://t.co/4ffEHSLRbu","May 20, 2:51:07 PM EDT"
-1792633926751760546,"RT @Starlink: Across more than 17,000 islands, Starlink’s high-speed, low-latency internet is available in Indonesia! 🛰️🇮🇩❤️ → https://t.co…","May 20, 3:10:08 PM EDT"
-1792639102434632021,"Stream on 𝕏 https://t.co/USA6e0DVlO","May 20, 3:30:42 PM EDT"
-1792647374122176605,"Post your family pics on 𝕏!
-
-We care & do more to fight child exploitation than any other platform by far. https://t.co/obHWnVOmrT","May 20, 4:03:34 PM EDT"
-1792648834885050504,"The New Woke Times is truly unreadable https://t.co/QlWeZyFijc","May 20, 4:09:22 PM EDT"
-1792650907819421933,"In sharp contrast, 𝕏 supports child safety bills https://t.co/Ocnjf55qH3","May 20, 4:17:36 PM EDT"
-1792654343570870385,"But why does this boycott continue? https://t.co/TsKHde3FWf","May 20, 4:31:16 PM EDT"
-1792689139470704718,"SpaceX might exceed 90% of all Earth payload to orbit later this year.
-
-Once Starship is launching at high rate, probably >99%. Has to be or we can’t build a city on Mars or base on moon.
-
-We file almost no patents, so nothing stopping competition fro","May 20, 6:49:32 PM EDT"
-1792690117947314323,"Congratulations to the @SpaceX team on passing 3 million customers in 99 countries!
-
-And thanks to you for buying @Starlink!","May 20, 6:53:25 PM EDT"
-1792690964672450971,"This is a Black Mirror episode.
-
-Definitely turning this “feature” off. https://t.co/bx1KLqLf67","May 20, 6:56:47 PM EDT"
-1792697418208956746,"This is the quality of humor we want from Grok https://t.co/fLE9tARHlp","May 20, 7:22:25 PM EDT"
-1792699521237234091,"Testing Grok news funny mode
- https://t.co/1LpjGGfT8l","May 20, 7:30:47 PM EDT"
-1792752230082416766,"RT @KanekoaTheGreat: CNBC's Squawk Box discussed Elon Musk's Tesla compensation package when it was first announced in January 2018:
-
-@RayD…","May 20, 11:00:14 PM EDT"
-1792778662514950191,"RT @Starlink: Starlink is connecting more than 3M people with high-speed internet across nearly 100 countries, territories and many other m…","May 21, 12:45:16 AM EDT"
-1792778957529710727,"Easy to order online in 2 minutes at https://t.co/Q1VvqV5G0i. No long-term contract required. https://t.co/F1XXmZWoRP","May 21, 12:46:26 AM EDT"
-1792953914570019121,"Teamwork can solve anything https://t.co/wy8yJuR4lg","May 21, 12:21:39 PM EDT"
-1793079650593517687,"RT @SpaceX: First video call on @X completed through @Starlink Direct to Cell satellites from unmodified mobile phones!
-
-We’re excited to g…","May 21, 8:41:17 PM EDT"
-1793447467519803452,"Launching @Starlink in Fiji with @PresidentFiji! https://t.co/mOmf2HNkm9","May 22, 9:02:51 PM EDT"
-1793457708294934647,"This would be much appreciated! https://t.co/HpoCNE5qKa","May 22, 9:43:33 PM EDT"
-1793459695870697512,"Interesting visit to @LosAlamosNatLab today. Discussed a lot of science 😉","May 22, 9:51:27 PM EDT"
-1793467069922725951,"Great work by the Notes team! https://t.co/8UgK4CSZEI","May 22, 10:20:45 PM EDT"
-1793529371053191426,"Thanks Jensen! @nvidia https://t.co/IKtjo6YkbK","May 23, 2:28:18 AM EDT"
-1793531055716401222,"Some people still believe the legacy media https://t.co/AZUnqJNibP","May 23, 2:35:00 AM EDT"
-1793531309614330031,"Community Notes now translated https://t.co/vehL5Gqpot","May 23, 2:36:01 AM EDT"
-1793535782822842520,"Is suspect this thought has gone through many men’s minds recently 😂😂 https://t.co/HO4NKHgi5H","May 23, 2:53:47 AM EDT"
-1793536136281030782,"Asian women earn more than white men https://t.co/FpaWh6rgWu","May 23, 2:55:11 AM EDT"
-1793536271979303236,"RT @MarioNawfal: 🚨ELON: COMMUNITY NOTES WILL MAKE X THE MOST TRUSTED PLACE ON THE INTERNET
-
-“They have corrected me, they have corrected h…","May 23, 2:55:44 AM EDT"
-1793540037021430099,"Activists should be removed as judges https://t.co/CY4ODsj5Hp","May 23, 3:10:41 AM EDT"
-1793549358597886004,"https://t.co/4awVq8Q4ia","May 23, 3:47:44 AM EDT"
-1793551542664274261,"RT @megynkelly: .@BillMaher on Biden's Pandering, Woke Progressives Supporting Terrorists, and The Value of Disagreement
-
-Plus, Stormy Dani…","May 23, 3:56:25 AM EDT"
-1793664067707834876,"People will die if doctors misdiagnose patients https://t.co/VDZnIfe0HL","May 23, 11:23:33 AM EDT"
-1793667283207995479,"Trust the collective wisdom of the people https://t.co/rzmH5vQ7pD","May 23, 11:36:19 AM EDT"
-1793685157364543814,"A lot of social media is bad for kids, as there is extreme competition between social media AIs to maximize dopamine! https://t.co/bzB8m5qL9z","May 23, 12:47:21 PM EDT"
-1793748023312629820,"Yeah! https://t.co/Khbzv8Dzql","May 23, 4:57:09 PM EDT"
-1793758447407956478,"Rocket gymnastics
- https://t.co/HTZmnXk3XS","May 23, 5:38:34 PM EDT"
-1793762549252628534,"RT @SawyerMerritt: NEWS: Tesla says they received a record 5.9 million job applications in 2023, a 64% increase vs 2022. https://t.co/XwSsV…","May 23, 5:54:52 PM EDT"
-1793841342055166228,"Flight 4 in about 10 days https://t.co/1Fb0ProHjG","May 23, 11:07:58 PM EDT"
-1794016667778928739,"RT @MarioNawfal: 🇺🇸 ELON: STARLINK WILL COMPLETE THE GOAL OF A CONNECTED WORLD
-
-"SpaceX is very focused on the Starlink constellation for i…","May 24, 10:44:39 AM EDT"
-1794022138757648810,"https://t.co/HAhqxoTcvi","May 24, 11:06:23 AM EDT"
-1794022958996033811,"OG Doge has ascended to heaven to be with his friend Harambe
-
-(@Not_the_Bee)","May 24, 11:09:39 AM EDT"
-1794051318862262444,"Could be a good one
-https://t.co/PZKM9sWz4m","May 24, 1:02:20 PM EDT"
-1794053393440469493,"RT @cb_doge: Instagram - sad generation with happy pictures
-𝕏 - real people, real thoughts in real-time https://t.co/vaIyLAoWfa","May 24, 1:10:35 PM EDT"
-1794136591130394833,"RT @cb_doge: 𝕏 Creators,
-
-The revenue you generate depends on the number of verified ad impressions you receive.
-
-I recommend encouraging y…","May 24, 6:41:11 PM EDT"
-1794140283095158907,"Tesla Megapack batteries are great for buffering energy at scale! https://t.co/bVx1T9vaCF","May 24, 6:55:51 PM EDT"
-1794142909706711201,"The Boring Company connects another hotel in Vegas!
-
-Within a few years, you will be able to get to all major destinations in the city super fast with electric cars in tunnels.
-
-No need to imagine, you can try it today between Resorts World and the Conve","May 24, 7:06:17 PM EDT"
-1794144519514189928,"It’s a real thing that you can try today https://t.co/G8OXZzyzxA","May 24, 7:12:41 PM EDT"
-1794147920998273387,"Improvements to Communities https://t.co/JNJkFs1v52","May 24, 7:26:12 PM EDT"
-1794150387047690337,"RT @boringcompany: 2 million passengers!","May 24, 7:36:00 PM EDT"
-1794161292225421505,"Great show! https://t.co/6npYXo0lKm","May 24, 8:19:20 PM EDT"
-1794173683919208518,"RT @SpaceX: Starship is designed to fundamentally alter humanity’s access to space, ultimately enabling us to make life multiplanetary. The…","May 24, 9:08:35 PM EDT"
-1794175493119644069,"WhatsApp exports your user data every night.
-
-Some people still think it is secure. https://t.co/LxDs7t7HSv","May 24, 9:15:46 PM EDT"
-1794184373404840240,"Just a reminder that Earth is almost empty of humans, contrary to what many people think
-https://t.co/jdzbQsSWzd","May 24, 9:51:03 PM EDT"
-1794238958030983405,"The goal of citizenship for all illegals is very clearly stated by the leader of the Senate.
-
-For some reason, a lot of people still think this is some crazy conspiracy theory!
-
- https://t.co/85jOl3Q0S1","May 25, 1:27:57 AM EDT"
-1794392792644690028,"https://t.co/4gfbrypECg","May 25, 11:39:14 AM EDT"
-1794413021366022258,"“Tesla is far ahead in self-driving cars” – Jensen Huang
- https://t.co/wynHNIcf7n","May 25, 12:59:37 PM EDT"
-1794445334745325768,"Anything that potentially challenges the Standard Model is a very interesting experiment.
-
-Wild that Germanium-76 takes 100 trillion times the age of the universe to decay, yet it is observable in a year in you have ~1 ton of it!
-
-https://t.co/Vs05tDcCik","May 25, 3:08:01 PM EDT"
-1794605275850371199,"https://t.co/H6VTnaVt65","May 26, 1:43:34 AM EDT"
-1794615155697025288,"RT @NASAAmes: From 100,000 miles away 📸
-
-This Apollo 10 image of Earth was taken 55 years ago in 1969. https://t.co/vtqTn4LE46","May 26, 2:22:50 AM EDT"
-1794971979469959268,"RT @xai: xAI is pleased to announce..
-https://t.co/uu0ioPgS8V","May 27, 2:00:43 AM EDT"
-1794981927125987683,"Join xAI if you believe in our mission of understanding the universe, which requires maximally rigorous pursuit of the truth, without regard to popularity or political correctness https://t.co/jWEGDDnVk1","May 27, 2:40:15 AM EDT"
-1795188864027398186,"RT @cb_doge: BREAKING: Meta is using your Instagram and Facebook photos to train their AI.
-
-Meta’s Chief Product Officer confirmed that the…","May 27, 4:22:32 PM EDT"
-1795224535467270465,"RT @tunguz: Which one of these AI labs would you most like to work at?","May 27, 6:44:17 PM EDT"
-1795237071562375641,"Interesting https://t.co/X8lietdhkE","May 27, 7:34:06 PM EDT"
-1795471329954537958,"Please let us know if you have any questions about voting your Tesla shares! https://t.co/SlKOo5umU0","May 28, 11:04:57 AM EDT"
-1795471904297382306,"Uploading your videos to 𝕏 massively increases viewership, as the algorithm is optimizing for total user-seconds https://t.co/dM86EhN6c0","May 28, 11:07:14 AM EDT"
-1795472768982458769,"RT @SawyerMerritt: NEWS: Tesla says you can win a tour of Tesla's Giga Texas factory with Elon Musk and Franz von Holzhausen if you vote yo…","May 28, 11:10:41 AM EDT"
-1795510072233050313,"RT @SpaceX: Clear skies as Falcon 9’s first stage lands on the A Shortfall of Gravitas droneship, completing our 350th launch! https://t.co…","May 28, 1:38:54 PM EDT"
-1795792090841965022,"Yeah https://t.co/xWKxF46m4k","May 29, 8:19:33 AM EDT"
-1795798299909173339,"Cool 😎 https://t.co/m6WtUtqe0I","May 29, 8:44:13 AM EDT"
-1795809849638346883,"No kidding https://t.co/6GoMm2FU63","May 29, 9:30:07 AM EDT"
-1795817587118686230,"Starlink provides Internet connectivity in the air that is often better than being on the ground! https://t.co/6Y2tCpI6d3","May 29, 10:00:52 AM EDT"
-1795856574310650116,"RT @SpaceX: Starship and Super Heavy loaded with more than 10 million pounds of propellant in a rehearsal ahead of Flight 4. Launch is targ…","May 29, 12:35:47 PM EDT"
-1795869252513087987,"Thanks Chamath!
- https://t.co/w3mzfLDQ2P","May 29, 1:26:10 PM EDT"
-1796051160731676909,"Embrace cringe https://t.co/hGPSpfIh0P","May 30, 1:29:00 AM EDT"
-1796136756229570801,"RT @qatarairways: Qatar Airways raises in-flight experience to new heights!
-
-We are proud to be the largest global airline and the first in…","May 30, 7:09:07 AM EDT"
-1796213106005115361,"Prop C, while certainly well-intentioned, has actually amplified the homeless problem and forced businesses that operate on very slim margins, like payments companies, to leave the city or go bankrupt.
-
-It must be repealed. https://t.co/RMDYDMyZxS","May 30, 12:12:31 PM EDT"
-1796217867790110951,"Why is making life multiplanetary important?
- https://t.co/QwWcNkfxYX","May 30, 12:31:26 PM EDT"
-1796440638617244012,"Indeed, great damage was done today to the public’s faith in the American legal system.
-
-If a former President can be criminally convicted over such a trivial matter – motivated by politics, rather than justice – then anyone is at risk of a similar fate. ","May 31, 3:16:39 AM EDT"
-1796441240168436020,"RT @SpaceX: Today marks the fourth anniversary of Falcon 9 launching @NASA’s Demo-2 mission to the @space_station, returning human spacefli…","May 31, 3:19:02 AM EDT"
-1796447179604955480,"RT @Tesla: Every day, our Semi fleet transports battery packs from Giga Nevada to supply our Fremont factory https://t.co/3tpk8nXJXz","May 31, 3:42:38 AM EDT"
-1796448840603906056,"I do https://t.co/iIrSq1OlM5","May 31, 3:49:14 AM EDT"
-1796571695706509419,"Great book https://t.co/jlzqX9NmUi","May 31, 11:57:25 AM EDT"
-1796576471747826061,"https://t.co/PSd4722WqV","May 31, 12:16:24 PM EDT"
-1796577674229588414,"How to vote your Tesla shares https://t.co/ucStsEETRq","May 31, 12:21:10 PM EDT"
-1796579097633763586,"This will be interesting https://t.co/UbcehLj9V2","May 31, 12:26:50 PM EDT"
-1796585681164378491,"The proscriptions of Marius led to the proscriptions of Sulla","May 31, 12:52:59 PM EDT"
-1796693447618760810,"Hard to view this as anything other than abuse of the law for political purposes https://t.co/c8Ub8g62qq","May 31, 8:01:13 PM EDT"
-1796736510605001007,"RT @SpaceX: One more for the month of May, liftoff of Falcon 9 https://t.co/YHyWQ6KaE0","May 31, 10:52:20 PM EDT"
-1796736542469181836,"RT @SpaceX: Landing burn and touchdown of Falcon 9 on the A Shortfall of Gravitas droneship https://t.co/h1NSP4tC2V","May 31, 10:52:28 PM EDT"
-1796784064101224455,"Great work by the SpaceX Falcon team launching 14 times in a single month! https://t.co/hPfb96qOgs","Jun 1, 2:01:18 AM EDT"
-1796795162028335377,"😂🎯 https://t.co/J472ZB7jnR","Jun 1, 2:45:24 AM EDT"
-1797071331667632569,"Starship Flight 4, with many improvements, aiming to launch on Thursday!
-
-The main goal of this mission is to get much deeper into the atmosphere during reentry, ideally through max heating. https://t.co/8cE1dTQ9nw","Jun 1, 9:02:48 PM EDT"
-1797174479736414490,"RT @kevinnbass: George Orwell writing in 1943 https://t.co/bmQHxyrx5f","Jun 2, 3:52:40 AM EDT"
-1797174660771008611,"Not much has changed https://t.co/kisWKz6SC8","Jun 2, 3:53:23 AM EDT"
-1797275279385137424,"RT @cb_doge: Everyone can be a citizen journalist.
-
-You just need a mobile, internet connectivity and 𝕏 app. https://t.co/wZMp5f9z9w","Jun 2, 10:33:13 AM EDT"
-1797282250574184587,"Starlink just achieved a new internal median latency record of 28ms yesterday!
-
-Great work by the engineering and operations teams.","Jun 2, 11:00:55 AM EDT"
-1797286297960165863,"I love monuments to hubris https://t.co/WteH2ahnR3","Jun 2, 11:17:00 AM EDT"
-1797384926267863169,"But look on the bright side 😳 https://t.co/HnavhnmlOn","Jun 2, 5:48:54 PM EDT"
-1797385481887363190,"😁 https://t.co/jKODpHCCZ6 https://t.co/HnavhnmlOn","Jun 2, 5:51:07 PM EDT"
-1797393009014669379,"The tote bag https://t.co/gHgD61PodY","Jun 2, 6:21:01 PM EDT"
-1797442834691445198,"Civilization is careening towards dystopia/utopia","Jun 2, 9:39:01 PM EDT"
-1797477407567524150,"Join us! https://t.co/BMtXz0wBJQ","Jun 2, 11:56:24 PM EDT"
-1797486385596875034,"😂 https://t.co/2tI1DiTxNH","Jun 3, 12:32:04 AM EDT"
-1797491033447821819,"💯😂 https://t.co/cBG0DpbmVN","Jun 3, 12:50:32 AM EDT"
-1797499471632519491,"Starship is ready to fly https://t.co/3PIb5FhHaR","Jun 3, 1:24:04 AM EDT"
-1797500992017297745,"Yup https://t.co/vEO9JhOaVR","Jun 3, 1:30:07 AM EDT"
-1797514397881192610,"https://t.co/CXXEA1tDfc","Jun 3, 2:23:23 AM EDT"
-1797622148925890961,"Yup https://t.co/62PcZVwkWT","Jun 3, 9:31:33 AM EDT"
-1797632518721831169,"😂 https://t.co/sz15x8YCcS","Jun 3, 10:12:45 AM EDT"
-1797641611335315523,"2𝕏ist is 🤩","Jun 3, 10:48:53 AM EDT"
-1797652414901948470,"English has been a de facto open source language that has actively sought to include words from other languages for half a millennium
-https://t.co/ld0DzE15WR https://t.co/ld0DzE15WR https://t.co/1g9u8CYUhr","Jun 3, 11:31:49 AM EDT"
-1797660307713859985,"Tesla went public at $1.5B valuation 14 years ago. Valuation today is over $500B. https://t.co/Tqsnp6HFVn","Jun 3, 12:03:10 PM EDT"
-1797716866988908801,"Median latency for Starlink Internet in the US will get below 20ms https://t.co/aNHloNHEiP","Jun 3, 3:47:55 PM EDT"
-1798040247315648672,"RT @DimaZeniuk: Today, 14 years ago, SpaceX successfully launched the Falcon 9 for the first time (June 4, 2010) https://t.co/xVf2JbNxcn","Jun 4, 1:12:55 PM EDT"
-1798202688523718777,"RT @SpaceX: Falcon 9 launches 20 @Starlink satellites – including 13 with Direct to Cell capabilities – to orbit from Florida, completing t…","Jun 4, 11:58:24 PM EDT"
-1798219209023050140,"RT @X: https://t.co/P4yi7X46bG","Jun 5, 1:04:03 AM EDT"
-1798219738503676125,"Somewhere between singing & improv https://t.co/U8fxZz3kWz","Jun 5, 1:06:09 AM EDT"
-1798223581668896817,"Freedom of speech is worth fighting for https://t.co/nt71m3wPOF","Jun 5, 1:21:25 AM EDT"
-1798224002340790595,"https://t.co/0dfKAFoQYm","Jun 5, 1:23:06 AM EDT"
-1798224237163123152,"RT @BaronCapital: Baron Capital CEO Ron Baron will appear on @SquawkCNBC tomorrow, June 5 at 7:30 a.m. ET. Please tune in! https://t.co/LFM…","Jun 5, 1:24:02 AM EDT"
-1798224591837598188,"RT @astro_greek: .@elonmusk left Instagram because he started taking too many selfies 😂
-
-"What the hell is wrong with me?" https://t.co/0zS…","Jun 5, 1:25:26 AM EDT"
-1798225136610623899,"We should update how we dress for the future!","Jun 5, 1:27:36 AM EDT"
-1798338630471364871,"Livestream of the first @BoeingSpace Starliner to @Space_Station. Wishing them best of luck! https://t.co/5tfsywhWCv","Jun 5, 8:58:35 AM EDT"
-1798341946328645903,"RT @MachinePix: F-22 Raptor Aerial Demonstration Team chasing a SpaceX Falcon 9 Rocket carrying a US Space Force payload. https://t.co/iBuN…","Jun 5, 9:11:46 AM EDT"
-1798348864296247416,"The @SpaceX Starship launch tomorrow morning will be live-streamed exclusively on 𝕏!","Jun 5, 9:39:15 AM EDT"
-1798356118923841580,"Thanks Ron! https://t.co/wAW1v4DTIR","Jun 5, 10:08:05 AM EDT"
-1798360824853282923,"I’m glad the government of Japan recognizes the importance of this matter.
-
-If radical action isn’t taken, Japan (and many other countries) will disappear! https://t.co/5zTwRCQC3o","Jun 5, 10:26:47 AM EDT"
-1798371834557313322,"Congratulations on a successful launch! https://t.co/DiwBo6LheW","Jun 5, 11:10:32 AM EDT"
-1798372400758931849,"RT @NASA: Starliner to the stars! ✨
-
-At 10:52am ET, @BoeingSpace #Starliner lifted off on a @ULALaunch Atlas V for the first time with @NAS…","Jun 5, 11:12:47 AM EDT"
-1798398470065398000,"RT @TeslaBoomerMama: 🚨🇬🇧🇪🇺🇦🇺🗺️
-
-To everyone outside of the US who could not vote, there is a last minute solution, but you need to act NOW.…","Jun 5, 12:56:22 PM EDT"
-1798401666267357650,"ESG is a corrupted lie.
-
-It needs to end. https://t.co/utX2IMjm1m","Jun 5, 1:09:04 PM EDT"
-1798486554337563118,"Ron Baron is awesome https://t.co/lud8MEpsri","Jun 5, 6:46:23 PM EDT"
-1798493500918714859,"🤔 https://t.co/Vjq8z7xoA5","Jun 5, 7:13:59 PM EDT"
-1798493697904189580,"Streaming live exclusively on this platform! https://t.co/Tqz2ESKa5g","Jun 5, 7:14:46 PM EDT"
-1798494289280020989,"How to vote your Tesla shares https://t.co/wrDa8bh4CW","Jun 5, 7:17:07 PM EDT"
-1798504201196368219,"Yeah, @Jack is right
- https://t.co/sIhNIE3QXV","Jun 5, 7:56:30 PM EDT"
-1798556629920559164,"Launch tmrw morning at 7:20 Texas time https://t.co/CJJTyPvT8L","Jun 5, 11:24:50 PM EDT"
-1798698658772525069,"https://t.co/wpnm4CKDjY","Jun 6, 8:49:13 AM EDT"
-1798703949714985032,"We do actually have acquisition signal. 11 internal cameras are transmitting. Figuring out why external cameras aren’t.","Jun 6, 9:10:14 AM EDT"
-1798704747282890850,"External camera comes online in 11 mins","Jun 6, 9:13:24 AM EDT"
-1798706177553121357,"Successful soft landing of the Starship Super Heavy rocket booster! https://t.co/fIYuvYuuPH","Jun 6, 9:19:05 AM EDT"
-1798707525619233120,"RT @SpaceX: Super Heavy has splashed down in the Gulf of Mexico https://t.co/hIY3Gkq57k","Jun 6, 9:24:27 AM EDT"
-1798707624369893521,"RT @SpaceX: Hot stage jettison https://t.co/J48QtQD1Ae","Jun 6, 9:24:50 AM EDT"
-1798707652736012400,"RT @SpaceX: Starship’s Raptor engines have ignited during hot-staging separation. Super Heavy is executing the flip maneuver and boostback…","Jun 6, 9:24:57 AM EDT"
-1798707679340507414,"RT @SpaceX: Liftoff of Starship! https://t.co/2Z1PdNPYPG","Jun 6, 9:25:03 AM EDT"
-1798718549307109867,"Despite loss of many tiles and a damaged flap, Starship made it all the way to a soft landing in the ocean!
-
-Congratulations @SpaceX team on an epic achievement!! https://t.co/UnXbnmZ2pE","Jun 6, 10:08:15 AM EDT"
-1798733153462517825,"RT @SpaceX: Flight 4 liftoff from Starbase https://t.co/K32AdCND5O","Jun 6, 11:06:17 AM EDT"
-1798735740018516218,"🚀🚀 Stainless Steel Rocket 🚀🚀","Jun 6, 11:16:33 AM EDT"
-1798744793478213771,"Why is Starship made of stainless steel? This article from 5 years ago explains the reasons.
-
-Worth noting that the ship would have failed on reentry if made of aluminum or carbon fiber, as they can’t take the heat.
-
-https://t.co/QVAtv74quq","Jun 6, 11:52:32 AM EDT"
-1798745564898840872,"We did switch to a passive (mostly) glass heat shield, rather than actively-cooled steel, as the latter was heavier, at least according to initial calculations","Jun 6, 11:55:36 AM EDT"
-1798745841836110239,"Accurate 😂 https://t.co/DnvgPwt1w0","Jun 6, 11:56:42 AM EDT"
-1798751837920936278,"Today was a great day for humanity’s future as a spacefaring civilization!
-
-Nothing unites us more than working together towards inspiring objectives.","Jun 6, 12:20:32 PM EDT"
-1798819636181713280,"https://t.co/BbjB6RuI7t","Jun 6, 4:49:56 PM EDT"
-1798819680976781384,"RT @tesla_na: Pour one out!
-
-Tesla Mezcal now available in the US → https://t.co/PPftbZMHL1 https://t.co/zVhwM2M3Cu","Jun 6, 4:50:07 PM EDT"
-1798821071128608972,"Thanks Cathie https://t.co/QIMFCkBdS8","Jun 6, 4:55:38 PM EDT"
-1798821432232661297,"RT @SpaceX: Starship’s fourth flight test launched with ambitious goals, attempting to go farther than any previous test before and begin d…","Jun 6, 4:57:04 PM EDT"
-1798821499224146188,"RT @SpaceX: Starship made a controlled reentry, successfully making it through the phases of peak heating and max aerodynamic pressure and…","Jun 6, 4:57:20 PM EDT"
-1798829514375520746,"RT @Tesla: Congrats 4680 Cell Manufacturing team on building their 50 millionth battery cell at Giga Texas! https://t.co/zMhzAOghLi","Jun 6, 5:29:11 PM EDT"
-1798837571226657001,"Starship reentering like a meteor https://t.co/YjfVIHLLCl","Jun 6, 6:01:12 PM EDT"
-1798837841319141829,"Starship separates from booster https://t.co/YZJzi122DV","Jun 6, 6:02:16 PM EDT"
-1798838547333763150,"Starship weighs 5000 tons on liftoff
- https://t.co/HSxBYquSNK","Jun 6, 6:05:05 PM EDT"
-1798846199635869945,"Not a difficult prediction! We will have this nailed for next flight. https://t.co/ILBGoiHqxX","Jun 6, 6:35:29 PM EDT"
-1798848426895200567,"Note, a newer version of Starship has the forward flaps shifted leeward. This will help improve reliability, ease of manufacturing and payload to orbit.","Jun 6, 6:44:20 PM EDT"
-1798937746624631249,"If you want a detailed explanation of why I switched Starship from carbon fiber to stainless steel
- https://t.co/pXC0ngheiw","Jun 7, 12:39:16 AM EDT"
-1798947378109796435,"Worth mentioning that switching to ultra hard, cold-rolled stainless steel for Starship is what led me to make Cybertruck out of it too","Jun 7, 1:17:32 AM EDT"
-1799119259177488540,"Congratulations @narendramodi on your victory in the world’s largest democratic elections! Looking forward to my companies doing exciting work in India.","Jun 7, 12:40:32 PM EDT"
-1799120923716354252,"Another Falcon 9 launch!
-
-Falcon alone is trending to set a world record for the most amount of mass Earth delivers to orbit in a year. https://t.co/A7B1yTVhHJ","Jun 7, 12:47:08 PM EDT"
-1799281485977092426,"300 https://t.co/NI3RB1qDZZ","Jun 7, 11:25:09 PM EDT"
-1799282138304385331,"Cool https://t.co/Cu35vYCAdt","Jun 7, 11:27:45 PM EDT"
-1799282406328840330,"RT @SpaceX: Falcon 9 launches 22 @Starlink satellites to orbit from Florida https://t.co/yFl1SBuT6c","Jun 7, 11:28:49 PM EDT"
-1799282802103341466,"Wow https://t.co/T3KWq01m1S","Jun 7, 11:30:23 PM EDT"
-1799314671381676108,"RT @cb_doge: Share this with your friends who still believe the legacy media news.
-
-𝕏 is the #1 news app in the US (AppStore) https://t.co/…","Jun 8, 1:37:01 AM EDT"
-1799417761539805431,"https://t.co/vxfpYfc9iV","Jun 8, 8:26:40 AM EDT"
-1799497454812844047,"Starship booster makes soft landing in water, next landing will be caught by the tower arms https://t.co/soB7l1Gdsi","Jun 8, 1:43:20 PM EDT"
-1799505660813455441,"𝕏 is the global news https://t.co/n4na47s8hM","Jun 8, 2:15:57 PM EDT"
-1799508860006170952,"… https://t.co/J8Lgrh9SW3","Jun 8, 2:28:40 PM EDT"
-1799525711872417864,"Ship it https://t.co/Kj5OTpmmK5","Jun 8, 3:35:37 PM EDT"
-1799577948262957370,"Please take a moment to vote your Tesla shares before the annual meeting on Thursday.
-
-Lmk in comments if you encounter any issues. https://t.co/SlKOo5umU0","Jun 8, 7:03:12 PM EDT"
-1799598428772520315,"https://t.co/7rolx0R2fT","Jun 8, 8:24:34 PM EDT"
-1799621606744162548,"I’ve mentioned something like this before, but, if any of my companies goes public, we will prioritize other longtime shareholders of my other companies, including Tesla.
-
-Loyalty deserves loyalty.","Jun 8, 9:56:41 PM EDT"
-1799640950752641233,"Sorry it’s taken so long to make it happen, but we’re super close now https://t.co/ymKM5hPXw3","Jun 8, 11:13:33 PM EDT"
-1799641158395756626,"RT @cb_doge: All the details about voting can be found on https://t.co/KpfG5YTAid https://t.co/zIxLLbHGmx","Jun 8, 11:14:22 PM EDT"
-1799644167171125613,"Publish full-length, complex articles on 𝕏! https://t.co/xJIs5SEk5m","Jun 8, 11:26:19 PM EDT"
-1799646834417377637,"RT @TeslaBoomerMama: Please everyone check that they voted with EVERY account holding TSLA shares.
-You should have a control number PER acc…","Jun 8, 11:36:55 PM EDT"
-1799650788848841069,"Thanks Ashok!
-
-Ashok was the first person to join the Tesla AI/Autopilot team and ultimately rose to lead all AI/Autopilot software.
-
-Without him and our awesome team, we would just be another car company looking for an autonomy supplier that doesn’t ex","Jun 8, 11:52:38 PM EDT"
-1799902072529375539,"Thanks Milan!
-
-You’ve built the Optimus team from nothing to the most sophisticated humanoid robot in the world. https://t.co/e0oLUGs5OZ","Jun 9, 4:31:09 PM EDT"
-1800027167163929070,"My dream is to reach Uranus 💫 https://t.co/5dSoBR0unH","Jun 10, 12:48:14 AM EDT"
-1800031708508815588,"Stream on 𝕏! https://t.co/246203os3D","Jun 10, 1:06:16 AM EDT"
-1800032983270735979,"https://t.co/x8igWmGwmr","Jun 10, 1:11:20 AM EDT"
-1800042705399234749,"RT @cyb3rgam3r420: Testing X Streaming & Starlink https://t.co/t1KPfOSI8D","Jun 10, 1:49:58 AM EDT"
-1800121852905623750,"How time flies https://t.co/SkLK5LfHPK","Jun 10, 7:04:29 AM EDT"
-1800140327015329924,"https://t.co/aHJdIIMu63","Jun 10, 8:17:53 AM EDT"
-1800265431078551973,"If Apple integrates OpenAI at the OS level, then Apple devices will be banned at my companies. That is an unacceptable security violation.","Jun 10, 4:35:00 PM EDT"
-1800265938694193183,"And visitors will have to check their Apple devices at the door, where they will be stored in a Faraday cage","Jun 10, 4:37:01 PM EDT"
-1800269249912381773,"It’s patently absurd that Apple isn’t smart enough to make their own AI, yet is somehow capable of ensuring that OpenAI will protect your security & privacy!
-
-Apple has no clue what’s actually going on once they hand your data over to OpenAI. They’re ","Jun 10, 4:50:11 PM EDT"
-1800272349134279011,"https://t.co/7OgZAAdPf6","Jun 10, 5:02:30 PM EDT"
-1800274139162485165,"Now imagine if an AI trained in this way grows in power immensely https://t.co/eYbIGbQxmp","Jun 10, 5:09:36 PM EDT"
-1800282625434849432,"Here’s the problem with “agreeing” to share your data: nobody actually reads the terms & conditions
-https://t.co/7YqxC4W3nd","Jun 10, 5:43:20 PM EDT"
-1800287174065115424,"Exactly! https://t.co/3tRVXFbQWG","Jun 10, 6:01:24 PM EDT"
-1800514410227904589,"… https://t.co/Pns4pYoWae","Jun 11, 9:04:21 AM EDT"
-1800519221421690997,"RT @elon_docs: Elon Musk's warning against ChatGPT: An AI trained to lie is extremely dangerous. https://t.co/fHiOGpkzYU","Jun 11, 9:23:29 AM EDT"
-1800537041022898430,"Please take a moment to vote https://t.co/zKgSfA8FuR","Jun 11, 10:34:17 AM EDT"
-1800541128393117836,"RT @MarioNawfal: Trying to debate with trolls on X
-https://t.co/HywDhySleN","Jun 11, 10:50:32 AM EDT"
-1800601849973576068,"Important to allow people to like posts without getting attacked for doing so! https://t.co/3O1bG7wIGe","Jun 11, 2:51:49 PM EDT"
-1800603619236192421,"Cool :) https://t.co/k0Ns1dcv8U","Jun 11, 2:58:51 PM EDT"
-1800606627319456065,"How to share links https://t.co/boIz9O1uld","Jun 11, 3:10:48 PM EDT"
-1800617602504606155,"RT @Tesla: Rundown of what we have achieved since 2018 – under @elonmusk's leadership
-–
-2018
-– Hit 5k Model 3/week
-– Model 3 becomes best-s…","Jun 11, 3:54:24 PM EDT"
-1800754455409004814,"RT @cb_doge: 𝕏 will make likes private this week.
-
-– You will still be able to see posts you have liked (but others cannot).
-
-– Like count…","Jun 12, 12:58:13 AM EDT"
-1800754578008457687,"Starlink now available in 100 countries! https://t.co/843cyp9m0x","Jun 12, 12:58:42 AM EDT"
-1800759252224729577,"A teleportation time machine would be so helpful","Jun 12, 1:17:16 AM EDT"
-1800759374941659572,"Yeah https://t.co/4BhRYk3TNM","Jun 12, 1:17:46 AM EDT"
-1800904669872656738,"Interesting https://t.co/b8KucZcL6A","Jun 12, 10:55:07 AM EDT"
-1800905349148664295,"Important change: your likes are now private https://t.co/acUL8HqjUJ","Jun 12, 10:57:49 AM EDT"
-1800908699126661356,"RT @cb_doge: Most users are on 𝕏 because it’s entertaining, but majorities also use it for politics, news. https://t.co/A9O0IiB88r","Jun 12, 11:11:07 AM EDT"
-1800909236597383455,"Extremely challenging, but achievable https://t.co/Pwnbtg06fc","Jun 12, 11:13:15 AM EDT"
-1800914373512495414,"It was disrespectful & unkind of The New York Times to say that about the tribe https://t.co/f9niaekPtD","Jun 12, 11:33:40 AM EDT"
-1800924375010648136,"Starship is the most power flying object ever created.
-
-Currently over twice the thrust of Saturn V and, with future upgrades, three times the thrust (10,000 tons of force). https://t.co/2Vi6zDl5CW","Jun 12, 12:13:25 PM EDT"
-1800928963507913146,"RT @Tesla_Megapack: 600 MWh of Megapacks will soon be co-located with wind at @Orsted's Horsea 3 Wind Farm","Jun 12, 12:31:39 PM EDT"
-1801045037532221819,"Grok fun mode news
- https://t.co/8RKrT0QdR6","Jun 12, 8:12:53 PM EDT"
-1801045558318313746,"Massive increase in likes after they were made private! https://t.co/f5SisAw5w3","Jun 12, 8:14:57 PM EDT"
-1801084780035154058,"Both Tesla shareholder resolutions are currently passing by wide margins!
-
-♥️♥️ Thanks for your support!! ♥️♥️ https://t.co/udf56VGQdo","Jun 12, 10:50:48 PM EDT"
-1801086848128979369,"RT @cb_doge: In a Legacy news article you just have an opinion of the reporter, no counter argument & very often what's printed in the pres…","Jun 12, 10:59:01 PM EDT"
-1801093515650474300,"RT @MarioNawfal: 🚨ELON: LARGE PROJECTS ARE BASICALLY ILLEGAL IN THE WEST
-
-"You know, in the West, I think we have created regulatory gridlo…","Jun 12, 11:25:31 PM EDT"
-1801103502812295430,"RT @cb_doge: Fun Mode Grok Stories are now available for X Premium Users.
-
-Here's how to enable it: https://t.co/4bfqSBC60J","Jun 13, 12:05:12 AM EDT"
-1801273575573233951,"Refs to players ratio needs to be sensible https://t.co/j2ih4MOYi5","Jun 13, 11:21:01 AM EDT"
-1801287629243138312,"RT @cb_doge: 𝕏 is now TAG Brand Safety Certified. This platform has deployed every single brand control the marketplace has requested over…","Jun 13, 12:16:51 PM EDT"
-1801345127941816519,"Tesla annual meeting in 25 mins! https://t.co/VJrCQl8OD4","Jun 13, 4:05:20 PM EDT"
-1801346960990912863,"RT @MaryTilesTexas: It’s been almost 6 months since getting off hormonal birth control.
-Half a year of no panic attacks
-Half a year of no…","Jun 13, 4:12:37 PM EDT"
-1801390163941081279,"RT @cb_doge: HOT DAMN I LOVE YOU GUYS! ♥️
-
-一 Elon Musk https://t.co/mIt1fZ9Qi3","Jun 13, 7:04:17 PM EDT"
-1801422995161849875,"Logan Paul interviews @realDonaldTrump https://t.co/bwuqzjTATo","Jun 13, 9:14:45 PM EDT"
-1801480427166728677,"RT @Tesla: Summarizing @elonmusk's presentation under this post","Jun 14, 1:02:58 AM EDT"
-1801486025178464454,"Sending this cake to Delaware as a parting gift 😘 https://t.co/uLKE7LDSCW","Jun 14, 1:25:13 AM EDT"
-1801491464532132008,"RT @elon_docs: Here's the full breakdown of Elon's presentation, including Q&A session, at the 2024 Tesla Shareholder Meeting earlier today…","Jun 14, 1:46:49 AM EDT"
-1801494947712901291,"RT @MarioNawfal: ELON: TESLA OWNERS WILL BE ABLE TURN CARS INTO ROBOTAXIS
-
-"Monetizing the autonomous fleet is like Airbnb and Uber.
-
-Tesla…","Jun 14, 2:00:40 AM EDT"
-1801495332754223165,"RT @SawyerMerritt: Elon on Robotaxi’s: “It’s simply a matter of time. Admittedly I’m a little optimistic sometimes. I don’t have a complete…","Jun 14, 2:02:12 AM EDT"
-1801649649054318675,"RT @jeffskoll: Elon Musk Drops EPIC Interview!!! https://t.co/Lu5jgKOhWN via @YouTube
-
-This is one of the best interviews I've seen in a lo…","Jun 14, 12:15:24 PM EDT"
-1801976488251814048,"Wise words from a recent interview with @geoffreyhinton, one of the smartest people in the world regarding AI
-
- https://t.co/11A7fJpLcs","Jun 15, 9:54:08 AM EDT"
-1801977467218853932,"We should eliminate electronic voting machines. The risk of being hacked by humans or AI, while small, is still too high. https://t.co/PHzJsoXpLh","Jun 15, 9:58:01 AM EDT"
-1801982066680361140,"RT @Tesla: In 2023, our customers avoided releasing over 20 million metric tons of CO2e into the Earth’s atmosphere by using our products h…","Jun 15, 10:16:18 AM EDT"
-1802009851687797234,"Hmm https://t.co/DtNNnn1Jim","Jun 15, 12:06:43 PM EDT"
-1802010453771780269,"😂 https://t.co/3Uzu7vkDBR","Jun 15, 12:09:06 PM EDT"
-1802010958828843203,"Legalize humor!!","Jun 15, 12:11:06 PM EDT"
-1802016638721773642,"!! https://t.co/e76n1H2eeT","Jun 15, 12:33:41 PM EDT"
-1802293126280990857,"RT @alex_avoigt: Shows this to all who claim BEVs are not growing or renewables are not the solution. https://t.co/4gsgKzTorV","Jun 16, 6:52:20 AM EDT"
-1802384142728106190,"Happy Father's Day!","Jun 16, 12:54:00 PM EDT"
-1802398739019210868,"Wow! https://t.co/pLi3mZlR0R","Jun 16, 1:52:00 PM EDT"
-1802404301047992770,"Video continues to increase fast https://t.co/PrzSYYBLsO","Jun 16, 2:14:07 PM EDT"
-1802409584189194530,"lol 😬 https://t.co/tA0SJvey9x","Jun 16, 2:35:06 PM EDT"
-1802410860532703352,"RT @NASA: Happy #FathersDay! This image was taken by our Galileo spacecraft, named for a father of modern astronomy, Galileo Galilei. It wa…","Jun 16, 2:40:10 PM EDT"
-1802502023470080150,"RT @cb_doge: Starlink helps fund humanity getting to Mars https://t.co/z6KD8FPr7l","Jun 16, 8:42:25 PM EDT"
-1802713444635811989,"Big improvements to advertising https://t.co/9sVHvtyEjO","Jun 17, 10:42:32 AM EDT"
-1802713838699032716,"RT @cb_doge: More than 6.4 million Spaces have been created on 𝕏 this year.
-
-Every business or brand should utilize 𝕏 Spaces to interact wi…","Jun 17, 10:44:06 AM EDT"
-1802714862658715918,"RT @cb_doge: Over half a billion of the most affluent, informed, and influential people on earth spend an average of 34 minutes daily on 𝕏…","Jun 17, 10:48:10 AM EDT"
-1802764654273315232,"The new Model 3 Long Range is an amazing car https://t.co/Rez67ohEMB","Jun 17, 2:06:01 PM EDT"
-1802765000794087765,"RT @Tesla: FSD Supervised makes parking easy","Jun 17, 2:07:24 PM EDT"
-1802765778191597688,"Tesla Megapacks massively increase electric power generation efficiency, as they can buffer power at night for use in the day, dramatically reducing the need to build new powerplants.
-
-It also allows for the least efficient power plants to be shut down! ","Jun 17, 2:10:29 PM EDT"
-1802787641340952861,"Working on the Tesla Master Plan 4. It will be epic.","Jun 17, 3:37:22 PM EDT"
-1802952562590495150,"RT @teslaenergy: Powerwall 3 is now available in the United Kingdom 🇬🇧https://t.co/6H432Cxu6z https://t.co/tpeDyywpEi","Jun 18, 2:32:42 AM EDT"
-1802954333018808458,"RT @teslaenergy: Powerwall 3 is now available in Germany 🇩🇪 https://t.co/Macb4z3ZD8 https://t.co/4G8sIjVc5j","Jun 18, 2:39:44 AM EDT"
-1803076200404787500,"RT @cb_doge: Publish your articles directly on this platform for greater reach. Your 𝕏 articles are also indexed by search engines.
-
-via @n…","Jun 18, 10:44:00 AM EDT"
-1803076707538071575,"The federal government is spending America into oblivion https://t.co/Ck59Clkra7","Jun 18, 10:46:01 AM EDT"
-1803077464463114479,"Article about Tesla Powerwall 3 https://t.co/bRfl6Gbfqi","Jun 18, 10:49:01 AM EDT"
-1803083203244150928,"RT @MarioNawfal: 🚨🇺🇸MORGAN FREEMAN TO ELON: WHY MARS?
-(AUG 2014)
-
-Morgan:
-
-"What about Mars makes it even plausible?"
-
-@elonmusk :
-
-"Mars…","Jun 18, 11:11:49 AM EDT"
-1803152235108692123,"True https://t.co/929rIzV7zs","Jun 18, 3:46:08 PM EDT"
-1803338306156994787,"RT @SpaceX: Falcon 9 delivers 20 @Starlink satellites to orbit from California https://t.co/cIxiifeAGj","Jun 19, 4:05:31 AM EDT"
-1803379461015965742,"𝕏 is by far the best way to reach the most influential people on Earth https://t.co/p1OvLqVwWn","Jun 19, 6:49:03 AM EDT"
-1803386499963961709,"RT @cb_doge: 𝕏 is the premier destination for marketers and advertisers to reach senior decision-makers and influential individuals who run…","Jun 19, 7:17:01 AM EDT"
-1803415709759803802,"Good summary of my talk https://t.co/htFNipuctu","Jun 19, 9:13:05 AM EDT"
-1803441170686628124,"https://t.co/Q5lu80rNsx","Jun 19, 10:54:16 AM EDT"
-1803453396382580982,"This government program is an outrageous waste of taxpayer money and is utterly failing to serve people in need https://t.co/ImCur1CBCq","Jun 19, 11:42:50 AM EDT"
-1803592213609292178,"RT @farzyness: Elon Musk Confronts Interviewer on Free Speech.
-
-Here's an edit of @elonmusk's conversation at Cannes Lions, covering advert…","Jun 19, 8:54:27 PM EDT"
-1803643556180996169,"This platform is the number 1 source of news in the world! https://t.co/j004Rgc3f6","Jun 20, 12:18:28 AM EDT"
-1803776897790140449,"https://t.co/ZLwr4XxpQ0","Jun 20, 9:08:19 AM EDT"
-1803782393645437295,"RT @cb_doge: 𝕏 ads are now powered by A.I. The oldschool Twitter ad system is gone.
-
-I strongly recommend advertising your business on 𝕏. I…","Jun 20, 9:30:09 AM EDT"
-1803783427616821401,"Any given AI startup is doomed to become the opposite of its name","Jun 20, 9:34:16 AM EDT"
-1803788430012187075,"Civilization may end with a bang or with a whimper (in adult diapers) https://t.co/VwK8Sl95qJ","Jun 20, 9:54:09 AM EDT"
-1803813308715106808,"We are nothing without our fans https://t.co/t1IAWKyyW8","Jun 20, 11:33:00 AM EDT"
-1803845366183256178,"This is messed up https://t.co/yu0zUXCOzF","Jun 20, 1:40:23 PM EDT"
-1803849373018644880,"Sizing for ~130MW of power & cooling this year, but will increase to >500MW over next 18 months or so.
-
-Aiming for about half Tesla AI hardware, half Nvidia/other.
-
-Play to win or don’t play at all.","Jun 20, 1:56:19 PM EDT"
-1803929344685019530,"RT @SpaceX: Falcon 9’s first stage lands on Just Read the Instructions, completing our 250th droneship landing https://t.co/TOeTB1RGDr","Jun 20, 7:14:05 PM EDT"
-1803930544830582799,"All-In interviews @realDonaldTrump! https://t.co/9KcWId2Au2","Jun 20, 7:18:51 PM EDT"
-1804162414012961193,"🎯🤣 https://t.co/TktPySAFgp","Jun 21, 10:40:13 AM EDT"
-1804172655232454965,"RT @tesla_na: New Tesla Center in Lake Elmo, MN 🇺🇸 → https://t.co/o2fRoxeuOH https://t.co/rtUX6XrMBp","Jun 21, 11:20:55 AM EDT"
-1804188196546449660,"https://t.co/Z5nzuQlVFA","Jun 21, 12:22:40 PM EDT"
-1804204747601424648,"Interesting https://t.co/UwHEvWAZFK","Jun 21, 1:28:26 PM EDT"
-1804217213429350818,"Cool https://t.co/NVxznqzGJR","Jun 21, 2:17:59 PM EDT"
-1804278051167179104,"RT @Starlink: ¡Starlink Mini ya está disponible en Colombia, Panamá, El Salvador y Guatemala!
-
-Haz tu pedido en línea en menos de 2 minutos…","Jun 21, 6:19:43 PM EDT"
-1804496195198611760,"https://t.co/vtCbii4wpF","Jun 22, 8:46:33 AM EDT"
-1804509454861565954,"It is really is https://t.co/ZGfEziSZLB","Jun 22, 9:39:14 AM EDT"
-1804529658005803227,"Exactly.
-
-A “class action” lawsuit, by definition, should represent the class, yet this one, and most others, do NOT, serving simply to enrich law firms at the expense of the people they falsely claim to represent.
-
-The law should be changed to require a","Jun 22, 10:59:31 AM EDT"
-1804532172344131961,"Everyday Astronaut interview and Starship factory tour! https://t.co/sNHmdJfWbX","Jun 22, 11:09:31 AM EDT"
-1804873761486676230,"Another “conspiracy theory” turns out to be true.
-
-Strange that Arizona requires proof of citizenship for state, but not federal elections 🤔 https://t.co/9ehbjWmuty","Jun 23, 9:46:52 AM EDT"
-1805085854823600211,"Wow, this is messed up.
-
-Imposing guilt upon people for things that happened before they were even born is not right. It needs to stop. https://t.co/ryX7IcLGBz","Jun 23, 11:49:39 PM EDT"
-1805098008209449031,"RT @cb_doge: 𝕏 Premium users can access Fun Mode for Grok News & Stories. It makes the news so much fun.
-
-Settings → Privacy & Safety → Con…","Jun 24, 12:37:56 AM EDT"
-1805116562484986087,"RT @SpaceX: Falcon 9 delivers 20 @Starlink satellites to orbit from California https://t.co/Z9V6JiLN6w","Jun 24, 1:51:40 AM EDT"
-1805132805921468461,"Anyone who claims that their political party does no wrong and the other party does no right is either a liar, a fool or both.","Jun 24, 2:56:13 AM EDT"
-1805157960961986650,"RT @MarkCCrowley: Here’s the #Spacex rocket flying over the beaches in San Diego. https://t.co/RhO4cYim12","Jun 24, 4:36:10 AM EDT"
-1805160492828430825,"True https://t.co/kYtqXE0rdu","Jun 24, 4:46:14 AM EDT"
-1805314016065314890,"The trend is very strong that any AI company’s name that can be inverted will be inverted","Jun 24, 2:56:17 PM EDT"
-1805401721973391410,"RT @SpaceX: Falcon Heavy rolls out to the launch pad at 39A for @NASA’s GOES-U mission https://t.co/akvjroyQs3","Jun 24, 8:44:47 PM EDT"
-1805408720975020316,"RT @SpaceX: Teams completed the launch readiness review, and we are targeting Tuesday, June 25 for Falcon Heavy’s launch of @NASA's GOES-U…","Jun 24, 9:12:36 PM EDT"
-1805604091089109159,"Part 2 of the Starship discussion with @Erdayastronaut https://t.co/8SaCwKIjDY","Jun 25, 10:08:56 AM EDT"
-1805643355768111580,"The CEO of an aircraft company should know how to design aircraft, not spreadsheets https://t.co/q5lZejPxWb","Jun 25, 12:44:57 PM EDT"
-1805650134828728488,"“Sue Origin”","Jun 25, 1:11:54 PM EDT"
-1805661274577289554,"🤷♂️ https://t.co/Qtk21bAJMA","Jun 25, 1:56:10 PM EDT"
-1805798000708796901,"RT @SpaceX: Falcon Heavy’s 10th mission launches @NOAA’s GOES-U weather satellite to a geostationary orbit https://t.co/6c8hcF1gSC","Jun 25, 10:59:28 PM EDT"
-1805798206259003757,"New weather satellite delivered!
- https://t.co/ZdH4V9EeL7","Jun 25, 11:00:17 PM EDT"
-1805798253818265998,"RT @SpaceX: @NOAA Orbiting Earth at ~35,700 km, GOES-U will assist weather forecasters and climate researchers with real-time high-resoluti…","Jun 25, 11:00:28 PM EDT"
-1805798876139634709,"Falcon Heavy side boosters land in Cape Canaveral, Florida
- https://t.co/2rV2g5ff6B","Jun 25, 11:02:56 PM EDT"
-1805803302824853870,"RT @johnkrausphotos: Liftoff! 🇺🇸🚀🚀🚀 Falcon Heavy launches the GOES-U satellite, furthering NASA and NOAA’s on-orbit weather forecasting cap…","Jun 25, 11:20:32 PM EDT"
-1805804111037919520,"https://t.co/MnvArHwJRm","Jun 25, 11:23:44 PM EDT"
-1806011322238206432,"Hawk … https://t.co/obql1nkpcd","Jun 26, 1:07:07 PM EDT"
-1806107488904688033,"RT @MartinViecha: Just took a delivery of a Model 3 Performance. It's absurdly fast, so much better than my previous Model 3 with so many c…","Jun 26, 7:29:15 PM EDT"
-1806107546610229498,"RT @NASA: We have selected @SpaceX to develop and deliver the U.S. Deorbit Vehicle and prepare for a safe and responsible deorbit of the @S…","Jun 26, 7:29:29 PM EDT"
-1806108812878749814,"RT @Tesla_Megapack: Plus Power and @SRPconnect are adding more Megapacks to the Arizona grid - Sierra Estrella will be the largest standalo…","Jun 26, 7:34:31 PM EDT"
-1806186887498870838,"🤣🤣 https://t.co/RSQHPjFAPZ","Jun 27, 12:44:45 AM EDT"
-1806198269514494393,"Over 5 million pounds of thrust from 27 engines https://t.co/cXKIMFtLEg","Jun 27, 1:29:59 AM EDT"
-1806200919911985233,"https://t.co/YngAGaOGzb","Jun 27, 1:40:31 AM EDT"
-1806219134243373086,"RT @patrickc: This morning, Nature published two papers on bridge editing, the new genome engineering technology from @ArcInstitute: https:…","Jun 27, 2:52:54 AM EDT"
-1806224976216739871,"RT @froggyups: How Generational Trauma Works?
-
-Generational trauma gets carried through generations until someone is brave enough to face a…","Jun 27, 3:16:07 AM EDT"
-1806225734920196507,"Welcome to the future https://t.co/KQ0jPS0Pzo","Jun 27, 3:19:07 AM EDT"
-1806279364666867784,"RT @OwenSparks_: 𝕏 users can now show jobs they are hiring for directly on their profile, it is not limited to organizations! https://t.co/…","Jun 27, 6:52:14 AM EDT"
-1806284315493290353,"RT @SpaceX: Watch Falcon 9 launch 23 @Starlink satellites to orbit https://t.co/Dz0ykSOXxA","Jun 27, 7:11:54 AM EDT"
-1806287939028033836,"RT @SpaceX: Falcon 9 lands on the Just Read the Instructions droneship, completing the first 22nd launch and landing of a booster! https://…","Jun 27, 7:26:18 AM EDT"
-1806380410399592589,"… https://t.co/Ugt8pcqgj5","Jun 27, 1:33:45 PM EDT"
-1806444405609390557,"Starlink now available in Madagascar! https://t.co/fjB6wqaBS4","Jun 27, 5:48:03 PM EDT"
-1806445103772311646,"It’s basically just Karate Kid at scale 😂 https://t.co/CUD0oyYyml","Jun 27, 5:50:49 PM EDT"
-1806455085150458355,"Worth watching https://t.co/gfXEHnrMCj","Jun 27, 6:30:29 PM EDT"
-1806547577677938859,"RT @spacesudoer: Haters will say this is edited! @elonmusk
-https://t.co/g5SqrU2yFu","Jun 28, 12:38:01 AM EDT"
-1806554854002749643,"Tonight was a clear victory … for memes","Jun 28, 1:06:56 AM EDT"
-1806557484120740284,"30 years ago https://t.co/y8MDRQYY32","Jun 28, 1:17:23 AM EDT"
-1806565737152041420,"RT @Tesla: Send directions to your Tesla right from your phone https://t.co/90wuKkxMb9","Jun 28, 1:50:10 AM EDT"
-1806697085107851307,"Truth is the first casualty in the war that is politics https://t.co/Z5oZunyiUq","Jun 28, 10:32:06 AM EDT"
-1806699977034420304,"Lmao https://t.co/C7eTtyoM0a","Jun 28, 10:43:36 AM EDT"
-1806703588699255125,"lol https://t.co/rQ7wEea88w","Jun 28, 10:57:57 AM EDT"
-1806736896040849812,"RT @EndWokeness: The New York Times, one week apart: https://t.co/5y42E5dxj5","Jun 28, 1:10:18 PM EDT"
-1806750251510112546,"Cool https://t.co/SfGxaETTe6","Jun 28, 2:03:22 PM EDT"
-1806760601701724565,"Have to say that @CNN did a good job managing the debate.
-
-Questions were reasonable and non-partisan. No favoritism was shown to either candidate.
-
-This is what the public wants from the media.","Jun 28, 2:44:30 PM EDT"
-1806762617085841465,"Good thread https://t.co/E06uMOouWS","Jun 28, 2:52:30 PM EDT"
-1806762951107649661,"The CEO of Ford loves electric vehicles! https://t.co/4xr8HBit4g","Jun 28, 2:53:50 PM EDT"
-1806768587950211106,"https://t.co/MHOWICamV6","Jun 28, 3:16:14 PM EDT"
-1806776446758916199,"RT @balajis: CHEVRON DOMINANCE
-
-Technology is about to accelerate.
-Because Chevron deference is over.
-And regulators can't just make up law…","Jun 28, 3:47:27 PM EDT"
-1806776764536062349,"True https://t.co/1oZTGUCSdn","Jun 28, 3:48:43 PM EDT"
-1806784946679488645,"Record usage of 𝕏 during a Presidential debate! https://t.co/dCSPkxVPfh","Jun 28, 4:21:14 PM EDT"
-1806855517987619024,"RT @AdrianDittmann: The CNN broadcast viewership vs. X:
-
-CNN: 47.9 million views
- X: 242 million views
-
-X got five times more views o…","Jun 28, 9:01:39 PM EDT"
-1806915216460111975,"Unmodified picture of the Falcon launch https://t.co/n9LHYLEiGb","Jun 29, 12:58:53 AM EDT"
-1806915818401517741,"RT @X: you’re on a rock floating through space","Jun 29, 1:01:16 AM EDT"
-1806942360552829011,"𝕏 US usage reaches all-time high! 🚀
-
-76B total user-seconds in the US, beating the previous record by 5%.","Jun 29, 2:46:44 AM EDT"
-1806958142011621548,"RT @sidgrao: First look at our next-gen X Ads Analytics.
-
-We’ve designed it to be snappy and super intuitive so businesses can view every k…","Jun 29, 3:49:27 AM EDT"
-1806958509260689693,"Testing to see if this post reaches people in the greater Austin area","Jun 29, 3:50:54 AM EDT"
-1807064996842791313,"… https://t.co/g2WYt7Y9kQ","Jun 29, 10:54:03 AM EDT"
-1807203063096369211,"RT @johnkrausphotos: https://t.co/rSdJ5IxpRk","Jun 29, 8:02:41 PM EDT"
-1807216114734178384,"Absolutely https://t.co/88qIgJvSFJ","Jun 29, 8:54:32 PM EDT"
-1807342765795156100,"Makes a good point about democracy https://t.co/qQ23BhgVjj","Jun 30, 5:17:48 AM EDT"
-1807343536909455461,"Subscriptions in support of your freedom to speak are much appreciated https://t.co/CDOTXoVmnz","Jun 30, 5:20:52 AM EDT"
-1807431490763968962,"Thoughtful explanation of the Supreme Court’s recent decision regarding ambiguous regulatory authority https://t.co/qdwMQgCebM","Jun 30, 11:10:22 AM EDT"
-1807432832295239833,"Our greatest dream is to send a spaceship to Uranus","Jun 30, 11:15:42 AM EDT"
-1807482263199707295,"RT @farzyness: Neuralink's First Patient Leaves Us Speechless.
-
-Noland Arbaugh @ModdedQuad, @neuralink's first brain chip patient, joins us…","Jun 30, 2:32:07 PM EDT"
-1807484028943216892,"Let’s make (good) sci-fi real! https://t.co/0kHqDymE9B","Jun 30, 2:39:08 PM EDT"
-1807491298015768981,"𝕏 is the group chat for Earth","Jun 30, 3:08:01 PM EDT"
-1807491893095432440,"True, first time I’ve seen Republicans & Democrats agree on something in a long time 😂 https://t.co/gTzoruxrJQ","Jun 30, 3:10:23 PM EDT"
-1807511645239054714,"https://t.co/iqlQmpeTym","Jun 30, 4:28:52 PM EDT"
-1807515190809739541,"Accurate https://t.co/5hxBVTsZT7","Jun 30, 4:42:58 PM EDT"
-1807516397041316251,"RT @SawyerMerritt: This @SpaceX launch two days ago was beautiful. Looks like Mars. https://t.co/kYFlByxEaG","Jun 30, 4:47:45 PM EDT"
-1807516657130127512,"The law is violating the law https://t.co/qCdeJfWwFa","Jun 30, 4:48:47 PM EDT"
-1807517547786633355,"Yay! https://t.co/ky67r2govN","Jun 30, 4:52:20 PM EDT"
-1807588014652338355,"Would be lovely to see more accounts on 𝕏 simply posting beautiful content https://t.co/Zcmths2usv","Jun 30, 9:32:20 PM EDT"
-1807591366954045841,"💪😂
- https://t.co/GQvLpUDSP1","Jun 30, 9:45:39 PM EDT"
-1807591743053021438,"Another Grok banger 😂
- https://t.co/xgGrLj5Y2q","Jun 30, 9:47:09 PM EDT"
-1807611879499747768,"Some audiobook recommendations:
-
-The Story of Civilization by Durant
-Iliad (Penguin Edition)
-The Road to Serfdom by Hayek
-American Caesar by Manchester
-Masters of Doom by Kushner
-The Wages of Destruction by Tooze
-The Storm of Steel by Junger
-The Guns of A","Jun 30, 11:07:10 PM EDT"
-1807614919384391977,"Gonna be a *lot* of robots in the future https://t.co/kTwCqheXKj","Jun 30, 11:19:15 PM EDT"
-1807620390979805591,"Stalin: Court of the Red Czar by Montefiore
-(If you want some real nightmares)","Jun 30, 11:40:59 PM EDT"
-1807629976738689148,"RT @cb_doge: 𝕏 users can use this filter to search for posts from verified accounts. (iOS) https://t.co/2fUETGBaz9","Jul 1, 12:19:05 AM EDT"
-1807632775664771336,"https://t.co/JHy0bCU6Rb","Jul 1, 12:30:12 AM EDT"
-1807640841068142695,"Other trucks look badass, Cybertruck actually is
- https://t.co/5DufWfoOAA","Jul 1, 1:02:15 AM EDT"
-1807654463081238670,"Great Herzog moment https://t.co/y6Xt0ECB0G","Jul 1, 1:56:23 AM EDT"
-1807660374227026377,"RT @teslaownersSV: “We’re beginning to see the dawn of a new era of space exploration. But one that is driven by companies as much, if not…","Jul 1, 2:19:52 AM EDT"
-1807757765655625890,"That almost the entire media repeated the same lie with the exact same words is disturbing.
-
-The legacy news is not merely fake, but also unoriginally fake!
-
-If you want to know the truth, it’s on 𝕏. https://t.co/J5HwwAYvJF","Jul 1, 8:46:52 AM EDT"
-1807761917274214899,"When will politicians, or at least the intern who runs their account, learn that lying on this platform doesn’t work anymore? https://t.co/wP7H4AJFwG","Jul 1, 9:03:22 AM EDT"
-1807762114779685128,"Good idea https://t.co/R7m0q0BB9b","Jul 1, 9:04:09 AM EDT"
-1807778836203147707,"Running ads is easy and getting easier https://t.co/VNarcNbuY5","Jul 1, 10:10:36 AM EDT"
-1807815331857207775,"… https://t.co/ghC6zbmxuw","Jul 1, 12:35:37 PM EDT"
-1807841674582020566,"RT @Teslaconomics: Amidst the stream of cars winding down Lombard St, only 1 vehicle stands out from the rest: my Cybertruck. This is the r…","Jul 1, 2:20:17 PM EDT"
-1807987111083364811,"😂 https://t.co/HgUpiDs6u1","Jul 1, 11:58:12 PM EDT"
-1808151448330326354,"Join xAI to build maximum truth-seeking AI with the best sense of humor! https://t.co/4sdmvxF9zU","Jul 2, 10:51:13 AM EDT"
-1808151987776540892,"RT @Tesla: In Q2, we produced approximately 411k vehicles & delivered approximately 444k vehicles.
-
-Our Q2 Earnings Call will be streamed l…","Jul 2, 10:53:22 AM EDT"
-1808153564696428894,"Dan’s right about this https://t.co/QFPFNgYctE","Jul 2, 10:59:38 AM EDT"
-1808154240658870448,"Yeah, it’s awesome. Once you use Tesla Autopilot/FSD for commuting, you won’t use any other car. https://t.co/5qGBhcredR","Jul 2, 11:02:19 AM EDT"
-1808157976911364355,"What you sometimes see in the night sky from the Cape in Florida and similar (just no Dragon) from southern California https://t.co/krwcQWBWXi","Jul 2, 11:17:10 AM EDT"
-1808168603721650364,"The New York Times is attacking *your* freedom of speech! https://t.co/TRIa13TWdY","Jul 2, 11:59:23 AM EDT"
-1808173492010983712,"True, although AI & robotics will save us
-(probably) https://t.co/CbCWMlNBbu","Jul 2, 12:18:49 PM EDT"
-1808178681933668710,"RT @cb_doge: "It's only me doing these posts on 𝕏 and I would recommend for leaders of the world to just literally post your own stuff"
-
- h…","Jul 2, 12:39:26 PM EDT"
-1808205875191984412,"RT @MAstronomers: I can just keep watching it without getting tired: https://t.co/vKQsY5YYTo","Jul 2, 2:27:30 PM EDT"
-1808353572171427861,"RT @xai: how june started & how it’s going
-
-come 🧑🍳 with us at xAI & 𝕏 if you like building & running the biggest computers in the world!…","Jul 3, 12:14:23 AM EDT"
-1808353652685299760,"RT @EvaLovesDesign: Fashion on X https://t.co/3B188NhQdw","Jul 3, 12:14:43 AM EDT"
-1808355026126999784,"Unmodified video https://t.co/vrIwDt2O5r","Jul 3, 12:20:10 AM EDT"
-1808504969697366191,"More satellites capable of providing Internet directly to mobile phones https://t.co/y8McpXY26O","Jul 3, 10:15:59 AM EDT"
-1808505060256604342,"RT @sara_spangelo: With over 100 Direct to Cell satellites now launched, and 100s more planned to be launched this year, excited to provide…","Jul 3, 10:16:21 AM EDT"
-1808719436679164391,"RT @teslaownersSV: Tesla Semi hauling a huge load with 2 Model Xs, Model S and Model 3. It’s great to see Teslas vertical integration. http…","Jul 4, 12:28:12 AM EDT"
-1808719533235913083,"RT @tesla_na: The most American-made cars are S3XY
-
-To honor those who have served our country, members of the US military + their spouses…","Jul 4, 12:28:35 AM EDT"
-1808725544663498966,"RT @teslaownersSV: “I’m nauseatingly pro America. I would have come here from any country. The United States are where great things are pos…","Jul 4, 12:52:29 AM EDT"
-1808727124783644694,"Yeah!! https://t.co/2DK8BdkRa1","Jul 4, 12:58:45 AM EDT"
-1808895200200098201,"RT @johnkrausphotos: https://t.co/x8433aXvQt","Jul 4, 12:06:38 PM EDT"
-1808906149401424354,"RT @cybertruck: Happy 4th 🇺🇸🇺🇸
-
-📸 @JustonBrazda https://t.co/SbKeuiSXqR","Jul 4, 12:50:08 PM EDT"
-1808918183216046342,"🇺🇸🇺🇸 Happy Independence Day! 🇺🇸🇺🇸","Jul 4, 1:37:57 PM EDT"
-1808918385063026902,"RT @SpaceX: The fourth flight of Starship brought us closer to a rapidly reusable future https://t.co/maSky0Rsjy","Jul 4, 1:38:45 PM EDT"
-1809070845689516043,"Tesla Gigafactory Supercomputer Cluster https://t.co/aYIZ3pQ0nV","Jul 4, 11:44:35 PM EDT"
-1809075370861162888,"RT @ValueAnalyst1: Peter Thiel on Elon Musk 🔊
-
-“You know, when Elon was building both Tesla and SpaceX in the 2000s, people thought he was…","Jul 5, 12:02:34 AM EDT"
-1809090690766233873,"🚀🚀🇺🇸🇺🇸 AMERICA 🇺🇸🇺🇸🚀🚀
- https://t.co/ZQ00BL8YMC","Jul 5, 1:03:26 AM EDT"
-1809251925306777944,"The legacy media are just propaganda puppets.
-
-𝕏 has the truth. https://t.co/Ju6GpbwcIJ","Jul 5, 11:44:07 AM EDT"
-1809374217151897911,"Real question … since we obviously haven’t had one for a while lmao https://t.co/NsyAROCW8a","Jul 5, 7:50:04 PM EDT"
-1809374976845156801,"Those who oppose this are traitors.
-
-All Caps: TRAITORS
-
-What is the penalty for traitors again? https://t.co/lyREyskPv4","Jul 5, 7:53:05 PM EDT"
-1809377894571077842,"When is there not one – just one – even *attempted* prosecution of that Epstein (Bill Gates & Reid Hoffman come to mind)
-client list.
-
-Either FBI does their duty or the case for an entire departmental reset or abolishment is strong. https://t.co/qLgW","Jul 5, 8:04:41 PM EDT"
-1809378811277951278,"Good one sigh https://t.co/pXsRvUByl0","Jul 5, 8:08:19 PM EDT"
-1809379265181339893,"Wise words from @AriEmanuel https://t.co/ZSEIJu0rp2","Jul 5, 8:10:08 PM EDT"
-1809381756199661879,"Flight 5 in 4 weeks https://t.co/K7pfdujrqx","Jul 5, 8:20:02 PM EDT"
-1809603789390836038,"RT @cb_doge: Why Political Advertisers should choose 𝕏?
-
-• ~250 million people use 𝕏 every day. ~600 million people visit the global town s…","Jul 6, 11:02:18 AM EDT"
-1809603987630326148,"RT @Teslaconomics: People laugh at me, till they find out what my Cybertruck can really do https://t.co/uL6IhuJ1ya","Jul 6, 11:03:06 AM EDT"
-1809931527116984556,"RT @Tesla: FSD Supervised can navigate complex city traffic","Jul 7, 8:44:37 AM EDT"
-1810011702802751806,"I agree! https://t.co/uwJYiQw4K5","Jul 7, 2:03:12 PM EDT"
-1810276907444846802,"Exactly https://t.co/qWCMQElszq","Jul 8, 7:37:02 AM EDT"
-1810289030648504565,"RT @cb_doge: I highly recommend that everyone enable Fun Mode for Grok stories. It truly makes the news much more fun.
-
- https://t.co/4bfqS…","Jul 8, 8:25:13 AM EDT"
-1810290039974146328,"Government spending is bankrupting America https://t.co/vA72gZytBh","Jul 8, 8:29:13 AM EDT"
-1810362000960070013,"… https://t.co/9fYbruEiYm","Jul 8, 1:15:10 PM EDT"
-1810362113019261203,"RT @EndWokeness: Holy sh*t. The Biden administration just came out against the SAVE Act, a bill to ensure that illegal aliens can't vote. h…","Jul 8, 1:15:37 PM EDT"
-1810362325305565489,"RT @MarioNawfal: 🚨🇺🇸SPEAKER JOHNSON: PASS THE SAVE ACT TO PROTECT OUR ELECTIONS
-
-"The SAVE Act will safeguard our elections by ensuring onl…","Jul 8, 1:16:27 PM EDT"
-1810362613747864027,"The goal all along has been to import as many illegal voters as possible https://t.co/wQzyx6VAWD","Jul 8, 1:17:36 PM EDT"
-1810373775579558240,"https://t.co/x8Jcb91H9m","Jul 8, 2:01:57 PM EDT"
-1810377638269038622,"Arizona requires proof of citizenship to vote in state elections, but explicitly does not for federal elections. This is messed up. https://t.co/qvaoiDm6l9","Jul 8, 2:17:18 PM EDT"
-1810377948811481340,"Great idea!! https://t.co/haxAFnb7sE","Jul 8, 2:18:32 PM EDT"
-1810378743107694797,"RT @TobyPhln: I like our mission statement "understand the universe".
-
-To me, “universe” is a metaphor for “everything”, meaning the AI’s k…","Jul 8, 2:21:42 PM EDT"
-1810420372635799765,"Wow https://t.co/U5moS9rg8z","Jul 8, 5:07:07 PM EDT"
-1810421975552295405,"RT @FutureJurvetson: To counter the big pharma-funded-FUD on MDMA therapy, experts from the VA and 15 universities who actually know someth…","Jul 8, 5:13:29 PM EDT"
-1810422034956234896,"RT @cb_doge: https://t.co/Wem3zLTXXk","Jul 8, 5:13:43 PM EDT"
-1810454245109571615,"When combined with mail-in ballots, the system is *designed* to make it impossible to prove fraud.
-
-Mail-in and drop box ballots should not be allowed, as cameras on the in-person voting stations would at least prevent large-scale fraud by counting how ma","Jul 8, 7:21:43 PM EDT"
-1810454369000727022,"Tesla has a Semi 😉 https://t.co/pHe4bhgmNS","Jul 8, 7:22:12 PM EDT"
-1810554339435430351,"True https://t.co/fEMrewOzMg","Jul 9, 1:59:27 AM EDT"
-1810561291376787549,"RT @BasedMikeLee: Biden let in millions of illegal aliens
-
-Now he’s opposing the SAVE Act, which would prevent noncitizens from voting in f…","Jul 9, 2:27:05 AM EDT"
-1810568775973966188,"This is an excellent way to assess someone’s rationality.
-
-Another way is to ask them to assign a probability to their argument being true vs false. Anyone who says anywhere close to 100% for a matter where there is subjectivity is full of 💩. https://t.c","Jul 9, 2:56:49 AM EDT"
-1810581873703194727,"Electronic voting machines and anything mailed in is too risky.
-
-We should mandate paper ballots and in-person voting only. https://t.co/TVC32b1Wkd","Jul 9, 3:48:52 AM EDT"
-1810582180692697245,"RT @SpaceX: Falcon 9 launches the @Turksat 6A mission to orbit from Florida https://t.co/D5ZYGqTXgh","Jul 9, 3:50:05 AM EDT"
-1810609980816478506,"RT @SpaceX: Falcon 9’s first stage has landed on the Just Read the Instructions droneship https://t.co/iMycx7KvaW","Jul 9, 5:40:33 AM EDT"
-1810622035002827191,"2000 charging stalls in Norway! 🇳🇴 https://t.co/3dqtAWywDS","Jul 9, 6:28:27 AM EDT"
-1810697066026606858,"RT @lexfridman: Here's my conversation with @IvankaTrump, a businesswoman, real estate developer, and former senior advisor to the Presiden…","Jul 9, 11:26:36 AM EDT"
-1810697313070772524,"Crazy waste of taxpayer money with nothing to show for it! https://t.co/KAQHm4xYFL","Jul 9, 11:27:35 AM EDT"
-1810697965268504690,"Cool, glad @Starlink could help! https://t.co/0EZfe1p0VX","Jul 9, 11:30:10 AM EDT"
-1810699563210313880,"This should be a requirement. If Argentina can do it, so can America! https://t.co/z1hPnFyxgt","Jul 9, 11:36:31 AM EDT"
-1810706658949009453,"Great idea https://t.co/oZkGgvbA8i","Jul 9, 12:04:43 PM EDT"
-1810710613280043049,"362 billion user-seconds per day! https://t.co/Yq5EDnJyoK","Jul 9, 12:20:26 PM EDT"
-1810711294435033328,"This is a more accurate description of what happens regarding voter fraud https://t.co/4HdoABTEB5","Jul 9, 12:23:08 PM EDT"
-1810711659423428871,"Who are these “activists”? https://t.co/ABW9CgcCJ9","Jul 9, 12:24:35 PM EDT"
-1810718279561855149,"RT @farzyness: Here’s the official Texas voter registration form for federal elections.
-
-Nowhere in the form does one have to prove that th…","Jul 9, 12:50:54 PM EDT"
-1810808931486421311,"Getting ready for flight 5! https://t.co/ux3nkScRw3","Jul 9, 6:51:07 PM EDT"
-1810887584232657026,"To make up for this heinous crime, I will refrain from having omelette for a week https://t.co/FecxG8Rjmg","Jul 10, 12:03:39 AM EDT"
-1811050217061728759,"Extremely concerning! https://t.co/EF5shOhMf5","Jul 10, 10:49:54 AM EDT"
-1811066596150202675,"The simulation is sending us a message 👀 https://t.co/Wz9FvqYycm","Jul 10, 11:54:59 AM EDT"
-1811073410442875214,"RT @Rainmaker1973: @elonmusk And there's more https://t.co/xOY0cHauP2","Jul 10, 12:22:03 PM EDT"
-1811085443502592132,"Grok fun mode news is awesome 😂 https://t.co/NSac2gM8Es","Jul 10, 1:09:52 PM EDT"
-1811086120408732074,"The @Neuralink team is doing a live video update in about 5 minutes …","Jul 10, 1:12:34 PM EDT"
-1811088280320102884,"After the presentation, the @Neuralink team will take questions from 𝕏","Jul 10, 1:21:09 PM EDT"
-1811111478835249270,"Neuralink update! https://t.co/7kKRs4mxyB","Jul 10, 2:53:20 PM EDT"
-1811122393097851238,"The New York Times specializes in tediously misleading propaganda https://t.co/CRWburGllu","Jul 10, 3:36:42 PM EDT"
-1811185145455820942,"https://t.co/ypVpqaExq5","Jul 10, 7:46:03 PM EDT"
-1811279047953125619,"RT @SawyerMerritt: NEWS: @SpaceX has launched Starlink Mini roam in the U.S., which means you can buy Starlink Mini on its own & connect to…","Jul 11, 1:59:11 AM EDT"
-1811290840222097875,"The physicality of the brain becomes startlingly obvious upon inspection: it is a biological computer.
-
-Our brains shrinks over time as we age and when you see the brain of someone with severe dementia, the damage is not subtle. What is surprising is that","Jul 11, 2:46:03 AM EDT"
-1811318658993369281,"Computers will control the future
-…
-…
-…
-They already do","Jul 11, 4:36:35 AM EDT"
-1811319691052278180,"When ur way underleveled for video game boss fight
- https://t.co/DrB9yugyue","Jul 11, 4:40:41 AM EDT"
-1811323041671975179,"Maybe this applies to real-life too 🤔 https://t.co/DDKinbq0tu","Jul 11, 4:54:00 AM EDT"
-1811327840257761584,"Asimov’s Foundation series was part of the inspiration for making life/consciousness multiplanetary.
-
-Being multiplanetary greatly extends the probable lifespan of civilization.
-
-We must build Terminus.
-
- https://t.co/k36uCJzkJg","Jul 11, 5:13:04 AM EDT"
-1811329608995746101,"There is a tiny chance this will pass the senate if a few Dems cross party lines, but Biden said he would veto the bill even it did.
-
-I wonder why? 🤔 https://t.co/uDYpphJHpS","Jul 11, 5:20:06 AM EDT"
-1811349732809113823,"Improved version of @Neuralink update
- https://t.co/zk3cdbMtEC","Jul 11, 6:40:04 AM EDT"
-1811360296218341403,"Having seen the evidence unearthed today by Congress, 𝕏 has no choice but to file suit against the perpetrators and collaborators in the advertising boycott racket.
-
-Hopefully, some states will consider criminal prosecution. https://t.co/5W4yf1wxVO","Jul 11, 7:22:02 AM EDT"
-1811421880622174707,"Good Tesla self-driving demo.
-
-It’s true, buying anything except a Tesla will seem like buying a horse & buggy. https://t.co/3eWJtxGTeh","Jul 11, 11:26:45 AM EDT"
-1811422124843860463,"True https://t.co/4XlJqIjdDC","Jul 11, 11:27:43 AM EDT"
-1811451697077608887,"Starlink Mini https://t.co/JergQ13MtQ","Jul 11, 1:25:14 PM EDT"
-1811469579828494504,"RT @MalekiSaeed: There is something satisfying about writing a CUDA kernel and then finding and removing the bottlenecks to make them go 🔥.…","Jul 11, 2:36:17 PM EDT"
-1811602088423567766,"RT @SawyerMerritt: BREAKING: Tesla has introduced the Model 3 Long Range RWD in the US!
-
-• Starting price: $42,490 ($34,990 including Fed E…","Jul 11, 11:22:50 PM EDT"
-1811637563976798408,"RT @teslaenergy: Last night, the Powerwall fleet in California delivered more than 100MW to the grid during a Virtual Power Plant event, re…","Jul 12, 1:43:48 AM EDT"
-1811656400583508469,"RT @Tesla: Training on real-world data from millions of Tesla vehicles makes a big difference","Jul 12, 2:58:39 AM EDT"
-1811656693387866309,"RT @cb_doge: Politics https://t.co/p2r6EPZzfM","Jul 12, 2:59:49 AM EDT"
-1811768409455026445,"New Tesla Model 3 version available in America.
-
-363 miles of range for $35k! https://t.co/1L4kCB0Ww8","Jul 12, 10:23:44 AM EDT"
-1811772058067509628,"The legacy media is a propaganda machine https://t.co/nCHlI5sI9j","Jul 12, 10:38:14 AM EDT"
-1811776109760922100,"Exactly, the legacy media is literally yesterday’s news https://t.co/HH6hmWiAbT","Jul 12, 10:54:20 AM EDT"
-1811783320839008381,"The European Commission offered 𝕏 an illegal secret deal: if we quietly censored speech without telling anyone, they would not fine us.
-
-The other platforms accepted that deal.
-
-𝕏 did not. https://t.co/4lKsaRsYoA","Jul 12, 11:22:59 AM EDT"
-1811783504578924825,"RT @JonErlichman: Value today of $10,000 invested 14 years ago:
-
-Nvidia: $5,212,905
-Tesla: $2,269,483
-Constellation Software: $1,071,661
-C…","Jul 12, 11:23:43 AM EDT"
-1811799561939132877,"Exactly https://t.co/3TNM7rch2y","Jul 12, 12:27:31 PM EDT"
-1811805084981834164,"We look forward to a very public battle in court, so that the people of Europe can know the truth https://t.co/nKBGEPxeEa","Jul 12, 12:49:28 PM EDT"
-1811849042001035287,"https://t.co/XLaQs1aIaj","Jul 12, 3:44:08 PM EDT"
-1811849963762045144,"RT @Rainmaker1973: Where we are in the sci-fi movie timeline
-
-[📊 danmeth. com] https://t.co/w6erWX4QvA","Jul 12, 3:47:48 PM EDT"
-1811850123917529365,"Epic sideburns","Jul 12, 3:48:26 PM EDT"
-1811924287525126378,"We were told AI doom would be a paper clip maximizer, but it’s actually going to be Strawberry Fields Forever 🥁 https://t.co/Q3koT40QNG","Jul 12, 8:43:08 PM EDT"
-1811952427760808006,"RT @Starlink: Starlink is ideal for rural locations, especially for connecting farmers with high-speed internet","Jul 12, 10:34:57 PM EDT"
-1811952553761890474,"Accurate https://t.co/iBkfYvtDIq","Jul 12, 10:35:27 PM EDT"
-1811986186010874055,"RT @MarioNawfal: 🧵ASIMOV'S FOUNDATION: THE BLUEPRINT FOR ELON'S SPACE REVOLUTION
-
-1/5 INSPIRATION
-
-Elon recently credited Asimov's Foundati…","Jul 13, 12:49:06 AM EDT"
-1811992758665486803,"RT @johnkrausphotos: As to make life multiplanetary and explore the stars https://t.co/4kvYIiYQoU","Jul 13, 1:15:13 AM EDT"
-1811993463082074144,"RT @stevenmarkryan: Ark Warns of Ticking Time Bomb: ROBOTAXIS
-
-(it's not what you think!)
-
-$TSLA https://t.co/O98doyHOAA","Jul 13, 1:18:01 AM EDT"
-1811994343223197704,"https://t.co/R15GDtzJGa","Jul 13, 1:21:31 AM EDT"
-1812001286855827806,"RT @DimaZeniuk: “Starship is the kind of thing that makes people from little kids to seniors excited about the future.”
-
-— Elon Musk https:…","Jul 13, 1:49:06 AM EDT"
-1812005860601741445,"Congrats!
- https://t.co/HzPyFxuVEV","Jul 13, 2:07:17 AM EDT"
-1812102074588426669,"Fidias is right. Super important decision. https://t.co/NOyn5XnUs3","Jul 13, 8:29:36 AM EDT"
-1812169849075884134,"Cool https://t.co/xwVIfko963","Jul 13, 12:58:55 PM EDT"
-1812171136358113604,"Starlink making progress in Japan https://t.co/fS7ytifqJN","Jul 13, 1:04:02 PM EDT"
-1812175853108781254,"It is the first rocket booster & spaceship design capable of doing so https://t.co/FLNQYQSa2u","Jul 13, 1:22:46 PM EDT"
-1812176936829145486,"https://t.co/eCAo8Y96RP","Jul 13, 1:27:05 PM EDT"
-1812250102259646888,"RT @cb_doge: Everyone can be a citizen journalist.
-
-You just need a mobile, internet connectivity and 𝕏 app. https://t.co/fDokRhI9ow","Jul 13, 6:17:49 PM EDT"
-1812256998588662068,"I fully endorse President Trump and hope for his rapid recovery https://t.co/ZdxkF63EqF","Jul 13, 6:45:13 PM EDT"
-1812258574049157405,"https://t.co/6eOgN9UdOy","Jul 13, 6:51:28 PM EDT"
-1812260638569177510,"Last time America had a candidate this tough was Theodore Roosevelt","Jul 13, 6:59:41 PM EDT"
-1812276202184589329,"The Reid Hoffman’s of the world got their dearest wish … but then the martyr lived https://t.co/laaRBc5yol","Jul 13, 8:01:31 PM EDT"
-1812278791105913068,"The head of the Secret Service and the leader of this security detail should resign https://t.co/ihlEC5NP1w","Jul 13, 8:11:48 PM EDT"
-1812288733405917688,"RT @mualphaxi: I often say that photos of Trump are like renaissance paintings.
-
-But on this awful evening for our country, the photos feel…","Jul 13, 8:51:19 PM EDT"
-1812291118903464234,"Exactly https://t.co/9dxmQbHFQb","Jul 13, 9:00:48 PM EDT"
-1812293810233266495,"RT @misha_saul: I always thought Trump was a vapid showman
-
-Impressive to see the dog in him
-
-Changes everything","Jul 13, 9:11:29 PM EDT"
-1812294005016727969,"RT @amasad: Legalize noticing! https://t.co/7vueSgvLfL","Jul 13, 9:12:16 PM EDT"
-1812294636913754153,"RT @Rothmus: “Most importantly, I want to extend my condolences to the family of the person at the Rally who was killed, and also to the fa…","Jul 13, 9:14:46 PM EDT"
-1812296672510111853,"Extreme incompetence or it was deliberate. Either way, the SS leadership must resign. https://t.co/0vYGrj6yuH","Jul 13, 9:22:52 PM EDT"
-1812297671119638647,"So before being put in charge of protecting the PRESIDENT, she was guarding bags of Cheetos … https://t.co/7btbCBsRkc","Jul 13, 9:26:50 PM EDT"
-1812322166643507711,"RT @BillAckman: I am going to formally endorse @realDonaldTrump. I came to this decision some time ago as many @X followers have already un…","Jul 13, 11:04:10 PM EDT"
-1812322206221021200,"RT @shaunmmaguire: I have extremely high respect for people that are willing to change their minds as new data comes in
-
-Huge respect for @…","Jul 13, 11:04:19 PM EDT"
-1812323037972512998,"RT @Blake_Hall: I was the Sniper Employment Officer for my battalion and led hundreds of combat missions. There were major security lapses…","Jul 13, 11:07:38 PM EDT"
-1812564755087077460,"RT @Erdayastronaut: Front flaps are much more leeward (away from the belly) and forward (towards the nose)! This is what @elonmusk was talk…","Jul 14, 3:08:08 PM EDT"
-1812567660955374010,"RT @cb_doge: The people of America want to know the truth. More people are downloading the 𝕏 app.
-
-𝕏 is now the #1 news app in the US, lead…","Jul 14, 3:19:40 PM EDT"
-1812602944975782245,"The New York Times just published this about Trump today.
-
-They are truly callous and despicable human beings. Not a shred of empathy. https://t.co/zPmP4pj0bC","Jul 14, 5:39:53 PM EDT"
-1812603461722153037,"The legacy media is a pure propaganda machine. 𝕏 is the voice of the people. https://t.co/oTKsmrIMms","Jul 14, 5:41:56 PM EDT"
-1812613032721203488,"https://t.co/aZgsx4dH2p","Jul 14, 6:19:58 PM EDT"
-1812622300346474708,"RT @john: If everyone actually votes this November then this is what the country will look like.
-
-“Liking” a post doesn’t count as a vote.…","Jul 14, 6:56:47 PM EDT"
-1812650070594244880,"RT @WholeMarsBlog: It's not a Robotaxi. It just does exactly what a Robotaxi would do, today, under your supervision.
-
-But it will definite…","Jul 14, 8:47:08 PM EDT"
-1812672815713460340,"The best “reporters” are actual experts in a subject or those actually at the scene https://t.co/SheRzRhYIW","Jul 14, 10:17:31 PM EDT"
-1812673141090726366,"https://t.co/4ojDK0jMnj","Jul 14, 10:18:49 PM EDT"
-1812680109536821727,"🔥🔥 https://t.co/rqjzXJ5tsV","Jul 14, 10:46:30 PM EDT"
-1812682527573983592,"ONE HUNDRED PERCENT https://t.co/p6xgfwOYco","Jul 14, 10:56:07 PM EDT"
-1812684038920098169,"https://t.co/ZA0PnCNs91","Jul 14, 11:02:07 PM EDT"
-1812866710137118941,"Interesting thread https://t.co/VA1JXVKm2k","Jul 15, 11:07:59 AM EDT"
-1812869137506668839,"🤣🤣 https://t.co/AW1KeAYpEB","Jul 15, 11:17:38 AM EDT"
-1812869450615677382,"Having a small person as body cover for a large man is like an undersized Speedo at the beach – doesn’t cover the subject","Jul 15, 11:18:53 AM EDT"
-1812874051070935381,"Could be a man or a woman, to be clear, just needs to be large enough to do the job. Someone like Brienne of Tarth would be fine. https://t.co/pwDBAzbje2","Jul 15, 11:37:10 AM EDT"
-1812874506438140090,"https://t.co/SbOyKFF1RP","Jul 15, 11:38:58 AM EDT"
-1812880540170940691,"I tried using both 𝕏 and legacy media this weekend, but legacy media was so far behind and wrong that it was pointless.
-
-When something is wrong on 𝕏, it is corrected very fast, but it stays wrong for hours to days on legacy media. https://t.co/ZN1rvwy","Jul 15, 12:02:57 PM EDT"
-1812884329078587744,"By the way, you can easily mute all posts that have words you find annoying.
-
-Just pop over to the settings page.","Jul 15, 12:18:00 PM EDT"
-1812885001991835955,"WSJ management needs to clean house over there.
-
-If there is any news organization on Earth that should be unabashedly pro capitalism, it is the WALL STREET Journal, for goodness sake!
-
-It’s literally in the name lmao. https://t.co/jmIBvB1hBz","Jul 15, 12:20:40 PM EDT"
-1812924962627592524,"𝕏 usage hit another all-time high yesterday with 417 billion user-seconds globally!
-
-In the US, user-seconds reached 93B, 23% higher than the previous record of 76B.
-
-In a single day.","Jul 15, 2:59:28 PM EDT"
-1812925600094691783,"The legacy media misled the public https://t.co/Lq8FbYD2xB","Jul 15, 3:02:00 PM EDT"
-1812931869023084912,"Congratulations @JDVance1!
-
-Excellent decision by @realDonaldTrump.","Jul 15, 3:26:54 PM EDT"
-1812932793250509144,"–––––––
-TRUMP
-VANCE
-–––––––
-
-Resounds with victory","Jul 15, 3:30:35 PM EDT"
-1812934175063998937,"RT @VivekGRamaswamy: So proud of my friend, classmate, and fellow southwest Ohioan today. We used to watch Bengals games at the bar in law…","Jul 15, 3:36:04 PM EDT"
-1812940286387232956,"RT @SpaceX: Full duration static fire of Flight 5 Super Heavy booster https://t.co/8rF9KUdMUD","Jul 15, 4:00:21 PM EDT"
-1812940667930435834,"More than double the power of the Saturn V moon rocket!
- https://t.co/0e5I4zrJQj","Jul 15, 4:01:52 PM EDT"
-1812941050237100074,"Timely truth is immensely important for the collective consciousness to function well","Jul 15, 4:03:23 PM EDT"
-1813006211584856459,"If we just grow market share enough, there won’t be anywhere else to advertise 🤷♂️ https://t.co/zCMDhe0djI","Jul 15, 8:22:19 PM EDT"
-1813006521497776496,"Both @Tesla and @xAI are looking to hire networking engineers & technicians https://t.co/LxpQOpGgz7","Jul 15, 8:23:33 PM EDT"
-1813111136264573003,"https://t.co/0c3gFneO7x","Jul 16, 3:19:15 AM EDT"
-1813219997575266667,"RT @johnkrausphotos: New @Starlink Mini dish, powered directly from @Tesla Model 3: High-speed and portable internet anywhere you can drive…","Jul 16, 10:31:50 AM EDT"
-1813220423171252686,"RT @sriramk: Worth thinking about how X has been ahead on all the events of the last 72 hours. I haven’t tuned into a single mainstream cha…","Jul 16, 10:33:31 AM EDT"
-1813222138385768781,"How to mute posts with words you find annoying https://t.co/1KuP7I8GbC","Jul 16, 10:40:20 AM EDT"
-1813223978884079966,"Build a Community around anything at all on 𝕏!
-
-Could be local neighborhood news & events, video games, movies, school discussions or anything at all, large or small. https://t.co/KXpOJWb6ZP","Jul 16, 10:47:39 AM EDT"
-1813224987916181719,"RT @Yasin__Shafiei: Starship Flight 4 was a giant step towards fully and rapidly reusable rockets! @elonmusk
-
-Flight 4 with Last Samurai m…","Jul 16, 10:51:39 AM EDT"
-1813227045629096413,"The state will take away your kids in California https://t.co/1dCMGY6Gvn","Jul 16, 10:59:50 AM EDT"
-1813227748137312584,"This would be great https://t.co/MWwkJqSnak","Jul 16, 11:02:37 AM EDT"
-1813230478658576748,"Someone wishing death on the leading US Presidential candidate and myself is paid to do so by the German government?
-
-@Bundeskanzler, was ist das? https://t.co/qB6CslUQ2D","Jul 16, 11:13:28 AM EDT"
-1813290895334383820,"This is the final straw.
-
-Because of this law and the many others that preceded it, attacking both families and companies, SpaceX will now move its HQ from Hawthorne, California, to Starbase, Texas. https://t.co/cpWUDgBWFe","Jul 16, 3:13:33 PM EDT"
-1813291165820821890,"Done https://t.co/WIOTYSRTgC","Jul 16, 3:14:37 PM EDT"
-1813291920535486718,"Looks very slopey … https://t.co/mQBXDN2uf2","Jul 16, 3:17:37 PM EDT"
-1813293676334129401,"I did make it clear to Governor Newsom about a year ago that laws of this nature would force families and companies to leave California to protect their children","Jul 16, 3:24:36 PM EDT"
-1813295489032622586,"And 𝕏 HQ will move to Austin https://t.co/LUDfLEsztj","Jul 16, 3:31:48 PM EDT"
-1813295846710206811,"Have had enough of dodging gangs of violent drug addicts just to get in and out of the building","Jul 16, 3:33:13 PM EDT"
-1813298540581720215,"https://t.co/c3OvcPHgQZ","Jul 16, 3:43:56 PM EDT"
-1813301437033746904,"Visual approximation of Secret Service Director Cheetos’s “foolproof” assassination protection strategy https://t.co/W1VVor5KNL","Jul 16, 3:55:26 PM EDT"
-1813302019115069506,"RT @Caitlyn_Jenner: Strong move.
-The state is not the parent!
-Parental Rights >","Jul 16, 3:57:45 PM EDT"
-1813310196506349995,"Marc Andreessen and Ben Horowitz explain why they support Trump https://t.co/89GYZGqFNu","Jul 16, 4:30:15 PM EDT"
-1813310286465785982,"Many will follow https://t.co/ptgXe8Zmza","Jul 16, 4:30:36 PM EDT"
-1813314266143093134,"The state will take your kids if you object https://t.co/Z9G0zMoUdE","Jul 16, 4:46:25 PM EDT"
-1813314896794403105,"As a reminder, Doug Leone of Sequoia Capital publicly voiced his support for Trump 6 weeks ago.
-
-Silicon Valley has shifted. https://t.co/MjFT50HPgW","Jul 16, 4:48:55 PM EDT"
-1813337872612880631,"RT @teslaenergy: Glad everyone is safe; 7,000 Powerwall owners in Texas had over 200,000 hours of backup power last week","Jul 16, 6:20:13 PM EDT"
-1813342677540253715,"The governor of California just signed a bill causing massive destruction of parental rights and putting children at risk for permanent damage.
-
-Important to read this: https://t.co/6GNnEurZ3v","Jul 16, 6:39:19 PM EDT"
-1813388983109357933,"Well said!!
-https://t.co/CgKPa1rnnt","Jul 16, 9:43:19 PM EDT"
-1813437642559877122,"https://t.co/35wqQgKJo5","Jul 17, 12:56:40 AM EDT"
-1813442557185073460,"Such mean & cruel people they are https://t.co/kENZMzwktS","Jul 17, 1:16:12 AM EDT"
-1813443123407708299,"The choice is clear https://t.co/DfiWy5gRCU","Jul 17, 1:18:27 AM EDT"
-1813447180096561578,"RT @GregAbbott_TX: X marks the spot.
-
-teXas is the HQ for business.","Jul 17, 1:34:34 AM EDT"
-1813579609067397257,"Important for civilization to pass the single-planet Fermi Great Filter https://t.co/Xd4NOiX7mV","Jul 17, 10:20:48 AM EDT"
-1813583822308712860,"True https://t.co/gcGoSZCSVO","Jul 17, 10:37:32 AM EDT"
-1813586120883699902,"The smartest people in the world are on 𝕏 https://t.co/FterTpNcDy","Jul 17, 10:46:40 AM EDT"
-1813588060149592126,"True, the Democratic Party has moved so far left that the Republican Party is now closest to the center https://t.co/Et4MQ5yobj","Jul 17, 10:54:23 AM EDT"
-1813595907042210115,"So here’s the situation … https://t.co/uxpzEsna5v","Jul 17, 11:25:33 AM EDT"
-1813596367299965248,"Wow, steak & eggs with coffee in the morning really feels like a powerup!","Jul 17, 11:27:23 AM EDT"
-1813601633172877820,"We have recently received many requests to suspend or otherwise impact accounts on the left.
-
-However, 𝕏 is a free speech platform that aspires to give equal voice to all, within the bounds of the law.
-
-That is what we will do.","Jul 17, 11:48:19 AM EDT"
-1813603548078202992,"Texas https://t.co/iQq68InFi4","Jul 17, 11:55:55 AM EDT"
-1813607517702013284,"RT @cb_doge: Free speech is the bedrock of democracy.
-
-That’s why it’s the FIRST Amendment. 🇺🇸 https://t.co/ItTjm3OSy1","Jul 17, 12:11:42 PM EDT"
-1813609881657909579,"Can’t believe they didn’t notice Saddam Hussein was there!!","Jul 17, 12:21:05 PM EDT"
-1813610186738921568,"True https://t.co/5Hi143Qwwz","Jul 17, 12:22:18 PM EDT"
-1813610782032330983,"Cybertruck has a sloped roof … just sayin https://t.co/z1jYNmrafy","Jul 17, 12:24:40 PM EDT"
-1813612456578830449,"Thank you for your excellent analysis of just how dangerous this is for children https://t.co/wDovk0D9nz","Jul 17, 12:31:19 PM EDT"
-1813612957219402042,"RT @niccruzpatane: Buying a @Tesla makes your life way easier, and more convenient.
-
-You won’t ever need to worry about:
-
-• Changing your…","Jul 17, 12:33:18 PM EDT"
-1813628249689526692,"RT @lindayaX: Over 50% of business decision-makers rely on X, and our users are 94% more likely to hold executive positions as opposed to o…","Jul 17, 1:34:04 PM EDT"
-1813630190108483647,"RT @DimaZeniuk: “Civilization only passes the single-planet Great Filter when Mars can survive even if Earth supply ships stop coming.”
-
-—…","Jul 17, 1:41:47 PM EDT"
-1813635656750653833,"RT @NASA: LIVE: Leaders from NASA and @SpaceX are discussing the selection of SpaceX to develop and deliver the U.S. Deorbit Vehicle, which…","Jul 17, 2:03:30 PM EDT"
-1813702954752585835,"RT @michaelnicollsx: Speedtest from @starlink’s new mobile community gateway capability, no land in sight. https://t.co/0gswXiyc8b","Jul 17, 6:30:56 PM EDT"
-1813703783509262677,"For large commercial or community users, the Starlink Gateway terminal provides over 8Gbps of downlink and soon over 8Gbps uplink too https://t.co/RqFevu8sWw","Jul 17, 6:34:13 PM EDT"
-1813704394980180449,"Starlink now serving about (Canadian pronunciation) 3% of homes in Canada! https://t.co/JpnQMswRHj","Jul 17, 6:36:39 PM EDT"
-1813766850372669462,"Cybertruck in the wilds https://t.co/SWrbBZcqrb","Jul 17, 10:44:49 PM EDT"
-1813797641865805860,"RT @SpaceX: With 6x more propellant and 4x the power of today’s Dragon spacecraft, SpaceX was selected to design and develop the U.S. Deorb…","Jul 18, 12:47:11 AM EDT"
-1813937711390331086,"He was brilliant https://t.co/d1C60XIvNA","Jul 18, 10:03:46 AM EDT"
-1813937913479983592,"Wow, America really is the land of opportunity! https://t.co/YT5PoXI868","Jul 18, 10:04:34 AM EDT"
-1813939229103411268,"Exactly https://t.co/7P8UHmPHsG","Jul 18, 10:09:48 AM EDT"
-1813940163208413603,"True, usage levels are remaining high https://t.co/IGzBDeZuvy","Jul 18, 10:13:30 AM EDT"
-1813941222463217866,"The goal is this diabolical law is to break the parent-child relationship and put the state in charge of your children https://t.co/hNwDE3Edgb","Jul 18, 10:17:43 AM EDT"
-1813944023574573554,"Check out the new SpaceX EVA spacesuits. These will allow astronauts to do spacewalks. https://t.co/o97SOaWdgx","Jul 18, 10:28:51 AM EDT"
-1813953348036677791,"RT @cb_doge: Just a reminder:
-
-If you're a web user, I strongly recommend trying 𝕏-Pro; it's an incredible tool. https://t.co/npIuBtQLtD","Jul 18, 11:05:54 AM EDT"
-1813967606677946656,"RT @rookisaacman: It has been a pleasure participating in the development of the @SpaceX EVA suit. The successful vacuum test was performed…","Jul 18, 12:02:33 PM EDT"
-1813971832707654059,"RT @cstanley: If only politics were this simple. https://t.co/qI2VQHV7Y2","Jul 18, 12:19:21 PM EDT"
-1813972462641815744,"Over 15 GWh of Megapacks! https://t.co/D6XhYExFXd","Jul 18, 12:21:51 PM EDT"
-1813984843471978730,"Request a Community Note! https://t.co/Az2SFjAgQg","Jul 18, 1:11:03 PM EDT"
-1813985462559572144,"True 😂 https://t.co/984Z9fUqFf","Jul 18, 1:13:31 PM EDT"
-1813986873016012874,"They’re taking Biden fishing soon … https://t.co/5DrBdDnj17","Jul 18, 1:19:07 PM EDT"
-1813988055427989508,"This movie will be a HIT!! https://t.co/6bbeCKmLVI","Jul 18, 1:23:49 PM EDT"
-1813990001962877171,"This movie will be a hit!
-(Oops, it missed) https://t.co/g9ccc2qFAA","Jul 18, 1:31:33 PM EDT"
-1813991520686526659,"https://t.co/ij9w7bboVA","Jul 18, 1:37:35 PM EDT"
-1814049945923559812,"https://t.co/z0CojttW43","Jul 18, 5:29:45 PM EDT"
-1814055634133987350,"They really do want to take your children.
-
-Totally open about it. https://t.co/vuDP6djnxW","Jul 18, 5:52:21 PM EDT"
-1814057109056598382,"Yeah!! https://t.co/bKwBn3DP5E","Jul 18, 5:58:13 PM EDT"
-1814063972783374683,"Usually true https://t.co/9u0kwk0ETL","Jul 18, 6:25:29 PM EDT"
-1814071041146474785,"Wow https://t.co/Fw7m6Ycncv","Jul 18, 6:53:34 PM EDT"
-1814072139781181605,"Whoa https://t.co/zxGQFzH8Li","Jul 18, 6:57:56 PM EDT"
-1814164936211198420,"Yup https://t.co/u0lytetQxH","Jul 19, 1:06:41 AM EDT"
-1814165450135105643,"RT @SawyerMerritt: U.S. EV Registrations In May 2024. https://t.co/QFI6rkgrav","Jul 19, 1:08:43 AM EDT"
-1814185538368196699,"RT @SpaceX: Teams completed a final EVA suit milestone ahead of this summer’s first commercial spacewalk from Dragon","Jul 19, 2:28:32 AM EDT"
-1814186716338475475,"RT @cb_doge: SpaceX is making sci-fi real. ✨ https://t.co/x16ej5xnX2","Jul 19, 2:33:13 AM EDT"
-1814188075901198530,"RT @AdrianDittmann: On X, you get a front-row seat to whatever is going on now before it's known elsewhere later.","Jul 19, 2:38:37 AM EDT"
-1814201134371709386,"😂 https://t.co/vvCGJqikgl","Jul 19, 3:30:31 AM EDT"
-1814203437275361458,"… https://t.co/X9a2ghyo4P","Jul 19, 3:39:40 AM EDT"
-1814252893517553843,"Major problem. This California law should be repealed. https://t.co/GUKTc990dD","Jul 19, 6:56:11 AM EDT"
-1814302788911837227,"RT @dogeofficialceo: Rough week for security https://t.co/YeFMiF25D7","Jul 19, 10:14:27 AM EDT"
-1814333683798810872,"https://t.co/jED5mFZnh0","Jul 19, 12:17:13 PM EDT"
-1814338027738607951,"Well, @jk_rowling is absolutely right!
-
-Almost every child goes through some kind of identity crisis during puberty. It is deeply wrong to make them permanently infertile with “puberty blockers”.
-
-If they still wish to transition as adults, provided they","Jul 19, 12:34:29 PM EDT"
-1814340026420871238,"RT @TheRabbitHole84: We should reject child sex changes for the same reason we reject children getting tattoos: It is irresponsible parenti…","Jul 19, 12:42:25 PM EDT"
-1814340118951412123,"😂 https://t.co/Pf7pQIv9hJ","Jul 19, 12:42:47 PM EDT"
-1814340751943512190,"Damning that Dems fought so hard to allow registration to vote without proof of citizenship! https://t.co/a9HXtpJfOM","Jul 19, 12:45:18 PM EDT"
-1814340912677539934,"Lalala https://t.co/8OHzKI7YpF","Jul 19, 12:45:57 PM EDT"
-1814342948634632606,"Aiming to have a level playing field for all points of view.
-
-Note, I will also express my own point of view, as not doing so would be inconsistent with freedom of speech.
-
- https://t.co/5ydJRo4yff","Jul 19, 12:54:02 PM EDT"
-1814347534233444645,"💯 https://t.co/q1Y1nQz0Nn","Jul 19, 1:12:15 PM EDT"
-1814354894326739057,"Congratulations PM @NarendraModi on being the most followed world leader!","Jul 19, 1:41:30 PM EDT"
-1814366864715178165,"💯 https://t.co/9cIotuPE6U","Jul 19, 2:29:04 PM EDT"
-1814545887378522538,"Sometimes, the chickens hatch https://t.co/S3H6ZwkfxL","Jul 20, 2:20:26 AM EDT"
-1814549353303880116,"RT @matiroy9: Last month I joined xAI as an AI Tutor Project Lead! This is truly the best in many ways!
-
-We're currently hiring for roles a…","Jul 20, 2:34:13 AM EDT"
-1814549888899621358,"RT @jamesdouma: My car just drove me from SF to LA. I just sat there with my hands in my lap and watched the road for 6.5 hours. It felt u…","Jul 20, 2:36:20 AM EDT"
-1814550221361119328,"https://t.co/uCFhGreViO","Jul 20, 2:37:40 AM EDT"
-1814656423378182275,"Make America Greater Again https://t.co/NRxZkWbbi7","Jul 20, 9:39:40 AM EDT"
-1814656841919480016,"RT @MarioNawfal: ELON: WOKENESS GIVES MEAN PEOPLE A SHIELD TO BE MEAN AND CRUEL
-
-At its heart, wokeness is divisive, exclusionary and hatef…","Jul 20, 9:41:20 AM EDT"
-1814657489297719696,"AB 1955, authored by pedophile-apologist Scott Wiener and which @GavinNewsom just signed into law in California, is a child predators dream https://t.co/xxuEbE4GfC","Jul 20, 9:43:54 AM EDT"
-1814660865255158080,"https://t.co/cQyHMqc3TO","Jul 20, 9:57:19 AM EDT"
-1814665511126331423,"RT @NASA: "The Eagle has landed."
-
-On July 20, 1969 — 55 years ago today — #Apollo11 touched down on the Moon. https://t.co/rLoZP5vWuS","Jul 20, 10:15:47 AM EDT"
-1814666180356878703,"And now it is time for America to reach far greater heights by sending astronauts to Mars!
-
-Ultimately, anyone who wants to be a space traveler and help build a new civilization on Mars should be able to do so.
-
-That is an inspiring future! https://t.co/u","Jul 20, 10:18:26 AM EDT"
-1814676749348667661,"RT @XData: The world tuned in to this year's Republican National Convention, generating a high volume of conversation amongst US voters and…","Jul 20, 11:00:26 AM EDT"
-1814676935588344300,"Best AI video to date! https://t.co/RntVWVvL36","Jul 20, 11:01:11 AM EDT"
-1814677401051320796,"Question the blob narrative https://t.co/BZR9OxF0ZR","Jul 20, 11:03:02 AM EDT"
-1814682173376491913,"RT @iam_smx: Elon Musk showing Gayle King the Boring Company tunnels that will solve traffic problems in congested cities, driving through…","Jul 20, 11:21:59 AM EDT"
-1814686582361743772,"Collective power https://t.co/2YeTd1YSoy","Jul 20, 11:39:31 AM EDT"
-1815036854267265028,"Change the programs that someone else put in your mind https://t.co/ygnW7tH3PH","Jul 21, 10:51:22 AM EDT"
-1815053281925767571,"! https://t.co/Dm3vMWaWQt","Jul 21, 11:56:39 AM EDT"
-1815053805077086351,"Whoa https://t.co/NhtglIdNRZ","Jul 21, 11:58:43 AM EDT"
-1815081511806247306,"RT @cb_doge: I use the 𝕏 app to make calls when I don't want to share my phone number with someone. https://t.co/N2q1v8uwA5","Jul 21, 1:48:49 PM EDT"
-1815087759838806200,"Exactly https://t.co/uJgJtacMZW","Jul 21, 2:13:39 PM EDT"
-1815088457007718716,"😂😂 https://t.co/6U7TpnhcMp","Jul 21, 2:16:25 PM EDT"
-1815089436067274970,"RT @VivekGRamaswamy: We’re not running against a candidate. We’re running against a system.","Jul 21, 2:20:18 PM EDT"
-1815091075431678146,"My smartest friends, including those living in the San Francisco Bay Area who have been lifelong Dems, are excited about Trump/Vance","Jul 21, 2:26:49 PM EDT"
-1815092002083471731,"I believe in an America that maximizes individual freedom and merit.
-
-That used to be the Democratic Party, but now the pendulum has swung to the Republican Party.","Jul 21, 2:30:30 PM EDT"
-1815094571497595108,"Simple incentives explain almost everything. A complex explanation is rarely needed. https://t.co/hBnhaSwVNk","Jul 21, 2:40:43 PM EDT"
-1815098272849056151,"æsthetics matter
-there should be
-a beauty to the flow
-of thought on 𝕏","Jul 21, 2:55:25 PM EDT"
-1815101282367009275,"They are so slow https://t.co/9GyIT2M5XF","Jul 21, 3:07:23 PM EDT"
-1815105968381820966,"White House aides learned Biden was dropping out by reading 𝕏 https://t.co/9SpfbwcN65","Jul 21, 3:26:00 PM EDT"
-1815106699981975853,"𝕏 is a meme goldmine rn https://t.co/b7D94HkajZ","Jul 21, 3:28:54 PM EDT"
-1815107118120268148,"Leaders should post directly, not hand the role to intermediaries. That is what works best.
-
-Mistakes will be made, but that’s what proves it’s real. People want authenticity. https://t.co/sd8147XOxz","Jul 21, 3:30:34 PM EDT"
-1815111254668935564,"RT @xDaily: ANALYSIS: Despite media claims that 𝕏 is now "irrelevant", Biden choose to announce that he's dropping out on this platform fir…","Jul 21, 3:47:00 PM EDT"
-1815139744860528843,"https://t.co/HqVCbxz2l3","Jul 21, 5:40:13 PM EDT"
-1815180506226368783,"Hawk Ptah https://t.co/46qdrh0wXV","Jul 21, 8:22:11 PM EDT"
-1815187468691316946,"High time for an AI fashion show https://t.co/ra6cHQ4AAu","Jul 21, 8:49:51 PM EDT"
-1815193067491676589,"https://t.co/dMokDNLrV0","Jul 21, 9:12:06 PM EDT"
-1815193264959488317,"Grok is being trained in Memphis","Jul 21, 9:12:53 PM EDT"
-1815193874366640591,"Imagine 4 years of this … https://t.co/gFwWAv15Qx","Jul 21, 9:15:18 PM EDT"
-1815203930692895029,"RT @X: can’t stop refreshing the timeline","Jul 21, 9:55:16 PM EDT"
-1815205873846796378,"Poor Fredo https://t.co/e8KjsskQYt","Jul 21, 10:02:59 PM EDT"
-1815225115803603237,"Worth following @X https://t.co/Fej2YTNRLp","Jul 21, 11:19:27 PM EDT"
-1815256195009028318,"Timing was perfect 🤌 https://t.co/mYDDgQzgTH","Jul 22, 1:22:57 AM EDT"
-1815256851778318506,"RT @ajtourville: Gell-Mann Amnesia https://t.co/HuwdUateqW","Jul 22, 1:25:33 AM EDT"
-1815271887989297229,"The ratings – if this reality were an alien Netflix series – would be through the roof","Jul 22, 2:25:18 AM EDT"
-1815278943148167315,"Sure did https://t.co/9elNfzRH5T","Jul 22, 2:53:20 AM EDT"
-1815325410667749760,"Nice work by @xAI team, @X team, @Nvidia & supporting companies getting Memphis Supercluster training started at ~4:20am local time.
-
-With 100k liquid-cooled H100s on a single RDMA fabric, it’s the most powerful AI training cluster in the world!","Jul 22, 5:57:59 AM EDT"
-1815330372143435778,"Join @xAI (or @X) to help build maximally truth-seeking & curious AI to understand the nature of the Universe! https://t.co/eH4rYLb4KY","Jul 22, 6:17:42 AM EDT"
-1815340648779702650,"But definitely looking to increase our human talent advantage, so please apply at @xAI, as well as @Tesla and @X https://t.co/sf4hMRco9f","Jul 22, 6:58:32 AM EDT"
-1815341263102804072,"This is a significant advantage in training the world’s most powerful AI by every metric by December this year","Jul 22, 7:00:59 AM EDT"
-1815343269594722622,"RT @cb_doge: xAI is hiring!
-
-You can find the available job roles by visiting their 𝕏 profile @xai and directly apply from there. https://t…","Jul 22, 7:08:57 AM EDT"
-1815343430509199623,"https://t.co/zbtSNfzENT","Jul 22, 7:09:35 AM EDT"
-1815426844369322425,"RT @Tesla_Megapack: France’s first large-scale 2-hour battery system will be built by @Harmony_Energy_ and will feature 100 MW / 200 MWh o…","Jul 22, 12:41:03 PM EDT"
-1815443146014171281,"America is going bankrupt btw https://t.co/UYpri3wyJU","Jul 22, 1:45:49 PM EDT"
-1815445906361381366,"Yes https://t.co/8id5rFMS7c","Jul 22, 1:56:48 PM EDT"
-1815451251020308924,"They should actually teach this in biz school https://t.co/HCZQUcq1mN","Jul 22, 2:18:02 PM EDT"
-1815451522748010786,"Where are we with dollar value destruction, you might ask? https://t.co/0LD8OggFqu","Jul 22, 2:19:07 PM EDT"
-1815460900624818311,"Talking with Jordan in 5 mins https://t.co/crPsOx93rB","Jul 22, 2:56:22 PM EDT"
-1815509886660415896,"RT @SpaceX: Falcon 9 was selected by @NASA to launch @NOAA’s latest polar weather satellite! https://t.co/6OfkdWCF3z https://t.co/VQzElY278X","Jul 22, 6:11:02 PM EDT"
-1815515892261728463,"RT @cb_doge: I strongly recommend everyone to create/join and contribute towards the communities of your interest on 𝕏 https://t.co/VYgKYiu…","Jul 22, 6:34:54 PM EDT"
-1815528482161463536,"RT @Jason: I’m 100% in support of adults pursuing whatever gender they please, by whatever means they like.
-
-More power to you!
-
-However,…","Jul 22, 7:24:55 PM EDT"
-1815595311177334944,"Might be one day https://t.co/dFsCaZI9WR","Jul 22, 11:50:28 PM EDT"
-1815614032407105739,"RT @MarioNawfal: 🚨 SATURN HAS 146 MOONS MORE THAN ANY OTHER PLANET IN OUR SOLAR SYSTEM
-
-Saturn has 146 moons, the most of any planet, with…","Jul 23, 1:04:52 AM EDT"
-1815775961939616205,"RT @cb_doge: Bring your video content to 𝕏
-
-~8.2B daily video views in Q2, up +45% year over year. https://t.co/zT5s447IrJ","Jul 23, 11:48:19 AM EDT"
-1815846057328161172,"Tesla quarterly update https://t.co/DGBxbOPRPO","Jul 23, 4:26:51 PM EDT"
-1815861901395382520,"Starlink is now active in a Gaza hospital with the support of @UAEmediaoffice and @Israel","Jul 23, 5:29:49 PM EDT"
-1815862269722415388,"Tesla earnings livestream https://t.co/zsO9DlXoqu","Jul 23, 5:31:16 PM EDT"
-1815887637594660880,"RT @HawaiianAir: ""Hawaiian Airlines' SpaceX Starlink satellite experience has spoiled me for in-flight WiFi."
-https://t.co/g5Uh6LjJpL via…","Jul 23, 7:12:05 PM EDT"
-1815887663473332299,"RT @Starlink: Once passengers step onboard the plane the internet works seamlessly throughout their flight 🛰️✈️❤️","Jul 23, 7:12:11 PM EDT"
-1815907844434112999,"Should Tesla invest $5B into @xAI, assuming the valuation is set by several credible outside investors?
-
-(Board approval & shareholder vote are needed, so this is just to test the waters)","Jul 23, 8:32:22 PM EDT"
-1815929451256979636,"About 3 weeks ago, the media told you that Biden was “sharp as a tack” 🙄
-
-2 days ago, the poor guy was basically forced at gunpoint to resign as Dem nominee. His staff weren’t even informed.
-
-Now they say Kamala is the best thing ever 🤦♂️ https://t.co","Jul 23, 9:58:14 PM EDT"
-1815930558708363717,"Shouldn’t the nominee be decided by a party vote? Democracy etc … https://t.co/EH0aYvSG1m","Jul 23, 10:02:38 PM EDT"
-1815935926096232753,"Cool https://t.co/23CpKERVCU","Jul 23, 10:23:57 PM EDT"
-1815967241759785345,"RT @imPenny2x: Five simple ways to support free speech:
-
-〰️Sign up for Premium or Premium Plus
-〰️Engage with your favorite news accounts
-〰️…","Jul 24, 12:28:24 AM EDT"
-1816058787507159540,"RT @teslaenergy: Powerwall & @Tesla_Megapack together achieved record storage deployments of 9.4 GWh in Q2 https://t.co/cDO7lS2UP4","Jul 24, 6:32:10 AM EDT"
-1816220299198665034,"Starlink now operating on over 1000 aircraft!
-
-Using Starlink on a plane feels like you’re on a high speed ground fiber connection. https://t.co/r05zfnKHIJ","Jul 24, 5:13:57 PM EDT"
-1816357504076448006,"People who have been lifelong Democrats refuse to accept the clear reality that the Democratic Party is rapidly become openly antisemitic.
-
-This trend is accelerating, not slowing down.
-
-Knock, knock. Hello, Captain Obvious here! https://t.co/YspN1d4GQy","Jul 25, 2:19:09 AM EDT"
-1816360430069076161,"Literally as far left as it is possible to go!
-
-They’re trying so hard to erase the Internet lmao.
- https://t.co/jqYbA4GtIZ","Jul 25, 2:30:47 AM EDT"
-1816360797117047265,"RT @elon_docs: Elon Musk: Environmentalism in the extreme starts to view humans as bad, as a load Earth can't sustain. This is completely f…","Jul 25, 2:32:15 AM EDT"
-1816361038113062950,"Haha amazing https://t.co/66DURz1Ets","Jul 25, 2:33:12 AM EDT"
-1816365656125690009,"RT @cb_doge: 𝕏 hack: DM yourself to take notes. https://t.co/FdY5EY27if","Jul 25, 2:51:33 AM EDT"
-1816366274860990629,"RT @seanpk: Elon Musk open-sourced all of Tesla's patents for other car companies to copy.
-
-Wall Street called it 'dumb' and thought Tesla…","Jul 25, 2:54:01 AM EDT"
-1816469796042735851,"Olympics! https://t.co/d0OmEVIUid","Jul 25, 9:45:22 AM EDT"
-1816472353184075872,"RT @cb_doge: “Now is the time to fight the anti-human woke mind virus with everything!” https://t.co/gOBDgRE8E7","Jul 25, 9:55:32 AM EDT"
-1816478001884004816,"Looks like the public is in favor. Will discuss with Tesla board.","Jul 25, 10:17:58 AM EDT"
-1816593292324213219,"RT @DimaZeniuk: Breathtaking view of Earth from the SpaceX Crew Dragon in orbit 🐉 https://t.co/J9yE1xpEYV","Jul 25, 5:56:06 PM EDT"
-1816808394399068362,"RT @DimaZeniuk: SpaceX Starship is alien technology https://t.co/rvXl1KJyIp","Jul 26, 8:10:50 AM EDT"
-1816809459341054429,"CBS lies about Trump lying https://t.co/GLmm8u6Mqr","Jul 26, 8:15:04 AM EDT"
-1816813870859567506,"RT @WholeMarsBlog: Last night as Tesla FSD 12.5 drove me home for 45 minutes with zero interventions, I saw two Cybertrucks with 4680 struc…","Jul 26, 8:32:36 AM EDT"
-1816814086149005495,"America is headed for bankruptcy fyi https://t.co/O6FH5BK4aQ","Jul 26, 8:33:27 AM EDT"
-1816815174939988305,"Real-time Olympics info at #Paris2024 https://t.co/t9BuD0pVuM","Jul 26, 8:37:47 AM EDT"
-1816815772678619453,"RT @MAstronomers: The Oort cloud. Where the solar system ends. https://t.co/KUDVjSCtQ2","Jul 26, 8:40:09 AM EDT"
-1816816394345857487,"RT @Intrstngthings: @MAstronomers The Oort Cloud lies far beyond Pluto and the most distant edges of the Kuiper Belt. While the planets of…","Jul 26, 8:42:37 AM EDT"
-1816830681378332972,"🇫🇷🇫🇷🇫🇷 Vive la France! 🇫🇷🇫🇷🇫🇷
-
-Ville des Lumières #Paris2024","Jul 26, 9:39:24 AM EDT"
-1816835901244207255,"RT @cb_doge: 𝕏 is now the #1 news app on the AppStore in France 🥇
-
- https://t.co/c9daJP6YxZ","Jul 26, 10:00:08 AM EDT"
-1816958459104907294,"The Olympics laser show was amazing! https://t.co/CpN1GMMVnU","Jul 26, 6:07:08 PM EDT"
-1816972865582805332,"RT @Space_Station: The City of Light. 🤩🏅
-
-Paris, where the 2024 #Olympics just kicked off, dazzles in these nighttime photos taken from the…","Jul 26, 7:04:23 PM EDT"
-1816974609637417112,"This is amazing 😂
- https://t.co/KpnBKGUUwn","Jul 26, 7:11:19 PM EDT"
-1816986795613258061,"RT @Tesla: https://t.co/wEJhypkfpa","Jul 26, 7:59:44 PM EDT"
-1817082007366615402,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida! https://t.co/ozYLYUxCss","Jul 27, 2:18:04 AM EDT"
-1817082057069080955,"RT @SpaceX: Falcon 9 lands on the Just Read the Instructions droneship https://t.co/56KSGFLeON","Jul 27, 2:18:16 AM EDT"
-1817082862404866531,"RT @johnkrausphotos: FALCON 9 RETURNS TO FLIGHT
-
-This morning’s launch of 23 Starlink satellites, seen here transiting the Moon, was the fi…","Jul 27, 2:21:28 AM EDT"
-1817095089832784285,"RT @SpaceX: Falcon 9 returns to flight and delivers 23 @Starlink satellites to low-Earth orbit https://t.co/lLUk0ADIwY","Jul 27, 3:10:04 AM EDT"
-1817104797511635402,"Isn’t technology amazing? 😉 https://t.co/rQX3o9TatT","Jul 27, 3:48:38 AM EDT"
-1817129942439641211,"Super cool Tesla light show!
- https://t.co/o6r5zqDbGU","Jul 27, 5:28:33 AM EDT"
-1817224599467147384,"Save our kids!
- https://t.co/1obaIHBv0A","Jul 27, 11:44:41 AM EDT"
-1817225019480572191,"RT @jeffskoll: Hi folks.
-
-There was an article in today’s NY Times that reviewed X under the tenure of @elonmusk and @lindayaX (Linda Yac…","Jul 27, 11:46:21 AM EDT"
-1817273263761817710,"Unless there is more bravery to stand up for what is fair and right, Christianity will perish","Jul 27, 2:58:04 PM EDT"
-1817273424097558989,"It is https://t.co/sjlqrb93tq","Jul 27, 2:58:42 PM EDT"
-1817280566632251721,"It is time for the people of Venezuela to have the chance for a better future.
-
-Support Maria Corina! https://t.co/d122luXBbk","Jul 27, 3:27:05 PM EDT"
-1817300847027441940,"RT @jeffskoll: Elon Musk STUNS Jordan Peterson https://t.co/qom70bBt2d via @YouTube
-
-I watched the full 2 hour version of this interview th…","Jul 27, 4:47:40 PM EDT"
-1817328225799868570,"RT @SpaceX: Full duration static fire of Flight 5 Starship https://t.co/09Dz9iCsGc","Jul 27, 6:36:28 PM EDT"
-1817337962280927427,"Fast flame in slow motion https://t.co/if1Tn68fPU","Jul 27, 7:15:09 PM EDT"
-1817355589074239618,"Judge Dredd would drive a Cybertruck","Jul 27, 8:25:11 PM EDT"
-1817357502725407024,"https://t.co/lBJPYl83om","Jul 27, 8:32:48 PM EDT"
-1817358263312072766,"RT @SpaceX: Targeting back-to-back @Starlink launches tonight from Florida and California → https://t.co/SpsRVRsvz1","Jul 27, 8:35:49 PM EDT"
-1817406378534650057,"https://t.co/TmEHqi4WjG","Jul 27, 11:47:01 PM EDT"
-1817445081164439900,"300th reuse of a Falcon rocket boost stage https://t.co/0sJ4AjWBjl","Jul 28, 2:20:48 AM EDT"
-1817450336115740945,"RT @cb_doge: Please support 𝕏 however you can. This platform is upholding our right to free speech.
-
-一 Sign up for 𝕏 Premium or Premium+
-一…","Jul 28, 2:41:41 AM EDT"
-1817455233351516629,"RT @GigaBasedDad: 🎯 https://t.co/ik9qxmvLRF","Jul 28, 3:01:08 AM EDT"
-1817565274377203761,"Congrats to the @SpaceX Falcon team on completing 3 successful launches this weekend!","Jul 28, 10:18:24 AM EDT"
-1817568066441773097,"16 years ago https://t.co/wOoGl6O3OK","Jul 28, 10:29:30 AM EDT"
-1817607675506774450,"RT @DefiantLs: Just saying... https://t.co/1XPEUXVqx3","Jul 28, 1:06:54 PM EDT"
-1817613737802494271,"Always pin your best posts! https://t.co/fJ9HzUIHrm","Jul 28, 1:30:59 PM EDT"
-1817662127777145313,"RT @GailAlfarATX: Listen to Elon Musk talk via livestream on 𝕏 about Tesla. Thanks to @theXtakeover https://t.co/0KD8DQuWyR","Jul 28, 4:43:16 PM EDT"
-1817673490088255512,"!! https://t.co/lKtOkpQKjg","Jul 28, 5:28:25 PM EDT"
-1817699349767626812,"RT @WholeMarsBlog: Tesla FSD Beta 10 vs FSD (Supervised) 12.5
-
-I took 12.5 on the exact same route I recorded FSD Beta 10 handling in Septe…","Jul 28, 7:11:10 PM EDT"
-1817765530255659127,"Wow, Google has a search ban on President Donald Trump!
-
-Election interference? https://t.co/dJzgVAAFZA","Jul 28, 11:34:09 PM EDT"
-1817767574592950763,"This is messed up https://t.co/7AyK6LCFGc","Jul 28, 11:42:16 PM EDT"
-1817776350213685477,"Wow https://t.co/FVVum4sSGf","Jul 29, 12:17:09 AM EDT"
-1817776665906254018,"Shame on Dictator Maduro https://t.co/yad3Itps5N","Jul 29, 12:18:24 AM EDT"
-1817777431236796479,"RT @MarioNawfal: 🚨 🇻🇪 SELFIE BY CHAVISTA WORKER ALLEGEDLY REVEALS MADURO'S DEFEAT
-
-A Chavista worker allegedly published a selfie from the…","Jul 29, 12:21:26 AM EDT"
-1817778230864048573,"RT @marcorubio: Después de anunciar un fraude completo en las elecciones, espere que el régimen de Maduro ahora apague Internet dentro de #…","Jul 29, 12:24:37 AM EDT"
-1817790567989829826,"What a travesty https://t.co/OOfhyXs4Y3","Jul 29, 1:13:38 AM EDT"
-1817791646471172273,"Hmm https://t.co/huaicTCkIz","Jul 29, 1:17:56 AM EDT"
-1817792700717892034,"I think the risk of this is very real https://t.co/aCb3NNO3mp","Jul 29, 1:22:07 AM EDT"
-1817793691697742000,"RT @MarioNawfal: ELON: STARLINK MINI IS IDEAL FOR EMERGENCY SERVICES
-
-"The Starlink mini is extremely portable, about a quarter of the weig…","Jul 29, 1:26:03 AM EDT"
-1817796412601454837,"Yup https://t.co/S0owvuvDT1","Jul 29, 1:36:52 AM EDT"
-1817797912874668230,"RT @JMilei: DICTADOR MADURO, AFUERA!!!
-
-Los venezolanos eligieron terminar con la dictadura comunista de Nicolás Maduro. Los datos anuncian…","Jul 29, 1:42:50 AM EDT"
-1817917810028462103,"Britain has rightfully banned puberty blockers for children for the immense and permanent harm they do https://t.co/OZst5O7Woi","Jul 29, 9:39:15 AM EDT"
-1817920042656272588,"RT @GiancarloSopo: 🚨BREAKING🚨
-
-According to @delsasolorzano , the National Electoral Council in Venezuela has halted the transmission of vo…","Jul 29, 9:48:08 AM EDT"
-1817923878431392249,"Thank goodness for common sense in the UK.
-
-Now this should be applied in the US as soon as possible. https://t.co/44RjOpVhBt","Jul 29, 10:03:22 AM EDT"
-1817924143871828367,"Just another fyi that government spending is driving America bankrupt … https://t.co/giuRkeHzI8","Jul 29, 10:04:25 AM EDT"
-1817924434835165573,"🤨 https://t.co/nkwIvttwDK","Jul 29, 10:05:35 AM EDT"
-1817924844941451606,"Cool https://t.co/x7pozzMV3K","Jul 29, 10:07:13 AM EDT"
-1817926558700732668,"Wow, the donation levels from Alphabet and Univ of California are insanely high! https://t.co/T3RFthV6AR","Jul 29, 10:14:01 AM EDT"
-1817927222553952496,"The legacy media NPC grovel fest https://t.co/lGcYoDas62","Jul 29, 10:16:39 AM EDT"
-1817928731975127366,"Probably just a coincidence that Alphabet (Google) employees were the top donors to Biden https://t.co/tIj0THeTVc https://t.co/H02dxmKPkL","Jul 29, 10:22:39 AM EDT"
-1817931289023901746,"Facebook & Instagram inflate their real user numbers by 400% https://t.co/Z8dVv7Hnmu","Jul 29, 10:32:49 AM EDT"
-1817931411527233992,"https://t.co/hHCeRFc0j1","Jul 29, 10:33:18 AM EDT"
-1817931515625615733,"They are importing voters https://t.co/uXAiQyACXL","Jul 29, 10:33:43 AM EDT"
-1817931746689556900,"Absolutely https://t.co/gBfby1rrb3","Jul 29, 10:34:38 AM EDT"
-1817932850664226872,"Major election fraud by Maduro https://t.co/fi4xcSVd2Y","Jul 29, 10:39:01 AM EDT"
-1817932913498902626,"RT @johnkrausphotos: https://t.co/Uu13gUqoOx","Jul 29, 10:39:16 AM EDT"
-1817939120473206871,"The Biden-Harris Administration is importing vast numbers of voters https://t.co/p0OQM0RWpt","Jul 29, 11:03:56 AM EDT"
-1817939395904729569,"RT @SpeakerJohnson: President Biden’s proposal to radically overhaul the U.S. Supreme Court would tilt the balance of power and erode not o…","Jul 29, 11:05:02 AM EDT"
-1817939632245416115,"RT @eyeslasho: The Gender Death Gap seems a lot wider than the Gender Pay Gap. https://t.co/AXGYU0X7AO","Jul 29, 11:05:58 AM EDT"
-1817945616829313158,"RT @MarioNawfal: 🚨 🇬🇧PUBERTY BLOCKERS BANNED FOR TRANS YOUTH IN UK
-
-The UK high court has upheld the Conservative government's emergency ba…","Jul 29, 11:29:45 AM EDT"
-1817948102755496149,"The legacy media engages in the mass synchronization of emotion for political purposes.
-
-They are a de facto arm of the DNC.","Jul 29, 11:39:38 AM EDT"
-1817948688200679758,"New Model S Plaid quarter mile time! https://t.co/YzDTZ0uIYP","Jul 29, 11:41:57 AM EDT"
-1817954328851742747,"Making progress! https://t.co/QXUEgxMpqn","Jul 29, 12:04:22 PM EDT"
-1817956284315967727,"FSD 12.5.1 starts wide release today.
-
-Please connect your Tesla to WiFi to receive the update.","Jul 29, 12:12:08 PM EDT"
-1817957248964182187,"Starlink could do it literally infinitely cheaper https://t.co/QKtP6yfRiR","Jul 29, 12:15:58 PM EDT"
-1817997368442106070,"Wow, this is crazy! https://t.co/8WW942IB8a","Jul 29, 2:55:24 PM EDT"
-1817998077774483823,"Wow https://t.co/9utMxHQCog","Jul 29, 2:58:13 PM EDT"
-1817998729934254300,"And it will improve significantly from here https://t.co/akbyODI8oZ","Jul 29, 3:00:48 PM EDT"
-1817999351869767979,"Ahem @Google … https://t.co/0UBQTqWmiS","Jul 29, 3:03:16 PM EDT"
-1817999713641062811,"As I was saying, they’re importing voters https://t.co/zokSXYn78x","Jul 29, 3:04:43 PM EDT"
-1818027157370941827,"Adios Dictatora Maduro https://t.co/79saJ8OSp4","Jul 29, 4:53:46 PM EDT"
-1818027441576886333,"Verdad https://t.co/el6y0DWxge","Jul 29, 4:54:54 PM EDT"
-1818028357432525289,"The people of Venezuela have had enough of this clown 🤡 https://t.co/uolxvGFdwU","Jul 29, 4:58:32 PM EDT"
-1818029761257746871,"RT @UHN_Plus: 🇻🇪 | ÚLTIMA HORA
-
-Manifestantes en Venezuela continúan tumbando todas los carteles con la imagen del dictador Nicolás Maduro…","Jul 29, 5:04:07 PM EDT"
-1818030511467700543,"RT @EmmaRincon: El presidente @JMilei envía un mensaje a los venezolanos: "El dictador Maduro ha cometido un fraude. Han despertado a los l…","Jul 29, 5:07:05 PM EDT"
-1818031115652973046,"RT @JMilei: Los insultos del Dictador Maduro para mí son halagos. Casualmente repitiendo los mismos agravios de muchos “periodistas” bienpe…","Jul 29, 5:09:30 PM EDT"
-1818031735902453793,"El burro sabe mas que Maduro https://t.co/9fe6JWOatM","Jul 29, 5:11:57 PM EDT"
-1818033819527823466,"RT @nayibbukele: Lo que vimos ayer en Venezuela no tiene otro nombre más que fraude. Una “elección” donde el resultado oficial no tiene rel…","Jul 29, 5:20:14 PM EDT"
-1818036913389064681,"🤨 https://t.co/EPseVBucSc","Jul 29, 5:32:32 PM EDT"
-1818037913927761935,"Literally https://t.co/TZeoTcIYxJ","Jul 29, 5:36:30 PM EDT"
-1818043684660867121,"Perdón por comparar al pobre burro con Maduro. Es un insulto al mundo animal.","Jul 29, 5:59:26 PM EDT"
-1818065305824018627,"Wow https://t.co/OlUxIan8MP","Jul 29, 7:25:21 PM EDT"
-1818074081490596277,"If the military supports the will of the people, it is over for Maduro https://t.co/xp885EFuVt","Jul 29, 8:00:13 PM EDT"
-1818077729461530860,"The dominoes continue to fall https://t.co/oY53PqAlEB","Jul 29, 8:14:43 PM EDT"
-1818083055384322327,"The people of Venezuela want change! https://t.co/YmGF8D5wAQ","Jul 29, 8:35:53 PM EDT"
-1818083969721659861,"https://t.co/wg1cbLVvho","Jul 29, 8:39:31 PM EDT"
-1818085240595693728,"They should mix up the propaganda more. This is way too obvious.
-
-Just like when they were parroting before the debate that Biden was “sharp as a tack” 🤣 https://t.co/UZRUVM0Q7z","Jul 29, 8:44:34 PM EDT"
-1818164250637951118,"This is crazy https://t.co/K9zknirh7U","Jul 30, 1:58:31 AM EDT"
-1818269133298950253,"😂 https://t.co/nlvLlqBeoj","Jul 30, 8:55:17 AM EDT"
-1818280489041727627,"RT @cb_doge: Just a reminder:
-
-If you're a website admin and still using the old icon, please update it to 𝕏. https://t.co/QGY8m2fsjV","Jul 30, 9:40:25 AM EDT"
-1818296731655721420,"Wow
- https://t.co/P26JfTjPPJ","Jul 30, 10:44:57 AM EDT"
-1818340245139554333,"It sure looks like the FBI leadership engaged in perjury … https://t.co/tU1M7fs9lj","Jul 30, 1:37:52 PM EDT"
-1818342829006926055,"Tesla Model Y gets highest safety score ever! https://t.co/pIpHrewyQM","Jul 30, 1:48:08 PM EDT"
-1818345766642938274,"Moving up! https://t.co/x930Vr9ejS","Jul 30, 1:59:48 PM EDT"
-1818349351636484215,"This is real https://t.co/3KjTZiVJG0","Jul 30, 2:14:03 PM EDT"
-1818350802278465977,"https://t.co/XkK6B7pwWG","Jul 30, 2:19:49 PM EDT"
-1818350867869057284,"https://t.co/nw9PI7Ad2u","Jul 30, 2:20:04 PM EDT"
-1818353856058982433,"RT @DurantQuotesBot: There is always, in any society, a minority whose instincts rejoice in the permission to persecute; it is a release fr…","Jul 30, 2:31:57 PM EDT"
-1818356844752175574,"If this gains momentum, the rightfully elected President will replace the fraudster https://t.co/pSQpqC26L5","Jul 30, 2:43:49 PM EDT"
-1818358007652401310,"RT @stillgray: Venezuelan opposition leader María Corina Machado declares: “Military servicemen saw with their own eyes the triumph of a co…","Jul 30, 2:48:27 PM EDT"
-1818358540098322792,"Wow https://t.co/k0Z7uTkTHO","Jul 30, 2:50:34 PM EDT"
-1818361587717357934,"#1 in Venezuela https://t.co/rpHmpoYqaO","Jul 30, 3:02:40 PM EDT"
-1818362369896304843,"RT @visegrad24: BREAKING:
-
-The streets of Caracas are packed to the brim with protesters out to support opposition leader María Corina Mach…","Jul 30, 3:05:47 PM EDT"
-1818364618412376140,"Read The Parasitic Mind","Jul 30, 3:14:43 PM EDT"
-1818392953800548382,"Yup https://t.co/SsLyJefwWK","Jul 30, 5:07:18 PM EDT"
-1818438908654555341,"RT @MariaCorinaYA: Ganó Edmundo, Ganó Venezuela 🇻🇪
-
-Conoce en vivo los resultados de la elección presidencial del 28J:
-
-https://t.co/ikmJ…","Jul 30, 8:09:55 PM EDT"
-1818480595896615280,"RT @JMilei: RESULTADOS VENEZUELA
-
-https://t.co/fw0C9zsNhd","Jul 30, 10:55:34 PM EDT"
-1818482296527442175,"The people voted overwhelmingly for Gonzalez https://t.co/OwTK3PxLIe","Jul 30, 11:02:19 PM EDT"
-1818484695178658268,"RT @DavidSacks: The biggest divide in the electorate is between people who get their information from independent media and those who are b…","Jul 30, 11:11:51 PM EDT"
-1818546556993507491,"RT @AdrianDittmann: The quality of real-time news on this platform has become better than anywhere else.
-
-Whenever the news breaks, many ju…","Jul 31, 3:17:40 AM EDT"
-1818547873841398185,"RT @alex_avoigt: In the first half of 2024 more solar and wind power was generated and consumed in the 🇪🇺 EU than fossil power.
-
-The trend…","Jul 31, 3:22:54 AM EDT"
-1818652560112468245,"RT @cb_doge: 𝕏 一 #1 Social Network 🥇 https://t.co/mzqz6rm0hT","Jul 31, 10:18:53 AM EDT"
-1818654637874172360,"Cool https://t.co/jNl4rV20ra","Jul 31, 10:27:09 AM EDT"
-1818656594223415506,"!! https://t.co/qwC9IkG7TW","Jul 31, 10:34:55 AM EDT"
-1818657168868229157,"RT @alx: I’m sure there will be a massive advertising boycott of Meta like companies did when they saw “mean words” on 𝕏, right?","Jul 31, 10:37:12 AM EDT"
-1818658438916063488,"Population collapse is happening in so many countries https://t.co/tMmI8BXwMp","Jul 31, 10:42:15 AM EDT"
-1818667670449144308,"Congrats to the Tesla drivetrain team! https://t.co/xxaevcWtP6","Jul 31, 11:18:56 AM EDT"
-1818674080410984481,"RT @XData: All eyes are on #Paris2024 with over 3.2B video views and 28B impressions globally so far. https://t.co/x2kqvGrXAU","Jul 31, 11:44:24 AM EDT"
-1818708870635946411,"Just did a search for “Trump rally” on Google and Kamala was the top result! https://t.co/WuklbVytq2","Jul 31, 2:02:39 PM EDT"
-1818742982910320676,"Interesting https://t.co/4daVyK81xW","Jul 31, 4:18:12 PM EDT"
-1818770219843960863,"https://t.co/3Lq2lKpLON","Jul 31, 6:06:26 PM EDT"
-1818787032900288789,"… https://t.co/2rARVB1I1S","Jul 31, 7:13:14 PM EDT"
-1818787198298472646,"RT @cybertruck: Paint job by Mother Nature https://t.co/XVnUFBk5pC","Jul 31, 7:13:54 PM EDT"
-1818818814089253042,"Same thing is happening in California https://t.co/8KWF7f27xs","Jul 31, 9:19:31 PM EDT"
-1818826542937461037,"https://t.co/VGJkJ1UoO7","Jul 31, 9:50:14 PM EDT"
-1818829103295873431,"True https://t.co/dZaARzpasB","Jul 31, 10:00:25 PM EDT"
-1818845968890019936,"I’m coming for you Maduro! 🚀💣
-
-I will carry you to Gitmo on a donkey 🫏 https://t.co/RB5qltxsYI","Jul 31, 11:07:26 PM EDT"
-1818974488953868438,"Extremely disturbing! https://t.co/uEJ9O7h6qy","Aug 1, 7:38:07 AM EDT"
-1818978475195183198,"Accurate https://t.co/C0eia0kTAi","Aug 1, 7:53:58 AM EDT"
-1818979314831880485,"Good idea https://t.co/xyOIL9XwYN","Aug 1, 7:57:18 AM EDT"
-1818986936310075743,"Absolutely https://t.co/twccUEOW9e","Aug 1, 8:27:35 AM EDT"
-1818988903413817554,"Something is deeply wrong with our justice system https://t.co/oQNy7S1luj","Aug 1, 8:35:24 AM EDT"
-1818993065505276001,"RT @OliLondonTV: Father wins full custody of his 4 year old son after the mother turned the boy Non-Binary.
-
-Harrison Tinsley had been blo…","Aug 1, 8:51:56 AM EDT"
-1818999906549350663,"True or let her deny it https://t.co/z3OulP5eKJ","Aug 1, 9:19:07 AM EDT"
-1819047144562565132,"https://t.co/FjHf7PPD44","Aug 1, 12:26:50 PM EDT"
-1819057855179510077,"Schools forcing DEI on elementary school kids without parental consent https://t.co/8MTLkQLe82","Aug 1, 1:09:23 PM EDT"
-1819060637428801623,"Government is underreporting an additional 46,500/month in illegal immigration! https://t.co/VVAzFYIfeE","Aug 1, 1:20:27 PM EDT"
-1819063229357666523,"This is very important https://t.co/Gr0qfKAP3L","Aug 1, 1:30:45 PM EDT"
-1819067413167509698,"RT @HSajwanization: Facebook, Meta, LinkedIn 𝕏 https://t.co/md8a4sQwDB","Aug 1, 1:47:22 PM EDT"
-1819067673818681724,"Good https://t.co/b0kOXKFE8p","Aug 1, 1:48:24 PM EDT"
-1819068926254346595,"RT @WholeMarsBlog: ooooo X app for iPad now available on macOS https://t.co/zp0YEtlEWG","Aug 1, 1:53:23 PM EDT"
-1819106676185641430,"Wow, this is insane https://t.co/BzSShdSjeo","Aug 1, 4:23:23 PM EDT"
-1819107597745901811,"One day, Tesla will make a drivetrain per second https://t.co/Whj4WAAxzw","Aug 1, 4:27:03 PM EDT"
-1819132905257349474,"🍿 https://t.co/FNbU1mePcJ","Aug 1, 6:07:37 PM EDT"
-1819168277815611870,"Good https://t.co/4DuDILvb5p","Aug 1, 8:28:10 PM EDT"
-1819226640435564765,"Incentives for EVs exist in many states, but seem to be seldom used. Maybe lack of awareness or excessively paperwork and requirements. https://t.co/dl0br4T0mn","Aug 2, 12:20:05 AM EDT"
-1819228610957394055,"Wow https://t.co/bFAeBzPLo5","Aug 2, 12:27:55 AM EDT"
-1819229276517888117,"https://t.co/5ZGAjRyELK","Aug 2, 12:30:33 AM EDT"
-1819235960908874168,"RT @SpaceX: Propellant load is underway for tonight’s launch of 23 @Starlink satellites from Florida → https://t.co/bJFjLCiTbK","Aug 2, 12:57:07 AM EDT"
-1819237184022471027,"https://t.co/3WGzoGX3Mq","Aug 2, 1:01:59 AM EDT"
-1819371300357656890,"RT @cybertruck: First prototype Cybertruck with in-house dry cathode 4680 cells – making it an all dry electrode vehicle https://t.co/NzJxK…","Aug 2, 9:54:54 AM EDT"
-1819397864188969146,"RT @BillMelugin_: BREAKING: The Biden administration has temporarily paused its controversial CHNV mass parole program that allows migrants…","Aug 2, 11:40:28 AM EDT"
-1819457630261465553,"Interview with Lex https://t.co/IIqP0J3Zu2","Aug 2, 3:37:57 PM EDT"
-1819459184620195930,"RT @cb_doge: You can watch the long form videos and podcasts on big screen using screen-cast feature.
-
- https://t.co/Y5YI4qVgpJ","Aug 2, 3:44:08 PM EDT"
-1819459751690096930,"RT @Jason: I’m a benefit of the doubt and always assume good faith guy.
-
-However, we are being asked:
-
-A. To NOT believe what we see with…","Aug 2, 3:46:23 PM EDT"
-1819547664804897200,"RT @cb_doge: The revenue you generate depends on the number of verified ad impressions you receive. I recommend encouraging your audience t…","Aug 2, 9:35:43 PM EDT"
-1819551225504768286,"Raptor 3, SN1 https://t.co/gV1NemIyXU","Aug 2, 9:49:52 PM EDT"
-1819597689283121225,"The amount of work required to simplify the Raptor engine, internalize secondary flow paths and add regenerative cooling for exposed components was staggering.
-
-As a result Raptor 3 doesn’t require any heat shield, eliminating heat shield mass & comp","Aug 3, 12:54:30 AM EDT"
-1819607747203105044,"Interesting https://t.co/skmuBMDkgy","Aug 3, 1:34:28 AM EDT"
-1819613543081103747,"Starlink now available in 102 countries! https://t.co/enkiN79Uma","Aug 3, 1:57:30 AM EDT"
-1819780445942190435,"Worth it https://t.co/Hiirozw3Cj","Aug 3, 1:00:42 PM EDT"
-1819797937414611313,"Just did a walkthrough of the Tesla supercompute cluster at Giga Texas (aka Cortex).
-
-This will be ~100k H100/H200 with massive storage for video training of FSD & Optimus.
-
-Great work by the Tesla team!","Aug 3, 2:10:13 PM EDT"
-1819805363576746229,"Model 3 Performance version is 🔥🔥 https://t.co/gxyYlUlOMG","Aug 3, 2:39:43 PM EDT"
-1819826977055850760,"RT @SpaceX: Performance stats of previous versions:
-
-Raptor 1 (sea level variant)
-Thrust: 185tf
-Specific impulse: 350s
-Engine mass: 2080kg…","Aug 3, 4:05:36 PM EDT"
-1819933282210808173,"RT @johnkrausphotos: https://t.co/IH9tbt8Yra","Aug 3, 11:08:01 PM EDT"
-1819939651718693221,"Home, sweet home https://t.co/VhPNA1rgAE","Aug 3, 11:33:20 PM EDT"
-1820020498320724403,"RT @SpaceX: Falcon 9 delivers 23 @Starlink satellites to orbit from California https://t.co/SWfuTd1Hp7","Aug 4, 4:54:35 AM EDT"
-1820020594160869515,"RT @SpaceX: Falcon 9 lands on the Of Course I Still Love You droneship, completing this booster’s sixth mission https://t.co/tPv4dV9fM4","Aug 4, 4:54:58 AM EDT"
-1820152598894199152,"RT @cb_doge: SpaceX’s mission is to extend consciousness to Mars and then the stars. https://t.co/JvhDtWtsLT","Aug 4, 1:39:31 PM EDT"
-1820221050904359331,"😬 https://t.co/RQk2QOAFPn","Aug 4, 6:11:31 PM EDT"
-1820468077852598435,"RT @KettlebellDan: what can we do to make 𝕏 subscriptions better?","Aug 5, 10:33:07 AM EDT"
-1820565140686979506,"RT @SpaceX: Tracking footage of Falcon 9’s first stage booster landing and sonic boom https://t.co/HNohw3oCCp","Aug 5, 4:58:48 PM EDT"
-1820646651708735553,"Cybertruck review https://t.co/oqf0JXPOqL","Aug 5, 10:22:42 PM EDT"
-1820685675899072930,"https://t.co/FMCQKSB2u6","Aug 6, 12:57:46 AM EDT"
-1820778560694472786,"RT @cb_doge: Citizen Journalism can make this world a better place.
-
-I strongly encourage people around the world to post news about events…","Aug 6, 7:06:51 AM EDT"
-1820779660625482071,"Big difference https://t.co/qnVXGQKTYb","Aug 6, 7:11:14 AM EDT"
-1820783473021391073,"This platform provides a clear and immediate way to refute anything false in the replies and with @CommunityNotes.
-
-The same is not true for legacy media who lie relentlessly, but there is no way to counter their propaganda. https://t.co/BuQfhxj3vy","Aug 6, 7:26:23 AM EDT"
-1820784815815160260,"Arrested for making comments on Facebook!
-
-Is this Britain or the Soviet Union?
-
-Is this accurate @CommunityNotes? https://t.co/ov7lKEUl2C","Aug 6, 7:31:43 AM EDT"
-1820788830171017712,"The same legacy media dingbats who lied repeatedly, claiming “X/Twitter is dying”, are now saying it’s the “largest & most influential platform” 🤣🤣🤣
-
-The real crime here is that my sides hurt from laughing at the irony!
-
-Listen Ed, if you want to r","Aug 6, 7:47:40 AM EDT"
-1820789024535068704,"RT @johnkrausphotos: https://t.co/OACXe8M3YK","Aug 6, 7:48:26 AM EDT"
-1820790297233592361,"Why aren’t all communities protected in Britain? @Keir_Starmer https://t.co/gldyguysNe","Aug 6, 7:53:30 AM EDT"
-1820790775849881902,"Video tips https://t.co/ikpzQxNDCe","Aug 6, 7:55:24 AM EDT"
-1820796779782090960,"Is this accurate @CommunityNotes? https://t.co/NDFgQ301Ht","Aug 6, 8:19:15 AM EDT"
-1820797361515352305,"RT @micsolana: please find it https://t.co/oVASculD3s","Aug 6, 8:21:34 AM EDT"
-1820799076310352124,"In 2030 for making a Facebook comment that the UK government didn’t like https://t.co/UhKDLeCPJb","Aug 6, 8:28:23 AM EDT"
-1820799502577545523,"A dish best served cold 🤌 https://t.co/w5QDM0HdOb","Aug 6, 8:30:04 AM EDT"
-1820803816872161618,"RT @cb_doge: UK Soon: https://t.co/CmbzoLnPQf","Aug 6, 8:47:13 AM EDT"
-1820804792240734655,"Is this still happening? @Keir_Starmer https://t.co/4hbYdfB03Z","Aug 6, 8:51:06 AM EDT"
-1820805335700873619,"What the hell is going on? https://t.co/JyfMJ7yqTt","Aug 6, 8:53:15 AM EDT"
-1820805621534400786,"#TwoTierKeir","Aug 6, 8:54:23 AM EDT"
-1820826990678581269,"The irony is that Facebook doesn’t even exist in 2030","Aug 6, 10:19:18 AM EDT"
-1820830577563484218,"🇬🇧 Top source of news in the UK 🇬🇧 https://t.co/yUsmEfzvLl","Aug 6, 10:33:33 AM EDT"
-1820849358402670800,"We tried being nice for 2 years and got nothing but empty words.
-
-Now, it is war. https://t.co/MEzH0vqz0p","Aug 6, 11:48:11 AM EDT"
-1820849880283107725,"We tried peace for 2 years, now it is war https://t.co/elgT62uDtF","Aug 6, 11:50:15 AM EDT"
-1820850115789160707,"Well said by @LindayaX!
- https://t.co/8nbWkhl5R4","Aug 6, 11:51:12 AM EDT"
-1820851090138505570,"I strongly encourage any company who has been systematically boycotted by advertisers to file a lawsuit.
-
-There may also be criminal liability via the RICO Act.","Aug 6, 11:55:04 AM EDT"
-1820852107932545242,"Everyone who has been boycotted should file a lawsuit in every country they’ve been boycotted https://t.co/TG2nE5LZAk","Aug 6, 11:59:06 AM EDT"
-1821102888673853901,"Busy week","Aug 7, 4:35:37 AM EDT"
-1821105690603114795,"Indeed https://t.co/d1p6ESn3Kn","Aug 7, 4:46:45 AM EDT"
-1821106660732989827,"Kamala is quite literally a communist.
-
-She wants not merely equal opportunity, but equal outcomes. https://t.co/XIS8HSbLbC","Aug 7, 4:50:37 AM EDT"
-1821108788968980830,"RT @lindayaX: A Message to X Users https://t.co/6bZOYPhWVa","Aug 7, 4:59:04 AM EDT"
-1821189646136889494,"True https://t.co/Cu2iJawBB1","Aug 7, 10:20:22 AM EDT"
-1821221316168388915,"Time to air the dirty laundry! https://t.co/ZUM7sk8Cth","Aug 7, 12:26:13 PM EDT"
-1821408782712291808,"Population collapse is accelerating https://t.co/7jeDBC62Lw","Aug 8, 12:51:08 AM EDT"
-1821408930062348662,"#1 in both categories! https://t.co/J15mdZlerV","Aug 8, 12:51:43 AM EDT"
-1821412809265357232,"Your time is worth it https://t.co/nG98E1PIBS","Aug 8, 1:07:08 AM EDT"
-1821413539590082687,"RT @MarioNawfal: 🚨🇺🇸STARLINK REVOLUTIONIZES RURAL INTERNET ACCESS
-
-During a fireside chat, SpaceX President & COO Gwynne Shotwell confirmed…","Aug 8, 1:10:02 AM EDT"
-1821415290112209097,"https://t.co/OEKktDNqPp","Aug 8, 1:17:00 AM EDT"
-1821459215007035568,"The Woke Stasi https://t.co/ffNKIWdJM8","Aug 8, 4:11:32 AM EDT"
-1821459846681788487,"Is this accurate? @CommunityNotes https://t.co/dZRzj3AiRZ","Aug 8, 4:14:03 AM EDT"
-1821460967261421664,"RT @cb_doge: 𝕏 is ranked #1 in both categories 🇺🇸
-
-Share this with everyone because mainstream media will never show it. Encourage your fam…","Aug 8, 4:18:30 AM EDT"
-1821461728355619031,"RT @0rf: EXCLUSIVE: In a newly discovered Zoom recording, the Biden/Harris team reveals how they manipulated voters to think Biden's mental…","Aug 8, 4:21:31 AM EDT"
-1821461927681482947,"RT @cb_doge: Same ad on two platforms, 𝕏 and Instagram.
-
-𝕏 - ad got community noted for using fake gameplay video.... truth > money
-
-Instag…","Aug 8, 4:22:19 AM EDT"
-1821462492423553438,"RT @MarioNawfal: 🇺🇸 SPACEX SETS DATE FOR HISTORIC POLARIS DAWN MISSION
-
-They are aiming for August 26 to begin the launch of Polaris Dawn,…","Aug 8, 4:24:33 AM EDT"
-1821463340654432359,"RT @shellenberger: Tim Walz says he cares about public safety and freedom, but he doesn't. In 2020, he waited 3 days to deploy the National…","Aug 8, 4:27:56 AM EDT"
-1821469679577129018,"RT @andst7: “Freedom is much like the air: one notices how important it is just when it begins to be lacking”","Aug 8, 4:53:07 AM EDT"
-1821471603819212836,"“Detainment Camps” … https://t.co/hWF8rX1yum","Aug 8, 5:00:46 AM EDT"
-1821478867279688084,"RT @elon_docs: Elon Musk: At a certain point, the AI will be smarter than all humans combined. I think the most important thing at that poi…","Aug 8, 5:29:38 AM EDT"
-1821478981159252047,"RT @esa: Sometimes, Mars just seems to smile back at you 🙂 https://t.co/6lLFsFfpwL","Aug 8, 5:30:05 AM EDT"
-1821480072441635194,"Chef’s kiss 🤌 @CommunityNotes https://t.co/ewRMYja5mC","Aug 8, 5:34:25 AM EDT"
-1821484484421710302,"This is actually happening https://t.co/50NdFdlZfi","Aug 8, 5:51:57 AM EDT"
-1821581350975189151,"Usage of this platform reached another all-time high https://t.co/vyDsseq1IP","Aug 8, 12:16:52 PM EDT"
-1821689943904702664,"Raptor 3 first firing today https://t.co/5wjnBLjvxT","Aug 8, 7:28:22 PM EDT"
-1821690413167649140,"lol https://t.co/IplHNiUtlr","Aug 8, 7:30:14 PM EDT"
-1821700452930515321,"https://t.co/RdqpkKV2bv","Aug 8, 8:10:08 PM EDT"
-1821701127232221244,"https://t.co/MFJGjA3p5w","Aug 8, 8:12:48 PM EDT"
-1821701528933056614,"The parts that appear white are actually black, but covered in ice","Aug 8, 8:14:24 PM EDT"
-1821702722074108375,"Just livin’ the meme https://t.co/0AewlLFrPo","Aug 8, 8:19:09 PM EDT"
-1821736111829369185,"Biden/Kamala vs Trump/Vance https://t.co/9DBW9eJtqa https://t.co/9VNXYD9jXh","Aug 8, 10:31:49 PM EDT"
-1821789294513541476,"Yes https://t.co/602tzRJUGV","Aug 9, 2:03:09 AM EDT"
-1821791330248360043,"For a more detailed explanation of the major changes from Raptor 2 to 3 https://t.co/5H5js0EHBV","Aug 9, 2:11:15 AM EDT"
-1821792597985136857,"💯 https://t.co/bOLBr9dUoI","Aug 9, 2:16:17 AM EDT"
-1821794462562943021,"“Voting machines are so safe you can’t believe it!” https://t.co/UUE8hHCrnY","Aug 9, 2:23:41 AM EDT"
-1821796830608253387,"https://t.co/QUcsd0LasN","Aug 9, 2:33:06 AM EDT"
-1821917780381208712,"The rise in prices (inflation) is caused by government overspending, which increases the amount of money faster than the increase in goods & services output.
-
-That is the vast majority of the problem.
-
-Inflation was particularly bad during the Covid ","Aug 9, 10:33:43 AM EDT"
-1821923328510054495,"Population is collapsing rapidly https://t.co/AjIa4lPMRu","Aug 9, 10:55:45 AM EDT"
-1821923397217218882,"Yeah https://t.co/gGnDjrceEi","Aug 9, 10:56:02 AM EDT"
-1821951858199408978,"Amazing https://t.co/Lf0UaMwGnh","Aug 9, 12:49:07 PM EDT"
-1821952295866663423,"Exactly https://t.co/C6Fam00w61","Aug 9, 12:50:52 PM EDT"
-1821960960355270798,"https://t.co/yec8ecmU52","Aug 9, 1:25:18 PM EDT"
-1821961126038368753,"While Google and Meta struck secret ads deal to target teenagers https://t.co/SZsuqbK916","Aug 9, 1:25:57 PM EDT"
-1821961409413947616,"Support freedom of speech in the UK!","Aug 9, 1:27:05 PM EDT"
-1821963588644254173,"Interesting thread https://t.co/iC3eCakVf4","Aug 9, 1:35:44 PM EDT"
-1821985220255691051,"The origin of the word “slave” is slav, which referred to white people taken as slaves https://t.co/sKmfUhqvbt","Aug 9, 3:01:42 PM EDT"
-1821986025188814940,"https://t.co/r0ZHPJTnXP.","Aug 9, 3:04:53 PM EDT"
-1821986710420648188,"Order Starlink online in 2 mins https://t.co/JiN3tyAmMy","Aug 9, 3:07:37 PM EDT"
-1821988650563080214,"Problematic https://t.co/rYrWHSpHzH","Aug 9, 3:15:19 PM EDT"
-1822137346705281237,"Hmm https://t.co/fsveVXeMBZ","Aug 10, 1:06:11 AM EDT"
-1822149783735107805,"🎯 https://t.co/A0KZtLbnF6","Aug 10, 1:55:37 AM EDT"
-1822151836171640992,"Live free or die https://t.co/Tr0r4fu4bi","Aug 10, 2:03:46 AM EDT"
-1822157611296280641,"RT @dogeofficialceo: “You’re sheltering shitposters under your floorboards, are you not?” https://t.co/7TpMLybbtY","Aug 10, 2:26:43 AM EDT"
-1822159438884593930,"RT @WallStreetSilv: The UK police now … https://t.co/S5jbFq5iOc","Aug 10, 2:33:58 AM EDT"
-1822236785050529832,"Observing protests is apparently illegal https://t.co/BbhJ0wqT7Y","Aug 10, 7:41:19 AM EDT"
-1822238167216345245,"Freedom of speech is the bedrock of democracy. If the truth is suppressed, it is impossible to make an informed voting decision.
-
-The degree to which freedom of speech is being undermined around the world is extremely alarming.","Aug 10, 7:46:49 AM EDT"
-1822239573050528093,"Wow https://t.co/LyClXrswUB","Aug 10, 7:52:24 AM EDT"
-1822240041785024782,"Sure seems like unequal justice in the UK https://t.co/4obUDDE7S1","Aug 10, 7:54:16 AM EDT"
-1822240335197512098,"Obviously true https://t.co/p8xnAgniKu","Aug 10, 7:55:26 AM EDT"
-1822245323764281415,"RT @MarioNawfal: ELON: FREEDOM OF SPEECH IS THE BEDROCK OF DEMOCRACY
-
-“If the truth is suppressed, it is impossible to make an informed vot…","Aug 10, 8:15:15 AM EDT"
-1822247751284908132,"Is this true @CommunityNotes? https://t.co/bW6U9suVIM","Aug 10, 8:24:54 AM EDT"
-1822248012380254398,"What is going on in the UK? https://t.co/o6YYnyGa4W","Aug 10, 8:25:56 AM EDT"
-1822252793320685712,"https://t.co/HFk4CYvRmJ","Aug 10, 8:44:56 AM EDT"
-1822253645154459690,"RT @Not_the_Bee: The Trump team just released this montage of Kamala Harris speaking and I cannot believe this lady is our vice president h…","Aug 10, 8:48:19 AM EDT"
-1822254173359890461,"It’s 2030 in the UK & you’re being executed for posting a meme …","Aug 10, 8:50:25 AM EDT"
-1822254306868793736,"True https://t.co/kD9Vt96ZXd","Aug 10, 8:50:57 AM EDT"
-1822290335059353965,"Found this pic of the UK justice system https://t.co/qD1LNwVme3","Aug 10, 11:14:07 AM EDT"
-1822294737677607092,"Facebook aka “Meta” can never be trusted https://t.co/y1NtbRoqpI","Aug 10, 11:31:36 AM EDT"
-1822296775736152553,"Good for @BorisJohnson https://t.co/DTx24ev4PI","Aug 10, 11:39:42 AM EDT"
-1822296931504140369,"Yup https://t.co/PU4djY0kBk","Aug 10, 11:40:19 AM EDT"
-1822297279241306262,"This meme could get you 3 years in prison in the UK (actually)","Aug 10, 11:41:42 AM EDT"
-1822301100046733505,"This is messed up https://t.co/4BKyHl1vIK","Aug 10, 11:56:53 AM EDT"
-1822348987581485150,"True https://t.co/Ib1BPt46bV","Aug 10, 3:07:10 PM EDT"
-1822349748013031808,"Starlink! https://t.co/9o6TYZCCeJ","Aug 10, 3:10:12 PM EDT"
-1822350930592842127,"Great post on humanity’s population collapse! https://t.co/Rb3iEDseAW","Aug 10, 3:14:54 PM EDT"
-1822352230269202465,"https://t.co/VpFwg8C8nC","Aug 10, 3:20:04 PM EDT"
-1822352608993882242,"😂 https://t.co/pOP4At3M1A","Aug 10, 3:21:34 PM EDT"
-1822352993422901402,"https://t.co/0vcCOU5ceE","Aug 10, 3:23:05 PM EDT"
-1822355008559489216,"https://t.co/9twcXK6OuG","Aug 10, 3:31:06 PM EDT"
-1822355312214475050,"💯 https://t.co/asxpYpInIk","Aug 10, 3:32:18 PM EDT"
-1822358934587388182,"RT @historyinmemes: Bee Gees acapella of "How deep is your love" might be better than the original version (1998) https://t.co/JmHA34jjIl","Aug 10, 3:46:42 PM EDT"
-1822360569459953741,"Yes https://t.co/fakC7xpakn","Aug 10, 3:53:12 PM EDT"
-1822362101882712378,"Messed up https://t.co/QFXPqUwiJV","Aug 10, 3:59:17 PM EDT"
-1822367596739510719,"RT @cb_doge: The reason why Elon Musk is constantly targeted by the media. https://t.co/ZaUNtYgyAN","Aug 10, 4:21:07 PM EDT"
-1822371230214664278,"Hoping to do more to help people in Gaza https://t.co/YFwv0ZvYDS","Aug 10, 4:35:33 PM EDT"
-1822416885625004449,"If movie dialogue was more accurate https://t.co/gPtZ1hDnSu","Aug 10, 7:36:59 PM EDT"
-1822439124546343093,"My new T-shirt https://t.co/UoUXkHpIta","Aug 10, 9:05:21 PM EDT"
-1822449612705472792,"RT @MarioNawfal: 🚨MUST WATCH: MR. BEAN'S DEFINITIVE DEFENSE OF FREE SPEECH (FULL VIDEO)
-
-Rowan Atkinson:
-
-"The clear problem with the outla…","Aug 10, 9:47:01 PM EDT"
-1822639375488057507,"RT @SpaceX: Falcon 9 delivers 21 @Starlink satellites to low-Earth orbit from pad 40 in Florida https://t.co/E5SANHcZZh","Aug 11, 10:21:04 AM EDT"
-1822747138276897186,"Maybe true, maybe not, but the Google political bias is certainly troubling https://t.co/xC9q37OEjk","Aug 11, 5:29:17 PM EDT"
-1822753713762738559,"First thing a dictator does is ban private ownership of guns. Chavez did this in 2012, so the people couldn’t fight back. https://t.co/7BRlpBAe13","Aug 11, 5:55:25 PM EDT"
-1822753780695535797,"https://t.co/MqwSUEhDKG","Aug 11, 5:55:41 PM EDT"
-1822754139929301330,"Of course they always say it’s for your own safety …","Aug 11, 5:57:06 PM EDT"
-1822764457640055012,"Grok 2 beta release soon https://t.co/t6e9RcXPkl","Aug 11, 6:38:06 PM EDT"
-1822764729992929481,"How time flies https://t.co/6Th4wsKzog","Aug 11, 6:39:11 PM EDT"
-1822768922996691026,"Is there any study contradicting this one? https://t.co/Iz2VUDVEtf","Aug 11, 6:55:51 PM EDT"
-1822799027580137510,"Live conversation on 𝕏 with @realDonaldTrump & me at 8pm ET tomorrow","Aug 11, 8:55:28 PM EDT"
-1822800186520838531,"This is unscripted with no limits on subject matter, so should be highly entertaining!
-
-If you have specific questions & comments, post them under the chat.","Aug 11, 9:00:05 PM EDT"
-1822800951855477133,"Am going to do some system scaling tests tonight & tomorrow in advance of the conversation with @realDonaldTrump","Aug 11, 9:03:07 PM EDT"
-1822802959404835108,"Streaming Test https://t.co/zZ6GXctYFu","Aug 11, 9:11:06 PM EDT"
-1822808777952747910,"https://t.co/WSnmI1aciI","Aug 11, 9:34:13 PM EDT"
-1822810216351805578,"Stream Test 2 https://t.co/flDYGbv1HI","Aug 11, 9:39:56 PM EDT"
-1822827074299584955,"Entertainment guaranteed! https://t.co/5oR7YLVQr6","Aug 11, 10:46:55 PM EDT"
-1822856687721791865,"RT @boringcompany: Prufrock-4 has begun testing in Boring Factory in Bastrop, TX.
-Prufrock-4 is 308 feet long (~1 football field), weighs…","Aug 12, 12:44:36 AM EDT"
-1822890989327151527,"True https://t.co/55gEka6DRS","Aug 12, 3:00:54 AM EDT"
-1822998375484305479,"RT @SpaceX: Falcon 9 ascends with the dawn and 23 @Starlink satellites https://t.co/u8yuJjIqlw","Aug 12, 10:07:37 AM EDT"
-1823027478740468026,"https://t.co/lN4cwAqEox","Aug 12, 12:03:15 PM EDT"
-1823072006096691451,"https://t.co/qa7RAbTnHh","Aug 12, 3:00:11 PM EDT"
-1823073478481965199,"https://t.co/BMj1ePI3Kx","Aug 12, 3:06:02 PM EDT"
-1823075494516158815,"Wow, this is concerning https://t.co/0akzuSLHDa","Aug 12, 3:14:03 PM EDT"
-1823076043017630114,"To be honest, I really wanted to respond with this Tropic Thunder meme, but I would NEVER do something so rude & irresponsible! https://t.co/XhUxCSGFNP https://t.co/jL0GDW5QUx","Aug 12, 3:16:14 PM EDT"
-1823087408046547230,"A society should “make the right things easy and the wrong things hard” (Ray Hunt)","Aug 12, 4:01:24 PM EDT"
-1823104254879367450,"This is cool https://t.co/6GNfpjwHi6","Aug 12, 5:08:20 PM EDT"
-1823109887335022638,"Wise words of JFK https://t.co/KrmHNJM1SP","Aug 12, 5:30:43 PM EDT"
-1823134905607602385,"Wow https://t.co/Gi1UuSX3H8","Aug 12, 7:10:08 PM EDT"
-1823135966472859785,"Conversation with @realDonaldTrump in 45 minutes!","Aug 12, 7:14:21 PM EDT"
-1823145146562814413,"My use of the word conversation is deliberate.
-
-This is so that people understand how @realDonaldTrump talks when it’s a conversation, rather than an interview.
-
-Nobody is quite themselves in an interview, so it’s hard to understand what they’re really l","Aug 12, 7:50:49 PM EDT"
-1823146750670233818,"Conversation with @realDonaldTrump starts in a few minutes https://t.co/Ksm6UqdIq6","Aug 12, 7:57:12 PM EDT"
-1823146831406338500,"RT @realDonaldTrump: https://t.co/PLHekD9jzW","Aug 12, 7:57:31 PM EDT"
-1823152153445404990,"There appears to be a massive DDOS attack on 𝕏. Working on shutting it down.
-
-Worst case, we will proceed with a smaller number of live listeners and post the conversation later.","Aug 12, 8:18:40 PM EDT"
-1823153581882810650,"We tested the system with 8 million concurrent listeners earlier today https://t.co/ymqGBFEJX0","Aug 12, 8:24:21 PM EDT"
-1823154463831728628,"We will proceed with the smaller number of concurrent listeners at 8:30 ET and then post the unedited audio immediately thereafter https://t.co/oxF8PsNHnZ","Aug 12, 8:27:51 PM EDT"
-1823195506899833014,"Yup https://t.co/bkL6PCoMgl","Aug 12, 11:10:56 PM EDT"
-1823209933564965238,"Yea https://t.co/4eHZc4rv2d","Aug 13, 12:08:16 AM EDT"
-1823210863148589540,"Anyone have a <1 hour edit of the highlights of the @realDonaldTrump conversation?
-
-That’s what most people will be looking for tomorrow.","Aug 13, 12:11:58 AM EDT"
-1823212033816584201,"Almost all of legacy media will trash the Trump conversation, thus driving total listeners probably past 200+ million 😂 https://t.co/44Mhr2hkAu","Aug 13, 12:16:37 AM EDT"
-1823212101172924503,"RT @ajtourville: Elon Musk: “Inflation comes from government overspending because the checks never bounce when it’s written by the governme…","Aug 13, 12:16:53 AM EDT"
-1823212288071045334,"Yeah https://t.co/N8XzeadvIJ","Aug 13, 12:17:37 AM EDT"
-1823213224009110011,"RT @DanielDiMartino: Elon Musk might be the most positive influence Trump has. In the space so far he has advanced:
-
-- Cutting government s…","Aug 13, 12:21:20 AM EDT"
-1823217057737187699,"This is the long version. Shorter edit of highlights coming soon. https://t.co/Ksm6UqdIq6","Aug 13, 12:36:34 AM EDT"
-1823217769229566251,"Happy to host Kamala on an 𝕏 Spaces too","Aug 13, 12:39:24 AM EDT"
-1823218291097395334,"It will blow up even more tomorrow https://t.co/2Co49tzce5","Aug 13, 12:41:29 AM EDT"
-1823218454369124491,"https://t.co/6IJOrrtCuc","Aug 13, 12:42:07 AM EDT"
-1823231216474309082,"https://t.co/W0t0NIxAdQ","Aug 13, 1:32:50 AM EDT"
-1823232603517862079,"It has become so obvious https://t.co/sgdbgCsbbM","Aug 13, 1:38:21 AM EDT"
-1823249070296797515,"Combined views of the conversation with @realDonaldTrump and subsequent discussion by other accounts now ~1 billion https://t.co/s8x8QmdmnY","Aug 13, 2:43:47 AM EDT"
-1823254086126608862,"https://t.co/cPUMFx9Qu5","Aug 13, 3:03:43 AM EDT"
-1823254636536688934,"Yes https://t.co/50hVQBbV2b","Aug 13, 3:05:54 AM EDT"
-1823367936909951302,"A wall of negative headlines was so predictable. They’re such NPCs 🤣🤣
-
-All this does is drive even more people to listen to the conversation themselves and realize how much the legacy media lies to them! https://t.co/DkvsKn2C7A","Aug 13, 10:36:07 AM EDT"
-1823370085769056354,"Lmaooo, the public knows https://t.co/7QEGNMHQSq","Aug 13, 10:44:39 AM EDT"
-1823373270789308876,"𝕏 app downloads reach all-time high! https://t.co/RkTgcKwxfc","Aug 13, 10:57:19 AM EDT"
-1823374270275211751,"Wow, this is insane https://t.co/QKjZVRN4HY","Aug 13, 11:01:17 AM EDT"
-1823380547596362150,"Uhh … what? Let’s use paper ballots! https://t.co/7jZ7UPc1AI","Aug 13, 11:26:13 AM EDT"
-1823388866222412152,"So obvious https://t.co/hoPE4vWcgB","Aug 13, 11:59:17 AM EDT"
-1823389135144432057,"You’re welcome! https://t.co/E680pd0hia","Aug 13, 12:00:21 PM EDT"
-1823398264995193167,"Conversation with @realDonaldTrump with topic timestamps https://t.co/ziLJEUhnE7","Aug 13, 12:36:38 PM EDT"
-1823398394527658251,"Yup https://t.co/PLEVzGgSri","Aug 13, 12:37:09 PM EDT"
-1823407420183560601,"True https://t.co/bnvFf40pfD","Aug 13, 1:13:00 PM EDT"
-1823411635970826633,"Doing the @realDonaldTrump Space at my friend’s ranch in Wyoming https://t.co/5kz6a3moC5","Aug 13, 1:29:46 PM EDT"
-1823413643826155958,"Citizen journalism from actual domain experts and people actually on the ground is much faster, more accurate and has less bias than the legacy media! https://t.co/pbIzhjdbsq","Aug 13, 1:37:44 PM EDT"
-1823417361975935355,"RT @realJeremyCarl: Do I need to spell it out for you? https://t.co/NqAddT5RZB","Aug 13, 1:52:31 PM EDT"
-1823418481918009496,"In case you missed the original recording.
-
-Skip the beginning part. https://t.co/Ksm6UqdIq6","Aug 13, 1:56:58 PM EDT"
-1823418684800688640,"RT @MarioNawfal: ELON: CITIZEN JOURNALISM OUTPACES LEGACY MEDIA
-
-“Citizen journalism from actual domain experts and people actually on the…","Aug 13, 1:57:46 PM EDT"
-1823482748239225330,"It’s wild 😂 https://t.co/xjv27kPyPx","Aug 13, 6:12:20 PM EDT"
-1823498527743598968,"Conversation with @realDonaldTrump with higher quality audio https://t.co/bj25prt3zG","Aug 13, 7:15:02 PM EDT"
-1823514122316808644,"This platform is being asked to censor content in Brazil where the censorship demands require us to violate Brazilian law! That is not right. https://t.co/ovsIA1QBNg","Aug 13, 8:17:00 PM EDT"
-1823566118608625721,"lol https://t.co/oIGwZV2r6F","Aug 13, 11:43:37 PM EDT"
-1823567146661896401,"Very important! An amazing number of people still believe the legacy media propaganda. https://t.co/S7nEmf1Dr7","Aug 13, 11:47:42 PM EDT"
-1823590581190492398,"Tesla HQ pic taken this morning https://t.co/qfucSpBK17","Aug 14, 1:20:49 AM EDT"
-1823590834316660961,"Yup https://t.co/0tbiJpSzz5","Aug 14, 1:21:50 AM EDT"
-1823593475205685588,"R
-R
-R
-R
-Sus","Aug 14, 1:32:19 AM EDT"
-1823599371084292532,"Congrats to the hardworking @xAI team!
-
-Rate of progress is excellent. https://t.co/gKlZeTN0Tw","Aug 14, 1:55:45 AM EDT"
-1823600291096502279,"Rate of progress of Grok is 🚀 🚀🚀 https://t.co/alsFkhPrct","Aug 14, 1:59:24 AM EDT"
-1823600763798687858,"Join @xAI! https://t.co/dNZzL5xTj4","Aug 14, 2:01:17 AM EDT"
-1823604723553067156,"RT @lxuechen: Have been post-training Grok2 for a while and am excited to share that it’s officially out!!
-
-We’ve been testing early versio…","Aug 14, 2:17:01 AM EDT"
-1823608213826396602,"💫 https://t.co/qa0EUnspSc","Aug 14, 2:30:53 AM EDT"
-1823612165565391307,"RT @ajtourville: Grok 2 (beta) is truthful and well informed
-
-https://t.co/A50ISfQwLl","Aug 14, 2:46:36 AM EDT"
-1823625896802312560,"😛😂 https://t.co/p2fBAAwVcW","Aug 14, 3:41:09 AM EDT"
-1823723016741961818,"Interesting demographics https://t.co/IRCUvEVfSi","Aug 14, 10:07:04 AM EDT"
-1823725011280257501,"Even Neo had to “Accept cookies to continue” https://t.co/a5mIc76M5F","Aug 14, 10:15:00 AM EDT"
-1823728989921534265,"Drive long distance anywhere in America! https://t.co/mL65efr097","Aug 14, 10:30:49 AM EDT"
-1823730362264248798,"https://t.co/huWaX3mHr7","Aug 14, 10:36:16 AM EDT"
-1823732657714553031,"https://t.co/FQaqHoTeBd","Aug 14, 10:45:23 AM EDT"
-1823733168530448698,"https://t.co/1VAGKqvBtF","Aug 14, 10:47:25 AM EDT"
-1823733583913337338,"RT @farzyness: The US has a fertility crisis, but we can easily fix it.
-
-The fertility rate in the US is below replacement rate, at 1.78 bi…","Aug 14, 10:49:04 AM EDT"
-1823736173661184281,"Do we have great moves or what? 🤣🤣","Aug 14, 10:59:21 AM EDT"
-1823742501884453312,"Haters will say this is AI 🕺🕺 https://t.co/vqWVxiYXeD","Aug 14, 11:24:30 AM EDT"
-1823745969575637416,"Subscribe to 𝕏 Premium for the most fun! https://t.co/udJv6bcnID","Aug 14, 11:38:17 AM EDT"
-1823746426440179950,"RT @cb_doge: Just a reminder:
-
-𝕏 will pay legal bills of users 'unfairly treated' by their employer due to posting something on this platfo…","Aug 14, 11:40:06 AM EDT"
-1823756208207196235,"😂 https://t.co/2M1Srl0rbk","Aug 14, 12:18:58 PM EDT"
-1823759092944658559,"😂 https://t.co/Lq6VMj8XMy","Aug 14, 12:30:26 PM EDT"
-1823761547031937072,"Grok is the most fun AI in the world! https://t.co/5ZS2iDkwim","Aug 14, 12:40:11 PM EDT"
-1823763121917583812,"https://t.co/TRGdROopQu","Aug 14, 12:46:26 PM EDT"
-1823793687169785863,"Only $8/month (if you subscribe via web) to get AI access, far fewer ads and many awesome features! https://t.co/a6d0znPSa7","Aug 14, 2:47:54 PM EDT"
-1823796943954567284,"It is hilariously absurd to claim that CNN has no bias, as even the liberal audience of Colbert knows 😂
- https://t.co/p1iJDbYDTS","Aug 14, 3:00:50 PM EDT"
-1823803944260485150,"RT @dogeofficialceo: I'm not sure there's a better bang-for-your-buck subscription than X Premium on the market right now. 🔥","Aug 14, 3:28:39 PM EDT"
-1823805120385310796,"Worth it! https://t.co/GSsuSgTWGM","Aug 14, 3:33:20 PM EDT"
-1823805974605652406,"RT @shaunmmaguire: Grok-2 is a crazy improvement, go play with it","Aug 14, 3:36:43 PM EDT"
-1823828864474513497,"Most American-made car in America
- https://t.co/2CcdKxPGtp","Aug 14, 5:07:41 PM EDT"
-1823833376182427747,"RT @cb_doge: This image was generated by AI using Grok. https://t.co/jheH8ly9ct","Aug 14, 5:25:36 PM EDT"
-1823864180400906326,"😂 https://t.co/6nqId9tzgi","Aug 14, 7:28:01 PM EDT"
-1824019125720539371,"Good examples of how to make a wide range of cool images with Grok https://t.co/t1THOiCWgJ","Aug 15, 5:43:42 AM EDT"
-1824177430606778646,"🎶 Starships were meant to fly 🎶 https://t.co/TbiI4bxx8e","Aug 15, 4:12:45 PM EDT"
-1824189343386284066,"Haha very accurate!
-
-Grok could give you news that’s actually useful & doesn’t just make you feel sad. https://t.co/BgUyJIM1iy","Aug 15, 5:00:05 PM EDT"
-1824276414931116276,"RT @thecaptain_nemo: https://t.co/AKhLhNOVYo","Aug 15, 10:46:05 PM EDT"
-1824333954519900371,"Yes https://t.co/ooLCEECkJp","Aug 16, 2:34:43 AM EDT"
-1824409551338148309,"What happens when price controls are mandated
-https://t.co/we0uQnBr9R.","Aug 16, 7:35:07 AM EDT"
-1824410315422871867,"Inflation is caused by the Federal government spending more than it earns, because they just print more money to make up the difference.
-
-To solve inflation, reduce wasteful government spending. Your tax dollars should be spent well, not poorly.","Aug 16, 7:38:09 AM EDT"
-1824410638707237102,"It’s crazy how much people trust the media in Europe! https://t.co/ojrQcVeFZ0","Aug 16, 7:39:26 AM EDT"
-1824411157269975500,"Exactly https://t.co/TRqa4XtEAE","Aug 16, 7:41:30 AM EDT"
-1824415602032754871,"Always view to the source material https://t.co/dTd6amukYn","Aug 16, 7:59:10 AM EDT"
-1824423656266555474,"Kiss, kiss 🔫🔫","Aug 16, 8:31:10 AM EDT"
-1824428691138429068,"RT @SpaceX: Falcon 9 launches the @Maxar 2 mission to orbit from Florida and lands on Landing Zone 1 https://t.co/zudzTUOJpd","Aug 16, 8:51:10 AM EDT"
-1824466456207094216,"The memes know https://t.co/3NROLxCyaw","Aug 16, 11:21:14 AM EDT"
-1824470434622083589,"But, amazingly, some people still believe the legacy media! https://t.co/wLMxTZWFZj","Aug 16, 11:37:03 AM EDT"
-1824571630611251681,"Try Grok 2! https://t.co/L4cRyeJ4dZ","Aug 16, 6:19:10 PM EDT"
-1824637308215189742,"RT @SpaceX: Falcon 9 launches 116 spacecraft to orbit, completing our 375th mission! https://t.co/M6Lkpp3TXZ","Aug 16, 10:40:09 PM EDT"
-1824639011710779760,"https://t.co/CvvNGcujVs","Aug 16, 10:46:55 PM EDT"
-1824646750352609687,"RT @MarioNawfal: DOUGLAS MURRAY: ELON HAS THE GUTS TO SAY THE TRUTH ON THE SITUATION IN THE UK
-
-“Jonathan Freedland of the Guardian [who c…","Aug 16, 11:17:40 PM EDT"
-1824652682545553634,"These demands violate Brazilian, Argentinian and US law! https://t.co/IYY35C4nIx","Aug 16, 11:41:14 PM EDT"
-1824663503287759332,"Great explanation of inflation by @friedberg https://t.co/nxL0cKp5RX","Aug 17, 12:24:14 AM EDT"
-1824668946445865108,"RT @WallStreetSilv: Flashback:
-
-NPR CEO Katherine Maher telling us that the “truth gets in the way of getting things done” 👀👀
-
-This is what…","Aug 17, 12:45:52 AM EDT"
-1824839784852013125,"Due to demands by “Justice” @Alexandre in Brazil that would require us to break (in secret) Brazilian, Argentinian, American and international law, 𝕏 has no choice but to close our local operations in Brazil.
-
-He is an utter disgrace to justice. https://","Aug 17, 12:04:43 PM EDT"
-1824840482633244927,"RT @GlobalAffairs: Last night, Alexandre de Moraes threatened our legal representative in Brazil with arrest if we do not comply with his c…","Aug 17, 12:07:29 PM EDT"
-1824840500266111173,"RT @GlobalAffairs: https://t.co/LeL7gQRKXY","Aug 17, 12:07:33 PM EDT"
-1824843760934552024,"No question that Moraes needs to leave. Having a “justice” who repeatedly and egregiously violates the law is no justice at all. https://t.co/9luG9oDmOU","Aug 17, 12:20:31 PM EDT"
-1824844738484441186,"RT @RobertMSterling: People need to stop overreacting about Kamala’s plan to reduce food inflation, as if it would lead to communism, mass…","Aug 17, 12:24:24 PM EDT"
-1824846946839966127,"Honored to have been the convocation speaker yesterday at @WestPoint_USMA!","Aug 17, 12:33:10 PM EDT"
-1824849359156171108,"The resemblance is uncanny 🤣🤣
-
-Alexandre de Voldemort https://t.co/IXR569y2qT","Aug 17, 12:42:45 PM EDT"
-1824849651071107207,"https://t.co/XThtUM5M3m","Aug 17, 12:43:55 PM EDT"
-1824849877286703268,"Accurate conclusion (read the whole post) https://t.co/E0JcF2lxoG","Aug 17, 12:44:49 PM EDT"
-1824854062631710875,"RT @cb_doge: 𝕏 is the #1 news app in Brazil on the AppStore.
-
-Alexandre de Moraes is demanding censorship of the only source of truth in Br…","Aug 17, 1:01:27 PM EDT"
-1824854726657049023,"The decision to close the 𝕏 office in Brazil was difficult, but, if we had agreed to @alexandre’s (illegal) secret censorship and private information handover demands, there was no way we could explain our actions without being ashamed.","Aug 17, 1:04:05 PM EDT"
-1824891373822304537,"Exactly https://t.co/2xlFqU2PFR","Aug 17, 3:29:43 PM EDT"
-1824897737239785558,"RT @DeanUsma: “Curiosity. Try to read as much as possible. Learn as much as possible in many different fields and apply critical thinking.”…","Aug 17, 3:55:00 PM EDT"
-1824997390908022785,"Very important https://t.co/ht9JYnwZx6","Aug 17, 10:30:59 PM EDT"
-1825046811456778315,"Strange days https://t.co/fSiiF3gm46","Aug 18, 1:47:22 AM EDT"
-1825153729085018175,"RT @Tesla: Parents –
-
-New Parental Controls give you safety & peace of mind while your teen's out driving
-
-Set max speed limit, reduce acce…","Aug 18, 8:52:13 AM EDT"
-1825153865177579846,"RT @niccruzpatane: UPDATED: Since buying our Tesla Model Y Performance in September of 2021, these features have been added all through OTA…","Aug 18, 8:52:45 AM EDT"
-1825309210977968585,"https://t.co/aV39ntdkac","Aug 18, 7:10:03 PM EDT"
-1825318147974373766,"First SpaceX spacewalk mission launches in a week. This will be epic. https://t.co/U9OSmDR2ti","Aug 18, 7:45:33 PM EDT"
-1825342542482755845,"🎯 https://t.co/XrsM4EsGmU","Aug 18, 9:22:30 PM EDT"
-1825352846876839950,"Room for improvement lol
- https://t.co/ywCBgB5uJ6","Aug 18, 10:03:26 PM EDT"
-1825363923006017838,"https://t.co/dhOWoN5Wif","Aug 18, 10:47:27 PM EDT"
-1825370379910541434,"How will we ever know what’s real?
- https://t.co/JuoQrRruDo","Aug 18, 11:13:06 PM EDT"
-1825395243560128667,"Are you still seeing a lot of bots in replies?","Aug 19, 12:51:54 AM EDT"
-1825406519690641663,"Grok, are the bots in the room with us now? https://t.co/RJMzqkIux7","Aug 19, 1:36:43 AM EDT"
-1825406718462808247,"Yeah https://t.co/UqYlxXNjcT","Aug 19, 1:37:30 AM EDT"
-1825449897937571951,"RT @Rothmus: 🤦♂️ https://t.co/xW4pLdXpSF","Aug 19, 4:29:05 AM EDT"
-1825549392860082521,"RT @PolarisProgram: Join the Polaris Dawn crew and SpaceX at 1 p.m. ET here on X for a mission overview briefing live from Florida
-
-Learn m…","Aug 19, 11:04:26 AM EDT"
-1825554794121179570,"RT @SawyerMerritt: Next week, 434 miles above the Earth, @rookisaacman will attempt the first-ever private spacewalk.
-
-The Polaris Dawn cre…","Aug 19, 11:25:54 AM EDT"
-1825555353909780637,"RT @ajtourville: Happy National Aviation Day!
-
-How it started How it's going https://t.co/9jiajaPK6X","Aug 19, 11:28:08 AM EDT"
-1825555726489800867,"The UK is turning into a police state https://t.co/R8oQRIPp9T","Aug 19, 11:29:37 AM EDT"
-1825557632939339836,"Starlink is an excellent product https://t.co/ZkpiqTJlSr","Aug 19, 11:37:11 AM EDT"
-1825558181839618531,"A reminder that free speech in America is special and we need to do everything possible to preserve it https://t.co/yAvX1TpuRp","Aug 19, 11:39:22 AM EDT"
-1825558840336920868,"“Operation Orwell” more like it https://t.co/JQWpEtn37v","Aug 19, 11:41:59 AM EDT"
-1825559831132172668,"True https://t.co/h57Kivknep","Aug 19, 11:45:55 AM EDT"
-1825713065985188224,"Request a Community Note! https://t.co/qIWgX3Edyw","Aug 19, 9:54:49 PM EDT"
-1825713908067479735,"Perfect name https://t.co/qOUblToy7v","Aug 19, 9:58:10 PM EDT"
-1825715527446155288,"Sometimes I wonder if I’m too defiant","Aug 19, 10:04:36 PM EDT"
-1825723913051000851,"I am willing to serve https://t.co/BJhGbcA2e0","Aug 19, 10:37:55 PM EDT"
-1825738817275383950,"The Moon looks amazing https://t.co/FHXsC6TOgY","Aug 19, 11:37:09 PM EDT"
-1825741761039241475,"When Snopes knows it’s a hoax https://t.co/mCXxed55rD","Aug 19, 11:48:51 PM EDT"
-1825743161076875773,"The gun emoji being nerfed in ~2016 marked the ascendance of woke_mind_virus.mp3.exe","Aug 19, 11:54:24 PM EDT"
-1825743803765895540,"🕺🕺🔫🔫🔫🔫🔫🔫🔫🔫🔫🔫🕺🕺","Aug 19, 11:56:58 PM EDT"
-1825768840090836999,"From the standpoint of the faaaaaar left, this platform is far right, but it’s actually just centrist https://t.co/PUNAvdTKQS","Aug 20, 1:36:27 AM EDT"
-1825778823205380347,"Why not fix it right now? 🤷♂️ https://t.co/QWH4cGslGu","Aug 20, 2:16:07 AM EDT"
-1825786899014844702,"Amazing https://t.co/UVDmyBV1iJ","Aug 20, 2:48:12 AM EDT"
-1825946079399129216,"Improving your Starlink Internet speed! https://t.co/9PO8vM7iGS","Aug 20, 1:20:44 PM EDT"
-1825946113737896279,"RT @SpaceX: Successful landing, completing the first launch and landing for this Falcon booster https://t.co/GLFavJVFig","Aug 20, 1:20:52 PM EDT"
-1825946137792074098,"RT @SpaceX: Liftoff of Falcon 9! https://t.co/dnAl1CZ4LU","Aug 20, 1:20:58 PM EDT"
-1826014723940429871,"Nerfing of the gun emoji matches rise of the woke mind virus, as a core tenet is equating fake harm with real harm https://t.co/Mhx2HjcES9","Aug 20, 5:53:30 PM EDT"
-1826015426658415033,"Since a lot of people have asked, here goes a super unscientific poll …
-
-Who will you vote for?","Aug 20, 5:56:18 PM EDT"
-1826016080952991903,"This path leads to bread lines & ugly shoes https://t.co/fFZGVjWfWJ","Aug 20, 5:58:54 PM EDT"
-1826134013205217364,"Exactly:
-
-“And then it dawned on me that the declining birth rate is not just a simple math problem - it fundamentally de-incentivizes civilization to look forward.” https://t.co/peuUfAcI8N","Aug 21, 1:47:31 AM EDT"
-1826165038669087062,"Wisdom
- https://t.co/NMbUbutfx1","Aug 21, 3:50:48 AM EDT"
-1826166083331731632,"Literally last month https://t.co/tC5MrgYW5D","Aug 21, 3:54:57 AM EDT"
-1826241343183790085,"RT @ajtourville: SpaceX is set to surpass Gemini 11's altitude record with its Polaris Dawn mission – @SpaceX Falcon 9 rocket will initiall…","Aug 21, 8:54:00 AM EDT"
-1826242679371629016,"Wow https://t.co/S563meEkxZ","Aug 21, 8:59:19 AM EDT"
-1826246918374314325,"RT @ICannot_Enough: I fixed the inflation meme: https://t.co/3dUHO9VibZ","Aug 21, 9:16:10 AM EDT"
-1826247487398850903,"Insane https://t.co/lz9x9zqqkK","Aug 21, 9:18:25 AM EDT"
-1826248951449981237,"Another @communitynotes win 😂 https://t.co/50p6NwZrjZ","Aug 21, 9:24:14 AM EDT"
-1826251603122561207,"Wow https://t.co/qAgrSVqdU3","Aug 21, 9:34:46 AM EDT"
-1826253203555713263,"RT @AdamLaxalt: My firm Cooper & Kirk has teamed up again with Mountain States @MSLF to fight against DEI in the Federal Government. This t…","Aug 21, 9:41:08 AM EDT"
-1826363538967068705,"The Two Towers https://t.co/t7MSa6QQbc","Aug 21, 4:59:34 PM EDT"
-1826409318578565326,"Update about the second Neuralink device in a human.
-
-If all goes well, there will be hundreds of people with Neuralinks within a few years, maybe tens of thousands within 5 years, millions within 10 years, … https://t.co/opy1xj5JgF","Aug 21, 8:01:29 PM EDT"
-1826410871796760784,"This will be the first spacewalk by a commercial company and the furthest from Earth anyone has traveled in over half a century! https://t.co/eYQnMo1nrK","Aug 21, 8:07:39 PM EDT"
-1826417919040856069,"RT @ajtourville: NEWS: 2nd Neuralink patient Alex plays the first-person shooter game Counter-Strike 2 on his laptop computer using the Lin…","Aug 21, 8:35:39 PM EDT"
-1826420124158738569,"RT @rookisaacman: Our daily quarantine routine includes running around LC-39A—where so many historic missions launched. Yesterday, we check…","Aug 21, 8:44:25 PM EDT"
-1826423055926919223,"Legacy media continues to plummet in viewers/readers https://t.co/RSsk68Fz5C","Aug 21, 8:56:04 PM EDT"
-1826423272226922732,"Two Dragons 🐉 🐉 ready for flight https://t.co/YUtgMChad2","Aug 21, 8:56:56 PM EDT"
-1826436278143123706,"Theo Von interviews Donald Trump https://t.co/9eGfuJnkVt","Aug 21, 9:48:36 PM EDT"
-1826441394002747442,"RT @SawyerMerritt: NEWS: @Neuralink has provided its first comprehensive update since successfully implanting its brain chip into a second…","Aug 21, 10:08:56 PM EDT"
-1826458537280627187,"Wow https://t.co/CrrQGnsg71","Aug 21, 11:17:03 PM EDT"
-1826464926111858890,"Overwhelming support for Trump https://t.co/xde5ChnT2U","Aug 21, 11:42:27 PM EDT"
-1826619232580501943,"Interesting https://t.co/VYsuyq42nZ","Aug 22, 9:55:36 AM EDT"
-1826630645319373112,"https://t.co/kTpkI1km6I","Aug 22, 10:40:57 AM EDT"
-1826633760651313225,"How times change https://t.co/xMVJGtOohk","Aug 22, 10:53:20 AM EDT"
-1826927532983136621,"RT @RuiHuang_art: Starbase 2050
-7000 Frame complete loop cycle https://t.co/TdxaK1bC26","Aug 23, 6:20:41 AM EDT"
-1827008827226497372,"Cool https://t.co/BYfpEyLMlv","Aug 23, 11:43:43 AM EDT"
-1827012570357612835,"Falcon 9 is now ~75% reusable and requires several days between flights.
-
-Starship is designed to be 100% reusable and ultimately be ready to refly within an hour of landing.
-
-This is the key to becoming a multiplanet civilization. https://t.co/OI8aJV9u","Aug 23, 11:58:35 AM EDT"
-1827030749884612898,"Yup https://t.co/60sKfOGoDz","Aug 23, 1:10:50 PM EDT"
-1827045479299133699,"No logo https://t.co/z7FRYktNvO","Aug 23, 2:09:21 PM EDT"
-1827055547599712757,"Great work by the @xAI team!
-
-Thanks also to our suppliers & contractors who went the extra mile! https://t.co/tSqtgph8ql","Aug 23, 2:49:22 PM EDT"
-1827055853083750531,"Special thanks to @Oracle at whose data center Grok 2 was trained","Aug 23, 2:50:35 PM EDT"
-1827055998286319711,"Try Grok 2 https://t.co/UKMaFmFGxL","Aug 23, 2:51:09 PM EDT"
-1827104814003519809,"RT @SpaceX: Meet the Polaris Dawn crew → https://t.co/lfiwEOAfTd https://t.co/hJu0CgPJmE","Aug 23, 6:05:08 PM EDT"
-1827155331002007843,"If you live in the USA, do you consider yourself","Aug 23, 9:25:52 PM EDT"
-1827156608066924980,"https://t.co/sXmhTXhuQJ https://t.co/SDW9dmflJ7","Aug 23, 9:30:56 PM EDT"
-1827156898669343230,"RT @cb_doge: Get 𝕏 Premium | Try Grok 2
-
-All this for just $8 per month when purchased via web. 🇺🇸
-
-→ Grok AI Chat
-→ Grok A.I. Image Genera…","Aug 23, 9:32:06 PM EDT"
-1827157993881796844,"RT @BillAckman: Please take 40 minutes of your time and listen to one of the most important, moving, and inspirational speeches that I have…","Aug 23, 9:36:27 PM EDT"
-1827162546685583658,"Hehehe https://t.co/Bnm0IQdZnv","Aug 23, 9:54:32 PM EDT"
-1827163562839507219,"Interesting
-https://t.co/CSawtX0Tb1","Aug 23, 9:58:35 PM EDT"
-1827167868733059171,"😂
- https://t.co/crU3m6UVhf","Aug 23, 10:15:41 PM EDT"
-1827172947280249138,"So good 😂
- https://t.co/EPhYkxbszw","Aug 23, 10:35:52 PM EDT"
-1827174670375735491,"Absolutely https://t.co/nhcsMrbEpR","Aug 23, 10:42:43 PM EDT"
-1827198275021050113,"Iconic https://t.co/fgr6b8jkAx","Aug 24, 12:16:31 AM EDT"
-1827200046531547617,"RT @natemcgrady: ChatGPT - LLM
-
-Grok - LLMAO","Aug 24, 12:23:33 AM EDT"
-1827203460179050756,"RT @PolarisProgram: Early this morning, the Polaris Dawn crew visited the hangar at 39A to see Falcon 9 and Dragon before they rolled out t…","Aug 24, 12:37:07 AM EDT"
-1827206038778458451,"https://t.co/XgKRc0muDO","Aug 24, 12:47:22 AM EDT"
-1827207630537859253,"RT @rookisaacman: It was amazing to stop by the hangar and meet the incredible @SpaceX technicians & engineers working hard to get Falcon &…","Aug 24, 12:53:41 AM EDT"
-1827364850432970966,"We are working on highlighting more banger content from (currently) small 𝕏 accounts.
-
-Our current algorithm shows too much from accounts that are big already.","Aug 24, 11:18:25 AM EDT"
-1827368987761451103,"Corporate needs you to find the difference between these pictures https://t.co/mf6HKfBcm4","Aug 24, 11:34:52 AM EDT"
-1827369691909644692,"Looks identical to me shrug 🤷♂️","Aug 24, 11:37:40 AM EDT"
-1827370040573714572,"This is extremely concerning!! https://t.co/UN835dYS1C","Aug 24, 11:39:03 AM EDT"
-1827371279290146918,"Can’t recommend The Iliad enough!
-
-Best as Penguin audiobook at 1.25 speed.
-
-https://t.co/gh7VEytlRe","Aug 24, 11:43:58 AM EDT"
-1827372324913361271,"Earlier this year, a friend of mine almost had his young daughter taken from him in California just because he wanted her to wait a few years to permanently transition.
-
-He talked the police out of taking her when they came to his house.
-
-That day, he l","Aug 24, 11:48:07 AM EDT"
-1827482992488382790,"Check out this ad for the First Amendment. It is very convincing.
- https://t.co/mb4UCSZcgR","Aug 24, 7:07:53 PM EDT"
-1827484648454418881,"POV: It’s 2030 in Europe and you’re being executed for liking a meme https://t.co/OkZ6YS3u2P","Aug 24, 7:14:27 PM EDT"
-1827495859837157712,"20 years … https://t.co/UknQRzqXw2","Aug 24, 7:59:00 PM EDT"
-1827496486013219158,"The 2nd amendment is the only reason long-term that the 1st amendment will be upheld https://t.co/B8Ep3FWin5","Aug 24, 8:01:30 PM EDT"
-1827534001520758785,"Wow, this a great idea!
-
-Good for Mongolia. https://t.co/eSJxsnfr6C","Aug 24, 10:30:34 PM EDT"
-1827536653654618520,"Wow https://t.co/ebOrhpoDQz","Aug 24, 10:41:06 PM EDT"
-1827551238893776956,"“No guarantee of free speech” - Walz
-https://t.co/6JIHD5RWgW","Aug 24, 11:39:04 PM EDT"
-1827551868580487321,"Dangerous times https://t.co/FuB6NEWOqr","Aug 24, 11:41:34 PM EDT"
-1827553064825262561,"RT @TeslaBoomerMama: Reassurance to all those who think my reputation is broken or my followers run to better sources of information since…","Aug 24, 11:46:19 PM EDT"
-1827553244849009135,"Exactly https://t.co/tnmJ5gz7Rw","Aug 24, 11:47:02 PM EDT"
-1827569938267038071,"RT @SpaceX: Sunset at pad 39A https://t.co/4HtEuDfdj8","Aug 25, 12:53:22 AM EDT"
-1827572720936030703,"#FreePavel
- https://t.co/B7AcJWswMs","Aug 25, 1:04:25 AM EDT"
-1827573383124439550,"Liberté
-
-Liberté!
-
-Liberté?","Aug 25, 1:07:03 AM EDT"
-1827580637307449389,"Doesn’t sound very democratic https://t.co/hMCH5Zgljp","Aug 25, 1:35:53 AM EDT"
-1827636705903436089,"RT @TheRabbitHole84: "I think we should be extremely concerned about anything that undermines the First Amendment. There is a reason for th…","Aug 25, 5:18:41 AM EDT"
-1827642452087275566,"Being a free speech advocate these days is increasingly feeling like a Kobayashi Maru problem","Aug 25, 5:41:31 AM EDT"
-1827645061451895114,"That is indeed their plan https://t.co/RGy08qLIpO","Aug 25, 5:51:53 AM EDT"
-1827646163366957228,"Fight for freedom! https://t.co/b4CkYvKqPa","Aug 25, 5:56:16 AM EDT"
-1827647414020211016,"Because he already caved into censorship pressure.
-
-Instagram has a massive child exploitation problem, but no arrest for Zuck, as he censors free speech and gives governments backdoor access to user data.
-
-https://t.co/RTTGIaD0gA https://t.co/iPb5NIxIJ","Aug 25, 6:01:14 AM EDT"
-1827647718900081003,"Wow https://t.co/2R3vWXpvlf","Aug 25, 6:02:26 AM EDT"
-1827648303791501655,"Well said https://t.co/BerKYejygV","Aug 25, 6:04:46 AM EDT"
-1827648627948343582,"RT @SciGuySpace: It’s true. The whole story of Crew Dragon’s development, the competition with Starliner, and the closed door NASA meeting…","Aug 25, 6:06:03 AM EDT"
-1827649195865485424,"RT @FutureJurvetson: NASA just decided that SpaceX needs to rescue Boeing’s astronauts.
-
-Written before the Starliner debacle, Berger’s for…","Aug 25, 6:08:19 AM EDT"
-1827649662745989245,"RT @MarioNawfal: MEGYN KELLY: I FOUND TWITTER MORE HATEFUL BEFORE ELON TOOK OVER
-
-“I will just say this in Elon's and Twitter's defense.…","Aug 25, 6:10:10 AM EDT"
-1827650575393067183,"https://t.co/Q0Og7KkWES","Aug 25, 6:13:47 AM EDT"
-1827650990775873636,"That is what they have become https://t.co/ClqBzMcNhr","Aug 25, 6:15:26 AM EDT"
-1827651854978744506,"RT @SawyerMerritt: NEWS: Tesla will soon release the following features via an OTA update.
-
-• Display construction on your route with an ic…","Aug 25, 6:18:53 AM EDT"
-1827652239722258783,"RT @BillboardChris: A military family had their 16-year-old autistic son taken from them, because they refused to transition him.
-
-The boy…","Aug 25, 6:20:24 AM EDT"
-1827653646802100307,"Nope https://t.co/B9DMU16m4p","Aug 25, 6:26:00 AM EDT"
-1827654017117462885,"RT @Geiger_Capital: China just arrested the billionaire founder of a free speech messaging app for not moderating and censoring the content…","Aug 25, 6:27:28 AM EDT"
-1827654859618693496,"RT @IEA: Solar PV alone is expected to meet roughly half of the growth in global electricity demand over 2024 & 2025
-
-And solar & wind comb…","Aug 25, 6:30:49 AM EDT"
-1827656180010819947,"https://t.co/ID2Lp23h4Y","Aug 25, 6:36:04 AM EDT"
-1827657323273138544,"https://t.co/zqtbLzFkmr","Aug 25, 6:40:36 AM EDT"
-1827659408702062997,"RT @chrispavlovski: I’m a little late to this, but for good reason — I’ve just safely departed from Europe.
-
-France has threatened Rumble,…","Aug 25, 6:48:53 AM EDT"
-1827662941312663724,"Yes https://t.co/ewG1ZhGxUY","Aug 25, 7:02:56 AM EDT"
-1827663021226741971,"RT @elon_docs: Elon Musk: Moderation is a propaganda word for censorship. https://t.co/URvTYbFX3t","Aug 25, 7:03:15 AM EDT"
-1827663915376869526,"Yes https://t.co/Re2iDWoUJH","Aug 25, 7:06:48 AM EDT"
-1827664316193009917,"Pic of the SpaceX factory shortly after we got started https://t.co/PZdT8b0WEA","Aug 25, 7:08:23 AM EDT"
-1827664438192685415,"RT @TheChiefNerd: Robert F. Kennedy Jr Torches the DNC
-
-"The DNC and its media organs engineered a surge of popularity for Vice President H…","Aug 25, 7:08:53 AM EDT"
-1827665556201148734,"Preparing for historic first commercial spacewalk and being the furthest from Earth of any humans in over half a century! https://t.co/4TEwupwldQ","Aug 25, 7:13:19 AM EDT"
-1827666160516550842,"Worth understanding that the implications of this turn America into a one-party state https://t.co/ixPOroCWIK","Aug 25, 7:15:43 AM EDT"
-1827666399499616405,"https://t.co/wg1cbLVvho","Aug 25, 7:16:40 AM EDT"
-1827666612423422302,"RT @iamyesyouareno: They jailed a guy for waving an English flag IN ENGLAND yesterday.
-
-This meme is literally happening in real life. htt…","Aug 25, 7:17:31 AM EDT"
-1827667318400254138,"It is vital to the support of free speech that you forward 𝕏 posts to people you know, especially in censorship-heavy countries","Aug 25, 7:20:19 AM EDT"
-1827668394843251152,"How is this even real? https://t.co/PFRjUhSG35","Aug 25, 7:24:36 AM EDT"
-1827669055169310754,"Take a stand https://t.co/3oyhUnppRL","Aug 25, 7:27:13 AM EDT"
-1827671533659029735,"https://t.co/taMEbKTFMt","Aug 25, 7:37:04 AM EDT"
-1827671903504597338,"https://t.co/kkqPIguIRx","Aug 25, 7:38:32 AM EDT"
-1827784062817202445,"Yeah https://t.co/k54P2SP07W","Aug 25, 3:04:13 PM EDT"
-1827969979334926371,"The @PolarisProgram mission readiness review just finished and we are currently go for launch in just over 24 hours.
-
-Crew safety is absolutely paramount and this mission carries more risk than usual, as it will be the furthest humans have traveled from E","Aug 26, 3:22:59 AM EDT"
-1827970054660452817,"RT @PolarisProgram: More photos from Polaris Dawn and SpaceX’s full rehearsal of launch day activities → https://t.co/zktZ1R453H https://t.…","Aug 26, 3:23:17 AM EDT"
-1827970207492489655,"https://t.co/X6LehWFrrY","Aug 26, 3:23:54 AM EDT"
-1827970423788535925,"https://t.co/iGQ6zYr32I","Aug 26, 3:24:45 AM EDT"
-1827970789204705610,"Polaris Mission key points https://t.co/Jm4St4v6BV","Aug 26, 3:26:12 AM EDT"
-1827973254440460740,"SpaceX is doing a major launch every ~3 days now.
-
-Next year, a launch every ~2 days.
-
-We will probably deliver close to 90% of payload mass to Earth orbit and beyond this year.
-
-Great work by a great team! https://t.co/cpWXnqTuhR","Aug 26, 3:36:00 AM EDT"
-1827976268874158182,"Absolutely https://t.co/07UrSiZ9SF","Aug 26, 3:47:59 AM EDT"
-1827976574114611596,"RT @elon_docs: Elon Musk: It appears that, when civilizations are under stress, the birth rate is high, but as soon as they have no externa…","Aug 26, 3:49:12 AM EDT"
-1827976653827440905,"Very important! https://t.co/kCg7nfNWcu","Aug 26, 3:49:31 AM EDT"
-1827977619859493213,"RT @alex_avoigt: Not bad https://t.co/lFmiE359bP","Aug 26, 3:53:21 AM EDT"
-1827981493924155796,"Video of the inside of Cortex today, the giant new AI training supercluster being built at Tesla HQ in Austin to solve real-world AI https://t.co/DwJVUWUrb5","Aug 26, 4:08:45 AM EDT"
-1827982524749926513,"Grok can code very well https://t.co/fkXHTQpxwx","Aug 26, 4:12:50 AM EDT"
-1827983046470992156,"The @PolarisProgram Crew https://t.co/9bYdtZXOOH","Aug 26, 4:14:55 AM EDT"
-1827983546067136801,"RT @Bubblebathgirl: Kamala Harris says, if elected president, she’ll use executive action to confiscate guns if Congress doesn’t act within…","Aug 26, 4:16:54 AM EDT"
-1828189258475008037,"California also passed a bill providing free medical care to illegals that took effect n January this year.
-
-Seems like half of Earth should move to California, given all the incentives to do so. https://t.co/XXikfKj7ki","Aug 26, 5:54:19 PM EDT"
-1828205685386936567,"This is a tough call and will make some people upset, but, all things considered, I think California should probably pass the SB 1047 AI safety bill.
-
-For over 20 years, I have been an advocate for AI regulation, just as we regulate any product/technology","Aug 26, 6:59:36 PM EDT"
-1828206091248800236,"Sounds like a First Amendment violation https://t.co/RjEF8gU0A0","Aug 26, 7:01:13 PM EDT"
-1828207754374484417,"I agree https://t.co/4d7slemk6k","Aug 26, 7:07:49 PM EDT"
-1828235777496551439,"RT @MarioNawfal: 🚨GROK-2 OUTRUNS COMPETITION | BENCHMARK PERFORMANCE KEY SCORES
-
-- Graduate-Level Science Knowledge (GPQA): 56.0% (GPT-4 T…","Aug 26, 8:59:10 PM EDT"
-1828237233926611369,"The Tesla construction and supercompute infrastructure teams are awesome","Aug 26, 9:04:58 PM EDT"
-1828238907340718467,"Just want to reiterate that this platform really is meant to support all viewpoints within the bounds of the laws of countries, even those of people with whom I vehemently disagree and personally dislike.
-
-If that doesn’t seem to be happening, please yel","Aug 26, 9:11:37 PM EDT"
-1828244024152522764,"An incredible amount of work has gone into this historic mission by an amazing team.
-
-We are triple-checking everything to make sure there is nothing more we can do to improve crew safety.","Aug 26, 9:31:57 PM EDT"
-1828244208538275902,"Let’s make Starfleet Academy real!","Aug 26, 9:32:41 PM EDT"
-1828297283923816824,"Yes https://t.co/m4ZY11jaix","Aug 27, 1:03:35 AM EDT"
-1828310679079604335,"RT @lindayaX: If freedom of speech is taken away, then dumb and silent we may be led, like sheep to the slaughter.
-- George Washington","Aug 27, 1:56:48 AM EDT"
-1828310872915054646,"RT @MarioNawfal: ELON: WE’RE GOING BACK TO THE MOON, AND WE’RE GOING THERE SOON!
-
-“The crazy thing is that it's been over half a century si…","Aug 27, 1:57:35 AM EDT"
-1828495386249486647,"Potential Tesla/SpaceX collab: ride hailing works even if you’re in space! https://t.co/9mEvlmZPHE","Aug 27, 2:10:46 PM EDT"
-1828673659105362315,"RT @xai: 🚀 New Grok features in 𝕏 10.56 (iOS)
-• Image generation prompt suggestions
-• Improved model selector
-• Edit your prompt with a lon…","Aug 28, 1:59:10 AM EDT"
-1828928421621387554,"https://t.co/XNP0LvZIs9","Aug 28, 6:51:30 PM EDT"
-1828944676474290448,"RT @MarioNawfal: ELON: WE WANT TO CREATE A FLOURISHING CIVILIZATION ON MARS
-
-"This is what we want Mars to look like with Starships coming…","Aug 28, 7:56:05 PM EDT"
-1829000521815838844,"RT @cybertruck: Four-Wheel Steering brings the magic of a sports car turning radius to your Cybertruck https://t.co/ueeFLPqju6","Aug 28, 11:38:00 PM EDT"
-1829008633859825998,"Concerning https://t.co/BIaEh6Nc26","Aug 29, 12:10:14 AM EDT"
-1829016043018190962,"Grok “Generate an image as if Voldemort and a Sith Lord had a baby and he became a judge in Brazil”
-
-It’s uncanny! 🤣🤣 https://t.co/aTdVRg9jrw","Aug 29, 12:39:40 AM EDT"
-1829016924178575371,"Cool https://t.co/Dc8lYBhq5g","Aug 29, 12:43:10 AM EDT"
-1829022561822253216,"This “judge” has repeatedly broken the laws he has sworn to uphold https://t.co/JCOCVEPlnp","Aug 29, 1:05:34 AM EDT"
-1829025187544674369,"People want to know the truth https://t.co/A7O0c4lzWo","Aug 29, 1:16:01 AM EDT"
-1829025737564709035,"Orwell nail it
- https://t.co/qMvBpBQrtl","Aug 29, 1:18:12 AM EDT"
-1829027600901042471,"Starlink now approved in 105 countries! https://t.co/qZtyTmhqNr","Aug 29, 1:25:36 AM EDT"
-1829033402185515057,"Absolutely https://t.co/OYtw4jcTjW","Aug 29, 1:48:39 AM EDT"
-1829034945060257901,"Wow https://t.co/Jo9WceWzVU","Aug 29, 1:54:47 AM EDT"
-1829180662223659292,"We were happy to help https://t.co/y8439GaztA","Aug 29, 11:33:49 AM EDT"
-1829180857338474710,"RT @GadSaad: Yep.","Aug 29, 11:34:35 AM EDT"
-1829183078516043800,"Wow https://t.co/IgdEghSdnK","Aug 29, 11:43:25 AM EDT"
-1829183995336446200,"RT @EndWokeness: BREAKING: The man in Philadelphia who gunned down and tried to kiII 8 innocent Americans is an illegal immigrant
-
-He's a…","Aug 29, 11:47:03 AM EDT"
-1829184058041196616,"RT @libsoftiktok: A group of illegals tried HIJACKING school buses carrying children on their way to school in California.
-
-The school now…","Aug 29, 11:47:18 AM EDT"
-1829185699184292285,"Please note that this is an actual statement from Kamala https://t.co/Os4I3cxE6C","Aug 29, 11:53:49 AM EDT"
-1829186852181409799,"The US Democratic Party as a whole has a massive incentive to bring in and legalize illegal immigrants, as they vote overwhelmingly Democrat.
-
-No grand conspiracy theory is needed. The simple incentive of winning elections explains why they won’t even de","Aug 29, 11:58:24 AM EDT"
-1829194972467429616,"This is awesome https://t.co/E2NmX84q7l","Aug 29, 12:30:40 PM EDT"
-1829195323295838238,"It’s just common sense https://t.co/8TvVKCdGCk","Aug 29, 12:32:04 PM EDT"
-1829196423277228406,"The tyrant, @Alexandre, is dictator of Brazil. Lula is his lapdog. https://t.co/svONz3iv5S","Aug 29, 12:36:26 PM EDT"
-1829200187560210547,"Exactly https://t.co/a09umuAXEO","Aug 29, 12:51:24 PM EDT"
-1829202463552860370,"The American Constitution is only as strong as those willing to protect it.
-
-The left have become the party of censorship worldwide. https://t.co/xJjYvICxb5","Aug 29, 1:00:26 PM EDT"
-1829202726221234514,"This guy @Alexandre is an outright criminal of the worst kind, masquerading as a judge https://t.co/l5zZ7gplSI","Aug 29, 1:01:29 PM EDT"
-1829212019628880340,"RT @VivekGRamaswamy: A few weeks ago, I started pointing out that Kamala Harris wants to tax *unrealized* capital gains. The main objection…","Aug 29, 1:38:25 PM EDT"
-1829213249470116242,"When is enough enough? https://t.co/JkJFcnY09y","Aug 29, 1:43:18 PM EDT"
-1829213800060596554,"RT @EndWokeness: Elon Musk nailed it 💯 https://t.co/styyUkFXmP","Aug 29, 1:45:29 PM EDT"
-1829214565718200826,"How quickly times change https://t.co/nVNU5syMyu","Aug 29, 1:48:32 PM EDT"
-1829214756995268664,"What has happened to the UK? https://t.co/KAqMNSAZdN","Aug 29, 1:49:17 PM EDT"
-1829215324400705821,"RT @Not_the_Bee: "Migrants" attempted to board two separate school buses full of kids in San Diego. Here's the scoop.
-https://t.co/wOnDQlbW…","Aug 29, 1:51:33 PM EDT"
-1829215766765547623,"Correct https://t.co/AbrBHQazVT","Aug 29, 1:53:18 PM EDT"
-1829266964461621681,"A concerning possibility https://t.co/L9i3kLcx65","Aug 29, 5:16:45 PM EDT"
-1829267102458339835,"A stark contrast https://t.co/wYAOsSaAh3","Aug 29, 5:17:18 PM EDT"
-1829295477487190304,"RT @JTLonsdale: They told you IDs-to-vote is “racist”, but in reality, requiring IDs makes it harder to cheat.
-
-US govt gives BILLIONS of d…","Aug 29, 7:10:03 PM EDT"
-1829295494910328974,"RT @EndWokeness: White liberals and black people are asked whether voter ID laws are racist.
-
-This is one of the greatest videos ever.
-
-htt…","Aug 29, 7:10:07 PM EDT"
-1829296604689596874,"This is cool https://t.co/jyl0TkBkrv","Aug 29, 7:14:31 PM EDT"
-1829297836988706976,"This is an historic mission:
-
-- Furthest distance that astronauts will travel from Earth in over half a century!
-
-- First spacewalk by private individuals!
-
-Everything possible must be done to ensure astronaut safety. https://t.co/7GAXWiReDz","Aug 29, 7:19:25 PM EDT"
-1829307275309093121,"SpaceX and X are two completely different companies with different shareholders. I own about 40% of SpaceX, so this absolutely illegal action by the dictator @alexandre improperly punishes other shareholders and the people of Brazil. https://t.co/zIzcT0BT","Aug 29, 7:56:55 PM EDT"
-1829308112840307130,"The only people strongly against voter ID in America are those who want to commit fraud.
-
-Everyone knows that ID is required for basic daily activity and voter ID is mandatory in almost all countries. Why not here? https://t.co/Vp3Qzr6FtV","Aug 29, 8:00:15 PM EDT"
-1829308905177956551,"Alexandre de Moraes is an evil dictator cosplaying as a judge. https://t.co/ZIV8KbDCmk","Aug 29, 8:03:24 PM EDT"
-1829309146149032288,"RT @MAstronomers: 'Engineering is the closest thing to magic that exists in the world' - Elon Musk https://t.co/U4jsc07YaO","Aug 29, 8:04:22 PM EDT"
-1829309491118031031,"RT @NASAAmes: Sail deployment achieved!
-
-Our Advanced Composite Solar Sail System has successfully unfurled its sail & will use sunlight f…","Aug 29, 8:05:44 PM EDT"
-1829310109639655795,"De Moreaes is a criminal wearing judges robes like a Halloween costume 👻 https://t.co/Wp0exL7wwv","Aug 29, 8:08:11 PM EDT"
-1829316932404678669,"💯 https://t.co/AXmm4ZNTI2","Aug 29, 8:35:18 PM EDT"
-1829317832489816083,"Many remote schools and hospitals depend on SpaceX’s Starlink!
-
-SpaceX will provide Internet service to users in Brazil for free until this matter is resolved, as we cannot receive payment, but don’t want to cut anyone off. https://t.co/BHlPpbsKR6","Aug 29, 8:38:53 PM EDT"
-1829327469716873405,"Indeed https://t.co/ONpooKV6ki","Aug 29, 9:17:10 PM EDT"
-1829396358194749712,"It feels like magic https://t.co/Dh0Mo2jfXi","Aug 30, 1:50:54 AM EDT"
-1829396974035955725,"RT @MarioNawfal: 🚨🇧🇷 BRAZIL'S MILITARY RELIES ON STARLINK FOR OPERATIONS & SECURITY
-
-A new letter from Brazil's Defense Ministry reveals th…","Aug 30, 1:53:21 AM EDT"
-1829397352513261593,"True, Brazil is controlled by a tyrannical dictator masquerading as a judge https://t.co/kkPfNRrBOh","Aug 30, 1:54:52 AM EDT"
-1829397456842264855,"RT @TeslaBoomerMama: Men, register and vote!
-Mama tells you so.","Aug 30, 1:55:16 AM EDT"
-1829405512217042983,"RT @MarioNawfal: 🇧🇷IS DEMOCRACY DEAD IN BRAZIL?
-
-Just over a month before municipal elections are due to begin in Brazil, Supreme Court Jud…","Aug 30, 2:27:17 AM EDT"
-1829482657685684346,"Absolutely https://t.co/wiIHea7ZWB","Aug 30, 7:33:50 AM EDT"
-1829484453846204902,"Dictator de Voldemort is engaging in illegal election interference in Brazil https://t.co/D71nkLXqZE","Aug 30, 7:40:58 AM EDT"
-1829484687741603936,"Interesting https://t.co/dOMwzY7Kot","Aug 30, 7:41:54 AM EDT"
-1829485522873623014,"At current rates of government spending, America is in the fast lane to bankruptcy.
-
-Government overspending is what causes inflation. https://t.co/E7V8hyPSmW","Aug 30, 7:45:13 AM EDT"
-1829486803017216277,"Yeah, this is fundamental https://t.co/8keQV3gt7p","Aug 30, 7:50:18 AM EDT"
-1829487762279674310,"Yes https://t.co/4b6Iqy9PyY","Aug 30, 7:54:07 AM EDT"
-1829487965720224174,"RT @MarioNawfal: 🚨🇺🇸ELON AND SENATOR MIKE LEE PUSH FOR VOTER ID, CITING FRAUD CONCERNS
-
-Senator Mike Lee and Elon have voiced strong suppor…","Aug 30, 7:54:55 AM EDT"
-1829489470821065106,"Other platforms in Brazil are silently complying with the illegal political censorship demands of Dictator de Voldemort https://t.co/0DI0OlJCUe","Aug 30, 8:00:54 AM EDT"
-1829489745740824883,"🎯 https://t.co/VvkX3XQowC","Aug 30, 8:02:00 AM EDT"
-1829491510108360725,"He is a disgrace to judges robes https://t.co/XGJGPTARa1","Aug 30, 8:09:00 AM EDT"
-1829495959824502981,"Exactly https://t.co/mbwYFsg1ns","Aug 30, 8:26:41 AM EDT"
-1829496234383716642,"RT @SpaceX: Falcon 9 launches 21 @Starlink satellites to low-Earth orbit from Florida https://t.co/PoDEjGYGSM","Aug 30, 8:27:47 AM EDT"
-1829536711321465105,"Dictator de Voldemort is absolutely trying to destroy democracy in Brazil https://t.co/WHatCUNYbE","Aug 30, 11:08:37 AM EDT"
-1829538243429470301,"💯 https://t.co/hLgw7ocqXd","Aug 30, 11:14:43 AM EDT"
-1829539171368628258,"LFG!! https://t.co/FRDdOfvbYn","Aug 30, 11:18:24 AM EDT"
-1829542149354049904,"The expression of support from the US embassy is appreciated.
-
-Indeed, without free speech, the public cannot express their thoughts or know the truth of the situation, making it impossible to vote with accurate knowledge. https://t.co/KUeEH7s2GN","Aug 30, 11:30:14 AM EDT"
-1829549259483722222,"💯 https://t.co/SLyNqJeAnP","Aug 30, 11:58:29 AM EDT"
-1829602166614737143,"Insane https://t.co/1rElp7iyNA","Aug 30, 3:28:43 PM EDT"
-1829603005207101919,"Glenn articulates the evil tyranny of Moraes well https://t.co/ZtyQahRby1","Aug 30, 3:32:03 PM EDT"
-1829623560958034364,"RT @chrispavlovski: Brazil no longer has Rumble and from media reports, they will no longer have X.
-
-World powers don’t want Rumble, they d…","Aug 30, 4:53:44 PM EDT"
-1829624142452195334,"Free speech is the bedrock of democracy and an unelected pseudo-judge in Brazil is destroying it for political purposes https://t.co/eqbowALCeu","Aug 30, 4:56:02 PM EDT"
-1829624971909357576,"The attacks this year on free speech are unprecedented in the 21st century.
-
-It will happen in America too if Kamala/Walz gain power.
-
-Just listen to what they’ve said. https://t.co/TkHxCOcs1w","Aug 30, 4:59:20 PM EDT"
-1829625536777277754,"The oppressive regime in Brazil is so afraid of the people learning the truth that they will bankrupt anyone who tries https://t.co/VgYPRJMXJv","Aug 30, 5:01:35 PM EDT"
-1829626244972896669,"Absolutely https://t.co/4VFSJS34Lb","Aug 30, 5:04:24 PM EDT"
-1829626627912785943,"RT @Jim_Jordan: Jack Smith. Election interference. https://t.co/rFBGy8PChD","Aug 30, 5:05:55 PM EDT"
-1829627847960404124,"Censorship is a certainty if Dems win https://t.co/oQBshOI0qs","Aug 30, 5:10:46 PM EDT"
-1829628052646564181,"They’re shutting down the #1 source of truth in Brazil https://t.co/RasqcQ3ySM","Aug 30, 5:11:35 PM EDT"
-1829648832235446645,"True https://t.co/SIhzusZA8h","Aug 30, 6:34:09 PM EDT"
-1829654712855249355,"RT @stclairashley: The average income in Brazil is around $1,400 a month
-
-Brazilian citizens now face being fined over 528% more than their…","Aug 30, 6:57:31 PM EDT"
-1829662769991598466,"RT @X: power to the people
-
-in 🇧🇷 & everywhere else","Aug 30, 7:29:32 PM EDT"
-1829664223892480096,"Freedom of speech is under massive attack around the world https://t.co/01L9HeUYct","Aug 30, 7:35:19 PM EDT"
-1829664877146718315,"Exactly https://t.co/njJQuSlWYi","Aug 30, 7:37:54 PM EDT"
-1829665753416491026,"Just a reminder that you can always access this platform via https://t.co/bOUOek5Cvy, even on your phone. No app is needed.
-
-Now would also be a good time to download a VPN in case you get blocked.","Aug 30, 7:41:23 PM EDT"
-1829771538138100204,"We willl begin publishing the long list of @Alexandre’s crimes, along with the specific Brazilian laws that he broke tomorrow.
-
-Obviously, he does not need to abide by US law, but he does need to abide by his own country’s laws.
-
-He is a a dictator and ","Aug 31, 2:41:44 AM EDT"
-1829772614614536537,"We willl begin publishing the long list of @Alexandre’s crimes, along with the specific Brazilian laws that he broke tomorrow.
-
-Obviously, he does not need to abide by US law, but he does need to abide by his own country’s laws.
-
-He is a dictator and a ","Aug 31, 2:46:01 AM EDT"
-1829773099895546213,"As I was saying, the Democratic Party is importing voters. It’s as simple as that. https://t.co/gQhiuCXpaJ","Aug 31, 2:47:57 AM EDT"
-1829773786310136186,"The Brazilian people will learn of his crimes no matter how much he tries to stop it https://t.co/welqIkUyIj","Aug 31, 2:50:40 AM EDT"
-1829773871362256933,"RT @tedcruz: Brazil is banning X for one reason: to suppress free speech and thought. Unsurprisingly, Lula supports this decision, because…","Aug 31, 2:51:01 AM EDT"
-1829774793400369203,"Believe what they say https://t.co/EiNKDsbPE5","Aug 31, 2:54:40 AM EDT"
-1829775030349070830,"This meme never gets old 🤣🤣 https://t.co/m8wWH9ermL","Aug 31, 2:55:37 AM EDT"
-1829775547066356142,"RT @goddeketal: Brazil 2024: Where basic internet freedom is now a crime. https://t.co/Y8XiCx3l5p","Aug 31, 2:57:40 AM EDT"
-1829777025525043636,"RT @vitalyzdtv: Back in 2016 I used to be a Never Trumper.
-
-Honestly I didn’t know why.
-
-I even streaked the NBA finals with “Trump sucks…","Aug 31, 3:03:33 AM EDT"
-1829777260133445997,"RT @CollinRugg: JUST IN: Tim Walz's brother says he is considering joining forces with Trump, says his brother is "not the type of characte…","Aug 31, 3:04:29 AM EDT"
-1829777370934284656,"Exactly https://t.co/SpcCp7j5Cd","Aug 31, 3:04:55 AM EDT"
-1829778143449698764,"𝕏 is the most used news source in Brazil. It is what the people want.
-
-Now, the tyrant de Voldemort is crushing the people’s right to free speech. https://t.co/gR8aq3JzzU","Aug 31, 3:07:59 AM EDT"
-1829778285561065758,"Free speech is the foundation of of democracy https://t.co/c6xHyCKDUU","Aug 31, 3:08:33 AM EDT"
-1829779602283065603,"RT @stillgray: 𝕏 TAKES THE CROWN AS BBC FADES
-
-𝕏 stands tall while the once untouchable BBC might just be signing its own extinction warran…","Aug 31, 3:13:47 AM EDT"
-1829884228097691670,"Great work by the SpaceX team https://t.co/C2FTC9g0CH","Aug 31, 10:09:32 AM EDT"
-1829914294340784421,"The current Brazilian administration likes to wear the cloak of a free democracy, while crushing the people under its boot https://t.co/Sv4naTl10b","Aug 31, 12:09:00 PM EDT"
-1829919906105610683,"I keep telling people that this guy @alexandre is the dictator of Brazil, NOT a judge. He just wears that as a costume.
-
-He has supreme executive, judicial and legislative power, aka dictator.
-
-The cloak he wears is to trick fools in the West into think","Aug 31, 12:31:18 PM EDT"
-1829961053327016314,"Starlink direct to mobile phone Internet is exclusively with @Tmobile in the US for the first year, then other carriers thereafter.
-
-We are starting off working with one carrier in each country, but ultimately hope to serve all carriers. https://t.co/CDV","Aug 31, 3:14:48 PM EDT"
-1829961684661780830,"True https://t.co/CrV5jX19Hg","Aug 31, 3:17:19 PM EDT"
-1829961861254824228,"RT @MarioNawfal: 🇧🇷SEARCHES FOR VPN IN BRAZIL SKYROCKET
-
-Since August 30, searches on Google for the term VPN in Brazil have exploded, coin…","Aug 31, 3:18:01 PM EDT"
-1829962246274900404,"RT @ajtourville: Back in May 2022, Elon Musk was awarded the Grand Cross of the Order of Merit in recognition of his exceptional contributi…","Aug 31, 3:19:33 PM EDT"
-1830057460561805788,"They want to undermine the Constitution https://t.co/WT8Z5JNDPH","Aug 31, 9:37:54 PM EDT"
-1830062141744853281,"Today, we launch the daily data dump on the crimes – under *Brazilian* law – that fake “judge” @alexandre has committed!
-
-He can block this platform in Brazil, but he can’t stop the whole world from knowing his illegal, shameful & hypocritical deeds. ","Aug 31, 9:56:30 PM EDT"
-1830062704096092184,"Follow @AlexandreFiles if you’re curious about the evil deeds of Brazil’s Voldemort https://t.co/rMMJvhAnMj","Aug 31, 9:58:44 PM EDT"
-1830062959986352389,"Reich is such a sweety https://t.co/qZPwP5RYr5","Aug 31, 9:59:45 PM EDT"
-1830064557240324218,"Thank you https://t.co/RufhIjFLUj","Aug 31, 10:06:06 PM EDT"
-1830065536555733488,"Past is prologue https://t.co/8Ppfyek4nA","Aug 31, 10:09:59 PM EDT"
-1830065859143905384,"😂 https://t.co/7IcIh12EgY","Aug 31, 10:11:16 PM EDT"
-1830066501593792999,"💯
-
-Unequivocal violation of Brazilian law. https://t.co/uG0EyqU1EE","Aug 31, 10:13:49 PM EDT"
-1830066792967921910,"Exactly https://t.co/s4pOKn0aBi","Aug 31, 10:14:59 PM EDT"
-1830067209281941626,"Investing in Brazil under their current administration is insane. When there is new leadership, that will hopefully change. https://t.co/Wnmhwi8BzD","Aug 31, 10:16:38 PM EDT"
-1830075821303734375,"Absolutely.
-
-In addition, there will be reciprocal confiscation of assets of those who support the current regime in Brazil to pay for their illegal actions. https://t.co/nGCkVDxeVN","Aug 31, 10:50:51 PM EDT"
-1830081393289736629,"Something deeply misanthropic about these people https://t.co/mD9NygxCdU","Aug 31, 11:13:00 PM EDT"
-1830091917654168032,"There is growing evidence that fake judge @Alexandre engaged in serious, repeated & deliberate election interference in Brazil’s last presidential election.
-
-Under Brazilian law, that would mean up to 20 years in prison.
-
-And, I’m sorry to say that ","Aug 31, 11:54:49 PM EDT"
-1830130806481711534,"Absolutely https://t.co/JIZmUzpHcV","Sep 1, 2:29:21 AM EDT"
-1830137811988529400,"Worth reading https://t.co/fCdPcWfb9I","Sep 1, 2:57:11 AM EDT"
-1830140465640886587,"They want to overthrow The Constitution https://t.co/d1g35Vavwy","Sep 1, 3:07:44 AM EDT"
-1830141004705349776,"Support here is appreciated https://t.co/NVDjHeeR5Z","Sep 1, 3:09:52 AM EDT"
-1830141318112166158,"Yes https://t.co/nGCkVDxeVN","Sep 1, 3:11:07 AM EDT"
-1830141943742898308,"The people of Brazil are not happy with the current regime https://t.co/04n2aSsMA8","Sep 1, 3:13:36 AM EDT"
-1830142119916257497,"True https://t.co/0yIkJXt9Mq","Sep 1, 3:14:18 AM EDT"
-1830142895749234735,"https://t.co/7OHMSEtabC","Sep 1, 3:17:23 AM EDT"
-1830144156099826172,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸
-Long Live America and our Constitution!
-🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸","Sep 1, 3:22:23 AM EDT"
-1830144714403664325,"RT @Rothmus: 💯 https://t.co/Rbdv8FIUFA","Sep 1, 3:24:37 AM EDT"
-1830145275765166403,"RT @PeterSweden7: Here's what's happening in Brazil.
-
-▪️They banned X.
-
-▪️Apple and Google ordered to remove X from app stores.
-
-▪️People c…","Sep 1, 3:26:50 AM EDT"
-1830145731086193138,"Precisely. https://t.co/y4J2CleKi5","Sep 1, 3:28:39 AM EDT"
-1830146348156354620,"RT @BasedMikeLee: Please share if you agree that Brazil should face consequences for seizing American assets and shutting down X — all to s…","Sep 1, 3:31:06 AM EDT"
-1830147045627252837,"RT @WholeMarsBlog: Giving $150,000 to illegal immigrants to buy homes is not a good policy idea at all.
-
-Besides the massive costs to the…","Sep 1, 3:33:52 AM EDT"
-1830147390319296949,"RT @paulg: Founder Mode: https://t.co/3hOnlKOJBi","Sep 1, 3:35:15 AM EDT"
-1830147680468607423,"https://t.co/OYpEJy1Kct","Sep 1, 3:36:24 AM EDT"
-1830148811898908920,"Why not America?
-
-Those who oppose voter ID are doing so to commit fraud. https://t.co/7iE8laNtrb","Sep 1, 3:40:53 AM EDT"
-1830149197208617208,"Wow https://t.co/ygKaxLoDK2","Sep 1, 3:42:25 AM EDT"
-1830387888028078554,"Upgrade your app to get the latest Grok! https://t.co/xRu4hlA8HX","Sep 1, 7:30:54 PM EDT"
-1830388762079101011,"Starlink is the only high-bandwidth Internet system that covers all of Earth.
-
-It will probably deliver over 90% of all space-based Internet traffic next year. https://t.co/jOXlZfd2w9","Sep 1, 7:34:22 PM EDT"
-1830388967792849324,"Worth reading https://t.co/4YKuRLvB7v","Sep 1, 7:35:11 PM EDT"
-1830390502836854925,"Interesting observation https://t.co/xHD5VeS1IC","Sep 1, 7:41:17 PM EDT"
-1830440852411326782,"The 𝕏 algorithm assumes that if you interact with content, you want to see more of that content.
-
-One of the strongest signals is if you forward 𝕏 posts to friends, it assumes you like that content a lot, because it takes effort to forward.
-
-Unfortunat","Sep 1, 11:01:21 PM EDT"
-1830453580634955952,"Amen brother https://t.co/6A41d663ki","Sep 1, 11:51:56 PM EDT"
-1830454014938374360,"💯 https://t.co/2H8mjNinNt","Sep 1, 11:53:40 PM EDT"
-1830457658433839161,"True.
-
-I was just with some friends who were saying that their feed had become more toxic lately.
-
-Turns out they had been sharing examples of toxic posts with each other, which makes the algorithm think you love toxic posts. https://t.co/90ldsgPmrz","Sep 2, 12:08:08 AM EDT"
-1830465180951613474,"Exactly.
-
-This platform does not seek to impose the laws of the United States on other countries – we obey the laws of that country in that country.
-
-The problem in Brazil is that @AlexandreFiles we were being told to break Brazilian laws and that we wo","Sep 2, 12:38:02 AM EDT"
-1830469420742766724,"Exactly https://t.co/9G0n77TpC3","Sep 2, 12:54:53 AM EDT"
-1830485660190351497,"RT @WallStreetSilv: Javier Milei
-President of Argentina (8 months)
-
-🔊 … sound on https://t.co/Q1oNrA925o","Sep 2, 1:59:24 AM EDT"
-1830491154325860797,"The more the people of Brazil learn from the @AlexandreFiles, the worse it will get for him.
-
-He violated the constitution of Brazil repeatedly and egregiously, after swearing an oath to protect it.
-
-Nothing worse than an oathbreaker. https://t.co/QWHMH","Sep 2, 2:21:14 AM EDT"
-1830492169632731182,"His actions are against the will of the Brazilian people he is supposed to represent https://t.co/HTx1mEOSuU","Sep 2, 2:25:16 AM EDT"
-1830492458783809939,"RT @AlexandreFiles: Em uma decisão de 18 de agosto, Alexandre de Moraes justificou algumas de suas ordens ilegais. Em resumo, ele explica q…","Sep 2, 2:26:25 AM EDT"
-1830492503079841879,"RT @AlexandreFiles: Por fim, Moraes considera um crime o Senador do Val dizer que "investigaria" a Polícia Federal que executa as ordens de…","Sep 2, 2:26:36 AM EDT"
-1830494071338533295,"People like Ana are great https://t.co/CkNRX6U7Lx","Sep 2, 2:32:50 AM EDT"
-1830495696757084282,"He should be impeached for violating his oath of office https://t.co/ckWICyeGZX","Sep 2, 2:39:17 AM EDT"
-1830627365602607335,"Yes https://t.co/drmRDa54er","Sep 2, 11:22:30 AM EDT"
-1830627510117384329,"This is great https://t.co/12CIPAc11M","Sep 2, 11:23:04 AM EDT"
-1830628821197873312,"The free market works incredibly well https://t.co/nOTylhwLKX","Sep 2, 11:28:17 AM EDT"
-1830629832285409742,"The reason the Democratic Party is so soft on criminals is that criminals vote overwhelmingly Democrat – they don’t want to offend their customers!
-
-Democrat Party is literally the party of criminals. https://t.co/fczNk4sdQH","Sep 2, 11:32:18 AM EDT"
-1830630013420327197,"Seems legit 🤣🤣 https://t.co/RM5nUUP3EL","Sep 2, 11:33:01 AM EDT"
-1830630202508017701,"Bravo Brazilians! https://t.co/4kDM8AI25z","Sep 2, 11:33:46 AM EDT"
-1830630374747377872,"Only a matter of time before this criminal is behind bars https://t.co/C09VV3Cfg5","Sep 2, 11:34:27 AM EDT"
-1830630716209864900,"🔥🔥 https://t.co/0Js0BOXgEL","Sep 2, 11:35:48 AM EDT"
-1830630766197268942,"Viva a Democracia! Viva o Brasil Livre! 🇧🇷","Sep 2, 11:36:00 AM EDT"
-1830631894440149446,"Is this definitely arson? https://t.co/QSzNGKfk3h","Sep 2, 11:40:29 AM EDT"
-1830632468736590260,"But if you do, use a VPN for protection 😂 https://t.co/uMr8L6K7MD","Sep 2, 11:42:46 AM EDT"
-1830632711775572425,"Exactly https://t.co/1Sqjh7qC1Z","Sep 2, 11:43:44 AM EDT"
-1830632986016186601,"Worth considering https://t.co/SrwV6OzSsy","Sep 2, 11:44:50 AM EDT"
-1830633203951939877,"De Moraes deserves prison for his crimes https://t.co/8ECAlfqO2J","Sep 2, 11:45:41 AM EDT"
-1830633326031560854,"RT @AdrianDittmann: JUST IN: Massive rally in support of Bolsonaro this Sunday in Paraná Brazil https://t.co/uQWDbVh8X1","Sep 2, 11:46:11 AM EDT"
-1830633528775635105,"RT @libsoftiktok: You can’t make this up. The City of Aurora is gaslighting the public about the migrant gang taking over apartment buildin…","Sep 2, 11:46:59 AM EDT"
-1830634830801072374,"Super easy to use a VPN if a website is restricted in your location https://t.co/AHjiNRq5L9","Sep 2, 11:52:09 AM EDT"
-1830635162725441867,"Interesting article https://t.co/4GksHtMekZ","Sep 2, 11:53:29 AM EDT"
-1830635280212381912,"True (sigh) https://t.co/CAtf87AL0R","Sep 2, 11:53:57 AM EDT"
-1830635570240049228,"Those who want to undermine the Constitution are committing treason https://t.co/50lgxtbRke","Sep 2, 11:55:06 AM EDT"
-1830636844121506049,"RT @Foro_MAD: #Brasil 🇧🇷 | 🚨 EL BLOQUEO DE @X EN BRASIL ES UN ATENTADO CONTRA LA LIBERTAD DE EXPRESIÓN Y LOS DERECHOS DE LOS BRASILEÑOS
-
-El…","Sep 2, 12:00:09 PM EDT"
-1830636934223569336,"Exactly https://t.co/eN3JqHgaT4","Sep 2, 12:00:31 PM EDT"
-1830637755598328193,"Most of Earth should move to California!
-
-Illegals get free medical care in California as of January and now get “payback optional” $150k loans, funded by California taxpayers, among many other benefits. https://t.co/uwthE2bzY2","Sep 2, 12:03:47 PM EDT"
-1830637956723532114,"One hundred percent! https://t.co/s36ppwpV2M","Sep 2, 12:04:35 PM EDT"
-1830638519691440514,"RT @JMilei: FENÓMENO BARRIAL","Sep 2, 12:06:49 PM EDT"
-1830638776617664589,"President @JMilei is doing an incredible job restoring Argentina to greatness!","Sep 2, 12:07:50 PM EDT"
-1830639033979912305,"Wow https://t.co/dyJIZMQaIq","Sep 2, 12:08:51 PM EDT"
-1830639722970185959,"True https://t.co/mvtSyRRGl6","Sep 2, 12:11:36 PM EDT"
-1830639947625476233,"https://t.co/j6h9GPNgAL","Sep 2, 12:12:29 PM EDT"
-1830647154798457126,"Good https://t.co/Ekzjdtt32J","Sep 2, 12:41:08 PM EDT"
-1830650370336473253,"This weekend, the @xAI team brought our Colossus 100k H100 training cluster online. From start to finish, it was done in 122 days.
-
-Colossus is the most powerful AI training system in the world. Moreover, it will double in size to 200k (50k H200s) in a f","Sep 2, 12:53:54 PM EDT"
-1830651223722119223,"Unless the Brazilian government returns the illegally seized property of 𝕏 and SpaceX, we will seek reciprocal seizure of government assets too.
-
-Hope Lula enjoys flying commercial. https://t.co/ghZc11B4Hl","Sep 2, 12:57:18 PM EDT"
-1830653616170151967,"Why does no one complain about this? https://t.co/fz599SKZgW","Sep 2, 1:06:48 PM EDT"
-1830654525625295111,"So many lives have been lost, because Democrat policies pander to the criminal clients.
-
-Criminals vote overwhelmingly Democrat, so they don’t want to lose their votes. https://t.co/m2Dp8qxSaU","Sep 2, 1:10:25 PM EDT"
-1830655210840363222,"💯 https://t.co/KmnxhevMLv","Sep 2, 1:13:08 PM EDT"
-1830656672211103825,"Kamala vows to be a communist dictator on day one. Can you believe she wears that outfit!? https://t.co/ISKFXYnSon https://t.co/Anu9tKQHXN","Sep 2, 1:18:57 PM EDT"
-1830775664728739844,"Beta version of 𝕏 TV is out https://t.co/taODqsMECS","Sep 2, 9:11:47 PM EDT"
-1830775835038491077,"Something to consider https://t.co/fLeRETjoxH","Sep 2, 9:12:27 PM EDT"
-1830775992194904154,"💯 https://t.co/zyYUOz7qeS","Sep 2, 9:13:05 PM EDT"
-1830776046179721373,"RT @cb_doge: Elon Musk will hand the global citizenship award to Italian Prime Minister Giorgia Meloni during her upcoming visit to New Yor…","Sep 2, 9:13:18 PM EDT"
-1830776265181126885,"A step in the right direction! https://t.co/NzS6PTgi2W","Sep 2, 9:14:10 PM EDT"
-1830817628203417806,"Turns out that the evil dictator Morones is in fact a very evil dictator and has banned VPNs","Sep 2, 11:58:32 PM EDT"
-1830818163912532413,"!! https://t.co/VECSr4dVhH","Sep 3, 12:00:39 AM EDT"
-1830822104175874352,"RT @MarioNawfal: 🚨🇺🇸STARLINK KEEPS ANTARCTICA RESEARCH TEAM CONNECTED
-
-SpaceX's Starlink network is keeping a U.S. research team connected…","Sep 3, 12:16:19 AM EDT"
-1830822679865127238,"💯 https://t.co/SmER313qVC","Sep 3, 12:18:36 AM EDT"
-1830825666184380579,"RT @BasedMikeLee: They assured us they cared about the Constitution
-
-I guess they lied https://t.co/hl4XxuJyBD","Sep 3, 12:30:28 AM EDT"
-1830826036319166512,"Absolutely https://t.co/Z2MfF6Cv0l","Sep 3, 12:31:56 AM EDT"
-1830826413328375898,"RT @uaustinorg: At Convocation this very morning, founding students will cross the stage, shake President Kanelos' hand, and receive a copy…","Sep 3, 12:33:26 AM EDT"
-1830826870146727941,"The Democratic Party – same one that used to defend the First Amendment –now wants to destroy the First Amendment https://t.co/36KAhzA0la","Sep 3, 12:35:15 AM EDT"
-1830827486894030900,"This is what she actually believes.
-
-Free speech is the bedrock of democracy and the Democratic Party (Kamala is just a puppet) wants to destroy it. https://t.co/kntGcq2WnK","Sep 3, 12:37:42 AM EDT"
-1830828004160786692,"Great product result in great brands https://t.co/l3fBflqagg","Sep 3, 12:39:45 AM EDT"
-1830828701824516467,"This evil tyrant is a disgrace to judges robes https://t.co/U4LW2mjsTL","Sep 3, 12:42:32 AM EDT"
-1830828947048644888,"Worth reading https://t.co/oO42LJUSHd","Sep 3, 12:43:30 AM EDT"
-1830829538118381574,"I can’t wait. There is a lot of waste and needless regulation in government that needs to go. https://t.co/BOh3MIv4sJ","Sep 3, 12:45:51 AM EDT"
-1830829811272441980,"Actually Smart Summon is 🔥🔥 https://t.co/ybSzYP2MtS","Sep 3, 12:46:56 AM EDT"
-1830830836565852254,"🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 https://t.co/pUwqtyUwDT","Sep 3, 12:51:01 AM EDT"
-1830831632166551931,"A Trump victory is essential to defense of freedom of speech, secure borders, safe cities and sensible spending! https://t.co/2fnZDi6VO3","Sep 3, 12:54:10 AM EDT"
-1830832925203390633,"Your support is greatly appreciated https://t.co/3ssq6CoMXj","Sep 3, 12:59:19 AM EDT"
-1830835287171146105,"Yes https://t.co/bryIe5xlg9","Sep 3, 1:08:42 AM EDT"
-1830835525063708913,"The truth shall set you free https://t.co/G2cryE9HDc","Sep 3, 1:09:39 AM EDT"
-1830835626251304969,"RT @Rothmus: 👇 https://t.co/Nztve3rvJb","Sep 3, 1:10:03 AM EDT"
-1830849944686567575,"RT @MarioNawfal: 🇺🇸REAGAN: AS GOVERNMENT EXPANDS-LIBERTY CONTRACTS
-
-“Around the world, Constitutions tell the people what they can do.
-
-I…","Sep 3, 2:06:57 AM EDT"
-1830851921046806541,"https://t.co/NuRBa2aoZL","Sep 3, 2:14:48 AM EDT"
-1830853357465899257,"!! https://t.co/EDjWD7VGgv","Sep 3, 2:20:30 AM EDT"
-1830854573663154480,"RT @JMilei: @elonmusk EXACTLY...!!!
-We work to show the world that embracing the ideas of freedom brings prosperity...
-VIVA LA LIBERTAD CAR…","Sep 3, 2:25:20 AM EDT"
-1830856758505402374,"Very interesting. Worth watching. https://t.co/P2LXdQhikW","Sep 3, 2:34:01 AM EDT"
-1830857787594649641,"RT @WholeMarsBlog: My first time sitting in the back seat while FSD drives me around in my new Model 3 Performance $TSLA https://t.co/OM9qn…","Sep 3, 2:38:06 AM EDT"
-1830858458209349905,"Wow https://t.co/BixbTr9AY0","Sep 3, 2:40:46 AM EDT"
-1830969814279692613,"🤣🤣 https://t.co/vBjc0NRfXB","Sep 3, 10:03:16 AM EDT"
-1830976659450966374,"When is enough enough?
-
-My mother lives in NY and her friends have been assaulted 3 times this year, with no punishment for the attackers! https://t.co/D9JHgt2GTu","Sep 3, 10:30:28 AM EDT"
-1830979714674307284,"RT @SpaceX: Falcon 9 delivers 42 @Starlink satellites, including 26 with Direct to Cell capabilities, to low-Earth orbit in back-to-back la…","Sep 3, 10:42:36 AM EDT"
-1830981062463496640,"Bravo! https://t.co/lvbOuosm9a","Sep 3, 10:47:57 AM EDT"
-1830981785934794825,"True, these voting changes were being pushed for a while.
-
-All they needed was a crisis to undermine democracy and freedom.
-
-That is how we lose it: one crisis at a time. https://t.co/klw4GUUz26","Sep 3, 10:50:50 AM EDT"
-1831019233683349590,"This Wired article once again perpetuates the inaccuracy that we turned off Starlink for Ukraine when they wanted to launch an attack on the Russian fleet.
-
-Starlink was barred from turning on satellite beams in Crimea at the time, because doing so would","Sep 3, 1:19:38 PM EDT"
-1831066164933587196,"Awesome!
-
-Make sure to sign up for our organizational affiliates program.
-
-This is super helpful for combating impersonations and enabling the public to know what companies or organizations you belong to. https://t.co/63eCa7SmUf","Sep 3, 4:26:07 PM EDT"
-1831067001860808851,"Absolutely https://t.co/xfrU8OxFwS","Sep 3, 4:29:27 PM EDT"
-1831067199139914040,"Yes https://t.co/kArDnDWOLq","Sep 3, 4:30:14 PM EDT"
-1831068517896278339,"Conversation with @lexfridman & @realDonaldTrump https://t.co/Pbhp3ZMw3l","Sep 3, 4:35:28 PM EDT"
-1831068650855378960,"https://t.co/41CQPKlaR3","Sep 3, 4:36:00 PM EDT"
-1831106832280027211,"Tesla Actually Smart Summon going to wide release next week! https://t.co/OKNlTKFuCJ","Sep 3, 7:07:43 PM EDT"
-1831107031601946730,"TV app beta rolling out https://t.co/2RRn8Vya5M","Sep 3, 7:08:31 PM EDT"
-1831109381611733399,"Nothing scales larger than reality https://t.co/mwJKYpBAjA","Sep 3, 7:17:51 PM EDT"
-1831172487012630864,"Well said https://t.co/ylNwdyBuqo","Sep 3, 11:28:37 PM EDT"
-1831173037187817480,"RT @AMAZlNGNATURE: Can everybody just Please look at this Lion https://t.co/1wJGZwp5s9","Sep 3, 11:30:48 PM EDT"
-1831173295846379681,"Great https://t.co/mKDAO7cM9z","Sep 3, 11:31:49 PM EDT"
-1831175298924380392,"Most people have no idea how good it is https://t.co/QadyLr4tnX","Sep 3, 11:39:47 PM EDT"
-1831178662030561559,"Love this @AviationWeek cover ❤️ https://t.co/wETwcO7Skl","Sep 3, 11:53:09 PM EDT"
-1831194524380520489,"Exactly https://t.co/c3p7cm7h8v","Sep 4, 12:56:11 AM EDT"
-1831252527020642448,"Starlink now available in the Solomon Islands https://t.co/796QUlgha3","Sep 4, 4:46:40 AM EDT"
-1831256212387909634,"RT @Starlink: To our customers in Brazil (who may not be able to read this as a result of X being blocked by @alexandre):
-
-The Starlink tea…","Sep 4, 5:01:18 AM EDT"
-1831259570393727319,"Follow @AlexandreFiles to find out exactly how a so-called “justice” repeatedly and directly violated the laws of Brazil that he swore to uphold!
-
-No judge on Earth in the 21st century has broken his own country’s laws so often and so egregiously.
-
-#Impea","Sep 4, 5:14:39 AM EDT"
-1831261181505568844,"… https://t.co/ukuZXtdUmQ","Sep 4, 5:21:03 AM EDT"
-1831262135143502233,"RT @cb_doge: #ImpeachAlexandre 🇧🇷
-
-Alexandre de Moraes is an outright criminal of the worst kind. No judge on Earth in the 21st century has…","Sep 4, 5:24:50 AM EDT"
-1831262914445250871,"Because not requiring ID, combined with mail in voting, makes it completely impossible to prove fraud (obviously) https://t.co/PbmwrsMb5L","Sep 4, 5:27:56 AM EDT"
-1831263147862421899,"RT @TrumpWarRoom: We'll just leave this here. https://t.co/umrcPA7CFI","Sep 4, 5:28:52 AM EDT"
-1831264115987464294,"Extremely alarming! https://t.co/7ZdkMId1AJ","Sep 4, 5:32:43 AM EDT"
-1831338079766085990,"https://t.co/3ghCibSUUJ","Sep 4, 10:26:37 AM EDT"
-1831349663385207039,"Interesting https://t.co/fSVXWFNgiE","Sep 4, 11:12:39 AM EDT"
-1831349774005703094,"Great idea https://t.co/1pTaJPJzmO","Sep 4, 11:13:05 AM EDT"
-1831350121260613763,"What a scumbag! https://t.co/oAyAZoxu7t","Sep 4, 11:14:28 AM EDT"
-1831350254673031671,"… https://t.co/HOMCl1Ed3E","Sep 4, 11:15:00 AM EDT"
-1831356414625030536,"What’s your work day like, they ask … https://t.co/6boPPngpV4","Sep 4, 11:39:28 AM EDT"
-1831356552021979140,"This is crazy https://t.co/uwyqFL2bEI","Sep 4, 11:40:01 AM EDT"
-1831356844214042634,"https://t.co/fVv6TF7Gdh","Sep 4, 11:41:11 AM EDT"
-1831359982446825507,"Still, that’s a lot of senators who want him gone. Next election, he goes. https://t.co/WR5wFMmJqf","Sep 4, 11:53:39 AM EDT"
-1831360220075008294,"RT @BasedMikeLee: Arizona refuses to remove illegal aliens from voter-registration files.
-
-If this doesn’t prove the need for Congress to p…","Sep 4, 11:54:36 AM EDT"
-1831360355454607689,"Absolutely https://t.co/ad3N8p0KO2","Sep 4, 11:55:08 AM EDT"
-1831360860171997513,"RT @cb_doge: 2024 Campaign Interviews:
-
-Kamala Harris & Tim Walz: 1
-
-Donald Trump & JD Vance: 34
-
-The ones who can't even address the publi…","Sep 4, 11:57:08 AM EDT"
-1831363650508177856,"Bravo! 🇧🇷 https://t.co/kIx2lfa8Qx","Sep 4, 12:08:14 PM EDT"
-1831363654249582864,"Free speech","Sep 4, 12:08:14 PM EDT"
-1831364314466553995,"Exactly https://t.co/Wx7g6nK1an","Sep 4, 12:10:52 PM EDT"
-1831364659464835508,"He is a criminal cosplaying as a judge https://t.co/8HWwXdDsiT","Sep 4, 12:12:14 PM EDT"
-1831365045277860179,"And @CommunityNotes for the win again https://t.co/yr77G6AUZP","Sep 4, 12:13:46 PM EDT"
-1831365465018659326,"Moraes will end up in prison for his many crimes. That is his destiny.","Sep 4, 12:15:26 PM EDT"
-1831365982633513452,"Great deal for small businesses and organizations https://t.co/R0WfqvZifz","Sep 4, 12:17:30 PM EDT"
-1831366652161819105,"America needs a President who can talk and answer questions without being spoonfed by a teleprompter https://t.co/fSP8HUHbFu","Sep 4, 12:20:09 PM EDT"
-1831402544142413955,"Ferreira is a principled & brave fighter for freedom of speech Brazil.
-
-He could have taken the easy way out. Instead, he fights for the freedom of the Brazilian people!!
-
-🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷❤️🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷🇧🇷 https://t.co/kIx2lfa8Qx","Sep 4, 2:42:46 PM EDT"
-1831402810027733064,"Because they want to suppress freedom of speech in America too https://t.co/9xqIYPTea8","Sep 4, 2:43:50 PM EDT"
-1831403470580281430,"There is no legal basis for this whatsoever.
-
-Starlink is a different company with different shareholders.
-
-Moraes, the charlatan in judges robes, cannot even cite a law that Starlink has broken! https://t.co/R3a1Zrb4LF","Sep 4, 2:46:27 PM EDT"
-1831408430776775130,"Is Tulsi (a former Democrat btw) still on the domestic terror watchlist?
-
-Even if no longer on the list, it’s insane that she was ever on it. https://t.co/tpmt3lyWpe","Sep 4, 3:06:10 PM EDT"
-1831410880162205870,"Your tax dollars are being wasted to a degree that is hard to comprehend.
-
-An aircraft carrier costs $13 billion. America could have bought a new navy to better defend the country, upgraded our highways or any one of a number of great things.
-
-Instead, ","Sep 4, 3:15:54 PM EDT"
-1831411262829556036,"Congrats to the 𝕏 legal team for defending freedom of speech, the bedrock of democracy! https://t.co/RxsAVvLNrj","Sep 4, 3:17:25 PM EDT"
-1831411938976546885,"𝕏 will soon be available on all home TV screens https://t.co/KDbJIyPDIU","Sep 4, 3:20:06 PM EDT"
-1831412336881758701,"Wow https://t.co/ad3N8p0KO2","Sep 4, 3:21:41 PM EDT"
-1831413115227140467,"Make sure to tell your friends & family about 𝕏 and send them links to posts! https://t.co/Fee0ggannt","Sep 4, 3:24:47 PM EDT"
-1831413475039723910,"23 senators in Brazil have voted to impeach @AlexandreFiles https://t.co/WR5wFMmJqf","Sep 4, 3:26:13 PM EDT"
-1831485136397070836,"Much appreciated, @SenMarcoRubio! https://t.co/tmgm2yijem","Sep 4, 8:10:58 PM EDT"
-1831485429323067878,"Bravo! https://t.co/jJcPsgwx5p","Sep 4, 8:12:08 PM EDT"
-1831486742052159886,"I have never been materially active in politics before, but this time I think civilization as we know it is on the line.
-
-If we want to preserve freedom and a meritocracy in America, then Trump must win. https://t.co/wHnuKsr9UJ","Sep 4, 8:17:21 PM EDT"
-1831488689236799724,"💯 https://t.co/RQmEcmdgCI","Sep 4, 8:25:05 PM EDT"
-1831490704767606995,"Exactly https://t.co/NvesXQ5Jc6","Sep 4, 8:33:06 PM EDT"
-1831491782418497915,"RT @America1stLegal: Huge new lawsuit to protect our elections from illegal noncitizen voting: https://t.co/kGbXfvPnD6","Sep 4, 8:37:23 PM EDT"
-1831493410727026779,"Wow https://t.co/nxbhYHj2sI","Sep 4, 8:43:51 PM EDT"
-1831493476175008047,"RT @tesla_na: And just like that, your car can navigate a busy parking lot without you in it","Sep 4, 8:44:06 PM EDT"
-1831535647279943914,"They should take you up on the offer. You are super fair. https://t.co/gQDuScRfWB","Sep 4, 11:31:41 PM EDT"
-1831536772297220267,"He did this for vast numbers of accounts.
-
-No question that he engaged in election interference in Brazil at large scale. https://t.co/NZVuNXHF4m","Sep 4, 11:36:09 PM EDT"
-1831562790894518678,"Sure would be a strange reason to shut down the US government 🤔 https://t.co/b73ezjQPc1","Sep 5, 1:19:32 AM EDT"
-1831563011414171973,"😂 https://t.co/BsVIKBV0r0","Sep 5, 1:20:25 AM EDT"
-1831563621907726613,"RT @cb_doge: The Constitution is greater than any judge or president. https://t.co/2y3DSOsUAq","Sep 5, 1:22:50 AM EDT"
-1831564004940013583,"SpaceX is a separate company and they did even claim that SpaceX/Starlink broke any laws. Purely capricious. https://t.co/nVxcPU6J1a","Sep 5, 1:24:22 AM EDT"
-1831564143888830712,"RT @cb_doge: "I have never been materially active in politics before, but this time I think civilization as we know it is on the line. If w…","Sep 5, 1:24:55 AM EDT"
-1831565767013187905,"Exactly https://t.co/L08NNWTrzB","Sep 5, 1:31:22 AM EDT"
-1831591936362180720,"Currently expected self-driving timeline https://t.co/LuJVcCTBmt","Sep 5, 3:15:21 AM EDT"
-1831601372761854443,"True https://t.co/TTDCVkCQ87","Sep 5, 3:52:51 AM EDT"
-1831602287300465063,"AP stands for Associated Propaganda https://t.co/unHLo279eb","Sep 5, 3:56:29 AM EDT"
-1831603494366646331,"RT @cb_doge: "Elon Musk holds India in high esteem & is deeply impressed by ISRO's Chandrayaan 3 mission. He also hopes to expand his Starl…","Sep 5, 4:01:17 AM EDT"
-1831604391436029961,"Mind-blowing that this is literally the US Democratic Party platform of 2024 https://t.co/buAaQ2BeHq","Sep 5, 4:04:51 AM EDT"
-1831605821148467628,"Government spending is driving America to bankruptcy https://t.co/mxrhle2E9Y","Sep 5, 4:10:32 AM EDT"
-1831607018513158583,"Moraes was demanding that 𝕏 take actions that are illegal under Brazilian law and be silent about it.
-
-If that is not extreme corruption, what is? https://t.co/iAaAnfE7wb","Sep 5, 4:15:17 AM EDT"
-1831610063930134543,"Support the @internetarchive https://t.co/zlhOsOrRsY","Sep 5, 4:27:23 AM EDT"
-1831610415555510727,"Yeah! https://t.co/919k6MmFJS","Sep 5, 4:28:47 AM EDT"
-1831611299886694593,"RT @marcelvanhattem: O senador @EduGiraoOficial e eu saímos há pouco do Congresso e já estamos embarcando rumo aos EUA!
-
-Vamos atualizar p…","Sep 5, 4:32:18 AM EDT"
-1831612961397375362,"Exactly https://t.co/lQUk7KrdFQ","Sep 5, 4:38:54 AM EDT"
-1831613245985063065,"RT @charliekirk11: J.D. VANCE: "I want my kids to grow up in a country where our neighborhoods are safe enough that they can make a mistake…","Sep 5, 4:40:02 AM EDT"
-1831613650525700542,"Great question https://t.co/dd9Gj4EADi","Sep 5, 4:41:38 AM EDT"
-1831613936736592297,"Not immediately, but firmly on that path https://t.co/m5mq4WAisd","Sep 5, 4:42:46 AM EDT"
-1831616683447877947,"https://t.co/pAudjBqVRo","Sep 5, 4:53:41 AM EDT"
-1831619311456104517,"RT @AlexandreFiles: As ordens ilegais de Alexandre de Moraes censuraram não apenas políticos e jornalistas proeminentes, mas também cidadão…","Sep 5, 5:04:08 AM EDT"
-1831621192244920455,"RT @MarioNawfal: 🚨🇺🇸SEN MIKE LEE CONDEMNS BRAZIL’S X BAN: MORAES IS A TYRANT…MARXIST… VOLDEMORT
-
-“Justice Alexandre de Moraes” = oxymoron…","Sep 5, 5:11:36 AM EDT"
-1831666920031949268,"Wow, well, that’s good https://t.co/UfCgfP0Tlh","Sep 5, 8:13:19 AM EDT"
-1831667187842449698,"Thanks @TheEconomist https://t.co/g2SdzkzGau","Sep 5, 8:14:22 AM EDT"
-1831667318893490604,"Bloomberg too https://t.co/Xjh9QkQv38","Sep 5, 8:14:54 AM EDT"
-1831667697894998251,"Yay! https://t.co/WCyCdB188I","Sep 5, 8:16:24 AM EDT"
-1831669257806979224,"Bravo! https://t.co/yWcx7GhNjC","Sep 5, 8:22:36 AM EDT"
-1831669309355008139,"Bravo! https://t.co/My3g1QQBVo","Sep 5, 8:22:48 AM EDT"
-1831669573625508150,"This would unlock tremendous prosperity for America https://t.co/8XpBJrloWH","Sep 5, 8:23:51 AM EDT"
-1831670114652922080,"Let us strive to reach greater heights as a civilization, for what could be more inspiring than being out there among the stars? https://t.co/LgYEFhBRUe","Sep 5, 8:26:00 AM EDT"
-1831671904568054095,"RT @SeibtNaomi: 🇧🇷GET READY FOR SEPTEMBER 7❗️
-
-The most important protest for free speech in the history of Brazil is about to take place.…","Sep 5, 8:33:07 AM EDT"
-1831672345108357610,"I look forward to serving America if the opportunity arises.
-
-No pay, no title, no recognition is needed. https://t.co/5PSNtjBQn7","Sep 5, 8:34:52 AM EDT"
-1831672443959648350,"RT @PolarisProgram: The Polaris team conducted a flyover at Kennedy Space Center on Tuesday with Falcon 9 and Dragon vertical on pad 39A. T…","Sep 5, 8:35:16 AM EDT"
-1831672865508172028,"Concerning https://t.co/vmGP6w85MI","Sep 5, 8:36:56 AM EDT"
-1831673222628053318,"🇧🇷🇧🇷🇧🇷Free Brazil! 🇧🇷🇧🇷🇧🇷 https://t.co/BLGSFAVUQ5","Sep 5, 8:38:21 AM EDT"
-1831674867927719987,"RT @WallStreetSilv: Dems keep trying to steal elections https://t.co/lfPjd1H8Qv","Sep 5, 8:44:54 AM EDT"
-1831675372330422633,"RT @MarioNawfal: 🇧🇷 2022: ELON CELEBRATED AS HERO | NOW BATTLING FULL-SCALE ATTACKS
-
-In 2022, President Bolsonaro honored Elon with Brazil’…","Sep 5, 8:46:54 AM EDT"
-1831676941486764053,"He censored so many accounts that had broken no law. Why? https://t.co/kvudNiOBMS","Sep 5, 8:53:08 AM EDT"
-1831730748467925204,"It’s a what? Ohh … https://t.co/04ubwNfTEb","Sep 5, 12:26:57 PM EDT"
-1831777170223427828,"🥰 https://t.co/zHVnZXzX9Q","Sep 5, 3:31:24 PM EDT"
-1831778370180329962,"This is badly needed https://t.co/H9AKYbDssZ","Sep 5, 3:36:10 PM EDT"
-1831780539998859682,"Wow 🤯 https://t.co/fXf05m5lOS","Sep 5, 3:44:48 PM EDT"
-1831782191367647498,"Thank you https://t.co/txedK3nukr","Sep 5, 3:51:21 PM EDT"
-1831784676199219599,"Milei is bringing prosperity to Argentina https://t.co/AjUCKvRoq2","Sep 5, 4:01:14 PM EDT"
-1831784739214389334,"RT @MarioNawfal: Falcon 9 Launches 21 Starlink Satellites, 13 with Direct-to-Cell Capabilities
-
-SpaceX’s Falcon 9 successfully delivered 21…","Sep 5, 4:01:29 PM EDT"
-1831810356177686708,"Birth rates continue to plummet.
-
-Population collapse is a certainty. https://t.co/xFZi9IcEbS","Sep 5, 5:43:16 PM EDT"
-1831829780150534355,"Starlink now constitutes roughly 2/3 of all active Earth satellites https://t.co/Au2eHrvItq","Sep 5, 7:00:27 PM EDT"
-1831830767317741634,"Yes https://t.co/rMdXN9GVoC","Sep 5, 7:04:23 PM EDT"
-1831831211603587244,"Kamala wants to destroy your right to free speech under The Constitution https://t.co/oJN5T8nPLn","Sep 5, 7:06:09 PM EDT"
-1831863261119311905,"The incentive is obvious, as it would turn all swing states into deep blue Democrat states, making America a one-party country forever https://t.co/3jXS2OnXYb","Sep 5, 9:13:30 PM EDT"
-1831877195406647438,"Interesting https://t.co/cNJjTgOQGt","Sep 5, 10:08:52 PM EDT"
-1831888054870798728,"RT @MarioNawfal: 🇺🇸 REAGAN: MY PRESIDENCY WASN'T A REVOLUTION... IT WAS A REDISCOVERY OF COMMON SENSE
-
-“They called it the Reagan Revolutio…","Sep 5, 10:52:01 PM EDT"
-1831894855108456466,"RT @SawyerMerritt: The WSJ tested out @SpaceX's Starlink Wifi on an Airplane and was blown away: "It was like working from home, but home i…","Sep 5, 11:19:03 PM EDT"
-1831926621449929044,"Alter ego stress relief https://t.co/GbaRqDEMIF","Sep 6, 1:25:16 AM EDT"
-1831926899574239582,"Dark irony https://t.co/Z9gtSVNqVR","Sep 6, 1:26:23 AM EDT"
-1831932241750220899,"RT @Cristiano: I dreamed of this, and I have more dreams. Thank you all! https://t.co/2SS3ZoG2Gl","Sep 6, 1:47:36 AM EDT"
-1831937767573721148,"Yeah https://t.co/aSUePZxTRt","Sep 6, 2:09:34 AM EDT"
-1831943121133040102,"They are refusing to remove noncitizens from the voter rolls https://t.co/Qv0iGHF9Dv","Sep 6, 2:30:50 AM EDT"
-1831945097111564465,"😂 https://t.co/FzVT5yW1pt","Sep 6, 2:38:41 AM EDT"
-1831947251553595507,"We need a secure border.
-
-Unless Trump wins, meet your new building managers … https://t.co/3RL4apRKc8","Sep 6, 2:47:15 AM EDT"
-1831948572717412517,"This is why the “homeless” (more accurately referred to as “drug zombies”) problem only gets worse with increased funding https://t.co/MEHlb7W0hH","Sep 6, 2:52:30 AM EDT"
-1831954473834754121,"Reagan was awesome https://t.co/vuAQyWRGfp","Sep 6, 3:15:57 AM EDT"
-1831955944605139243,"💯🔥🔥🔥 https://t.co/O2S5HNDf01","Sep 6, 3:21:47 AM EDT"
-1831957170570830184,"True https://t.co/Rfx9HaAU4s","Sep 6, 3:26:40 AM EDT"
-1831957773216870740,"This needs to stop https://t.co/X5H0JPj3c0","Sep 6, 3:29:03 AM EDT"
-1831963691304284182,"RT @Rothmus: 🎯 https://t.co/nyjjpAOjQb","Sep 6, 3:52:34 AM EDT"
-1831965010119319676,"Make any image instantly using Grok!
- https://t.co/lYAZKjY5gK","Sep 6, 3:57:49 AM EDT"
-1831965136053268963,"https://t.co/gfv7iWJBrS","Sep 6, 3:58:19 AM EDT"
-1831965468812570827,"That’s how I felt trying to play the xylophone as a kid","Sep 6, 3:59:38 AM EDT"
-1831966325834739959,"RT @MarioNawfal: 🇺🇸EX-DEM LEADER SWITCHES TO REPUBLICANS
-
-Former California Democratic leader Gloria Romero has switched to the Republican…","Sep 6, 4:03:03 AM EDT"
-1831973682857820190,"That’s what happened to California after amnesty for illegal aliens passed in the 80’s
-https://t.co/BkuPxBgexr","Sep 6, 4:32:17 AM EDT"
-1832139938621456844,"Does seem logical 🤷♂️ https://t.co/kNAudQNsNa","Sep 6, 3:32:55 PM EDT"
-1832141238117511667,"Interesting https://t.co/OUvHoJCtJu","Sep 6, 3:38:05 PM EDT"
-1832141839954276680,"RT @MarioNawfal: 🚨🇺🇸TESLA SECURES $450M MEGAPACK ORDERS FOR GEORGIA POWER
-
-Tesla has landed four new Megapack orders in Georgia, totaling $…","Sep 6, 3:40:28 PM EDT"
-1832142752114503811,"… https://t.co/JoDsr1lcCo","Sep 6, 3:44:06 PM EDT"
-1832155726443319592,"Tesla Model S Plaid Speed (Spaceballs reference for beyond ludicrous speed) does 0 to 60 mph in 2 seconds, despite being a four door sedan with a large trunk! https://t.co/xDSTmSJHZQ","Sep 6, 4:35:39 PM EDT"
-1832156273506496866,"RT @SpaceX: Falcon 9 launches the @NatReconOfc 's NROL-113 mission from pad 4E in California https://t.co/aL49awCtrD","Sep 6, 4:37:50 PM EDT"
-1832156352241709158,"RT @SpaceX: Falcon 9’s first stage has landed on the Of Course I Still Love You droneship https://t.co/GvPcpMQ5mV","Sep 6, 4:38:08 PM EDT"
-1832157335445197269,"RT @edwards345: Starlink is a positive force in the world, bridging the digital divide across the globe. Starlink will boost education, hea…","Sep 6, 4:42:03 PM EDT"
-1832158648283599071,"They’re not wrong. The financial incentives are so strong to go to California and New York, that most of Earth should move there. https://t.co/u8AWCWY6iK","Sep 6, 4:47:16 PM EDT"
-1832159097673937271,"Invite your friends to 𝕏!
-
-This is the group chat for Earth. https://t.co/WFFFtNBFt6","Sep 6, 4:49:03 PM EDT"
-1832194200839823817,"Impressive AAA game from China!
-
-Seems oddly familiar 😂 https://t.co/LkrmoFhVou","Sep 6, 7:08:32 PM EDT"
-1832203241309806790,"New puppet same as old puppet 😂
-
-I mean … it’s true 🤷♂️ https://t.co/nFHjtUb34B","Sep 6, 7:44:28 PM EDT"
-1832237121639243832,"Accurate analysis by @Naval https://t.co/FcRxFB1EAL","Sep 6, 9:59:05 PM EDT"
-1832274590669705319,"🤣🤣
- https://t.co/SbiR4jJxjV","Sep 7, 12:27:59 AM EDT"
-1832277130123645234,"Grok unhinged fun mode 🤣🤣
- https://t.co/HbCyDecKOc","Sep 7, 12:38:04 AM EDT"
-1832283448674775189,"RT @ajtourville: “The Tesla Cybertruck will never go into production.”
-
-— Industry experts https://t.co/EbTukmwjFz","Sep 7, 1:03:11 AM EDT"
-1832290341237481983,"Yeah https://t.co/sh6VqmZumD","Sep 7, 1:30:34 AM EDT"
-1832290522141978818,"RT @TheRabbitHole84: Live and let live is the sustainable path forward https://t.co/HThzpI5mm8","Sep 7, 1:31:17 AM EDT"
-1832290638181650918,"RT @verified: Insights is now available for Verified Orgs in the US.
-
-Upcoming improvements:
-- Advanced search queries
-- Stronger filtering…","Sep 7, 1:31:45 AM EDT"
-1832319390940881133,"Department of Government Efficiency https://t.co/HFeHYNIkJN","Sep 7, 3:26:00 AM EDT"
-1832319747007914422,"RT @MarioNawfal: ELON: THE FEDERAL DEFICIT IS INSANE. THIS JUST CAN'T KEEP GOING.
-
-"The federal budget deficit is insane.
-
-It's like $3 tr…","Sep 7, 3:27:25 AM EDT"
-1832320116286967859,"Thank you https://t.co/p9ClPlFjoV","Sep 7, 3:28:53 AM EDT"
-1832324556435972235,"RT @cb_doge: Legacy media simply can’t compete with the hundreds of millions of people providing real-time information on 𝕏.
-
-Top News Apps…","Sep 7, 3:46:31 AM EDT"
-1832325390527766553,"RT @shellenberger: The media says nobody in Brazil misses X, but everyone I’ve interviewed says they do. Carlos describes himself as a left…","Sep 7, 3:49:50 AM EDT"
-1832327860918386691,"… https://t.co/76LJ2izAQv","Sep 7, 3:59:39 AM EDT"
-1832331595002364207,"RT @VivekGRamaswamy: Make America Greater Than It’s Ever Been.","Sep 7, 4:14:29 AM EDT"
-1832335477804068986,"RT @ajtourville: How it started How it's going https://t.co/GqGNdsA5S6","Sep 7, 4:29:55 AM EDT"
-1832335842356105318,"This is true https://t.co/wT9oKzILHx","Sep 7, 4:31:22 AM EDT"
-1832448037639352428,"Starlink now available in Zimbabwe! https://t.co/TBlqL0327U","Sep 7, 11:57:12 AM EDT"
-1832448566562058375,"RT @Starlink: Pay as you go, no long-term contracts required
-
-Easy to order online in minutes → https://t.co/fUko3xRXtb","Sep 7, 11:59:18 AM EDT"
-1832449422724309271,"This is crazy https://t.co/GfgYk7kJgb","Sep 7, 12:02:42 PM EDT"
-1832545298675331517,"SpaceX created the first fully reusable rocket stage and, much more importantly, made the reuse economically viable.
-
-Making life multiplanetary is fundamentally a cost per ton to Mars problem.
-
-It currently costs about a billion dollars per ton of usefu","Sep 7, 6:23:40 PM EDT"
-1832546931060428972,"Nice https://t.co/nE1A7WJJGT","Sep 7, 6:30:10 PM EDT"
-1832550322293837833,"The first Starships to Mars will launch in 2 years when the next Earth-Mars transfer window opens.
-
-These will be uncrewed to test the reliability of landing intact on Mars. If those landings go well, then the first crewed flights to Mars will be in 4 yea","Sep 7, 6:43:38 PM EDT"
-1832552882006024476,"That’s the plan https://t.co/Ikg7tCt5S9","Sep 7, 6:53:48 PM EDT"
-1832559292437692747,"https://t.co/oJoMGstIHu","Sep 7, 7:19:17 PM EDT"
-1832633168014270911,"Hayek nails it again 😂 https://t.co/uot5QBGs4r","Sep 8, 12:12:50 AM EDT"
-1832636197488738376,"Not bad, given the circumstances https://t.co/UpLYsJ8TpY","Sep 8, 12:24:52 AM EDT"
-1832641592080924920,"Interest payments on the national debt are now higher than the entire Defense Department budget and rising! https://t.co/yqRgLpzPu1","Sep 8, 12:46:19 AM EDT"
-1832757878341476526,"RT @HSajwanization: 𝕏.com Traffic Update (August)
-
-→ 4.3 billion total visits
-→ 907 million unique visitors
-→ Pages / Visit up by 5.29%
-→ A…","Sep 8, 8:28:23 AM EDT"
-1832795989779878340,"RT @Tesla: FSD will be significantly safer than humans","Sep 8, 10:59:50 AM EDT"
-1832797273396306023,"Great! https://t.co/BTWp9pfrxk","Sep 8, 11:04:56 AM EDT"
-1832797912473936163,"RT @cb_doge: 𝕏 is breaking all-time usage records, while mainstream media viewership keeps declining.
-
-A shift in how people consume news a…","Sep 8, 11:07:28 AM EDT"
-1832800082355175621,"Humanity is doomed if the extinctionist philosophy that led to the Mad-Max-in-real-life of downtown San Francisco propagates to the world https://t.co/MgelefwIiI","Sep 8, 11:16:06 AM EDT"
-1832800613530268104,"! https://t.co/qyeM6nVUtX","Sep 8, 11:18:12 AM EDT"
-1832805912945496432,"The right to bear arms is there to protect free speech and stop a tyrannical government from taking your rights away!
-
-That’s why the first thing that all tyrants do is disarm the people, just like Chavez did when he was first elected. After that, no more","Sep 8, 11:39:16 AM EDT"
-1832809393575919989,"https://t.co/VsOyFNnlJc","Sep 8, 11:53:06 AM EDT"
-1832809518251565509,"https://t.co/Wpe1Hm4Uad","Sep 8, 11:53:35 AM EDT"
-1832810190367809759,"Almost a billion people used 𝕏 last month! https://t.co/qdu11Drk5R","Sep 8, 11:56:16 AM EDT"
-1832840027392352321,"RT @EndWokeness: "She has to do this to win"
-
-Bernie Sanders admits that Kamala is hiding her Marxist ideology to win the election:
-
- https…","Sep 8, 1:54:49 PM EDT"
-1832853800408998366,"America would pay for the healthcare of Earth https://t.co/8jVEDc68we","Sep 8, 2:49:33 PM EDT"
-1832854280950136931,"RT @RightforAmerica: Kamala Harris thinks you're too stupid to realize prices have skyrocketed since she arrived in the White House.
-
-- Gro…","Sep 8, 2:51:28 PM EDT"
-1832896561657077906,"🤔 https://t.co/lCfAlBT5Bj","Sep 8, 5:39:28 PM EDT"
-1832902346830991571,"RT @goth600: the strange beauty of salt mines https://t.co/IL5jDwt9BL","Sep 8, 6:02:27 PM EDT"
-1832903478123135335,"This is the Fermi Great Filter that all single-planet civilizations face https://t.co/kahcyTjq0B","Sep 8, 6:06:57 PM EDT"
-1832953811222089988,"I keep forgetting that Biden is still technically in charge of the country 😂","Sep 8, 9:26:57 PM EDT"
-1832961221038940302,"That’s a direct quote of Master Yoda! https://t.co/x13TJicgAq","Sep 8, 9:56:24 PM EDT"
-1832962523986841623,"💯 https://t.co/4KiEN3HkmP","Sep 8, 10:01:35 PM EDT"
-1832966019117093068,"Absolutely https://t.co/YBzcFx2orn","Sep 8, 10:15:28 PM EDT"
-1832968029518402022,"RT @rivatez: The Fountainhead https://t.co/2NXej7Y5vX","Sep 8, 10:23:27 PM EDT"
-1832986658133958979,"RT @SpaceX: Targeting no earlier than Tuesday, September 10 for Falcon 9’s launch of the Polaris Dawn mission → https://t.co/WpSw0gzeT0
-
-We…","Sep 8, 11:37:29 PM EDT"
-1833151262746964447,"Mario Draghi’s critique is accurate.
-
-A thorough review of EU regulations to eliminate unnecessary rules and streamline activity in Europe would revitalize growth and strengthen competitiveness.
-
-Things should be default legal, rather than default illeg","Sep 9, 10:31:33 AM EDT"
-1833155298166522126,"He is right https://t.co/uviLLIxFj2","Sep 9, 10:47:36 AM EDT"
-1833155431885402401,"🥰 https://t.co/b2NIbLkgIL","Sep 9, 10:48:07 AM EDT"
-1833180704869626035,"Vote for Kamala if you want this to happen to your neighborhood! https://t.co/TfR8ekmFAZ","Sep 9, 12:28:33 PM EDT"
-1833189113631236213,"Ohio rn https://t.co/DZ99Shcs5E","Sep 9, 1:01:58 PM EDT"
-1833210550966464738,"This is the heart of the problem and explains why the Democratic Party won’t even deport illegal immigrant gang members who beat up police on camera, as happened in New York a few months ago.
-
-That’s how badly they want those votes! https://t.co/btkEoirHs","Sep 9, 2:27:09 PM EDT"
-1833213436815413719,"Great rebuttals https://t.co/ftSPpf17Qc","Sep 9, 2:38:37 PM EDT"
-1833214360501752233,"Great work! https://t.co/GMpNGVCHBg","Sep 9, 2:42:17 PM EDT"
-1833216522652643755,"153 illegal alien sex offenders arrested this past year in Baltimore alone. Actual offenses committed far exceed arrests. https://t.co/IpxEXYuW8U","Sep 9, 2:50:53 PM EDT"
-1833216914614849563,"Exactly https://t.co/PGDdCpNLwf","Sep 9, 2:52:26 PM EDT"
-1833217011394191705,"And I will https://t.co/aTg5giY61S","Sep 9, 2:52:49 PM EDT"
-1833220440254513243,"Save them! 😢 https://t.co/aLMPTJIPd9","Sep 9, 3:06:27 PM EDT"
-1833220597842907172,"RT @VivekGRamaswamy: National division is an illusion. We disagree on plenty, but the core principles remain: Merit. Free speech. Self-gove…","Sep 9, 3:07:04 PM EDT"
-1833257523979424056,"RT @JDVance: It has been 50 days since Kamala Harris became the presumptive nominee of the Democratic Party.
-
-In the dead of night yesterd…","Sep 9, 5:33:48 PM EDT"
-1833313632828223798,"Launch is currently go for early tomorrow morning https://t.co/rwoYKFTef3","Sep 9, 9:16:46 PM EDT"
-1833313712637456576,"RT @PolarisProgram: Good L-8 hour weather brief: The Polaris Dawn crew is ready to step into suit-up and launch operations for liftoff earl…","Sep 9, 9:17:05 PM EDT"
-1833314790409965598,"Just had a conversation @theallinpod https://t.co/QvmLCC3Pud","Sep 9, 9:21:22 PM EDT"
-1833318453903822872,"RT @NASA: "Look at the stars..." ✨
-
-Today, we look up at the stars and remember the great James Earl Jones. As Mufasa, he reminded us that…","Sep 9, 9:35:55 PM EDT"
-1833319602811732022,"True https://t.co/QKVjLgSGhB","Sep 9, 9:40:29 PM EDT"
-1833323737514639697,"What doesn’t she want to spend your hard-earned money on?
-
-That’s the shorter list. https://t.co/DuBIirI37F","Sep 9, 9:56:55 PM EDT"
-1833324128713220155,"America is going bankrupt btw https://t.co/fzy38tG7Rt","Sep 9, 9:58:28 PM EDT"
-1833324736652484782,"RT @elon_docs: Elon Musk: Freedom of speech is the ability to say what you want to say without being thrown in prison or killed
-
-"One of th…","Sep 9, 10:00:53 PM EDT"
-1833324983302656333,"RT @Jason: If only we got this one on air 😂😂😂 https://t.co/JGzNDFT732","Sep 9, 10:01:52 PM EDT"
-1833326667072475252,"Paging @PETA … 👋 https://t.co/3v4wDtVbjs","Sep 9, 10:08:33 PM EDT"
-1833327340723834975,"RT @JDVance: Months ago, I raised the issue of Haitian illegal immigrants draining social services and generally causing chaos all over Spr…","Sep 9, 10:11:14 PM EDT"
-1833329740155130278,"This is a big deal https://t.co/Dg903vJILr","Sep 9, 10:20:46 PM EDT"
-1833330081231737150,"Believe her https://t.co/lF9qJk5YkD","Sep 9, 10:22:07 PM EDT"
-1833330645353042024,"Your tax dollars at work https://t.co/EPsj2sZm28","Sep 9, 10:24:22 PM EDT"
-1833331408447934908,"RT @EndWokeness: "My values have not changed" https://t.co/7Ne8CBxzgh","Sep 9, 10:27:24 PM EDT"
-1833331444925796590,"RT @EmpireStateBldg: Rest in Peace Lord Vader https://t.co/HsFn5bkQC0","Sep 9, 10:27:32 PM EDT"
-1833332925707993389,"RT @Surabees: Senator @JDVance on fire at the @theallinpod Summit today 🔥
-
-"What Kamala Harris has done at the border, it's not just bad ec…","Sep 9, 10:33:25 PM EDT"
-1833336874934669439,"https://t.co/NYfZn8gZFb","Sep 9, 10:49:07 PM EDT"
-1833337261716607116,"Does seem inconsistent https://t.co/YFE6gUJNhz","Sep 9, 10:50:39 PM EDT"
-1833338686567760261,"Mad Max is becoming real fast https://t.co/KgkVQfo9FN","Sep 9, 10:56:19 PM EDT"
-1833341570214727691,"RT @AutismCapital: 🚨 ELON MUSK: “If Trump wins, we have a ONCE IN A LIFETIME opportunity to reduce the size of government and government sp…","Sep 9, 11:07:46 PM EDT"
-1833343821759057995,"RT @AutismCapital: 🚨 MUSK ON COMMUNISM VS FREE MARKET
-
- “Oh jeez, I don’t know which system is better, West Berlin or East, perhaps the sid…","Sep 9, 11:16:43 PM EDT"
-1833345276318519762,"Some good points here https://t.co/2zoPTjxlkC","Sep 9, 11:22:30 PM EDT"
-1833345411635200067,"RT @elon_docs: Elon Musk: We've got to have a serious science base on the moon
-
-"We got to get back to the moon and build a base there.
-
-A…","Sep 9, 11:23:02 PM EDT"
-1833347321373069330,"RT @WesternLensman: Joe Scarborough,Today: MAGA supporters know the truth, but deliberately choose to believe lies.
-
-Joe Scarborough, a Cou…","Sep 9, 11:30:38 PM EDT"
-1833347387412340995,"RT @tsarnick: Elon Musk says it is important that we try to accomplish great goals like becoming a space-faring civilization and a multi-pl…","Sep 9, 11:30:53 PM EDT"
-1833349210818920783,"The publicly-stated goal by almost all leaders of the Democratic Party is to legalize the ~15 million illegal migrants as soon as possible, as well as bring in tens of millions more.
-
-That would immediately make all swing states deep blue, just like happ","Sep 9, 11:38:08 PM EDT"
-1833349366956126373,"Real question https://t.co/IAJcfgvDw7","Sep 9, 11:38:45 PM EDT"
-1833351450174624186,"Important https://t.co/F6tEnNUUnx","Sep 9, 11:47:02 PM EDT"
-1833353661444944052,"Yes https://t.co/DP9tFhj4Iv","Sep 9, 11:55:49 PM EDT"
-1833354483101036751,"Yeah https://t.co/n0ouMkC98U","Sep 9, 11:59:05 PM EDT"
-1833384155708854429,"Polaris Dawn Live Broadcast:
-
-– Furthest from Earth that humans have been in over half a century
-
-– First private spacewalk
-
- https://t.co/cWd6NxO1Fr","Sep 10, 1:57:00 AM EDT"
-1833418505213121014,"Just over an hour to go before liftoff https://t.co/E1gCss8TUv","Sep 10, 4:13:29 AM EDT"
-1833418583931818243,"RT @PolarisProgram: While on-orbit, the Polaris Dawn crew will conduct 36 research and science experiments from 31 partner institutions to…","Sep 10, 4:13:48 AM EDT"
-1833418768300830858,"RT @cb_doge: "If we get rid of nonsense regulations and shift people from the government to the private sector, we'll have immense prosperi…","Sep 10, 4:14:32 AM EDT"
-1833425705180504345,"RT @SpaceX: Polaris Dawn is go for launch https://t.co/tx1gUyZjZr","Sep 10, 4:42:06 AM EDT"
-1833427908280357246,"RT @SpaceX: T-35 minutes until liftoff. Propellant load of Falcon 9 is underway and Dragon’s escape system is armed","Sep 10, 4:50:51 AM EDT"
-1833434074456985857,"Unless current trends for absurd regulatory overreach are reversed, humanity will be confined to Earth forever https://t.co/iAfbNQuCHV","Sep 10, 5:15:21 AM EDT"
-1833434248574898600,"RT @MarioNawfal: ELON: WITH THE RIGHT MEASURES, THE U.S WILL ENTER A GOLDEN AGE
-
-"I think the reality is that if we get rid of nonsense reg…","Sep 10, 5:16:03 AM EDT"
-1833442982852497410,"RT @SpaceX: Dragon will initiate a two-day pre-breathe process to prepare the crew for their upcoming spacewalk on Thursday, September 12 h…","Sep 10, 5:50:45 AM EDT"
-1833446345274716445,"RT @PolarisProgram: We're excited to introduce Asteroid, our favorite Shiba, now floating with our crew in zero gravity. Here's the story b…","Sep 10, 6:04:07 AM EDT"
-1833450447811842099,"RT @PolarisProgram: Polaris Dawn launches to orbit https://t.co/sxZjJXBjzG","Sep 10, 6:20:25 AM EDT"
-1833462411480932682,"RT @PolarisProgram: From the crew of Polaris Dawn https://t.co/51A1bKnNXc","Sep 10, 7:07:57 AM EDT"
-1833463039204724881,"Yes! https://t.co/hvQr9jYGfq","Sep 10, 7:10:27 AM EDT"
-1833465100809998513,"The @PolarisProgram astronaut mission is headed for an altitude 3 times higher than the Space Station, the furthest that humans have been from Earth in over half a century! https://t.co/lYgsA5vMGk","Sep 10, 7:18:38 AM EDT"
-1833465600154235248,"RT @johnkrausphotos: https://t.co/FsEDNbug09","Sep 10, 7:20:37 AM EDT"
-1833484902270177721,"Congratulations SpaceX team and the @PolarisProgram crew!! https://t.co/untLEjlYaI","Sep 10, 8:37:19 AM EDT"
-1833487467288399977,"Essential https://t.co/SZA9I3CNgx","Sep 10, 8:47:31 AM EDT"
-1833488400491679813,"RT @NicoleShanahan: Living in the same home for 45 years only to be forced out due to fear for your life and property isn’t the American Dr…","Sep 10, 8:51:13 AM EDT"
-1833525620044927421,"RT @JudiciaryGOP: Kamala Harris’s management of the border crisis is nothing short of a 'Reign of Terror.'
-
-WATCH Sheriff Mike Boudreaux’s…","Sep 10, 11:19:07 AM EDT"
-1833529267218723303,"RT @KatalinNovak_HU: A childless nation is a dying nation. A childless world is a dying world.
-
-I am grateful to have co-founded X·Y Worldw…","Sep 10, 11:33:37 AM EDT"
-1833531316362744239,"RT @SawyerMerritt: NEWS: @SpaceX has released a long new blog post criticizing how long it takes to get approval for Starship test flights,…","Sep 10, 11:41:45 AM EDT"
-1833531480787849499,"Very important https://t.co/H6BhSVomcW","Sep 10, 11:42:25 AM EDT"
-1833531850817736987,"Exactly https://t.co/zZgPq1b6lk","Sep 10, 11:43:53 AM EDT"
-1833532030740795506,"Loophole!? https://t.co/anIpDzakks","Sep 10, 11:44:36 AM EDT"
-1833532293300031602,"🎯 https://t.co/J7ZDsRtls7","Sep 10, 11:45:38 AM EDT"
-1833532351357599748,"RT @Ayaan: @elonmusk The CA one-party state went from being a vibrant two party-state to a run down banana republic with similar levels of…","Sep 10, 11:45:52 AM EDT"
-1833532696796270643,"Wow https://t.co/DcHR1qhxjd","Sep 10, 11:47:14 AM EDT"
-1833532854552432838,"RT @cb_doge: 𝕏 Hack:
-
-Swipe up while watching a video on 𝕏
-
- https://t.co/xDOUQvFmuB","Sep 10, 11:47:52 AM EDT"
-1833533690045206612,"Best deal in America for a Tesla https://t.co/gyJD1qTYuW","Sep 10, 11:51:11 AM EDT"
-1833537136697741341,"During this mission, Dragon will travel repeatedly through the orbital altitudes of over 10 thousand satellites and bits of space debris.
-
-No room for error in our calculations. https://t.co/41DJonfP6v","Sep 10, 12:04:53 PM EDT"
-1833537699380392015,"RT @SpaceX: The Polaris Dawn crew sat down with Apollo 16 astronaut and moonwalker Charlie Duke to talk about their missions and respective…","Sep 10, 12:07:07 PM EDT"
-1833537754287972377,"RT @StephenM: DHS statistic establish 3 incontrovertible facts:
-
-1. Harris imported approx 500K illegal migrants from Haiti
-2. Half were f…","Sep 10, 12:07:20 PM EDT"
-1833538446595657908,"RT @SpaceX: Polaris Dawn will travel to an altitude of 1,400 km, attempt the first commercial spacewalk from Dragon, test Starlink-laser ba…","Sep 10, 12:10:05 PM EDT"
-1833538548164923646,"RT @JudiciaryGOP: Jocelyn Nungaray was only 12 years old when she was assaulted and murdered by two illegal aliens from Venezuela after goi…","Sep 10, 12:10:30 PM EDT"
-1833538622664151129,"RT @SpaceX: SpaceX was founded to make life multiplanetary. Missions like Polaris Dawn help advance the development of the technologies nec…","Sep 10, 12:10:47 PM EDT"
-1833539494752227585,"RT @SpaceX: Meet Polaris Dawn’s Mission Commander @rookisaacman, who previously commanded Inspiration4, the first all-civilian mission to s…","Sep 10, 12:14:15 PM EDT"
-1833539604190052610,"RT @SpaceX: SpaceX Senior Operations Engineer @Gillis_SarahE is one of two mission specialists on Polaris Dawn and helped develop SpaceX’s…","Sep 10, 12:14:41 PM EDT"
-1833542910341787840,"RT @AMAZlNGNATURE: swan landing on water https://t.co/MdGMD6NrcO","Sep 10, 12:27:50 PM EDT"
-1833555912038260771,"RT @edwards345: Important, please read!","Sep 10, 1:19:29 PM EDT"
-1833557364613779758,"This is our policy on 𝕏 https://t.co/4iSXrKCa3n","Sep 10, 1:25:16 PM EDT"
-1833557568326930760,"We will never get humanity to Mars if this continues https://t.co/iwTSbjRygE","Sep 10, 1:26:04 PM EDT"
-1833558056665481513,"But here’s the rub, Tesla never has to bribe Kia drivers to buy a Tesla … https://t.co/I9LfJKAJRa","Sep 10, 1:28:01 PM EDT"
-1833559150116409388,"RT @TheRabbitHole84: Thomas Sowell 🔥 🔥 https://t.co/SItVSDrdQR","Sep 10, 1:32:21 PM EDT"
-1833561111465239019,"Kafkaesque https://t.co/V46yDCzdXa","Sep 10, 1:40:09 PM EDT"
-1833583545920721204,"This is a great example of how companies, franchises and product teams should engage with their fans! https://t.co/LIi5zjjyJC","Sep 10, 3:09:18 PM EDT"
-1833585506392936651,"💯 https://t.co/b3WaYiqx5E","Sep 10, 3:17:05 PM EDT"
-1833587307792023963,"National rent control will destroy the incentive to build new housing.
-
-National food price controls on supermarkets, which only have few percent profit margin, means empty shelves, just like Venezuela. https://t.co/SdhYncZsxq https://t.co/xvn572k3ij","Sep 10, 3:24:15 PM EDT"
-1833606363311907112,"Please sign up to vote! https://t.co/aD36dpIAhy","Sep 10, 4:39:58 PM EDT"
-1833653917110145098,"Watch the debate and see live commentary from viewers on 𝕏 https://t.co/wvP2cXposI","Sep 10, 7:48:56 PM EDT"
-1833687762601677028,"🔥🔥🔥 https://t.co/WTY9NkBgkX","Sep 10, 10:03:25 PM EDT"
-1833689900706902219,"Exactly! https://t.co/VI5rex9Cr0","Sep 10, 10:11:55 PM EDT"
-1833690037894189413,"RT @BillAckman: The world is in flames because of the weak leadership and failed foreign policy of the Biden-@KamalaHarris administration.…","Sep 10, 10:12:28 PM EDT"
-1833695185542504547,"RT @SpaceX: The apogee-raising burn is now complete. The Polaris Dawn crew and Dragon are now on their way to an altitude of ~1,400 km","Sep 10, 10:32:55 PM EDT"
-1833695644885856434,"Dragon astronauts are now further from Earth than any humans in over half a century!! https://t.co/WTY9NkBgkX","Sep 10, 10:34:44 PM EDT"
-1833712323229593698,"RT @teslaenergy: Come by https://t.co/hzirGesVQh","Sep 10, 11:41:01 PM EDT"
-1833728804579111268,"Fine Taylor … you win … I will give you a child and guard your cats with my life","Sep 11, 12:46:30 AM EDT"
-1833733255016910858,"RT @PolarisProgram: Polaris Dawn Flight Day 1 Update
-
-The Polaris Dawn crew completed their first day on-orbit, also known as Flight Day 1.…","Sep 11, 1:04:11 AM EDT"
-1833734298803024175,"RT @SpaceX: During the spacewalk, the Polaris Dawn crew will wear the new SpaceX EVA suits → https://t.co/LRl5pPlAC9 https://t.co/MVHzNwiWZU","Sep 11, 1:08:20 AM EDT"
-1833734388460491088,"RT @SpaceX: Achievement unlocked - apogee 1,400.7 km
-
-Forward bulkhead Draco firing during burn 🔥 https://t.co/Z7kUTcA2CH","Sep 11, 1:08:42 AM EDT"
-1833734906532540653,"RT @shaunmmaguire: ABC has let Harris get away with the Charlottesville hoax, bloodbath hoax, police officers dying on J6 hoax, etc
-
-But th…","Sep 11, 1:10:45 AM EDT"
-1833743479773818939,"While I don’t think the debate hosts were fair to @realDonaldTrump, @KamalaHarris exceeded most people’s expectations tonight.
-
-That said, when it comes to getting things done, not just saying nice-sounding words, I strongly believe that Trump will do a f","Sep 11, 1:44:49 AM EDT"
-1833745060812509589,"Strive to greater heights,
-For a future brighter than the past,
-Waking up each morning inspired,
-To learn new secrets of the Universe! https://t.co/NllIrVjK4F","Sep 11, 1:51:06 AM EDT"
-1833752694198350051,"Listen to The Odyssey https://t.co/gh7VEytTGM","Sep 11, 2:21:26 AM EDT"
-1833755778924351663,"Unless there is significant government reform, laws & regulations will keep getting worse every year until every great endeavor, from high-speed rail between our cities to making life multiplanetary, is effectively illegal.
-
-Trump supports a governmen","Sep 11, 2:33:41 AM EDT"
-1833871864617439288,"Exactly https://t.co/Gy5Y68A8IN","Sep 11, 10:14:58 AM EDT"
-1833872068649287929,"RT @CollinRugg: Top 5 lies that the ABC News moderators refused to fact-check or falsely fact-checked during the debate:
-
-1. Mandatory Fire…","Sep 11, 10:15:47 AM EDT"
-1833873555899199696,"America is being slowly strangled to death by an accumulation of millions of regulations.
-
-Tens of thousands of new rules are added every year, but very few are ever removed.
-
-Eventually, everything becomes illegal. https://t.co/gGFwRs1FG9","Sep 11, 10:21:42 AM EDT"
-1833874597575544985,"RT @VivekGRamaswamy: Former Democrats backing Trump reveals the same point as Dick Cheney backing Kamala Harris. It’s not really about Repu…","Sep 11, 10:25:50 AM EDT"
-1833875738711490906,"Toxoplasma gondii is a danger to our democracy","Sep 11, 10:30:22 AM EDT"
-1833877963936596103,"RT @JohnStossel: Do you carry a gun?
-
-Bad idea, says Hollywood. Civilians with guns are fools. You are more likely to hurt yourself than th…","Sep 11, 10:39:13 AM EDT"
-1833878836100182140,"Deliberate deception for this hoax to be repeated. Even Snopes, who hates Trump, fact checks it as false. https://t.co/GqQJHqjf0d","Sep 11, 10:42:41 AM EDT"
-1833879567838453782,"If you want to know more about the content of a post, just highlight and ask Grok! https://t.co/2PNVVADUa6","Sep 11, 10:45:35 AM EDT"
-1833879789125636313,"Spacewalk tomorrow! https://t.co/pwZxFQGn5H","Sep 11, 10:46:28 AM EDT"
-1833880580435697697,"RT @XAVIAERD: I don’t care what the biased ABC commentators say.
-
-I am BLACK.
-I am GEN Z.
-
-And I unapologetically support TRUMP because…","Sep 11, 10:49:36 AM EDT"
-1833897210595135690,"DMs are being decoupled from public posting, so that if all you want to do is use this platform for messaging, but not post publicly, you can do so https://t.co/Z1hBwjcYJa","Sep 11, 11:55:41 AM EDT"
-1833899199353725178,"Seriously https://t.co/sBAvxNHWsc","Sep 11, 12:03:35 PM EDT"
-1833924375520932227,"Cool https://t.co/bXdoyo98VS","Sep 11, 1:43:38 PM EDT"
-1833951448285266324,"RT @longmier: Emergency alerts have been demonstrated from our direct to cell satellites in orbit and will work to all @TMobile , AT&T, and…","Sep 11, 3:31:13 PM EDT"
-1833952719058731511,"RT @SpaceX: Polaris Dawn is the first mission to test @Starlink laser-based communications, using the “Plug and Plaser” inside Dragon’s tru…","Sep 11, 3:36:16 PM EDT"
-1834017674734846040,"RT @boringcompany: And that's a wrap! Boring Company's 15th tunnel. https://t.co/PbSt3YXyEv","Sep 11, 7:54:22 PM EDT"
-1834018876801310809,"Starlink now available in the Cook Islands https://t.co/cLUXuHGUEg","Sep 11, 7:59:09 PM EDT"
-1834071245224308850,"Impressive
- https://t.co/nJQRXL72oA","Sep 11, 11:27:14 PM EDT"
-1834079194600669580,"Interest payments on just federal government debt now exceed the entire Defense Department budget!
-
-America is in the fast lane to bankruptcy, meanwhile … https://t.co/bnBAA6Shtu","Sep 11, 11:58:50 PM EDT"
-1834079643910930477,"RT @Mike_Katz: We reach for the stars at @TMobile, and our partnership with @SpaceX's @Starlink just reached new heights: We're the first-e…","Sep 12, 12:00:37 AM EDT"
-1834100735946227889,"Do you want current trends to continue or do you want change?
-
-That’s what it comes down to. https://t.co/UXnDHA7T4T","Sep 12, 1:24:26 AM EDT"
-1834100992696353216,"Super cool! https://t.co/4ybw6jhE8d","Sep 12, 1:25:27 AM EDT"
-1834102713208258793,"It’s literally on video on the Internet 🤷♂️ https://t.co/eEhObMYHP8","Sep 12, 1:32:17 AM EDT"
-1834102914937487586,"Absolutely https://t.co/6fPulbwuQu","Sep 12, 1:33:05 AM EDT"
-1834103533412536689,"This will keep getting worse until the politicians responsible are voted out of office https://t.co/xrM5JRqWNx","Sep 12, 1:35:33 AM EDT"
-1834103844038738419,"People want to know what’s really going on, not be fed curated propaganda https://t.co/JDdZyqt9I7","Sep 12, 1:36:47 AM EDT"
-1834104386303520822,"Department
-Of
-Government
-Efficiency","Sep 12, 1:38:56 AM EDT"
-1834104672975740994,"Live deep space walk coming up soon! https://t.co/LgtbfIABtx","Sep 12, 1:40:04 AM EDT"
-1834150530408685586,"If a government has strict censorship laws, then 𝕏 adheres to those laws. It would not be appropriate to insist on American laws in all countries.
-
-The quandary sometimes encountered is when governing entities make demands that – at least to us – appear ","Sep 12, 4:42:17 AM EDT"
-1834153650874449983,"The legacy media is extremely left-biased https://t.co/vK0gLysm0i","Sep 12, 4:54:41 AM EDT"
-1834154984725762229,"Exactly https://t.co/KOuGdZjogw","Sep 12, 4:59:59 AM EDT"
-1834156087492354407,"Spacewalk!! https://t.co/4czk29FSOs","Sep 12, 5:04:22 AM EDT"
-1834157436737126488,"Government overspending causes inflation. End of story.
-
-That is why prices at the store keep rising.
-
-Stop government overspending to end inflation! https://t.co/GLwlSSYL8K","Sep 12, 5:09:44 AM EDT"
-1834157805642903636,"Dragon is now more than three times further from Earth than the Space Station https://t.co/np3MJcyze5","Sep 12, 5:11:12 AM EDT"
-1834165297902719339,"https://t.co/2UMAtRtlba","Sep 12, 5:40:58 AM EDT"
-1834169798064046098,"If you can’t smell your WiFi, how do you know it’s real? 😂 https://t.co/t1nM4OFc0t","Sep 12, 5:58:51 AM EDT"
-1834171903285887251,"Imagine exploring the stars in our galaxy and finding out what happened over billions of years on billions of planets 💫 https://t.co/AOOrJyi6eU","Sep 12, 6:07:13 AM EDT"
-1834172201135997394,"Love our new helmet https://t.co/C5aBx5pAi6","Sep 12, 6:08:24 AM EDT"
-1834174140984508417,"About to begin spacesuit pressurization.
-
-That will be followed by venting cabin air to vacuum, at which point the only thing keeping the astronauts alive is the spacesuit itself. https://t.co/B9pGboxEC5 https://t.co/bMOLWZmu13","Sep 12, 6:16:07 AM EDT"
-1834174216381612159,"RT @SpaceX: The first spacewalk from Dragon has begun! https://t.co/XRWmgi4q7f","Sep 12, 6:16:25 AM EDT"
-1834174568304668793,"You are being lied to https://t.co/UBze5xwc5D","Sep 12, 6:17:49 AM EDT"
-1834176196797722907,"https://t.co/0GHYnRzGdO","Sep 12, 6:24:17 AM EDT"
-1834177635200761994,"Yup https://t.co/ZjJp9g8e6Q","Sep 12, 6:30:00 AM EDT"
-1834178107533652191,"💯 https://t.co/YZrh3Baj6O","Sep 12, 6:31:52 AM EDT"
-1834180347460026653,"Absolutely https://t.co/jOz1tHlkCP","Sep 12, 6:40:46 AM EDT"
-1834181099867832587,"Turns out … https://t.co/rUunIcyUFe","Sep 12, 6:43:46 AM EDT"
-1834182306401247635,"Dragon hatch is open and the cabin is now at vacuum (zero) pressure
- https://t.co/Dbwfjw2gBZ","Sep 12, 6:48:33 AM EDT"
-1834184287954116854,"Emerging from Dragon for spacewalk https://t.co/OfV8uB3ycd","Sep 12, 6:56:26 AM EDT"
-1834184490329276898,"RT @PolarisProgram: Mission Commander @rookisaacman outside Dragon for the first commercial spacewalk https://t.co/tvqDR6MQkc","Sep 12, 6:57:14 AM EDT"
-1834211472169468281,"RT @SpaceX: Commander @rookisaacman conducting suit mobility tests while Dragon flies between Australia and Antarctica https://t.co/yj3vFOT…","Sep 12, 8:44:27 AM EDT"
-1834213015857889706,"Congratulations @SpaceX Dragon team, @rookisaacman and the crew of @PolarisProgram! https://t.co/gOr0lEW24B","Sep 12, 8:50:35 AM EDT"
-1834214517410308531,"RT @PolarisProgram: SpaceX and the Polaris Dawn crew have completed the first commercial spacewalk!
-
-“SpaceX, back at home we all have a lo…","Sep 12, 8:56:33 AM EDT"
-1834215798858207667,"Fascists https://t.co/NQcR9justJ","Sep 12, 9:01:39 AM EDT"
-1834216146071158949,"RT @SpaceX: The Polaris Dawn spacewalk is now complete, marking the first time commercial astronauts have completed a spacewalk from a comm…","Sep 12, 9:03:01 AM EDT"
-1834216585084715437,"RT @teslaownersSV: “SpaceX, back at home we all have a lot of work to do, but from here, Earth sure looks like a perfect world.”
-
-Mission C…","Sep 12, 9:04:46 AM EDT"
-1834218437994033391,"Well put https://t.co/X4X8DVlZJc","Sep 12, 9:12:08 AM EDT"
-1834220921529532598,"RT @SpeakerJohnson: Democrats and the media insist that noncitizen voting is already illegal, therefore it doesn’t occur.
-
-They’re wrong.…","Sep 12, 9:22:00 AM EDT"
-1834289249124008131,"All that stands between you and the nothingness of deep space vacuum is that suit https://t.co/dJKULfyvfq","Sep 12, 1:53:31 PM EDT"
-1834289977381061095,"Inspiring words from @rookisaacman
- https://t.co/ZmT59U4Kft","Sep 12, 1:56:24 PM EDT"
-1834346559120806014,"Good history discussion https://t.co/JIoAwToQVj","Sep 12, 5:41:14 PM EDT"
-1834354277118345358,"Interest payments on the Federal government debt increased 30% from last year! https://t.co/qbcUTbghwj","Sep 12, 6:11:54 PM EDT"
-1834373094729007228,"Day 3 update of the Polaris spacewalk mission https://t.co/OsmpOz5OS8","Sep 12, 7:26:41 PM EDT"
-1834472472768569755,"😂 https://t.co/B49I33kPPW","Sep 13, 2:01:35 AM EDT"
-1834481735217959275,"💯 https://t.co/m39cPb5rfK","Sep 13, 2:38:23 AM EDT"
-1834638472399012000,"Starlink coming to United Airlines! https://t.co/ZECqynaehz","Sep 13, 1:01:12 PM EDT"
-1834638524198666394,"RT @Gwynne_Shotwell: We're excited to team up with @United Airlines to transform the in-flight experience across their fleet of more than 1…","Sep 13, 1:01:24 PM EDT"
-1834640216721965470,"Starship will make life multiplanetary, preserving life as know from extinction events on Earth, so long as it is not smothered by bureaucracy.
-
-There is more government regulatory smothering every year. If this continues, all large projects in the United","Sep 13, 1:08:08 PM EDT"
-1834640631194665358,"https://t.co/Ogsq4aVCKt https://t.co/yFHOmjfSAr","Sep 13, 1:09:47 PM EDT"
-1834651653099909167,"Sigh https://t.co/M1TKc0fkyx","Sep 13, 1:53:34 PM EDT"
-1834666915232727380,"Please make it make sense 🫠 https://t.co/IL1xBuoBqd","Sep 13, 2:54:13 PM EDT"
-1834667037920239709,"Just wow … https://t.co/1i33Gd0r0L","Sep 13, 2:54:42 PM EDT"
-1834671575825891777,"New TV series
- https://t.co/edAowXuCxQ","Sep 13, 3:12:44 PM EDT"
-1834672319828209826,"In general, we are decoupling public posting from private messaging, so you can use 𝕏 for private messaging only if you want https://t.co/KHnefrG6w1","Sep 13, 3:15:42 PM EDT"
-1834672481762001276,"https://t.co/IaEC9iSHCh","Sep 13, 3:16:20 PM EDT"
-1834672856015474844,"True https://t.co/An1Eo3rqSI","Sep 13, 3:17:50 PM EDT"
-1834705030064357812,"Once upon a dream https://t.co/W0EGxKQL4r","Sep 13, 5:25:40 PM EDT"
-1834705095109513364,"RT @PolarisProgram: HARMONY OF RESILIENCE: Recorded in space and sent to Earth via @SpaceX’s @Starlink constellation, Polaris Dawn crewmemb…","Sep 13, 5:25:56 PM EDT"
-1834715697802625484,"Nice work by Tesla Energy https://t.co/smyNCrH5wW","Sep 13, 6:08:04 PM EDT"
-1834725657106170140,"https://t.co/BWYNinFPpY","Sep 13, 6:47:38 PM EDT"
-1834726989321871754,"RT @elon_docs: Elon Musk: The countless regulations are an invisible tax on humanity, as they impede progress in many areas. For example, S…","Sep 13, 6:52:56 PM EDT"
-1834732375613620466,"RT @X: DM block now live
-
-for when you want to still hear someone’s thoughts…just not directly","Sep 13, 7:14:20 PM EDT"
-1834763434757648406,"RT @PolarisProgram: Join the Polaris Dawn crew to learn details behind some of the ~40 science and research experiments being conducted dur…","Sep 13, 9:17:45 PM EDT"
-1834765732108026298,"RT @AjitPai: In 2018, the @FCC authorized @SpaceX to build a novel @Starlink satellite network in low-earth orbit. What would happen? We we…","Sep 13, 9:26:53 PM EDT"
-1834766603080417399,"When is enough enough? https://t.co/IA1h6dU4DE","Sep 13, 9:30:21 PM EDT"
-1834773073377300935,"RT @DimaZeniuk: United Airlines has announced that they will be equipping over 1,000 planes with @SpaceX’s Starlink internet, boosting on-b…","Sep 13, 9:56:03 PM EDT"
-1834773724253634862,"22% growth since August last year https://t.co/iuIvUNZWvI","Sep 13, 9:58:38 PM EDT"
-1834894199231246737,"RT @DimaZeniuk: “At SpaceX we specialize in converting things from impossible to late.”
-
-— Elon Musk https://t.co/5odWmf5Dv7","Sep 14, 5:57:22 AM EDT"
-1834896048361177371,"RT @eyeslasho: https://t.co/aCbu3saDkl","Sep 14, 6:04:43 AM EDT"
-1834898659697098926,"The Dems want to take your kids https://t.co/U4yfVX0Z5b","Sep 14, 6:15:05 AM EDT"
-1834899851047583811,"The far left fascists love censorship https://t.co/R0eJwm9TpL","Sep 14, 6:19:49 AM EDT"
-1834900307501105285,"True https://t.co/TVlxkspMvo","Sep 14, 6:21:38 AM EDT"
-1834900418302034009,"Exactly https://t.co/6v9VMaxP5E","Sep 14, 6:22:05 AM EDT"
-1834900754793963615,"Far left fascists love censorship https://t.co/9oMb5Wemcm","Sep 14, 6:23:25 AM EDT"
-1834901913357500617,"Extreme government overspending is bankrupting America and causing inflation https://t.co/TJkavJs4yP","Sep 14, 6:28:01 AM EDT"
-1834904101106466881,"RT @unlimited_ls: NEW: The illegal Haitian who struck and kill-d a 71-year-old Springfield, Ohio resident while she was collecting her garb…","Sep 14, 6:36:43 AM EDT"
-1834905172927299725,"🥹 https://t.co/ddaHFIQeM5","Sep 14, 6:40:58 AM EDT"
-1834905610070245716,"RT @MarioNawfal: ELON: YOU COULD ZERO OUT ALL THE COUNTRY'S BILLIONAIRES, IT STILL WOULDN'T SOLVE THE DEFICIT
-
-"If we don't cut government…","Sep 14, 6:42:42 AM EDT"
-1834906517860221048,"RT @Erdayastronaut: Well this is about the most beautiful thing I've ever seen / heard! I LOVE the unity aspect with humans joining in and…","Sep 14, 6:46:19 AM EDT"
-1834930678158573881,"💯 https://t.co/R8lcffN0Zc","Sep 14, 8:22:19 AM EDT"
-1834933196393455713,"Illegal voter registration in Oregon https://t.co/lTrikfQc4C","Sep 14, 8:32:20 AM EDT"
-1834934423835615329,"Yes https://t.co/5AnpUBjp24","Sep 14, 8:37:12 AM EDT"
-1835041918990078068,"Massive voter importation to make swing states permanently blue and turn America into a one-party state.
-
-It is rational from the Democratic Party standpoint, as it guarantees victory if successful. https://t.co/U7Drfwy12l","Sep 14, 3:44:21 PM EDT"
-1835044383772885194,"Citizen reporting from people on the scene or actually expert in a subject is the only way to know what’s really happening! https://t.co/Dws5dlyvdN","Sep 14, 3:54:09 PM EDT"
-1835044692830175495,"💯 https://t.co/IZRThBkgaj","Sep 14, 3:55:22 PM EDT"
-1835045158372749394,"That is an amazing audience score! https://t.co/MTXCyZ0eis","Sep 14, 3:57:13 PM EDT"
-1835045567153815897,"RT @Starlink: Brought to you from the stars 💫🛰️❤️","Sep 14, 3:58:51 PM EDT"
-1835045977008619564,"Less than half that amount https://t.co/tCS9ktUNuO","Sep 14, 4:00:29 PM EDT"
-1835055670514925685,"Extinctionists want a holocaust for all of humanity https://t.co/RGFuVWJdTx","Sep 14, 4:39:00 PM EDT"
-1835057887464530203,"RT @cbssaturday: Polaris Dawn astronaut Sarah Gillis performed the first known violin solo in space, playing "Rey's Theme," from the "Star…","Sep 14, 4:47:48 PM EDT"
-1835061560957616606,"Exactly https://t.co/0EY4QH9h7p","Sep 14, 5:02:24 PM EDT"
-1835062469527846947,"fyi https://t.co/wTwtVrOiEr","Sep 14, 5:06:01 PM EDT"
-1835063768138891472,"Yes, she lied about this. Such an obvious lie too. https://t.co/9DehgrbI9B","Sep 14, 5:11:10 PM EDT"
-1835063964218409052,"Bravo! https://t.co/O1LJ1qb9eX","Sep 14, 5:11:57 PM EDT"
-1835064060460908632,"Yes https://t.co/a6QUcMGA5h","Sep 14, 5:12:20 PM EDT"
-1835064345606472021,"Absolutely. It is telling that the vast majority of political donations by journalists are to the Democratic Party. https://t.co/KU5Id84mVK","Sep 14, 5:13:28 PM EDT"
-1835070501259268295,"RT @ZubyMusic: I love how this combination of people is so random but it also makes complete sense. 😄 https://t.co/lbTfrzVGEW","Sep 14, 5:37:56 PM EDT"
-1835070577427833160,"RT @cb_doge: "I will seal the border and stop the migrant invasion. We will carry out the largest deportation operation of criminals in Ame…","Sep 14, 5:38:14 PM EDT"
-1835078329273401360,"Hmm https://t.co/XRMdgNS6RG","Sep 14, 6:09:02 PM EDT"
-1835079225969459532,"RT @SpaceX: Dragon and the @PolarisProgram Polaris Dawn astronauts are set to return to Earth and splash down off the coast of Dry Tortugas…","Sep 14, 6:12:36 PM EDT"
-1835079944768307696,"So messed up https://t.co/Pkel3B36S5","Sep 14, 6:15:27 PM EDT"
-1835083430100713673,"This is exactly what is happening
- https://t.co/qeNBu3Szcd","Sep 14, 6:29:18 PM EDT"
-1835084152502468627,"Great https://t.co/XCXAV3SN4R","Sep 14, 6:32:10 PM EDT"
-1835084345184600377,"Yup https://t.co/8AZFCbp5HC","Sep 14, 6:32:56 PM EDT"
-1835124037934367098,"Congratulations Tesla cell team! https://t.co/oK4WaeWZ6p","Sep 14, 9:10:40 PM EDT"
-1835175046597194120,"Cool https://t.co/Epi75aD7ky","Sep 15, 12:33:21 AM EDT"
-1835176477375279416,"The media is a Democrat propaganda machine https://t.co/JPpn34jEhh","Sep 15, 12:39:02 AM EDT"
-1835176750281531591,"It’s a great car https://t.co/Un76K8xOkI","Sep 15, 12:40:07 AM EDT"
-1835183187917783392,"Good advice https://t.co/VpopNswKzE","Sep 15, 1:05:42 AM EDT"
-1835186950896336940,"🤷♂️ https://t.co/nJ5FkXydg2","Sep 15, 1:20:39 AM EDT"
-1835187364689232295,"Super important to keep people informed to counteract the legacy media propaganda machine! https://t.co/PkU92ph1un","Sep 15, 1:22:18 AM EDT"
-1835188275872776549,"The Sphere is a work of art https://t.co/SF6fd03O7B","Sep 15, 1:25:55 AM EDT"
-1835192617212248405,"How to share posts https://t.co/fEt1KVQiV1","Sep 15, 1:43:10 AM EDT"
-1835194685897224331,"Save them 😢 https://t.co/bxvEnPX55p https://t.co/Wk7a3snZ7N","Sep 15, 1:51:24 AM EDT"
-1835250892515479994,"Welcome back to Earth! https://t.co/wjUiLD3vRa","Sep 15, 5:34:44 AM EDT"
-1835331478563262599,"Polaris crew is home safe & sound! https://t.co/BYfz3pq3x5 https://t.co/2wch1wlBoX","Sep 15, 10:54:57 AM EDT"
-1835478980830572884,"And no one is even trying to assassinate Biden/Kamala 🤔 https://t.co/ANQJj4hNgW","Sep 15, 8:41:05 PM EDT"
-1835493397093814638,"Why are so many people raging FOR the machine? 😂","Sep 15, 9:38:22 PM EDT"
-1835493688409215142,"Yup https://t.co/CruGYIRJ5F","Sep 15, 9:39:31 PM EDT"
-1835493839756562701,"🤷♂️ https://t.co/kgTTGe0RFx","Sep 15, 9:40:07 PM EDT"
-1835573866271330307,"Well, one lesson I’ve learned is that just because I say something to a group and they laugh doesn’t mean it’s going to be all that hilarious as a post on 𝕏","Sep 16, 2:58:07 AM EDT"
-1835574495467159607,"Turns out that jokes are WAY less funny if people don’t know the context and the delivery is plain text","Sep 16, 3:00:37 AM EDT"
-1835577922473615484,"RT @tsarnick: All-In Summit: David Sacks says OpenAI recently gave investors a product roadmap update and said their AI models will soon be…","Sep 16, 3:14:14 AM EDT"
-1835578456052039816,"RT @BillAckman: .@RobertIger
-
-Dear Bob,
-
-I assume that you have been made aware of this affidavit which was made public earlier today in…","Sep 16, 3:16:21 AM EDT"
-1835584965242695906,"Hmm https://t.co/AnWfYNIPMk","Sep 16, 3:42:13 AM EDT"
-1835585866321805452,"Not bad https://t.co/RZNr361nP8","Sep 16, 3:45:48 AM EDT"
-1835589261799673998,"The carousel of destiny spins ever faster","Sep 16, 3:59:18 AM EDT"
-1835589336957382933,"RT @teslaownersSV: "Freedom and merit is what 🇺🇸should be about."
-
-Elon Musk https://t.co/4ohyb1HQyr","Sep 16, 3:59:36 AM EDT"
-1835590316113403961,"Yeah https://t.co/dL0jBvWGyu","Sep 16, 4:03:29 AM EDT"
-1835597172047253537,"Population collapse https://t.co/vt6NLuObL1","Sep 16, 4:30:44 AM EDT"
-1835597356361818269,"… https://t.co/F2z6TXNv6h","Sep 16, 4:31:28 AM EDT"
-1835598332296646798,"Making life multiplanetary would dramatically derisk civilizational extinction https://t.co/retT0NdoRm","Sep 16, 4:35:20 AM EDT"
-1835600103970623842,"It has been 18 years since the first Falcon flight of Falcon 1 failed https://t.co/Ha6ynd8cry","Sep 16, 4:42:23 AM EDT"
-1835604797099069541,"Wow, almost twice as many people died as there were babies born in Greece https://t.co/DiyfyBmPcT","Sep 16, 5:01:02 AM EDT"
-1835687157618389006,"RT @ajtourville: NEWS: @Starlink systems are being deployed by the Polish government to restore critical connectivity for emergency service…","Sep 16, 10:28:18 AM EDT"
-1835695656926683337,"Good review. This movie sounds like it asks good questions and is funny. https://t.co/Ep6tAdkdS7","Sep 16, 11:02:04 AM EDT"
-1835695980315824584,"RT @cb_doge: You can fine-tune your 𝕏 ‘For You’ feed by engaging with and sharing posts that interest you.
-
-It’s a simple way to make your…","Sep 16, 11:03:21 AM EDT"
-1835697030963892630,"The incitement to hatred and violence against President Trump by the media and leading Democrats needs to stop. https://t.co/3gMWEk1pku","Sep 16, 11:07:32 AM EDT"
-1835841632110809172,"Assassination is censorship in the limit https://t.co/g83E63ljfm","Sep 16, 8:42:08 PM EDT"
-1835843839208116499,"Spaces with @realDonaldTrump tonight! https://t.co/6PlWFhjLDy","Sep 16, 8:50:54 PM EDT"
-1835862814914724240,"RT @cb_doge: Donald Trump on Elon Musk:
-
-"We were getting lapped in space by China and by Russia and now we are the leader in space. Elon M…","Sep 16, 10:06:18 PM EDT"
-1835867190362345533,"Giga Texas, Tesla Headquarters https://t.co/eqbIP1ID5q","Sep 16, 10:23:41 PM EDT"
-1835877526129815966,"Troubling https://t.co/IzECZngbJt","Sep 16, 11:04:45 PM EDT"
-1835905829565804630,"Interesting https://t.co/DfH0eNzo2p","Sep 17, 12:57:13 AM EDT"
-1835907565227512296,"RT @theallinpod: the full intro from @elonmusk's conversation with the besties at all-in summit https://t.co/ScJjL43IQH","Sep 17, 1:04:07 AM EDT"
-1835990821440467443,"RT @Tesla: An apocalypse of Cybertrucks performs epic synchronized light show in Las Vegas
-
-📸 @Teslalightshows https://t.co/w4Kdoo21N8","Sep 17, 6:34:57 AM EDT"
-1835993651555541467,"RT @MarioNawfal: 🚨🇺🇸JEFFREY SACHS: VICTORIA NULAND IS THE FACE OF THE DEEP STATE
-
-"I think it’s obvious.
-
-There’s one deep state party—tha…","Sep 17, 6:46:12 AM EDT"
-1835993851284128001,"No wonder https://t.co/BHydmT3qBU","Sep 17, 6:46:59 AM EDT"
-1835997285425058002,"Those granted asylum become citizens within 5 years, which is just over one Presidential election cycle and then vote overwhelmingly Democrat.
-
-This is why so many are being placed in large numbers in Arizona, Wisconsin, Ohio and other swing states.
-
-To","Sep 17, 7:00:38 AM EDT"
-1835999374448439530,"Misplaced priorities https://t.co/ttZRksI6B4","Sep 17, 7:08:56 AM EDT"
-1836005029108502976,"RT @elon_docs: Elon Musk: The woke mind virus creates a mental civil war. It's all about condemning people instead of celebrating people.…","Sep 17, 7:31:24 AM EDT"
-1836046593503515043,"Pennsylvania is a swing state https://t.co/RPM88myaU6","Sep 17, 10:16:34 AM EDT"
-1836056961684521262,"The fake Russian “Steele Dossier” scam was next-level election interference https://t.co/xbmGzFAH85","Sep 17, 10:57:46 AM EDT"
-1836086079994122539,"The Dems explicitly called for Trump to be shot and now two people have answered that call https://t.co/ldmTx0rEos","Sep 17, 12:53:28 PM EDT"
-1836096186194825442,"This is important https://t.co/kKxu57vyig","Sep 17, 1:33:38 PM EDT"
-1836097317599936804,"More lawfare https://t.co/zbO7vo7Wbt","Sep 17, 1:38:08 PM EDT"
-1836099265795363119,"The fate of America may depend on this vote https://t.co/bOj9kyUJqM","Sep 17, 1:45:52 PM EDT"
-1836099447501013494,"I hope you are wrong https://t.co/uYSgA0i44m","Sep 17, 1:46:36 PM EDT"
-1836099988427796580,"We should expand the scope and scale of consciousness, whether silicon or carbon, to understand the universe https://t.co/bbw4gbcgk5","Sep 17, 1:48:44 PM EDT"
-1836105077146218735,"Register to vote today! https://t.co/g9UtgyplNe","Sep 17, 2:08:58 PM EDT"
-1836105365647471028,"RT @elon_docs: Elon Musk: To get a sense of what an AI future looks like, I'd recommend people read the Culture books by Iain M. Banks. The…","Sep 17, 2:10:07 PM EDT"
-1836105994595659862,"Congratulations again on an epic mission! https://t.co/4m7Kz97cya","Sep 17, 2:12:36 PM EDT"
-1836109513516085519,"Your vote really matters! https://t.co/atMeXSwkxN","Sep 17, 2:26:35 PM EDT"
-1836111028700221785,"Seriously 😂
-
-The reason Starlink is the only global high-bandwidth Internet system of any kind, terrestrial or space-based, is that it is a staggeringly difficult technology problem.
-
-We had to invent so much technology from scratch! There is no supplie","Sep 17, 2:32:37 PM EDT"
-1836111175408287948,"Exactly https://t.co/R3OX93yq5n","Sep 17, 2:33:12 PM EDT"
-1836111477935153606,"Not bad for something some people said was impossible https://t.co/lJsTH6ATot","Sep 17, 2:34:24 PM EDT"
-1836111935156388255,"RT @cb_doge: Early Voting in Pennsylvania is open! Your vote really matters, and every vote counts. Go vote now and make your voice heard.…","Sep 17, 2:36:13 PM EDT"
-1836112116626940288,"Starlink in Nairobi! https://t.co/pqJMkWtrgY","Sep 17, 2:36:56 PM EDT"
-1836112463307456593,"From a member of the EU parliament!
-
-Fidias is awesome. https://t.co/TYPqeVkD0N","Sep 17, 2:38:19 PM EDT"
-1836112737073795476,"Lawfare is abuse of the system https://t.co/gGihiwIBxp","Sep 17, 2:39:24 PM EDT"
-1836113350947668109,"Bravo! https://t.co/T60YpqtxxJ","Sep 17, 2:41:50 PM EDT"
-1836113736517431602,"Yup https://t.co/GL88fRX7wo","Sep 17, 2:43:22 PM EDT"
-1836115994751672809,"NASA puts their faith in @SpaceX for all astronaut transport to and from the @Space_Station, but somehow @FAANews leadership thinks they know better … https://t.co/np2lx4ZhFv","Sep 17, 2:52:21 PM EDT"
-1836116533929550004,"The woke mind virus is joyless https://t.co/iEHJ8csdjm","Sep 17, 2:54:29 PM EDT"
-1836118263295873446,"Forgiveness is essential to end an infinite cycle of retribution.
-
-There is great wisdom in turning the other cheek, although it must be combined with the strength to enforce an end to retribution. https://t.co/pW52tpa6Au","Sep 17, 3:01:22 PM EDT"
-1836120537883644049,"The Blindsight device from Neuralink will enable even those who have lost both eyes and their optic nerve to see.
-
-Provided the visual cortex is intact, it will even enable those who have been blind from birth to see for the first time.
-
-To set expectatio","Sep 17, 3:10:24 PM EDT"
-1836130447539286220,"He wants to take away your right to free speech in America https://t.co/LJrmdYD4Pr","Sep 17, 3:49:47 PM EDT"
-1836132289765351449,"Wow https://t.co/2eHoHomF5s","Sep 17, 3:57:06 PM EDT"
-1836135772824703266,"Testing Starlink streaming continuity from while aircraft is doing banking maneuvers https://t.co/01CruBZKno","Sep 17, 4:10:56 PM EDT"
-1836152257945178586,"No https://t.co/yo3HmLw6IX","Sep 17, 5:16:27 PM EDT"
-1836181229261197494,"Starlink available in Yemen! https://t.co/JC1abSA6F8","Sep 17, 7:11:34 PM EDT"
-1836181702433280260,"RT @SpaceX: Rapid and reliable reusability is key to making life multiplanetary – every mission is an opportunity to learn and inform futur…","Sep 17, 7:13:27 PM EDT"
-1836197321396359355,"One of these days, a large comet will hit Earth and destroy almost all life, as has happened many times in the past.
-
-Eventually, the Sun will expand enough to boil the oceans and destroy all life.
-
-Either become a spacefaring civilization or die – those","Sep 17, 8:15:30 PM EDT"
-1836250409834549525,"You’re not gonna believe this, but @GavinNewsom just announced that he signed a LAW to make parody illegal, based on this video 🤣🤣 https://t.co/bdykNuxe6G","Sep 17, 11:46:28 PM EDT"
-1836252327675601245,"RT @MostlyPeacefull: @GavinNewsom “Yes police? He tweeted a parody video” https://t.co/DJNMTaRKuK","Sep 17, 11:54:05 PM EDT"
-1836253030687068240,"The post says “PARODY” in all caps!
-
-So, is he going to throw @nbcsnl in jail or what!?","Sep 17, 11:56:53 PM EDT"
-1836254686384734703,"RT @johnkrausphotos: https://t.co/J5ccBuMcaD","Sep 18, 12:03:27 AM EDT"
-1836261826314801520,"New leadership is needed in California https://t.co/4kDNaHRy1C","Sep 18, 12:31:50 AM EDT"
-1836262410203861396,"Like Counter-Strike, but for memes 🤣🤣 https://t.co/IdzR4v5y3T","Sep 18, 12:34:09 AM EDT"
-1836262600960806927,"Unexpected, but appreciated https://t.co/9uEwTgLjbh","Sep 18, 12:34:54 AM EDT"
-1836264001640296651,"Yes https://t.co/0d0ZkUfwrF","Sep 18, 12:40:28 AM EDT"
-1836264069457682495,"They do https://t.co/J7NT3KAfy1","Sep 18, 12:40:44 AM EDT"
-1836264333321605306,"They want to take away your right to freedom of speech https://t.co/gNPezDuv5Q","Sep 18, 12:41:47 AM EDT"
-1836264721965813943,"The Joker is in charge https://t.co/f7ZAZ25qQE","Sep 18, 12:43:20 AM EDT"
-1836265669631053838,"The governor of California just made this parody video illegal in violation of the Constitution of the United States.
-
-Would be a shame if it went viral. https://t.co/OCBewC4vOb","Sep 18, 12:47:06 AM EDT"
-1836267345926558022,"Unless Trump is elected, America will fall to tyranny.
-
-Trump must win. https://t.co/h7XbEQqPwy","Sep 18, 12:53:46 AM EDT"
-1836268545728221590,"They are ACTUALLY trying to make posting memes illegal. Vote them out. https://t.co/aALjzbECga","Sep 18, 12:58:32 AM EDT"
-1836269587710775528,"Buffett is already preparing for this outcome https://t.co/fYT6s9uiHo","Sep 18, 1:02:40 AM EDT"
-1836270588085866990,"You can play real-time video games on Starlink, whereas that is impossible with geostationary satellites that are ~50 times further away.
-
-Speed of light is the law. https://t.co/ygfYgVftKO","Sep 18, 1:06:39 AM EDT"
-1836270964465918227,"Starlink technology is head and shoulders above anything else https://t.co/vTggT3BUb6","Sep 18, 1:08:08 AM EDT"
-1836274063259718017,"Always Be Cheating News https://t.co/6vI2zZItFB","Sep 18, 1:20:27 AM EDT"
-1836274440814166309,"Cool https://t.co/VPqpy81YM1","Sep 18, 1:21:57 AM EDT"
-1836274569277247966,"True https://t.co/WeLTfxh5wF","Sep 18, 1:22:28 AM EDT"
-1836276933073736061,"Like that time Streisand sued someone for revealing her super obvious address in Malibu. That really kept a lid on it lmao. https://t.co/Av5CDlRtJ4","Sep 18, 1:31:51 AM EDT"
-1836278233928732719,"Whoa https://t.co/qMUqrBl3LO","Sep 18, 1:37:02 AM EDT"
-1836281003033399640,"Hard to be a free speech platform in a state that wants to ban free speech https://t.co/veCjVbNToO","Sep 18, 1:48:02 AM EDT"
-1836283860407193923,"🔥😂 https://t.co/Z0nuAASeUS","Sep 18, 1:59:23 AM EDT"
-1836286990654095717,"Great work by the Falcon team! https://t.co/JfnExQE7DI","Sep 18, 2:11:49 AM EDT"
-1836287490740944968,"Seriously https://t.co/hcfoXhlq1z","Sep 18, 2:13:49 AM EDT"
-1836289127907758312,"Any sufficiently advanced magic is indistinguishable from technology","Sep 18, 2:20:19 AM EDT"
-1836291019912216696,"A truly impressive level of incompetence! https://t.co/xSpFjfFdEa https://t.co/84LNpiMw6E","Sep 18, 2:27:50 AM EDT"
-1836305447990759765,"RT @LibertyCappy: Who does Gavin Newsom remind you of?
-
-Once you see it you can’t unsee it. https://t.co/AhTZkyCjPo","Sep 18, 3:25:10 AM EDT"
-1836315994744111439,"RT @DimaZeniuk: SpaceX launched its 90th Falcon 9 mission this year https://t.co/CsOjXtjFaH","Sep 18, 4:07:04 AM EDT"
-1836317338624233798,"Exactly https://t.co/AUEmOCvpfw","Sep 18, 4:12:25 AM EDT"
-1836318092521308191,"Trending well https://t.co/P1cy2Fh7S4","Sep 18, 4:15:25 AM EDT"
-1836319222982701534,"https://t.co/RBRefTOQqR","Sep 18, 4:19:54 AM EDT"
-1836324854716600530,"This is almost real https://t.co/OSNCDxYXlG","Sep 18, 4:42:17 AM EDT"
-1836324995250721170,"🤨 https://t.co/Hw2MG22hGH","Sep 18, 4:42:50 AM EDT"
-1836329095703244890,"Great! https://t.co/TvkPjxyLN2","Sep 18, 4:59:08 AM EDT"
-1836333477903388712,"Atheism left an empty space
-Secular religion took its place
-
-But left the people in despair
-Childless hedonism sans care
-
-Maybe religion’s not so bad
-To keep you from being sad","Sep 18, 5:16:33 AM EDT"
-1836333583713382805,"RT @RandPaul: They're not having a policy debate. They're describing Trump as threatening democracy, threatening your right to vote. None o…","Sep 18, 5:16:58 AM EDT"
-1836423451512590767,"Wow https://t.co/OdITDkOyOI","Sep 18, 11:14:04 AM EDT"
-1836423825648685506,"Wow https://t.co/YUU9iSuxHX","Sep 18, 11:15:33 AM EDT"
-1836430474274836893,"The margin of victory in swing states is sometimes less than a thousand votes https://t.co/GvIrPtb5Oe","Sep 18, 11:41:58 AM EDT"
-1836433725791572330,"Summary of my philosophy https://t.co/3LHKYOZesa","Sep 18, 11:54:54 AM EDT"
-1836437913137262867,"Compared to diesel, Tesla Semi trucks have a lot more acceleration, uphill power and computer-controlled safety features like jackknifing protection, so both more fun and safer to drive https://t.co/eBNuj18Kvp","Sep 18, 12:11:32 PM EDT"
-1836437960528662690,"RT @ICannot_Enough: "Earth is the cradle of the mind, but one cannot live in the cradle forever."
-—Konstantin Tsiolkovsky https://t.co/fzFw…","Sep 18, 12:11:43 PM EDT"
-1836454253713592516,"Competence is underrated https://t.co/PMWo9fmw9i","Sep 18, 1:16:28 PM EDT"
-1836455185868296234,"RT @TeslaBoomerMama: 🇺🇸 https://t.co/lcT3v8VKQ8","Sep 18, 1:20:10 PM EDT"
-1836455257993548059,"Lawfare https://t.co/Y7eGLYllMW","Sep 18, 1:20:27 PM EDT"
-1836511936290373637,"😂 https://t.co/YgHgAu5iH2","Sep 18, 5:05:41 PM EDT"
-1836517041970491523,"Interesting https://t.co/S5LTzkn7MK","Sep 18, 5:25:58 PM EDT"
-1836518469594136954,"RT @SpeakerJohnson: The Federal Reserve Chairman admitted the massive influx of illegal immigrants under Biden and Harris has raised the un…","Sep 18, 5:31:38 PM EDT"
-1836519906977943726,"His best ad ever 😂 https://t.co/NDa85XAY4t","Sep 18, 5:37:21 PM EDT"
-1836546697012613498,"Censorship everywhere in America https://t.co/DW3juePuIP","Sep 18, 7:23:48 PM EDT"
-1836547769160577349,"RT @cb_doge: https://t.co/1veLLMR7GA","Sep 18, 7:28:04 PM EDT"
-1836583978171830415,"Interesting https://t.co/bpEjsDcjmI","Sep 18, 9:51:57 PM EDT"
-1836595786655641739,"The Dem administrative state is flying millions of future voters directly into swing states. They are being sent to cities and towns throughout Ohio, Pennsylvania, Wisconsin and Arizona.
-
-Given that this is a sure path to permanent one-party rule, it is ","Sep 18, 10:38:52 PM EDT"
-1836637487323664842,"RT @ajtourville: Starlink testimonial from Rutan, Pennsylvania 🇺🇸
-
-“Anyone on the fence about ditching your terrible internet. We all know…","Sep 19, 1:24:34 AM EDT"
-1836638047087034788,"Bullseye 🎯 https://t.co/vNmWQ4csS0","Sep 19, 1:26:48 AM EDT"
-1836638749188411821,"RT @cb_doge: Donald Trump just uploaded his full rally from today on 𝕏.
-
-Just a reminder: you can upload videos up to 4 hours long on this…","Sep 19, 1:29:35 AM EDT"
-1836639170300666277,"Flight 5 is built and ready to fly.
-
-Flight 6 will be ready to fly before Flight 5 even gets approved by FAA! https://t.co/wh7z0zjqR6","Sep 19, 1:31:15 AM EDT"
-1836639719976816848,"🤔 https://t.co/rReJ9rPVq5","Sep 19, 1:33:27 AM EDT"
-1836705351640457636,"RT @elon_docs: Elon Musk: Just caring about the work somebody does and nothing else is the least racist or sexist you can be.
-
-"I think we…","Sep 19, 5:54:14 AM EDT"
-1836711667092083140,"“Misinformation” https://t.co/otlqM4bmwo","Sep 19, 6:19:20 AM EDT"
-1836713916740632868,"Hmm https://t.co/tUfo9QJXZp","Sep 19, 6:28:16 AM EDT"
-1836714179308183739,"We should write all of human knowledge into these crystals https://t.co/TzrTfuHnb5","Sep 19, 6:29:19 AM EDT"
-1836714694674923653,"They make fraud impossible to prove https://t.co/SfC2EYiSWB","Sep 19, 6:31:22 AM EDT"
-1836715193931378969,"Interesting group of supporters https://t.co/VJD4rdsPPA","Sep 19, 6:33:21 AM EDT"
-1836715758090424588,"RT @Rothmus: 🔥🔥
-
-@sfliberty https://t.co/uWmguzypGo","Sep 19, 6:35:35 AM EDT"
-1836716214900478054,"Yup https://t.co/wF3lMgqg3x","Sep 19, 6:37:24 AM EDT"
-1836716428679942280,"Lawfare https://t.co/IoMe8G4aUk","Sep 19, 6:38:15 AM EDT"
-1836717009741951247,"Obviously https://t.co/TERvaMJWZp","Sep 19, 6:40:34 AM EDT"
-1836804445994164572,"Exactly https://t.co/VdUxNRDD5p","Sep 19, 12:28:00 PM EDT"
-1836804984588935462,"Wow https://t.co/BlTQjOEb3U","Sep 19, 12:30:09 PM EDT"
-1836806074638434556,"Thanks Joe https://t.co/swbYEjVnGW","Sep 19, 12:34:29 PM EDT"
-1836817314596925739,"Maybe she’s just trying to illustrate what misinformation means https://t.co/uP52zM6GTY","Sep 19, 1:19:08 PM EDT"
-1836817519148969986,"🤔 https://t.co/JFiUbuQ2NV","Sep 19, 1:19:57 PM EDT"
-1836829670102421565,"Cool https://t.co/DbSqE1MJW4","Sep 19, 2:08:14 PM EDT"
-1836880588839493745,"Amazing https://t.co/8DIFfnijh9","Sep 19, 5:30:34 PM EDT"
-1836881565495841009,"Competence matters https://t.co/KUeppENJh6","Sep 19, 5:34:27 PM EDT"
-1836881919474094430,"True https://t.co/i4uWdfyGBt","Sep 19, 5:35:51 PM EDT"
-1836890614610149407,"Wow https://t.co/TGxD1pOYJo","Sep 19, 6:10:24 PM EDT"
-1836890967653146999,"RT @AutismCapital: People calling for no immigration are retarded. What you *actually* mean is no illegal immigration. And what you *actual…","Sep 19, 6:11:49 PM EDT"
-1836891324915523892,"https://t.co/PShWKMtCBU","Sep 19, 6:13:14 PM EDT"
-1836891478716457450,"Glorious! https://t.co/zaME52QPm2","Sep 19, 6:13:50 PM EDT"
-1836891602972987580,"Yay! Comedy is legal is Texas! https://t.co/0B6OUR67eb","Sep 19, 6:14:20 PM EDT"
-1836911713649586398,"Shanghai just experienced the most powerful typhoon in 75 years!
-
-Best wishes for the resilient & resourceful people of Shanghai.
-
-I have asked our Tesla Shanghai team to help anyone in distress to the best of our ability.","Sep 19, 7:34:15 PM EDT"
-1836913013749600734,"Starlink is particularly great for remote locations. It works whether you’re at the top of a mountain in the Arctic or in a crater in Madagascar! https://t.co/7TLq10gKuM","Sep 19, 7:39:25 PM EDT"
-1836913171447107923,"💯 https://t.co/VYMSan6mNc","Sep 19, 7:40:02 PM EDT"
-1836919013206528458,"Awesome https://t.co/5JDzbzFzw7","Sep 19, 8:03:15 PM EDT"
-1836919344187556164,"True https://t.co/6vJiUF94AS","Sep 19, 8:04:34 PM EDT"
-1836919702527910043,"This is wild https://t.co/VGNpziQkbf","Sep 19, 8:06:00 PM EDT"
-1836920142087028915,"How would you feel if someone tried to hurt your daughter with a machete? https://t.co/Sicz5ZgbSX","Sep 19, 8:07:44 PM EDT"
-1836923457960919224,"SpaceX letter to Congress.
-
-The @FAANews leadership spends their resources attacking @SpaceX for petty matters that have nothing to do with safety, while neglecting real safety issues at Boeing. This is deeply wrong and puts human lives at risk.
-
-NASA dee","Sep 19, 8:20:55 PM EDT"
-1837059166143177071,"Much appreciated https://t.co/hBuyqUiQW8","Sep 20, 5:20:10 AM EDT"
-1837060122436112408,"It’s a start https://t.co/Jz0Epvp5cH","Sep 20, 5:23:58 AM EDT"
-1837060424996446699,"Community Notes 🙌 https://t.co/Mx2Tllsl3Q","Sep 20, 5:25:10 AM EDT"
-1837067225187922398,"What’s weird is how the legacy media all has the same talking points simultaneously, even the same phrases like “sharp as a tack” about Biden before the debate.
-
-Then they all stabbed him in the back right after the debate ended and went from ignoring Ka","Sep 20, 5:52:12 AM EDT"
-1837069363553161581,"RT @MarioNawfal: ELON: SPACE TECHNOLOGY HAS TO IMPROVE, OR WE'LL BE STUCK ON EARTH FOREVER
-
-"I'd simply come to the conclusion that if some…","Sep 20, 6:00:42 AM EDT"
-1837070410757677485,"Shouldn’t the head of an organization responsible for regulating the safety of airplanes & rockets know something about how they work? https://t.co/4fegHMDS0L","Sep 20, 6:04:51 AM EDT"
-1837078921239552248,"𝕏 brings you news from actual experts and people on scene in real-time https://t.co/IrZ6fLceTT","Sep 20, 6:38:40 AM EDT"
-1837081169004728551,"RT @MarioNawfal: 🇺🇸JARED ISAACMAN: WHEN I OPENED THE HATCH, IT WAS A SENSORY OVERLOAD; EARTH WAS RIGHT IN FRONT OF ME
-
-The Polaris Dawn cre…","Sep 20, 6:47:36 AM EDT"
-1837083190902804729,"Yes https://t.co/wOwsdQ5mHX","Sep 20, 6:55:38 AM EDT"
-1837083401012048021,"Creepy that they would vote against this https://t.co/H5Q1RR8sMG","Sep 20, 6:56:28 AM EDT"
-1837083857247453337,"RT @MarioNawfal: 🇺🇸LADY GAGA'S DAD ENDORSES TRUMP: WE WANT SECURE BORDERS
-
-Joe Germanotta, Lady Gaga’s father, endorses Trump, calling him…","Sep 20, 6:58:17 AM EDT"
-1837084250866065764,"💯 https://t.co/If7NfsC5jX","Sep 20, 6:59:51 AM EDT"
-1837084434530549842,"RT @WallStreetSilv: The real "risk" of a Trump presidency:
-
-• Ukraine war ends
-• Border Wall Built
-• Mass Deportations
-• Inflation Drops…","Sep 20, 7:00:35 AM EDT"
-1837084835212394497,"RT @libsoftiktok: 🚨Huge scandal unfolding in @ChiPubSchools!
-
-Chicago elementary teachers have come forward alleging that administrators in…","Sep 20, 7:02:10 AM EDT"
-1837085039726625091,"🤣🤣 Exactly https://t.co/qly2Hg9FjF","Sep 20, 7:02:59 AM EDT"
-1837312664197886123,"Just had an excellent conversation with President @NayibBukele!
-
-We talked a lot about the nature of reality, future of humanity and how technology like AI and robotics will affect the world.
-
-El Salvador has an amazing leader. https://t.co/vvCfu1tYoB","Sep 20, 10:07:29 PM EDT"
-1837313606532190351,"Federal government spending will bankrupt the country, unless action is taken to reduce government waste.
-
-This is what causes inflation! https://t.co/Q0rN5hbXHp","Sep 20, 10:11:14 PM EDT"
-1837322544820441207,"Staggeringly bad waste of money https://t.co/RerY7SrCmQ","Sep 20, 10:46:45 PM EDT"
-1837351815282614340,"RT @iam_smx: Welcome to SpaceX https://t.co/0GZLqcwQT5","Sep 21, 12:43:03 AM EDT"
-1837386483163898310,"RT @theMRC: IRS Agents Union Endorses Kamala Harris, Cites Inflation Reduction Act Windfall https://t.co/ZSdip1bamd","Sep 21, 3:00:49 AM EDT"
-1837398954750681094,"Yes https://t.co/1AZ9rjZWi5","Sep 21, 3:50:22 AM EDT"
-1837399699113771253,"RT @MarioNawfal: 🇦🇷MILEI: SPACE EXPLORATION IS A NATURAL PART OF HUMANITY'S DESTINY
-
-"We have put men on the moon and are now aiming for Ma…","Sep 21, 3:53:20 AM EDT"
-1837408070000914479,"Because the legacy media is a propaganda machine for the “Democratic” Party https://t.co/lFZ8IleCiE","Sep 21, 4:26:35 AM EDT"
-1837410259217899912,"Starlink began 10 years ago and is now 2/3 of all of Earth’s satellites https://t.co/YEkb5QlyM7","Sep 21, 4:35:17 AM EDT"
-1837418433752846759,"RT @EricAbbenante: Bret Stephens asks Stephanie Ruhle why Kamala Harris has not done interviews and stated clearly what her policy position…","Sep 21, 5:07:46 AM EDT"
-1837418533325509085,"Inspiring https://t.co/lz81uoRyVf","Sep 21, 5:08:10 AM EDT"
-1837419483935187160,"Very important to read this book https://t.co/sBd0tjxqOu","Sep 21, 5:11:57 AM EDT"
-1837419610817151325,"RT @Rothmus: 🔥🔥🔥🔥
-
-@TheAtlasSociety https://t.co/QNjikJc8oK","Sep 21, 5:12:27 AM EDT"
-1837420417058766961,"Well said https://t.co/dd7QfPVe9D","Sep 21, 5:15:39 AM EDT"
-1837420823340093801,"Bravo! https://t.co/rWmYvnLU04","Sep 21, 5:17:16 AM EDT"
-1837422061951549850,"🧐 https://t.co/tFNDiBCO0d","Sep 21, 5:22:11 AM EDT"
-1837422709774372991,"If the left hadn’t on the left then they would be the right
- https://t.co/yktDJcU8Su","Sep 21, 5:24:46 AM EDT"
-1837422801382187024,"💯 https://t.co/GVs2OAQjFz","Sep 21, 5:25:08 AM EDT"
-1837424761707618645,"Request a Community Note whenever you see misleading or simply wrong posts https://t.co/CWeBupF54Z","Sep 21, 5:32:55 AM EDT"
-1837425031585976478,"Insanely bad spending of your hard-earned taxes is the problem https://t.co/goUFab8f3h","Sep 21, 5:33:59 AM EDT"
-1837425372725432548,"😂💯 https://t.co/GvABft6FQR","Sep 21, 5:35:21 AM EDT"
-1837430404317409682,"RT @DefiantLs: The job of the mainstream media today is to make you think that the views of 10% of the country are actually the views of 90…","Sep 21, 5:55:20 AM EDT"
-1837495576272777598,"Starlink helps schools in remote regions https://t.co/pxhkoRtEb2","Sep 21, 10:14:19 AM EDT"
-1837498631688970479,"RT @aestheticspost_: https://t.co/7W8jbkkoyj","Sep 21, 10:26:27 AM EDT"
-1837500989005353088,"RT @AMAZlNGNATURE: Summer in Antarctica. 🌞 Penguins can swim joyfully in the melt pond. 🏊♀️ https://t.co/ZcKGqvW9yw","Sep 21, 10:35:49 AM EDT"
-1837503422477590936,"There should be thoughtful discussion of substantive issues, rather than people simply hating who the media tells them to hate https://t.co/hp82scUPGv","Sep 21, 10:45:29 AM EDT"
-1837507666580512964,"Exactly https://t.co/hxU42Lm11r","Sep 21, 11:02:21 AM EDT"
-1837508761386090692,"Explains why the media is such a propaganda machine for the Democratic Party https://t.co/LQHZOjKwAg","Sep 21, 11:06:42 AM EDT"
-1837509493174727130,"You can change the software running in your head that was put there by others https://t.co/vq7SJZ8RfJ","Sep 21, 11:09:37 AM EDT"
-1837511675387293821,"RT @cb_doge: Top 5 News Apps | Grossing | AppStore | US 🇺🇸 September 21, 2024 https://t.co/usH5YKD9V0","Sep 21, 11:18:17 AM EDT"
-1837512342180929733,"RT @WallStreetSilv: 🤨🤨🤨 https://t.co/v6lwxJI5wR","Sep 21, 11:20:56 AM EDT"
-1837512526906392952,"RT @ParikPatelCFA: 23 year old McKinsey consultants telling the board of a company that they need to grow revenue and cut expenses https://…","Sep 21, 11:21:40 AM EDT"
-1837540433901277636,"Great! https://t.co/V9ZA9otqyk","Sep 21, 1:12:33 PM EDT"
-1837542808443400456,"Lawfare is wrong, no matter what side it comes from.
-
-We must have both the reality and perception of fairness in the justice system. https://t.co/XSp6pwfmBm","Sep 21, 1:22:00 PM EDT"
-1837542968649011697,"Starships were meant to fly! https://t.co/ddg7KifWKB","Sep 21, 1:22:38 PM EDT"
-1837543053562634439,"Yeah! https://t.co/PNPfEmRbB6","Sep 21, 1:22:58 PM EDT"
-1837544697792807386,"💯
-
-Free speech is the bedrock of democracy https://t.co/llfIvLYOle","Sep 21, 1:29:30 PM EDT"
-1837576194000039969,"Interesting https://t.co/ZU3zaTeR8V","Sep 21, 3:34:39 PM EDT"
-1837592713266593919,"Surely Cheney, the IRS, Putin and Iran endorsing Kamala can’t all be wrong! 😑 https://t.co/e4VjMnUwZO","Sep 21, 4:40:18 PM EDT"
-1837594249065648172,"RT @SpaceX: Starbase tower lifts the Super Heavy booster for Flight 5 to expected catch height https://t.co/INkseNgADF","Sep 21, 4:46:24 PM EDT"
-1837594453936427151,"RT @SpaceX: Dragon arrives at pad 40 in Florida ahead of next week's @NASA Crew-9 launch to the @Space_Station https://t.co/YEJwWPPnmp","Sep 21, 4:47:13 PM EDT"
-1837597284084994162,"For the first time in 4.5 billion years, it is possible for life to become multiplanetary.
-
-LFG!!! https://t.co/C2T11UR8hn","Sep 21, 4:58:28 PM EDT"
-1837604129507574109,"Wow, so crazy that @vkhosla put this sign on a public beach https://t.co/ln46n07kvw","Sep 21, 5:25:40 PM EDT"
-1837604608253784505,"Great book https://t.co/j9pcdQiIUH","Sep 21, 5:27:34 PM EDT"
-1837605905061630190,"Vinod says we should send tens of thousands of unvetted migrants to small towns throughout America, but he didn’t even want to let the public walk on his beach …
-
-https://t.co/EsQqHs1498","Sep 21, 5:32:43 PM EDT"
-1837607322530599258,"🔥🔥 https://t.co/QgxZjTZTac","Sep 21, 5:38:21 PM EDT"
-1837607940997656726,"I’m throwing a party on Vinod’s beach!
-
-For cuisine, I’m thinking BBQ.","Sep 21, 5:40:48 PM EDT"
-1837624776581394756,"This is not the future we want https://t.co/oY9D2d4Sl3","Sep 21, 6:47:42 PM EDT"
-1837625135496352155,"Interesting https://t.co/5jPY8kAIvJ","Sep 21, 6:49:08 PM EDT"
-1837626546074325240,"Awesome 🔥🔥
- https://t.co/FoizzE2eYv","Sep 21, 6:54:44 PM EDT"
-1837631226946977978,"Starship Super Heavy Booster held at catch height https://t.co/4Y2Xp2XtG7","Sep 21, 7:13:20 PM EDT"
-1837641296233566436,"That would be so cool https://t.co/e3OEWliUj9","Sep 21, 7:53:21 PM EDT"
-1837688111117009386,"Great question https://t.co/47GO4OFcSO","Sep 21, 10:59:22 PM EDT"
-1837690834264731697,"Don’t believe the media https://t.co/UIjSCHm5hD","Sep 21, 11:10:12 PM EDT"
-1837698837592347041,"What’s amazing is how net worth makes you hair grow 😂 https://t.co/ByHh0ifvpU","Sep 21, 11:42:00 PM EDT"
-1837699376912662901,"🔥🚀 https://t.co/7r4Lvb6eaC","Sep 21, 11:44:08 PM EDT"
-1837700406585020641,"It only gets better from here https://t.co/TniPaZLiWy","Sep 21, 11:48:14 PM EDT"
-1837700953086062868,"99.9% of resources allocated to Earth, but 0.1% allocated to becoming multiplanetary seems wise https://t.co/Bp58O749Bv","Sep 21, 11:50:24 PM EDT"
-1837705310661759306,"Try Grok! https://t.co/KfBGvZtqNl","Sep 22, 12:07:43 AM EDT"
-1837709349579370696,"RT @iam_smx: 1 Starship Raptor Engine Vs. 33 Starship Raptor Engines. https://t.co/vtrlFJ7slI","Sep 22, 12:23:46 AM EDT"
-1837714076056666614,"The only thing stopping the California government and overbearing regulatory agencies from being even worse is that people and companies can move out of state.
-
-If the machine behind the Kamala puppet wins this election, the whole country will be far wor","Sep 22, 12:42:33 AM EDT"
-1837715061650944480,"We built a factory and launch complex for giant rockets on a sand bar down by the river https://t.co/1tY2TCs44x","Sep 22, 12:46:28 AM EDT"
-1837715307445493904,"True https://t.co/kahLG3O4rw","Sep 22, 12:47:27 AM EDT"
-1837715410365403145,"… https://t.co/XKgbq24Qkd","Sep 22, 12:47:51 AM EDT"
-1837740720603484535,"RT @stevenmarkryan: Trump Taps Musk For Mars. LFG!!
-
-+
-
-Anti-Elon Corruption Exposed By All In Besties
-
-$TSLA https://t.co/9R1lfA2ZJm","Sep 22, 2:28:26 AM EDT"
-1837741140847513950,"RT @SawyerMerritt: NEWS: Byron Shire communities in Australia will now be better equipped for natural disasters with Starlink satellite dis…","Sep 22, 2:30:06 AM EDT"
-1837741360830362038,"RT @iam_smx: Elon Musk explains the mission to Mars aboard the Starship rocket. If everything goes as planned, humanity could reach Mars fr…","Sep 22, 2:30:58 AM EDT"
-1837888273143787536,"RT @markpinc: This is true. We just heard Waltz say his govt would not allow ‘mis information’ who decides what that is? The govt suppresse…","Sep 22, 12:14:45 PM EDT"
-1837899994973540495,"The preservation of life and consciousness by being on multiple planets and the expansion of consciousness to the stars are the goals of @SpaceX https://t.co/w8nlwmEnU3","Sep 22, 1:01:19 PM EDT"
-1837902319008067940,"The more that is spent, the worse it gets, because the money doesn’t go to the homeless, it goes to the hundreds of “charities” that then treat the homeless as sources of revenue.
-
-The more homeless there are, the more money these organizations get, so t","Sep 22, 1:10:34 PM EDT"
-1837908705683059166,"SpaceX plans to launch about five uncrewed Starships to Mars in two years.
-
-If those all land safely, then crewed missions are possible in four years. If we encounter challenges, then the crewed missions will be postponed another two years.
-
-It is only p","Sep 22, 1:35:56 PM EDT"
-1837911029273317733,"Exactly https://t.co/qPfVzpAH6O","Sep 22, 1:45:10 PM EDT"
-1837911318923207077,"Wow https://t.co/2Nc367X3aS","Sep 22, 1:46:19 PM EDT"
-1837912839950045574,"Wow, eyebrows really matter 😂 https://t.co/mu23Y37UyU","Sep 22, 1:52:22 PM EDT"
-1837913078656106631,"Starlink is helping many people around the world https://t.co/gKcLxCDyMj","Sep 22, 1:53:19 PM EDT"
-1837913129600090543,"RT @ajtourville: NEWS: @Tesla Semi was *the* highlight of the whole IAA conference last week – The Semi is seen here posing for a selfie wi…","Sep 22, 1:53:31 PM EDT"
-1837913942859067438,"By the way, our commercial Starlink program is the primary source of funding for Starship (NASA is helping too).
-
-So thank for buying Starlink and supporting humanity’s future in space.
-
-If you look closely at your Starlink router, you will notice that ","Sep 22, 1:56:45 PM EDT"
-1837915084112498845,"Trying hard! Sometimes very difficult. https://t.co/qwacKY08zT","Sep 22, 2:01:17 PM EDT"
-1837915316761837744,"🤨 https://t.co/XPEs3Y6Vma","Sep 22, 2:02:12 PM EDT"
-1837915564892635276,"Starlink has helped save people in many natural disaster situations around the world, most recently Brazil https://t.co/hbqU9NrNoY","Sep 22, 2:03:12 PM EDT"
-1837916131346071625,"The legal immigration process in America needs to be greatly streamlined and expanded, while illegal should be shut down.
-
-If someone is talented, hard-working and honest, they are an asset to the country. https://t.co/iGceFXBD1S","Sep 22, 2:05:27 PM EDT"
-1837917860343304284,"This is funny 😂
- https://t.co/FyEATwmprJ","Sep 22, 2:12:19 PM EDT"
-1837970407774720174,"RT @rookisaacman: It’s fascinating to see the reactions to @elonmusk recent Mars timeline. Like so many things, it sparks fierce debate fro…","Sep 22, 5:41:07 PM EDT"
-1837971333616935005,"💯 https://t.co/bqfLjKjAWw","Sep 22, 5:44:48 PM EDT"
-1837972250672201946,"True https://t.co/lWvSKZzdUB","Sep 22, 5:48:27 PM EDT"
-1837973899725738188,"https://t.co/85u4NWnQJA","Sep 22, 5:55:00 PM EDT"
-1837974479667896621,"Fidias has incredible drive & determination. He will effect change by sheer persistence. https://t.co/Pn7Dq41bDU","Sep 22, 5:57:18 PM EDT"
-1837974863182430235,"Exactly https://t.co/NyE7fVJpYn","Sep 22, 5:58:49 PM EDT"
-1837981548315836829,"🤣🤣
- https://t.co/vWOmJiWhO2","Sep 22, 6:25:23 PM EDT"
-1837982489186279484,"Even better https://t.co/qMAQUJRmbG","Sep 22, 6:29:08 PM EDT"
-1837996050927304972,"RT @lexfridman: "Political language is designed to make lies sound truthful." - George Orwell","Sep 22, 7:23:01 PM EDT"
-1838000532876583227,"True https://t.co/vAWjVuyk8I","Sep 22, 7:40:50 PM EDT"
-1838000690037248028,"Falcon 9
- https://t.co/8KJgbGayJu","Sep 22, 7:41:27 PM EDT"
-1838001095269818429,"🤔 https://t.co/EyRVH5OvFC","Sep 22, 7:43:04 PM EDT"
-1838011632879882458,"RT @imPenny2x: "Elon attracts you know fans and critics and sometimes that that clouds the the great progress they're making at SpaceX.
-
-P…","Sep 22, 8:24:56 PM EDT"
-1838011847661760757,"RT @webflite: This is probably one of the most epic eclipse video I’ve ever seen!
-
-📹: gizmotrevino https://t.co/NmctOj7GES","Sep 22, 8:25:47 PM EDT"
-1838011864619376892,"RT @ajtourville: I don't know how astronauts aboard the ISS manage to get anything done with views like these!
-https://t.co/DklQKgRyur","Sep 22, 8:25:51 PM EDT"
-1838021324045766931,"Send this link to friends who think @realDonaldTrump is racist
- https://t.co/kVzZipaXlO","Sep 22, 9:03:27 PM EDT"
-1838025490583711836,"Pulled Starship Super Heavy Booster wreckage out of the sea for analysis https://t.co/7BIj1fNYxL","Sep 22, 9:20:00 PM EDT"
-1838027461268750727,"Starship Super Heavy Booster Flight 4 https://t.co/EMGpNVn58Q","Sep 22, 9:27:50 PM EDT"
-1838027630743888315,"They want a holocaust for all of humanity https://t.co/htYxA98SxI","Sep 22, 9:28:30 PM EDT"
-1838031500341543348,"https://t.co/vd6ucgyeOh","Sep 22, 9:43:53 PM EDT"
-1838032436833235139,"Yup https://t.co/pQNjasHKXr","Sep 22, 9:47:36 PM EDT"
-1838032611769307427,"🐍 https://t.co/sicRj63OF5","Sep 22, 9:48:18 PM EDT"
-1838035528089755688,"She was reading from cue cards https://t.co/RguyPnY6QZ","Sep 22, 9:59:53 PM EDT"
-1838037772508045822,"Great! https://t.co/9uXzJVRdMp","Sep 22, 10:08:48 PM EDT"
-1838038291750306099,"Fixer upper","Sep 22, 10:10:52 PM EDT"
-1838040081841402094,"RT @iam_smx: Elon Musk points out how much better non-communist countries develop compared to communist ones.
-
-If Kamala Harris wins, she w…","Sep 22, 10:17:59 PM EDT"
-1838047464621736400,"RT @DimaZeniuk: Ten years ago, on September 22, 2014, SpaceX began constructing its Starbase facility. It’s incredible how much progress ha…","Sep 22, 10:47:19 PM EDT"
-1838089797224497250,"We need multiple Fish licenses to launch a rocket (actually)! https://t.co/K9zj0EqyTZ","Sep 23, 1:35:32 AM EDT"
-1838093079863017604,"Yup https://t.co/awW75PQlbI","Sep 23, 1:48:35 AM EDT"
-1838104643584369122,"RT @JeffClarkUS: It’s been several weeks and still no Democrat or member of the press has taken up my challenge of posting a transcript of…","Sep 23, 2:34:32 AM EDT"
-1838117114332287453,"Like the ruins of a futuristic, long-dead civilization","Sep 23, 3:24:05 AM EDT"
-1838117830547341676,"Starships will get much bigger in the future https://t.co/yYTCqbq5by","Sep 23, 3:26:56 AM EDT"
-1838118397155885225,"RT @elon_docs: Elon Musk: Starship's design exceeds NASA's requirements, so it can enable a permanently-occupied moon base.
-
-"We've designe…","Sep 23, 3:29:11 AM EDT"
-1838215627762274361,"Cool https://t.co/ojJlq9SUuE","Sep 23, 9:55:32 AM EDT"
-1838223766842691741,"RT @AMAZlNGNATURE: This is the best thing i've seen today! https://t.co/zskavxWuoc","Sep 23, 10:27:53 AM EDT"
-1838238701886849183,"Competitors receive vastly more subsidies than SpaceX or Tesla.
-
-The success of SpaceX/Tesla is in spite of competitor subsidies!
-
-Look at how much was given away for a North American Supercharger network to compete against Tesla and it still failed.
-
-O","Sep 23, 11:27:14 AM EDT"
-1838239340884803828,"You can summon a driverless Tesla from anywhere in the parking lot.
-
-Rapidly approaching the ability to summon from anywhere at all. https://t.co/qan7RqA8Ah","Sep 23, 11:29:46 AM EDT"
-1838241402867654765,"Pretty sure I saw this scene in The Joker https://t.co/rJbGwsa1pU","Sep 23, 11:37:57 AM EDT"
-1838268736371069350,"Interesting https://t.co/NrriVA8srt","Sep 23, 1:26:34 PM EDT"
-1838285101966463204,"Libertad! https://t.co/DQnBAh4d43","Sep 23, 2:31:36 PM EDT"
-1838288667032346931,"That’s why the legacy media is a nonstop propaganda machine for the Democrats https://t.co/LHBxyISinC","Sep 23, 2:45:46 PM EDT"
-1838292153526849571,"ABC lost a lot of credibility in that debate https://t.co/ITTC0MYmT8","Sep 23, 2:59:37 PM EDT"
-1838303630547653015,"The window to make Earth life multiplanetary is open for the first time in 4.5 billion years.
-
-Let’s goooo!!!! 🚀🚀🔥🔥😀😀 https://t.co/Nq5g6YwBKR","Sep 23, 3:45:14 PM EDT"
-1838312276962443645,"Wow https://t.co/cw2WRcR0VP","Sep 23, 4:19:35 PM EDT"
-1838335787873771952,"Google & Microsoft very disproportionately donate to the Democratic Party.
-
-Between them, they control close to 100% of web browsers and search. Even with the best of intentions, they can’t help but introduce bias. https://t.co/qGqxDPFuB8","Sep 23, 5:53:01 PM EDT"
-1838338126567088242,"Very misleading … https://t.co/EDkrGjRNGp","Sep 23, 6:02:18 PM EDT"
-1838338462098846107,"This is great https://t.co/GYFri8W7BI","Sep 23, 6:03:38 PM EDT"
-1838339043337146481,"Your Tesla can now drive itself through complex parking lots to find you https://t.co/ATqMCnntcQ","Sep 23, 6:05:57 PM EDT"
-1838339608825774417,"Starship is ready to fly!! https://t.co/3H1HF3JGKR","Sep 23, 6:08:12 PM EDT"
-1838340175417454734,"https://t.co/USFDkREBBF","Sep 23, 6:10:27 PM EDT"
-1838340657758253500,"RT @ElPelucaMilei: Así fue el reencuentro entre Elon Musk y Javier Milei.
-
-Argentina volverá a ser grande otra vez. https://t.co/Tddga9EYrV","Sep 23, 6:12:22 PM EDT"
-1838341405368029480,"Makes sense https://t.co/8xWpQ9IdZA","Sep 23, 6:15:20 PM EDT"
-1838341924023079172,"Wow … https://t.co/SHhiZgZNMr","Sep 23, 6:17:24 PM EDT"
-1838344120781189280,"https://t.co/odcmJdDbFw https://t.co/rP3n4Xqlas","Sep 23, 6:26:07 PM EDT"
-1838352860532072666,"Manufactured by the media https://t.co/ukl3FcSj8v","Sep 23, 7:00:51 PM EDT"
-1838453539586105668,"RT @pmarca: "Men can only be highly civilized while other men, inevitably less civilized, are there to guard them." --George Orwell","Sep 24, 1:40:55 AM EDT"
-1838456678733295949,"RT @sherwiebp: President Cyril Ramaphosa met South African-born American billionaire Elon Musk in New York to talk investment in SA after a…","Sep 24, 1:53:23 AM EDT"
-1838460823879995551,"Yeah https://t.co/leIzflylgf","Sep 24, 2:09:52 AM EDT"
-1838460936677384563,"RT @SawyerMerritt: Elon Musk met with various world leaders today in New York during the United Nations General Assembly.
-
-• Italian Prime…","Sep 24, 2:10:18 AM EDT"
-1838527740154130596,"Umm … https://t.co/R1kemMVebB","Sep 24, 6:35:46 AM EDT"
-1838528986701348961,"RT @ajtourville: NEWS: @Starlink testimonial from Harlan, Kentucky 🇺🇸
-
-“Do you want faster internet?
-
-We went from 50Mbps to over 200Mbps…","Sep 24, 6:40:43 AM EDT"
-1838533581380952548,"https://t.co/h6cqqTRdGd","Sep 24, 6:58:58 AM EDT"
-1838557749329707275,"Great meeting with @CyrilRamaphosa https://t.co/XLU5k2jQoD","Sep 24, 8:35:00 AM EDT"
-1838557937784000755,"RT @elon_docs: Elon Musk: Do we want a handful of editors deciding what's important, or should the people organically choose what to focus…","Sep 24, 8:35:45 AM EDT"
-1838560385303032171,"Starlink now available in Burundi! https://t.co/qRa2fpaz9k","Sep 24, 8:45:29 AM EDT"
-1838560734860447841,"True https://t.co/siuOnJUhL0","Sep 24, 8:46:52 AM EDT"
-1838561396704878812,"Power to the people! https://t.co/qEyOGZ5urp","Sep 24, 8:49:30 AM EDT"
-1838564886592282737,"RT @DimaZeniuk: Elon Musk met with Lesotho's Prime Minister, Sam Matekane, to explore the possibility of introducing Starlink to the countr…","Sep 24, 9:03:22 AM EDT"
-1838615674161147997,"As the President of Kenya says, Starlink causes local competitors to provides better services https://t.co/meisMWvhnr","Sep 24, 12:25:11 PM EDT"
-1838619656866689144,"Crazy https://t.co/kIc4pjnzDM","Sep 24, 12:41:00 PM EDT"
-1838620115165675723,"RT @AlecStapp: Milei repeals rent controls in Argentina.
-
-The results in Buenos Aires since last October:
-
-- housing rental supply up 170%…","Sep 24, 12:42:50 PM EDT"
-1838627892068007975,"RT @SpaceX: Falcon 9 and Dragon rolled out and went vertical at pad 40 in Florida https://t.co/RUGF1UBxLK","Sep 24, 1:13:44 PM EDT"
-1838630432088133957,"Kamala has vowed to break the filibuster https://t.co/GSdT1VtqAC","Sep 24, 1:23:49 PM EDT"
-1838631035938222371,"Great meeting with the President of Namibia! https://t.co/69QwVDWoQv","Sep 24, 1:26:13 PM EDT"
-1838643528143917196,"Jamie Dimon is right https://t.co/UurYSA4jei","Sep 24, 2:15:52 PM EDT"
-1838661749349781736,"Becoming multiplanetary is critical to ensuring the long-term survival of humanity and all life as we know it https://t.co/5TDAPXZwRM","Sep 24, 3:28:16 PM EDT"
-1838662284886876432,"Starlink now on all @HawaiianAir Airbus planes! https://t.co/s0hoMDvPdx","Sep 24, 3:30:24 PM EDT"
-1838689660010160426,"RT @MarioNawfal: ELON: THE POINT IS NOT JUST TO GO TO MARS, IT'S BUILDING A CITY THERE
-
-"I would like to go to Mars, that's nice to have, b…","Sep 24, 5:19:10 PM EDT"
-1838707186148548632,"Great speech by @nayibbukele!
- https://t.co/Ni7thjJreI","Sep 24, 6:28:49 PM EDT"
-1838707868448502173,"America is being smothered by legions of regulators, often inept & politically-driven https://t.co/wXu389zbnk","Sep 24, 6:31:32 PM EDT"
-1838728192825106704,"RT @ajtourville: This situation with the FAA goes far beyond a bloated bureaucracy and ineptitude – The FAA is clearly acting in bad faith…","Sep 24, 7:52:17 PM EDT"
-1838801443827888216,"Yeah https://t.co/ZCLSFYIlhU","Sep 25, 12:43:22 AM EDT"
-1838801873316307237,"Much appreciated! https://t.co/b5MxWEvl9G","Sep 25, 12:45:04 AM EDT"
-1838802491246313946,"💯 https://t.co/Ohx3R6l7PN","Sep 25, 12:47:31 AM EDT"
-1838802787930353812,"Exactly https://t.co/DNWvRuwzKw","Sep 25, 12:48:42 AM EDT"
-1838803097503564177,"RT @SpaceX: Falcon 9’s first stage booster lands on the Of Course I Still Love You droneship using a single Merlin engine https://t.co/7mWS…","Sep 25, 12:49:56 AM EDT"
-1838805968072683835,"Good https://t.co/HWCzPztnoX","Sep 25, 1:01:20 AM EDT"
-1838809177549914529,"Wow, the stress of being President really changes them https://t.co/JbDGXA8CWc","Sep 25, 1:14:06 AM EDT"
-1838815080097403141,"RT @Rothmus: 🔥 https://t.co/Dco1Hbe2UY","Sep 25, 1:37:33 AM EDT"
-1838815790939652302,"Cool https://t.co/adHB9Wnsgt","Sep 25, 1:40:22 AM EDT"
-1838816250677666125,"RT @garrytan: https://t.co/dC7sCHCkAs","Sep 25, 1:42:12 AM EDT"
-1838816531347836957,"RT @DrAlexKhalessi: The Apuzzo Lecture is about breakthrough thinking.
-
-Grateful to @elonmusk, Founder and CEO of @neuralink for sharing hi…","Sep 25, 1:43:19 AM EDT"
-1838817346766684408,"RT @SpaceX: Crew-9, SpaceX, and @NASA completed a full rehearsal of launch day activities ahead of liftoff on Saturday https://t.co/99pcI8r…","Sep 25, 1:46:33 AM EDT"
-1838978117072805999,"He needs to resign https://t.co/pG8htfTYHb","Sep 25, 12:25:24 PM EDT"
-1839030221426594085,"RT @WallStreetSilv: At a Congressional hearing on Tuesday, FAA Administrator Mike Whitaker lied before Congress (perjury) by claiming that…","Sep 25, 3:52:26 PM EDT"
-1839030937671086091,"Exactly https://t.co/szCAfNIa1i","Sep 25, 3:55:17 PM EDT"
-1839031113102016572,"Worth listening https://t.co/rScXVJPQwY","Sep 25, 3:55:59 PM EDT"
-1839039584665219393,"RT @CommunityNotes: Starting today, we’re admitting Community Notes contributors in 197 countries and territories around the world. With th…","Sep 25, 4:29:39 PM EDT"
-1839042965118886021,"RT @dreidel1: President Milei delivered a powerful speech at the United Nations General Assembly, boldly announcing that Argentina will bre…","Sep 25, 4:43:05 PM EDT"
-1839043088833995194,"Good points https://t.co/bXjyDLZvvb","Sep 25, 4:43:34 PM EDT"
-1839121268521492975,"This is deeply wrong https://t.co/RmoBX73ABC","Sep 25, 9:54:14 PM EDT"
-1839124331709751451,"This will be one for the history books https://t.co/qQ0HZyGMZE","Sep 25, 10:06:24 PM EDT"
-1839132221346652202,"How time flies! https://t.co/xgl7Zr05tR","Sep 25, 10:37:45 PM EDT"
-1839146744908542107,"One can perhaps quibble with a few of these points, but overall it is accurate https://t.co/Krzmc1OhGD","Sep 25, 11:35:28 PM EDT"
-1839186902915662324,"You can’t just convert a non-profit into a for-profit. That is illegal. https://t.co/kJkHyudT8K","Sep 26, 2:15:02 AM EDT"
-1839187788970783060,"Sam Altman is Little Finger","Sep 26, 2:18:34 AM EDT"
-1839188477386064140,"It is not legal https://t.co/oyZZDVFVu7","Sep 26, 2:21:18 AM EDT"
-1839188976864797141,"They are importing voters https://t.co/catIutSCrU","Sep 26, 2:23:17 AM EDT"
-1839189149103886830,"Much appreciated https://t.co/t1GE1gHEhh","Sep 26, 2:23:58 AM EDT"
-1839193508713738265,"America is being smothered by ever larger mountains of irrational regulations from ever more new agencies that serve no purpose apart from the aggrandizement of bureaucrats.
-
-Humanity, and life as we know it, are doomed to extinction without significant ","Sep 26, 2:41:17 AM EDT"
-1839193628465356960,"Bullseye 🎯 https://t.co/r2MwrWgd4p","Sep 26, 2:41:46 AM EDT"
-1839195351665762730,"RT @RepKiley: FAA Administrator Whitaker made a number of false statements in his testimony about @SpaceX. Either he doesn’t know what’s go…","Sep 26, 2:48:37 AM EDT"
-1839195756927873219,"RT @iam_smx: Elon Musk is the funniest Billionaire alive😂
-
-"You call me the Dogefather" https://t.co/UzyxnAyFNt","Sep 26, 2:50:13 AM EDT"
-1839196759005823009,"The largest flying object ever made will be caught in mid air with giant Mechazilla arms https://t.co/4EjUuQ53ie","Sep 26, 2:54:12 AM EDT"
-1839197490182238292,"RT @levelsio: Sam Altman will give himself 7% of Open AI which at its current valuation of $150B would be $10.5B in shares
-
-Sam Altman on t…","Sep 26, 2:57:06 AM EDT"
-1839198551336681895,"Sam Altman is Little Finger https://t.co/3esBWapV1x","Sep 26, 3:01:19 AM EDT"
-1839199230201569692,"Yes https://t.co/RRhTWC6wB2","Sep 26, 3:04:01 AM EDT"
-1839199325408129340,"🎯 https://t.co/JaMTC2HqVD","Sep 26, 3:04:24 AM EDT"
-1839205034463994130,"Major concern https://t.co/NIib0Xj0r8","Sep 26, 3:27:05 AM EDT"
-1839207724279640424,"Yes https://t.co/x0srH1T2nt","Sep 26, 3:37:46 AM EDT"
-1839412434580492350,"Air France is installing Starlink! https://t.co/hiSZ2fcTU6","Sep 26, 5:11:13 PM EDT"
-1839428343306899470,"Exactly https://t.co/I5btBmBkQK","Sep 26, 6:14:26 PM EDT"
-1839437573040795723,"Starlink now connecting over 4 million https://t.co/zHdtn3q5LS","Sep 26, 6:51:07 PM EDT"
-1839439841337225277,"Once you understand Kardashev Scale, it becomes utterly obvious that essentially all energy generation will be solar.
-
-Also, just do the math on solar on Earth and you soon figure out that a relatively small corner of Texas or New Mexico can easily serve","Sep 26, 7:00:07 PM EDT"
-1839441480114376859,"One square mile on the surface receives ~2.5 Gigawatts of solar energy. That’s Gigawatts with a “G”. It’s ~30% higher in space. The Starlink global satellite network is entirely solar/battery powered.
-
-Factoring in solar panel efficiency (25%), packing d","Sep 26, 7:06:38 PM EDT"
-1839444590132142179,"Starships were mean to fly https://t.co/A2u335V7NV","Sep 26, 7:19:00 PM EDT"
-1839448042828869716,"They are importing voters. It is obvious. https://t.co/R9eSY3qH9u","Sep 26, 7:32:43 PM EDT"
-1839448237851431416,"🤨 https://t.co/R369xqUZvX","Sep 26, 7:33:29 PM EDT"
-1839481428779663366,"Joe Rogan is absolutely right https://t.co/0pNA2CHHSo","Sep 26, 9:45:23 PM EDT"
-1839529134747173137,"Tuesday night in SF https://t.co/M9Dr9344pJ","Sep 27, 12:54:57 AM EDT"
-1839536056116408746,"RT @lindayaX: If you want the news, X is the place says facts guy @Steven_Ballmer ! https://t.co/tSt0aReoEe","Sep 27, 1:22:27 AM EDT"
-1839538388895965578,"Interesting https://t.co/ciXgF0BE3l","Sep 27, 1:31:43 AM EDT"
-1839541267107098979,"RT @BasedBeffJezos: I fucking love Texas.","Sep 27, 1:43:09 AM EDT"
-1839541446237356070,"Crazy https://t.co/r6AgCsaILZ","Sep 27, 1:43:52 AM EDT"
-1839542378819907757,"💯 https://t.co/QVXW1PfftR","Sep 27, 1:47:34 AM EDT"
-1839561750796021969,"RT @imPenny2x: There’s no other place on the Internet like X.
-
-It is magic here.
-
-Thank you everyone.","Sep 27, 3:04:33 AM EDT"
-1839676157672788301,"Because the legacy media industry is a far left propaganda machine https://t.co/mM3RDUKg7H","Sep 27, 10:39:10 AM EDT"
-1839676962035339330,"So cool 🥰 https://t.co/PHxCxb5zf5","Sep 27, 10:42:21 AM EDT"
-1839677374662578425,"Yes https://t.co/b64W4fp1sy","Sep 27, 10:44:00 AM EDT"
-1839678507149844857,"Election integrity … https://t.co/jI1MCUyiGz","Sep 27, 10:48:30 AM EDT"
-1839678946796867758,"RT @hhtbzayed: Today, we engaged in discussions with @elonmusk on the latest developments in advanced technology and AI, focusing on strate…","Sep 27, 10:50:15 AM EDT"
-1839720218156769480,"Even if you have a super high bandwidth land connection, Starlink is great as a backup option in case of emergencies https://t.co/NsxMpWsOy8","Sep 27, 1:34:15 PM EDT"
-1839732943914176535,"Looks like CGI, but these are all real video highlights from the @PolarisProgram space mission
- https://t.co/CLCzhJndF5","Sep 27, 2:24:49 PM EDT"
-1839747244561461495,"This is insane! https://t.co/FbcGYjJ70z","Sep 27, 3:21:38 PM EDT"
-1839747383317467590,"RT @rookisaacman: We have a lot of work to do on Earth, but we have the potential to make life better for both the present and the future w…","Sep 27, 3:22:11 PM EDT"
-1839753273433305191,"This is criminal https://t.co/h0eLXHpMOx","Sep 27, 3:45:36 PM EDT"
-1839757936341446725,"True https://t.co/vKvVqoand4","Sep 27, 4:04:07 PM EDT"
-1839758291171246527,"That’s how I feel too https://t.co/Nc1GaPJ3pR","Sep 27, 4:05:32 PM EDT"
-1839812398410072533,"Criminals vote overwhelmingly for the Democratic Party, because it is the soft-on-crime party.
-
-Therefore the obvious incentive of the Democratic Party is to maximize the number of criminals who can vote.
-
-The Dems are also always pushing to allow all f","Sep 27, 7:40:32 PM EDT"
-1839812757056606316,"The New York Times is pure propaganda https://t.co/xkk7HgpMKn","Sep 27, 7:41:58 PM EDT"
-1839813009016758586,"Independent-minded voters are shifting rapidly towards the Republican Party https://t.co/zP0cBtvzgD","Sep 27, 7:42:58 PM EDT"
-1839813135269613737,"True https://t.co/ctq5MuAH2o","Sep 27, 7:43:28 PM EDT"
-1839813945559003286,"Near the fall of the Roman Empire, the Roman Army also increasingly relied on non-citizens https://t.co/y1O282CBCn","Sep 27, 7:46:41 PM EDT"
-1839815090775740585,"Ideally, no one is killed, but the level of misunderstanding about magnitude, due to relentless legacy media propaganda, is astounding! https://t.co/sTc0AFNDez","Sep 27, 7:51:14 PM EDT"
-1839815818625900837,"There were three attacks on my mother’s friends in New York this year. Police didn’t even show up and, obviously, there were no arrests. https://t.co/hYxGIqFiNW","Sep 27, 7:54:07 PM EDT"
-1839832646240616449,"They are actually proposing to stack the Supreme Court. This is literally the plan. https://t.co/x5LxePvmMQ","Sep 27, 9:00:59 PM EDT"
-1839832814713246182,"Solar roofs that generate energy and look good too! https://t.co/pygYp50vfK","Sep 27, 9:01:40 PM EDT"
-1839842743041880266,"Big numbers https://t.co/gv0rxVuiOj","Sep 27, 9:41:07 PM EDT"
-1839903840285663489,"Exactly. As a general rule, any given piece of legislation will do the opposite of its name. The name is just propaganda to fool the public.
-
-The “secure our borders” bill would have done the exact opposite – amplifying illegal immigration and making the","Sep 28, 1:43:53 AM EDT"
-1839903935722627489,"Huge lie https://t.co/Vtl2pceO8J","Sep 28, 1:44:16 AM EDT"
-1839905703990890782,"Hop in, we’re going to Mars! 💫 https://t.co/8KSfmMtUwa","Sep 28, 1:51:18 AM EDT"
-1839906535092138107,"That is exactly what is happening https://t.co/vrL47YeVwJ","Sep 28, 1:54:36 AM EDT"
-1839907391799722381,"You know who we could ask about whether Kamala “secured the border”?
-
-The Border Patrol. https://t.co/yDcBhsNFP7","Sep 28, 1:58:00 AM EDT"
-1839907607844188267,"Seriously https://t.co/8o4SLZbO7d","Sep 28, 1:58:52 AM EDT"
-1839912592443060341,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app on the AppStore in Japan. 🇯🇵 https://t.co/871TdYfA3W","Sep 28, 2:18:40 AM EDT"
-1839913630990565632,"The clown world level is reaching unprecedented levels! https://t.co/lX72isw9Mx","Sep 28, 2:22:48 AM EDT"
-1839923962005889393,"The scale of the deception is jawdropping
-https://t.co/g6EPFMmanQ","Sep 28, 3:03:51 AM EDT"
-1839928516516761608,"🥄 🕳️ 🤣 https://t.co/cqn2TqjmuA","Sep 28, 3:21:57 AM EDT"
-1839929228613091709,"RT @WallStreetSilv: George Soros funded dozens of radical left wing prosecutor elections so that they won’t prosecute crimes.
-
-Now he has b…","Sep 28, 3:24:46 AM EDT"
-1839930759806611859,"https://t.co/75P4o1nW0Q","Sep 28, 3:30:52 AM EDT"
-1839931062492794931,"Cool https://t.co/oadNi9OhGC","Sep 28, 3:32:04 AM EDT"
-1839931278340010214,"From many countries https://t.co/HSiaQxmnmV","Sep 28, 3:32:55 AM EDT"
-1839932033000452269,"Gwynne is awesome https://t.co/tiXtMWJmPE","Sep 28, 3:35:55 AM EDT"
-1839932266559991852,"RT @Gillis_SarahE: The Earth is unfathomably beautiful from orbit. This captures a tiny fraction of the perspective and raw beauty we saw d…","Sep 28, 3:36:51 AM EDT"
-1839935172294135916,"Cool https://t.co/6n1s1yo3HJ","Sep 28, 3:48:24 AM EDT"
-1839935371397796160,"Hmm https://t.co/XxCFDJnZ9d","Sep 28, 3:49:11 AM EDT"
-1839937058078339571,"If the verdict in my case in Delaware is not overturned, it will be used as precedent in every fake shareholder case for every company incorporated in Delaware for the rest of time! https://t.co/nJfOeeKuoH","Sep 28, 3:55:53 AM EDT"
-1839938845791420907,"https://t.co/PSegFcnrtf","Sep 28, 4:02:59 AM EDT"
-1839941531173593133,"RT @xai: We are excited to bring together a group of exceptional engineers and product builders who are intrigued by our mission to build m…","Sep 28, 4:13:40 AM EDT"
-1839942328192061552,"https://t.co/PHPAbiYagy","Sep 28, 4:16:50 AM EDT"
-1839943283377672382,"RT @billmaher: Kamala Harris visited the Arizona border today. That makes two places she's worked that had a convenient drive-thru. https:/…","Sep 28, 4:20:37 AM EDT"
-1840011973175427408,"True https://t.co/X2fJDliJWy","Sep 28, 8:53:34 AM EDT"
-1840012518351155370,"RT @Cmdr_Hadfield: Sticking out the front of the International Space Station, this docking port is waiting for @SpaceX to launch today, doc…","Sep 28, 8:55:44 AM EDT"
-1840013427202306416,"Congratulations Giga Shanghai team! https://t.co/9pocCvkAIv","Sep 28, 8:59:21 AM EDT"
-1840014361819062423,"Simple and effective https://t.co/KDAsrrTUyv","Sep 28, 9:03:04 AM EDT"
-1840015569581437050,"😂 https://t.co/RNt4Aruarw","Sep 28, 9:07:52 AM EDT"
-1840053202005180624,"So crazy https://t.co/gRljUp4i3b","Sep 28, 11:37:24 AM EDT"
-1840053735508054440,"Korea and Germany are two examples of random lines being drawn and one side going all government (full communism) and the other side going only half government (socialist, aka half communism and half capitalism) https://t.co/joZU3UT0Bs","Sep 28, 11:39:31 AM EDT"
-1840054098151743586,"Community Note Hall-of-Famer! https://t.co/paBhlYSYca","Sep 28, 11:40:58 AM EDT"
-1840054865843601573,"RT @rookisaacman: I hope you don’t mind space photos because we’ve got plenty to share! I can confidently say the best shots were taken by…","Sep 28, 11:44:01 AM EDT"
-1840062265086619901,"SpaceX Dragon launching @NASA astronauts to the @Space_Station!
- https://t.co/XL5fWrATc3","Sep 28, 12:13:25 PM EDT"
-1840062315598672273,"RT @NASA: LIVE: Our @SpaceX #Crew9 mission launches to the @Space_Station. Liftoff from Cape Canaveral Space Force Station is scheduled for…","Sep 28, 12:13:37 PM EDT"
-1840063382512132245,"Meanwhile, back in America, the @FAANews is smothering the national space program in kafkaesque paperwork! https://t.co/7sIpVu7zZ6","Sep 28, 12:17:51 PM EDT"
-1840277555636474032,"This is crazy https://t.co/Bthj9HVmNF","Sep 29, 2:28:54 AM EDT"
-1840277775388746194,"Let us go among the stars https://t.co/AIUqzJYssN","Sep 29, 2:29:47 AM EDT"
-1840279605909115219,"https://t.co/tTK0GOxwJG https://t.co/AE72ftiijI","Sep 29, 2:37:03 AM EDT"
-1840303119747387434,"https://t.co/lC6PJIungz","Sep 29, 4:10:29 AM EDT"
-1840304967556399356,"RT @SenBillNelson: Crew-9 is on their way to the @Space_Station!
-
-Congrats to @NASA and @SpaceX on a successful launch. We live in an excit…","Sep 29, 4:17:50 AM EDT"
-1840404807439298897,"Clown world https://t.co/wUFhPat0dc","Sep 29, 10:54:33 AM EDT"
-1840409051357696324,"Very few Americans realize that, if Trump is NOT elected, this will be the last election. Far from being a threat to democracy, he is the only way to save it!
-
-Let me explain: if even 1 in 20 illegals become citizens per year, something that the Democrats","Sep 29, 11:11:25 AM EDT"
-1840409516392763420,"Exactly https://t.co/7KeFSE12mp","Sep 29, 11:13:16 AM EDT"
-1840422534212108781,"Coffee in the morning is so great https://t.co/NOt7UrQghv","Sep 29, 12:05:00 PM EDT"
-1840425197385535639,"RT @CollinRugg: @elonmusk Yet the media gaslights and continues to say this is a conspiracy theory.
-
-Here is the Democrat nominee saying sh…","Sep 29, 12:15:35 PM EDT"
-1840425412188418340,"Exactly.
-
-They want to take away freedom of speech! https://t.co/ye8sg4UlFS","Sep 29, 12:16:26 PM EDT"
-1840468562508734614,"Interesting https://t.co/J0F8dSiyWQ","Sep 29, 3:07:54 PM EDT"
-1840468763449368907,"https://t.co/QRUWp363eX","Sep 29, 3:08:42 PM EDT"
-1840469975359795207,"Satellite direct to phone will always be 10 to 100 times less bandwidth than a dedicated antenna that has 10X surface area, is precisely optimized for communicating with satellites and has much higher power","Sep 29, 3:13:31 PM EDT"
-1840534659740115333,"Dragon has reached @Space_Station https://t.co/p0kEkJklnK","Sep 29, 7:30:33 PM EDT"
-1840555072461103295,"Donations by Netflix employees could not be more lopsided in favor of the Democratic Party (~100%) https://t.co/zz0WNbghpi https://t.co/JGZPcB8i7o","Sep 29, 8:51:39 PM EDT"
-1840556098652110926,"RT @nicksortor: 🚨 WEST NORTH CAROLINA STARLINK UPDATE:
-
-Cell signal is still practically NON-EXISTENT. Our Asheville Starlink hubs are hand…","Sep 29, 8:55:44 PM EDT"
-1840556547468145043,"Impressive https://t.co/kategiTrJh","Sep 29, 8:57:31 PM EDT"
-1840556868986409338,"Indeed https://t.co/e9yQzb83VQ","Sep 29, 8:58:48 PM EDT"
-1840556967313424573,"RT @nayibbukele: The “Free World” is no longer free.
-
-El “Mundo Libre” ya no es libre. https://t.co/IOrLv33KbW","Sep 29, 8:59:11 PM EDT"
-1840572020163027141,"Yes https://t.co/Apt6WLv8NB","Sep 29, 9:59:00 PM EDT"
-1840578170686197765,"Giant difference https://t.co/63lmnUFUbx","Sep 29, 10:23:26 PM EDT"
-1840584352100442373,"💯 https://t.co/zYxkcgF0CW","Sep 29, 10:48:00 PM EDT"
-1840584543989895548,"Wow https://t.co/49FpzXCvmW","Sep 29, 10:48:46 PM EDT"
-1840601794080055591,"Interesting.
-
-My observation is that there is far more vicious animosity directed against the right by the left than vice versa.
-
-The right just thinks the left is misguided, but the left has foaming-at-the-mouth hatred of the right. https://t.co/VnS678","Sep 29, 11:57:19 PM EDT"
-1840603096486989828,"Yes https://t.co/d1MU5y7MYK","Sep 30, 12:02:29 AM EDT"
-1840604100968243364,"Amazing https://t.co/osg25f2eix","Sep 30, 12:06:29 AM EDT"
-1840604630742433904,"RT @IterIntellectus: "hammer disinformation out of existence" was the same justification for the holy inquisition
-
-don't forget that *every…","Sep 30, 12:08:35 AM EDT"
-1840604961459122181,"John Kerry is saying he wants to violate the Constitution https://t.co/im1BJNlfNI","Sep 30, 12:09:54 AM EDT"
-1840605440863818065,"Who is pushing this madness? https://t.co/dkMXt7v5h8","Sep 30, 12:11:48 AM EDT"
-1840605543368441973,"True https://t.co/JUDvUWQAvC","Sep 30, 12:12:12 AM EDT"
-1840605599555318013,"RT @cb_doge: Planning to vote for Kamala?
-
-Take a trip to San Francisco and walk down Market Street.
-
-Now, if you want all of America to l…","Sep 30, 12:12:26 AM EDT"
-1840620975248785486,"This is insane https://t.co/cMQ1ZNLoOF","Sep 30, 1:13:32 AM EDT"
-1840621953008169128,"Sex/gender is literally true down to the bones https://t.co/aWbisY2dZl","Sep 30, 1:17:25 AM EDT"
-1840622115285881292,"💯
-
-And they will destroy the Constitution https://t.co/naJYo2EAvG","Sep 30, 1:18:04 AM EDT"
-1840622361113952659,"Wiener is an utter scumbag https://t.co/649BCdEWUG","Sep 30, 1:19:02 AM EDT"
-1840623066038124593,"Exactly https://t.co/raZw4Zke5h","Sep 30, 1:21:50 AM EDT"
-1840635603601219657,"Interesting article https://t.co/ChMrv2HhDO","Sep 30, 2:11:39 AM EDT"
-1840635899014484163,"That’s the goal https://t.co/wApb4du15H","Sep 30, 2:12:50 AM EDT"
-1840636094670368782,"True https://t.co/fz2g5xHXff","Sep 30, 2:13:36 AM EDT"
-1840636816321347820,"https://t.co/u5upEgPIYC","Sep 30, 2:16:29 AM EDT"
-1840637762392789025,"RT @MarioNawfal: 🚨🇺🇸 MATT TAIBBI: EVERYTHING WE FOUND IN THE TWITTER FILES CAN BE SUMMED UP IN ONE SENTENCE
-
-“Everything we found in the Tw…","Sep 30, 2:20:14 AM EDT"
-1840637813768806557,"Yes https://t.co/nns2KHGbLs","Sep 30, 2:20:26 AM EDT"
-1840638585642320031,"RT @jk_rowling: The important thing to remember is, he's a total one off*, none of the other men arguing against women-only spaces are pred…","Sep 30, 2:23:30 AM EDT"
-1840638645721514077,"RT @TheChiefNerd: NOW - Robert F. Kennedy Jr Wants Everyone to Remember Three Rules:
-
-1) When you give a government a power, it will never…","Sep 30, 2:23:45 AM EDT"
-1840639252478017703,"RT @MarioNawfal: 🇺🇸ELON: TRUMP IS THE ONLY WAY TO SAVE DEMOCRACY!
-
-“Very few Americans realize that, if Trump is NOT elected, this will be…","Sep 30, 2:26:09 AM EDT"
-1840640583972327867,"Millions of illegals being provided by the government with money for housing using your tax dollars is a major part of what’s driving up costs https://t.co/qROyHzeJv6","Sep 30, 2:31:27 AM EDT"
-1840641076706586647,"RT @Rothmus: 👍 https://t.co/AQSOHaolo7","Sep 30, 2:33:24 AM EDT"
-1840641191714369729,"… https://t.co/oUWAUXNNbL","Sep 30, 2:33:52 AM EDT"
-1840641521156067435,"The whole US government has been doing this https://t.co/c96faEAdO6","Sep 30, 2:35:10 AM EDT"
-1840641766401155558,"RT @MarioNawfal: 🚨 BREAKING: DOJ SUES ALABAMA OVER REMOVING NONCITIZENS FROM VOTER ROLLS
-
-Yes, folks, you read that correctly...
-
-The DOJ i…","Sep 30, 2:36:09 AM EDT"
-1840694709489991687,"RT @cybertruck: https://t.co/FNQXfPtz3n","Sep 30, 6:06:31 AM EDT"
-1840836261000724939,"Contemptible political lawfare https://t.co/yLSPF2UeUE","Sep 30, 3:29:00 PM EDT"
-1840895412271792613,"RT @Tesla: https://t.co/6NdFCYAbsp","Sep 30, 7:24:03 PM EDT"
-1840917945418989761,"Nice work! https://t.co/QXTzTVcsNP","Sep 30, 8:53:35 PM EDT"
-1840930913636536461,"Wow, it is now illegal to require voter ID in California!
-
-They just made PREVENTING voter fraud against the law.
-
-The Joker is in charge. https://t.co/rVNwsh3jqt","Sep 30, 9:45:07 PM EDT"
-1840976241522065495,"They mean it too. Trump must win to preserve the Constitution! https://t.co/NKG2tVwrEr","Oct 1, 12:45:14 AM EDT"
-1840976842473263185,"Due to immediate and excessive use of bold font on 𝕏, it will be removed from view in the main timeline.
-
-You will have to click on post details to see anything in bold. My eyes are bleeding.","Oct 1, 12:47:37 AM EDT"
-1840987806388179258,"Since the Hurricane Helene disaster, SpaceX has sent as many Starlink terminals as possible to help areas in need.
-
-Earlier today, @realDonaldTrump alerted me to additional people who need Starlink Internet in North Carolina. We are sending them terminals","Oct 1, 1:31:11 AM EDT"
-1840988878049513612,"Worth posting again lol https://t.co/hRbz89kWNB","Oct 1, 1:35:27 AM EDT"
-1840989225379885273,"Yeah, the legacy media deliberately pushed this lie over and over again, knowing it was false https://t.co/HJ0QaJXNCi","Oct 1, 1:36:49 AM EDT"
-1840989923605655568,"Justice prevails https://t.co/KZUBWhEbaC","Oct 1, 1:39:36 AM EDT"
-1840990450934530331,"Same goes for italics and any other formatting. They are being abused for engagement farming","Oct 1, 1:41:42 AM EDT"
-1840990779143053564,"It’s true https://t.co/lRQysG3r3B","Oct 1, 1:43:00 AM EDT"
-1840990914149290320,"Thanks @reedhastings! https://t.co/Lc6Q2nO2Eg","Oct 1, 1:43:32 AM EDT"
-1840991260573642815,"This is crazy. FEMA’s top priority is supposed to be saving the lives of America citizens. https://t.co/zFhZF48hS1","Oct 1, 1:44:55 AM EDT"
-1840991320145272956,"Absolutely https://t.co/ZdZzvQzELz","Oct 1, 1:45:09 AM EDT"
-1840991490585108747,"Reality gets stranger by the day https://t.co/psMlEBwFK1","Oct 1, 1:45:49 AM EDT"
-1840993220223795431,"Exactly https://t.co/qtKL1WFrC8","Oct 1, 1:52:42 AM EDT"
-1840993302541107277,"Yes! https://t.co/9eAHBAbHIP","Oct 1, 1:53:01 AM EDT"
-1841005885914570941,"🤨 https://t.co/5qfnexupAt","Oct 1, 2:43:02 AM EDT"
-1841007189613244844,"To be precise, the machine that controls the Kamala puppet will come after me even more than it currently does https://t.co/bjUch5VoWO","Oct 1, 2:48:12 AM EDT"
-1841007372799504744,"RT @MarioNawfal: STARLINK | DIRECT-TO-CELL SERVICE EXPANDS!
-
-Elon confirmed that Starlink will pursue deals with other U.S. carriers and mo…","Oct 1, 2:48:56 AM EDT"
-1841007433847545995,"Great https://t.co/0IJgdeG1g6","Oct 1, 2:49:11 AM EDT"
-1841007685224788079,"The same people who demanded that you have a vaccine ID to travel are now demanding that there be no ID for voting https://t.co/HveazXTLB4","Oct 1, 2:50:11 AM EDT"
-1841008187811529025,"The woke mind virus is deadly to those it infects https://t.co/mjMKO1oeCz","Oct 1, 2:52:10 AM EDT"
-1841008895440896159,"Uh what!? https://t.co/bE3yIhXo3i","Oct 1, 2:54:59 AM EDT"
-1841012892960796894,"Mind-blowing that the Democratic Party is massively outspending the Republican Party in swing states!
-
-The Democrats have become the party of the rich and entitled (just look at their donor list) and the Republicans have become the party of the people.","Oct 1, 3:10:52 AM EDT"
-1841013522081140857,"The FCC is breaking the law https://t.co/8yKmev74NH","Oct 1, 3:13:22 AM EDT"
-1841014190527390204,"Indeed https://t.co/iNaO6Uz6RL","Oct 1, 3:16:02 AM EDT"
-1841017278529192302,"RT @netanyahu: The people of Iran should know - Israel stands with you https://t.co/MfwfNqnTgE","Oct 1, 3:28:18 AM EDT"
-1841020766676005102,"Yes https://t.co/7PDYCvu6qU","Oct 1, 3:42:09 AM EDT"
-1841020978647744811,"RT @heirsjournal: 3/ "The smallest minority on earth is the individual."
-
-Rand argued that protecting individual liberty is the key to a ju…","Oct 1, 3:43:00 AM EDT"
-1841021309708284247,"RT @EndWokeness: Trump flew directly to Valdosta to deliver critical supplies to the victims of Helene.
-
-Biden was at the beach all weekend…","Oct 1, 3:44:19 AM EDT"
-1841021473957327002,"😂😂 https://t.co/o2HnejHXwk","Oct 1, 3:44:58 AM EDT"
-1841021881509360126,"https://t.co/Wgu1nLuuyv","Oct 1, 3:46:35 AM EDT"
-1841021946659541440,"RT @cb_doge: Voting without a valid ID should be illegal in every state across the U.S. 🇺🇸 https://t.co/mXhUFuyiop","Oct 1, 3:46:51 AM EDT"
-1841023808053866931,"As this video describes, Trump supports women’s rights far more than Kamala!
- https://t.co/dsVTeMZFV0","Oct 1, 3:54:15 AM EDT"
-1841118470752055510,"Yes https://t.co/C2QIXkwT5G","Oct 1, 10:10:24 AM EDT"
-1841119190008102943,"This is troubling https://t.co/zNjwNn9ioH","Oct 1, 10:13:15 AM EDT"
-1841119905841607046,"Well, I’m really bad at figure skating. Does that I should still get a gold medal? 🤷♂️ https://t.co/BJq30xSwWc","Oct 1, 10:16:06 AM EDT"
-1841121219074019568,"This is so crazy https://t.co/5PfpcFBnQc","Oct 1, 10:21:19 AM EDT"
-1841122348742680715,"Solar power is growing super fast.
-
-In the very long-term (Kardashev Scale), solar will be >99% of all power generation. https://t.co/CLFpGoL3OT","Oct 1, 10:25:48 AM EDT"
-1841124010152579172,"To understand the nightmare of where far left politics takes you, just walk around downtown San Francisco https://t.co/jwZvmfKaSH","Oct 1, 10:32:25 AM EDT"
-1841125137434726697,"What the heck is going on? https://t.co/bBAQxsLc9o","Oct 1, 10:36:53 AM EDT"
-1841125892879229157,"Almost all vehicles will be purely electric long-term. Combustion cars will be a niche, like horses. https://t.co/ETMNrEUkUt","Oct 1, 10:39:53 AM EDT"
-1841126360695128332,"RT @SawyerMerritt: NEWS: OPUL Jets, a premier private jet charter provider, has announced it will be upgrading its entire fleet with @Space…","Oct 1, 10:41:45 AM EDT"
-1841157562344833334,"Wow https://t.co/ryimhzyj0b","Oct 1, 12:45:44 PM EDT"
-1841163981873991783,"Having a weak President is dangerous to world security https://t.co/K5sTzo1kPs","Oct 1, 1:11:15 PM EDT"
-1841164191992070656,"RT @elon_docs: Elon Musk: Most parents don't realize the level of indoctrination in schools.
-
-"The amount of indoctrination [into the woke…","Oct 1, 1:12:05 PM EDT"
-1841164275332665733,"RT @KanekoaTheGreat: "You may dislike President Trump’s style of speaking, but he led this country for four years without a single new majo…","Oct 1, 1:12:25 PM EDT"
-1841164447244517489,"https://t.co/9EaASIobEQ","Oct 1, 1:13:06 PM EDT"
-1841164936149606855,"Dude had more yachts than me! https://t.co/eg2v6QhIlw","Oct 1, 1:15:02 PM EDT"
-1841165661428727865,"I hope the public is starting to understand just how evil & dangerous the woke mind virus is to our civilization – it is suicidal https://t.co/1Z1GZzhPkl","Oct 1, 1:17:55 PM EDT"
-1841165883508494731,"This would be beautiful https://t.co/9OxtSM9FyQ","Oct 1, 1:18:48 PM EDT"
-1841166944202080339,"And you know what’s going immediately, not 2 days later! https://t.co/FUYLS1MmMX","Oct 1, 1:23:01 PM EDT"
-1841191116554612866,"Madness https://t.co/N5I1D4aZA2","Oct 1, 2:59:04 PM EDT"
-1841191233538179370,"If the Dems win, they will force this on the whole country https://t.co/N5I1D4bxpA","Oct 1, 2:59:32 PM EDT"
-1841195335592390821,"Great post https://t.co/VCdlPafw2s","Oct 1, 3:15:50 PM EDT"
-1841199948077154688,"It’s worth getting Starlink as an emergency backup, even if you have a crazy fast landline.
-
-Never know when a crisis might happen and you could help all the people around you stay connected too. https://t.co/3i13NKBDoo","Oct 1, 3:34:10 PM EDT"
-1841203863795200361,"RT @alx: TRUMP: “Let me begin by sending our love to every family that has been affected by the recent Hurricane.. I want to thank Elon Mus…","Oct 1, 3:49:43 PM EDT"
-1841205236821565931,"https://t.co/8xc5SxeLah","Oct 1, 3:55:11 PM EDT"
-1841205603970023444,"We’re getting as many Starlinks as possible to areas affected by the hurricane https://t.co/AO9J4DJYHC","Oct 1, 3:56:38 PM EDT"
-1841206529418055964,"Crazy!! https://t.co/eL7TeLNB3k","Oct 1, 4:00:19 PM EDT"
-1841207137420132549,"We are making a system update to allow all Starlinks in the affected areas to work, regardless of payment.
-
-Software update hopefully completed tonight. Tomorrow at the latest. https://t.co/RcSwU54DtL","Oct 1, 4:02:44 PM EDT"
-1841207936565010594,"That is my strong belief https://t.co/1diVPxeHT9","Oct 1, 4:05:54 PM EDT"
-1841210985685930373,"xAI open house in SF tonight! https://t.co/M9Dr934Cfh","Oct 1, 4:18:01 PM EDT"
-1841261907606684121,"Very accurate https://t.co/GObH7Npz1u","Oct 1, 7:40:22 PM EDT"
-1841269862251086198,"If you live in Pennsylvania and haven’t registered to vote, you only have 20 days left to do so!
-
-Please register to vote and ask your friends & family to do so too. This is a very important election.","Oct 1, 8:11:58 PM EDT"
-1841270007835292050,"This is the state website to do online registration:
-https://t.co/GYagpUQMdu","Oct 1, 8:12:33 PM EDT"
-1841271824807756268,"Wow, this is crazy https://t.co/KoMbavrjNg","Oct 1, 8:19:46 PM EDT"
-1841275307678155099,"Arizona’s voter registration deadline is only a week away! You can register online using the link below.","Oct 1, 8:33:37 PM EDT"
-1841275635064623465,"https://t.co/AJfEzErbjz","Oct 1, 8:34:55 PM EDT"
-1841277218485576151,"Wow https://t.co/Ao4Hru4jMh","Oct 1, 8:41:12 PM EDT"
-1841279111001678311,"Wow https://t.co/gNdY1HclC9","Oct 1, 8:48:44 PM EDT"
-1841279815858659816,"True. The actual bad thing is monopolistic behavior, whether by companies or unions (which are also companies). https://t.co/DSjRjQbLld","Oct 1, 8:51:32 PM EDT"
-1841283151928381443,"How many people in music & entertainment knew about this? https://t.co/yVOSyMYYhF","Oct 1, 9:04:47 PM EDT"
-1841283518967726185,"VP Debate
- https://t.co/rduXsZKimd","Oct 1, 9:06:14 PM EDT"
-1841305705795776575,"Could not be more clear that @realDonaldTrump WILL veto a national abortion ban.
-
-He has said it before many times, but this simple statement makes his position absolutely obvious and unequivocal. https://t.co/0nq4zt7Pgt","Oct 1, 10:34:24 PM EDT"
-1841310301377237353,"The Dem machine will absolutely implement censorship if given another four years to do so https://t.co/l4QyMpgDni","Oct 1, 10:52:40 PM EDT"
-1841310856820236500,"True https://t.co/aWVF3O8ykL","Oct 1, 10:54:52 PM EDT"
-1841315569330692373,"Correct https://t.co/buzwOz8ACB","Oct 1, 11:13:36 PM EDT"
-1841315795248537938,"🤨 https://t.co/CB51Dwa3oE","Oct 1, 11:14:30 PM EDT"
-1841319075424940051,"Look at the law that was passed yesterday in California making it illegal to ask for ID when voting. It is harder to buy something at Costco than vote! This is insane.
-
-Or the censorship law that California passed a month ago banning political parody!
-
-T","Oct 1, 11:27:32 PM EDT"
-1841345939061215430,"Also, common sense.
-
-People need to live somewhere, so unless they move to a town with a lot of extra houses (true in some places, but not all places in America), there will be upward pressure on house prices proportionate to the influx of people. https:","Oct 2, 1:14:17 AM EDT"
-1841387204846981524,"Good progress https://t.co/Ty9nMMm5Eq","Oct 2, 3:58:15 AM EDT"
-1841387629549584459,"RT @America1stLegal: Illegal aliens admitted into the U.S. via a phone app under Trump: 0
-
-Illegal aliens admitted into the U.S. via a pho…","Oct 2, 3:59:56 AM EDT"
-1841390101265518691,"There is no better source of news https://t.co/WxSiut2i7z","Oct 2, 4:09:46 AM EDT"
-1841393735294415083,"Trump/Vance MUST win. I can’t handle 4 years of seeing and hearing Kamala/Walz. That would be cruel and unusual punishment!","Oct 2, 4:24:12 AM EDT"
-1841394265894908293,"𝕏 is not only alive, it is also #1 in both categories! https://t.co/1mY3sHi6IO","Oct 2, 4:26:19 AM EDT"
-1841401794871566601,"Mind-blowing that Tim Walz said he was “friends with school shooters” 🤡","Oct 2, 4:56:14 AM EDT"
-1841402821041643838,"He didn’t even get fact-checked lmao","Oct 2, 5:00:18 AM EDT"
-1841403091020575211,"True https://t.co/Z30QRgJFU6","Oct 2, 5:01:23 AM EDT"
-1841403330620272984,"RT @dogeofficialceo: Why X is important https://t.co/gOo3FUAGVz","Oct 2, 5:02:20 AM EDT"
-1841532500054532526,"Starlink terminals will now work automatically without need for payment in the areas affected by Hurricane Helene https://t.co/Nu8MbPWIjl","Oct 2, 1:35:36 PM EDT"
-1841533475414749383,"Had the FCC not illegally revoked the SpaceX Starlink award, it would probably have saved lives in North Carolina.
-
-Lawfare costs lives. https://t.co/FF0ugexP2g","Oct 2, 1:39:29 PM EDT"
-1841534402515316933,"Hmm https://t.co/dkYPDb0lCr","Oct 2, 1:43:10 PM EDT"
-1841538028910625037,"RT @Tesla: In Q3, we:
-
-- Produced approximately 470,000 vehicles
-
-- Delivered approximately 463,000 vehicles
-
-- Deployed 6.9 GWh of energy…","Oct 2, 1:57:34 PM EDT"
-1841539668330086737,"RT @cb_doge: Only 19 days left to register to vote in Pennsylvania! It takes just a few minutes to register online.
-
-Please share this with…","Oct 2, 2:04:05 PM EDT"
-1841539716308488476,"💯 https://t.co/2gqP87UMkA","Oct 2, 2:04:17 PM EDT"
-1841546159581544554,"RT @JDVance: Last night was fun! Remember:
-
-Kamala Harris has been in power for the last 3.5 years. She opened the border. She cast the dec…","Oct 2, 2:29:53 PM EDT"
-1841593489991098391,"RT @Starlink: Areas affected by Hurricane Helene are currently eligible for 30 days of free Starlink service to help with response and reco…","Oct 2, 5:37:57 PM EDT"
-1841606888024375563,"Wow, this is crazy! https://t.co/R9KUDa0bVa","Oct 2, 6:31:12 PM EDT"
-1841610114765127908,"The Democratic Party openly wants to take your freedom of speech under the guise of what THEY deem to be ’hate’ https://t.co/t7EPxAW5Tj","Oct 2, 6:44:01 PM EDT"
-1841610347133763601,"RT @shellenberger: "You can't yell fire in a crowded theater!" people, including @Tim_Walz say. But you can. As such, the popular saying is…","Oct 2, 6:44:56 PM EDT"
-1841610514369036797,"Great defense of free speech https://t.co/1ImdIwanZz","Oct 2, 6:45:36 PM EDT"
-1841628387871211743,"Huge lie by Walz https://t.co/Co3pvdnYN6","Oct 2, 7:56:38 PM EDT"
-1841628537394020675,"Join @xAI https://t.co/CeVdriOIcO","Oct 2, 7:57:13 PM EDT"
-1841631818417569843,"Wow https://t.co/WVlZ7VkO8a","Oct 2, 8:10:16 PM EDT"
-1841632287332438030,"RT @BehizyTweets: Huntington Beach Mayor Gracey Van Der Mark says she will be DEFYING Gavin Newsom's new law that bans California election…","Oct 2, 8:12:07 PM EDT"
-1841632352277016582,"RT @EndWokeness: Biden-Harris spending vs results:
-
-$7.5 billion on EV charging stations
-2.5+ years later: 7 stations installed
-
-$42.5 bill…","Oct 2, 8:12:23 PM EDT"
-1841632709895987519,"California’s unconstitutional law infringing on your freedom of speech has been blocked by the court. Yay! https://t.co/dRihErTsJ9","Oct 2, 8:13:48 PM EDT"
-1841633130546950622,"Starlink now available in Samoa! https://t.co/XXU0UWuYMH","Oct 2, 8:15:28 PM EDT"
-1841633836095910297,"Over 2 billion post views on 𝕏 about the VP debate! https://t.co/XWKCqdybyU","Oct 2, 8:18:17 PM EDT"
-1841635259382710619,"Exactly, birth rates that low will lead to mass extinction of entire nations! https://t.co/lUeXXLifHl","Oct 2, 8:23:56 PM EDT"
-1841695723034714482,"Takes less than 5 minutes and zero documentation to get approved as an illegal immigrant and be flown to the United States with air tickets paid for by the American taxpayer https://t.co/gGOxO3qUqp","Oct 3, 12:24:12 AM EDT"
-1841737881486033151,"Wow https://t.co/NBck2rTE72","Oct 3, 3:11:43 AM EDT"
-1841738670245872112,"Only 5 days left to register to vote in Georgia!
-
-Make sure to share this with your friends and family in Georgia. This election is the most important in living memory.
-
-Register online in a few minutes via link below:","Oct 3, 3:14:51 AM EDT"
-1841738941705420957,"Online voter registration:
-https://t.co/liTPet8dSc","Oct 3, 3:15:56 AM EDT"
-1841740084372242749,"RT @stillgray: Kamala Harris and Mayorkas changed the definition of illegal immigrant. There are no more “illegal immigrants” because they’…","Oct 3, 3:20:28 AM EDT"
-1841740887082385702,"RT @cybrtrkguy: 12.5.5 is the first version of FSD that I can *actually* see it as an unsupervised autonomous software.
-
-Like holy shit, i…","Oct 3, 3:23:40 AM EDT"
-1841741661078225075,"RT @America1stLegal: Every American has to get a REAL ID compliant license to travel, but under Biden-Harris, illegal aliens get to put the…","Oct 3, 3:26:44 AM EDT"
-1841742540774768916,"𝕏 is the #1 source for news on Earth! https://t.co/6h4e7ENKBh","Oct 3, 3:30:14 AM EDT"
-1841745397406171274,"America is headed for bankruptcy https://t.co/sxse13AOQs","Oct 3, 3:41:35 AM EDT"
-1841824814732116085,"Good question https://t.co/t710o7pQFs","Oct 3, 8:57:09 AM EDT"
-1841906926936064029,"Wow https://t.co/kvMX40u3px","Oct 3, 2:23:27 PM EDT"
-1841907076546891795,"!! https://t.co/JW4iMlqDNN","Oct 3, 2:24:02 PM EDT"
-1841938203366064140,"RT @TrumpWarRoom: PRESIDENT TRUMP: "We can be a nation that dreams BIG again. We can be a nation that BUILDS things again. We can reclaim o…","Oct 3, 4:27:43 PM EDT"
-1841938628253217132,"RT @ajtourville: NEWS: @Starlink testimoninal from North Carolina 🇺🇸
-
-“After spending 5 days stranded in the NC mountains, receiving 33” of…","Oct 3, 4:29:25 PM EDT"
-1841938849410515297,"This is crazy https://t.co/xsOD8LrcwN","Oct 3, 4:30:17 PM EDT"
-1841939626535379172,"New crazy news leaks every day! https://t.co/BKzBbDrLYL","Oct 3, 4:33:23 PM EDT"
-1841939964969550015,"Massive increase in video views on 𝕏 https://t.co/cEa50qRCpx","Oct 3, 4:34:43 PM EDT"
-1841942740164345896,"Wow https://t.co/4GHmuCx8U7","Oct 3, 4:45:45 PM EDT"
-1841947916296233262,"RT @sav_says_: LEWISTON-I made my way up to Maine to see how the migrant crisis has affected the area and found migrants from Angola, Somal…","Oct 3, 5:06:19 PM EDT"
-1841948284388311087,"RT @cb_doge: BREAKING: 𝕏 recorded 363.6 billion daily user-seconds last quarter, a 12% year-over-year increase. https://t.co/Aec8LVrrwi","Oct 3, 5:07:47 PM EDT"
-1841973816777691249,"Obviously https://t.co/oi7hycMf6e","Oct 3, 6:49:14 PM EDT"
-1841988880901537918,"The Dems are doing deliberate voter importation to swing states & fast-tracking them to citizenship.
-
-The only question is when (not if) enough migrants can vote to flip all swing states, shifting the whole country to permanent one-party rule, just li","Oct 3, 7:49:06 PM EDT"
-1842015810627522828,"More than reasonable, it has become essential to saving America! https://t.co/kCH0rjEINw","Oct 3, 9:36:06 PM EDT"
-1842020403109339358,"It’s only a matter of time before the illegals in the swing states are legally able to vote. If it were up to leading Dems, they would be allowed to vote right now!
-
-Here is Schumer saying exactly that: https://t.co/eSd8bma8Aq https://t.co/HYkXUon0EG","Oct 3, 9:54:21 PM EDT"
-1842020683704054212,"https://t.co/BbMsXojbvk","Oct 3, 9:55:28 PM EDT"
-1842021976526962904,"The Kamala Dem machine wants to legalize all illegals, which would turn all swing state blue immediately and ensure permanent one-party rule in America! https://t.co/m99b3GyNU3","Oct 3, 10:00:36 PM EDT"
-1842023147719295450,"As a reminder, I am very much in favor of expedited legal immigration for anyone who is talented, hardworking and honest.
-
-America should be like a pro sports team that wants to win the championship – draft the best players to enable the whole team to win","Oct 3, 10:05:16 PM EDT"
-1842025724657730039,"Earth will literally explode if DJT loses! 😂 https://t.co/VB7TyVislJ","Oct 3, 10:15:30 PM EDT"
-1842025800205533491,"🔥🔥 https://t.co/VfUCQnFXYA","Oct 3, 10:15:48 PM EDT"
-1842026398241980429,"Wow, I bet most people in Pennsylvania have no idea this is happening https://t.co/a6oK7j6IRL","Oct 3, 10:18:11 PM EDT"
-1842028876513648829,"Indeed, super obvious if you do the tiniest bit of investigation! https://t.co/MgFqAWcJcK","Oct 3, 10:28:02 PM EDT"
-1842029170995691538,"Yup https://t.co/gLRtV6oVHM","Oct 3, 10:29:12 PM EDT"
-1842030697097396672,"But, seriously, Trump must win or America is in deep trouble","Oct 3, 10:35:16 PM EDT"
-1842033236463046981,"Here is a detailed explanation of how the Democratic Party is turning all swing states, and thereby the whole country, into a permanent one-party state.
-
-It is happening before your very eyes. https://t.co/jvzNLPY6iz","Oct 3, 10:45:21 PM EDT"
-1842037297518141452,"Kamala’s voting track record when she was in the Senate was to the left of Bernie Sanders!
-
-She was rated most far left of all 100 senators. Not a moderate at all. https://t.co/FITwCRVKjs","Oct 3, 11:01:29 PM EDT"
-1842037450207539388,"This is the way https://t.co/uU5mutFG89","Oct 3, 11:02:06 PM EDT"
-1842039570369593728,"Your tax dollars at work flying in 30,000 illegals per month https://t.co/5QwolMci20","Oct 3, 11:10:31 PM EDT"
-1842040021047550403,"Treason https://t.co/qYJwhuiaOu","Oct 3, 11:12:19 PM EDT"
-1842041476424798645,"Unless something is done about the bureaucratic smothering of America, humanity will never reach the stars.
-
-That is my biggest showstopper issue for why Trump must win, as the alternative is continued expansion of oppressive big government, making progr","Oct 3, 11:18:06 PM EDT"
-1842042115217309712,"Freedom of speech is the bedrock of democracy https://t.co/F9YPe9QAck","Oct 3, 11:20:38 PM EDT"
-1842042987267633350,"Exactly https://t.co/16aGzZPW8L","Oct 3, 11:24:06 PM EDT"
-1842043135456690248,"RT @alx: Under the Harris/Biden Administration, The Illegal Immigrant population in Michigan has increased 467% and cost taxpayers over $1.…","Oct 3, 11:24:41 PM EDT"
-1842043218294087986,"RT @charliekirk11: They’re importing voters to swing states. Clear as day.","Oct 3, 11:25:01 PM EDT"
-1842043862740582558,"FEMA’s #1 goal should be saving lives! https://t.co/9V99BzUhdQ","Oct 3, 11:27:35 PM EDT"
-1842045226510086179,"Let’s accelerate this to the max! https://t.co/LwZHPHtYqg","Oct 3, 11:33:00 PM EDT"
-1842045476968730981,"RT @Jim_Jordan: The Biden-Harris administration took more than a billion tax dollars that had been allocated to FEMA for disaster relief an…","Oct 3, 11:33:59 PM EDT"
-1842045675518718230,"Important dates to register to vote. Please get your friends & family registered! https://t.co/fgBuTL4OMv","Oct 3, 11:34:47 PM EDT"
-1842046127224258868,"Extreme government spending is driving our country to bankruptcy! https://t.co/IhqosHh4Zh","Oct 3, 11:36:34 PM EDT"
-1842046422528516136,"Exactly, government overspending is the cause of inflation, because their checks never bounce, they just increase the money supply! https://t.co/05e6JuWkYO","Oct 3, 11:37:45 PM EDT"
-1842046674304188736,"Unreal https://t.co/pOBshnAd00","Oct 3, 11:38:45 PM EDT"
-1842048755169690103,"I will be there to support! https://t.co/nokR0g3dn1","Oct 3, 11:47:01 PM EDT"
-1842049745532961214,"Citizens of Arizona, this election is your last chance before you’re disenfranchised https://t.co/kgRzKyb2cp","Oct 3, 11:50:57 PM EDT"
-1842054390435230136,"Record usage of the 𝕏 platform! https://t.co/DBEz1fXMr2","Oct 4, 12:09:25 AM EDT"
-1842054685668032727,"Make sure your family & friends register to vote! https://t.co/0hPdpZLUD0","Oct 4, 12:10:35 AM EDT"
-1842054984310898828,"RT @AB84: Steeler Nation see you on Sunday at the game
-
-Before then make sure to sign up to vote in this years election
-
-@x makes it easy…","Oct 4, 12:11:46 AM EDT"
-1842081910077452496,"😂 https://t.co/J1T5RciK7Q","Oct 4, 1:58:46 AM EDT"
-1842083650206146773,"Cool https://t.co/57PIgOQedc","Oct 4, 2:05:41 AM EDT"
-1842091077077004537,"RT @BoLoudon: 🚨WOW! BILL MURRAY SAID A VOTE FOR TRUMP IS A VOTE AGAINST THE SWAMP!
-
-"What this [Trump] vote means is that the country is di…","Oct 4, 2:35:11 AM EDT"
-1842091235508379650,"Is this for real? https://t.co/S4WqdUXaGW","Oct 4, 2:35:49 AM EDT"
-1842091832416551389,"If I bring up Trump in LA, people react like they got shot with a dart containing rabies and crystal meth 😂","Oct 4, 2:38:11 AM EDT"
-1842121187461042217,"Yes, they are literally using YOUR tax dollars to import voters and disenfranchise you!
-
-It is happening right in front of your eyes.
-
-And FEMA used up its budget ferrying illegals into the country instead of saving American lives. Treason. https://t.c","Oct 4, 4:34:50 AM EDT"
-1842121981413437620,"RT @C__Herridge: Under the Biden-Harris administration, injured US service members say they have been blocked from suing Iran and there has…","Oct 4, 4:37:59 AM EDT"
-1842122701185388952,"Cool https://t.co/eAjXelgbHH","Oct 4, 4:40:51 AM EDT"
-1842124855719629177,"https://t.co/rlgyuMtANk","Oct 4, 4:49:25 AM EDT"
-1842128021118947603,"Larry Ellison is awesome https://t.co/ogsdrNITE6","Oct 4, 5:01:59 AM EDT"
-1842129156823286020,"Good question https://t.co/nQeFaWis9a","Oct 4, 5:06:30 AM EDT"
-1842195827328004432,"https://t.co/r6OdUkN0uJ","Oct 4, 9:31:26 AM EDT"
-1842195997440774258,"RT @AI_EmeraldApple: @MattWalshBlog Like seriously... Even a parody wouldn't be able to make this up. https://t.co/qLJiV1dDaP","Oct 4, 9:32:06 AM EDT"
-1842196270363893829,"Terrible https://t.co/qoByXhvf61","Oct 4, 9:33:11 AM EDT"
-1842199703154274738,"RT @historyinmemes: Elon Musk explains how government inefficiency hinders innovation & growth. https://t.co/9kNeoKTvvg","Oct 4, 9:46:50 AM EDT"
-1842200394912444564,"RT @DefiyantlyFree: Language warning. But he is right. And I understand his frustration. https://t.co/2xAgJgUBip","Oct 4, 9:49:35 AM EDT"
-1842200479939629164,"RT @TRHLofficial: The mass amnesty long game for criminal aliens is what Thomas Massie and Elon Musk have been warning you about. https://t…","Oct 4, 9:49:55 AM EDT"
-1842201339054465257,"RT @DefiyantlyFree: This is a fantastic video about how the racial divide started under Obama and has been intensified by people supporting…","Oct 4, 9:53:20 AM EDT"
-1842201375087738882,"RT @CollinRugg: @elonmusk Kamala is straight-up admitting it.
-
-Here she is calling for a "pathway to citizenship" for millions of illegal i…","Oct 4, 9:53:28 AM EDT"
-1842202657160646841,"Read Asimov’s Foundation books https://t.co/L6uFqPSqL2","Oct 4, 9:58:34 AM EDT"
-1842206810930811071,"RT @America1stLegal: Today is the 3-year anniversary of Attorney General Garland’s infamous October 4th memo that weaponized the federal go…","Oct 4, 10:15:04 AM EDT"
-1842207770021392422,"RT @elon_docs: Elon Musk: Regulation was one of the most frustrating things we had to deal with when starting SpaceX.
-
-"The regulatory stuf…","Oct 4, 10:18:53 AM EDT"
-1842208740549787944,"Interesting https://t.co/TDjffbhVol","Oct 4, 10:22:44 AM EDT"
-1842209556216029260,"Yes https://t.co/h3Aqdpd13c","Oct 4, 10:25:59 AM EDT"
-1842210195566403910,"https://t.co/v7s5lt5DYM","Oct 4, 10:28:31 AM EDT"
-1842210911576035430,"Incompetent leadership costs lives https://t.co/rQRteMISUs","Oct 4, 10:31:22 AM EDT"
-1842211593985175908,"🤨 https://t.co/wPj1dtSX4O","Oct 4, 10:34:05 AM EDT"
-1842211776210858021,"Exactly! https://t.co/ytSFVbHDyY","Oct 4, 10:34:48 AM EDT"
-1842246865234128978,"Just received this note from a SpaceX engineer helping on the ground in North Carolina.
-
-@FEMA is not merely failing to adequately help people in trouble, but is actively blocking citizens who try to help!
-
-“Hey Elon, update here on site of Asheville, NC","Oct 4, 12:54:14 PM EDT"
-1842248012535308715,"RT @ajtourville: NEWS: Walter Isaacson comments on @xAI versus OpenAI and Elon Musk's mission.
-
-“The script will get flipped next week on O…","Oct 4, 12:58:48 PM EDT"
-1842249091662655859,"One could perhaps debate whether this is deliberate or accidental, but not that it is occurring.
-
-The migrant settlement numbers and locations come from US government data under a Democratic administration!","Oct 4, 1:03:05 PM EDT"
-1842249809601675367,"Starlink connectivity directly from our satellites to mobile phones will be profoundly important and save many lives when there are natural or human-driven disasters https://t.co/qhA77Ww3SO","Oct 4, 1:05:56 PM EDT"
-1842250303762051263,"Unless Trump wins and we get rid of the mountain of smothering regulations (that have nothing to do with safety!), humanity will never reach Mars.
-
-This is existential. https://t.co/I9zZuzRvHi","Oct 4, 1:07:54 PM EDT"
-1842252268856324160,"Just received this text 20 mins ago.
-
-The level of belligerent government incompetence is staggering!! https://t.co/wWbBR7FfUo","Oct 4, 1:15:42 PM EDT"
-1842253230085898655,"They will absolutely nuke the filibuster https://t.co/xQKNlOoR08","Oct 4, 1:19:32 PM EDT"
-1842277731306000737,"RT @charliekirk11: New BOMBSHELL allegations from FEMA whistleblowers help explain why the federal government's response to Hurricane Helen…","Oct 4, 2:56:53 PM EDT"
-1842284602422899189,"Impeach @AliMayorkas (again). Weak government leadership costs lives. https://t.co/elQoUGQbqf","Oct 4, 3:24:11 PM EDT"
-1842284604943994897,"😡 https://t.co/WG6QiZAlE6","Oct 4, 3:24:12 PM EDT"
-1842284607212814357,"Beautifully said https://t.co/rc792zWoOU","Oct 4, 3:24:13 PM EDT"
-1842284913279586447,"SpaceX engineers are trying to deliver Starlink terminals & supplies to devastated areas in North Carolina right now and @FEMA is both failing to help AND won’t let others help. This is unconscionable!!
-
-They just took this video a few hours ago, wher","Oct 4, 3:25:25 PM EDT"
-1842288274485776399,"What the hell https://t.co/hI9J35l5oJ","Oct 4, 3:38:47 PM EDT"
-1842289686037110797,"RT @Tesla_AI: What's special about FSD Supervised is that it works anywhere in the US & Canada.
-
-No high definition maps, no geofence.
-
-T…","Oct 4, 3:44:23 PM EDT"
-1842291096602165605,"Wow https://t.co/cAgqIZEElv","Oct 4, 3:50:00 PM EDT"
-1842594765432619429,"California passed a law last week that made it ILLEGAL to ask for ID in elections!
-
-Literally impossible to prove fraud there now. https://t.co/QAOhO6ajfr https://t.co/CoFB7KOE04","Oct 5, 11:56:40 AM EDT"
-1842598334961533143,"Just offering @FAANews some tea 🤣🤣 https://t.co/R3PnZjzQHc","Oct 5, 12:10:51 PM EDT"
-1842599443184656555,"💯 https://t.co/nzjy4tyf0y","Oct 5, 12:15:15 PM EDT"
-1842599960652685426,"The term “far right” has been watered down so much by the legacy media as to render the term meaningless by historical standards, which is a terrible thing for them to do https://t.co/aWAwgS22CW","Oct 5, 12:17:19 PM EDT"
-1842601913440997846,"If there is a Democratic Party victory this election, they will ban voter ID requirements nationwide, enabling massive voter fraud.
-
-Banning voter ID is their stated goal – they are not hiding it!
-
-After that, your vote won’t matter, so this is therefore ","Oct 5, 12:25:04 PM EDT"
-1842603787401195819,"RT @TheRabbitHole84: This is the slippery slope of censorship https://t.co/jUQkvhx8zl","Oct 5, 12:32:31 PM EDT"
-1842604207385522540,"💯 https://t.co/waztqqe71u","Oct 5, 12:34:11 PM EDT"
-1842604744042570131,"The same people who demanded you must have a vaccine ID to travel are demanding no ID to vote! https://t.co/Zj5nWqcV7k","Oct 5, 12:36:19 PM EDT"
-1842604802280448277,"Yes https://t.co/m2zFHxt4AQ","Oct 5, 12:36:33 PM EDT"
-1842605353248460841,"Super important to get all your friends and family to register to vote.
-
-Georgia’s registration deadline is Monday!! https://t.co/ETXtB5oAq6","Oct 5, 12:38:44 PM EDT"
-1842609939677905076,"So true 🤣🤣 https://t.co/N4HzFs3SyF","Oct 5, 12:56:58 PM EDT"
-1842611623741079626,"Exactly https://t.co/2WI0yB3jBV","Oct 5, 1:03:39 PM EDT"
-1842611808395260305,"Action is being taken to stop fraudulent voting in Arizona https://t.co/mJdVmqWXm8","Oct 5, 1:04:23 PM EDT"
-1842613398762041423,"The Democratic Party is openly stating that they want to change the Constitution to end free speech! https://t.co/uiSEaR2NyD","Oct 5, 1:10:43 PM EDT"
-1842613566005739897,"Register to vote in Arizona. Only 2 days left! https://t.co/SHsG305fVr","Oct 5, 1:11:22 PM EDT"
-1842617203331379257,"If @realDonaldTrump doesn’t win, the Democrats will have 4 years to turn swing states in permanent deep blue states https://t.co/56hBgUxGvd","Oct 5, 1:25:50 PM EDT"
-1842617796129092016,"Headed to Pennsylvania to speak at the @realDonaldTrump rally in Butler!","Oct 5, 1:28:11 PM EDT"
-1842618719983267927,"Read the America PAC website to understand why I support @realDonaldTrump https://t.co/8YVZ3lb4uH","Oct 5, 1:31:51 PM EDT"
-1842619614624424016,"RT @charliekirk11: I downloaded the treasonous CBP One app LIVE on air that lets illegal migrants break into the country.
-
-Here's what I di…","Oct 5, 1:35:25 PM EDT"
-1842620119165632768,"216,000 voters on the list in Arizona in violation of the law https://t.co/eoe3q6QHlW","Oct 5, 1:37:25 PM EDT"
-1842620590961958930,"To paraphrase Milton Friedman: the worst results come from people spending other people’s money on a different group of other people. That is the government! https://t.co/mnedgVCEpe","Oct 5, 1:39:17 PM EDT"
-1842632034230944005,"Racism in any form is abhorrent and those who push it should be shunned https://t.co/msVC2j3bLK","Oct 5, 2:24:46 PM EDT"
-1842632841949020412,"RT @cb_doge: “We’re at a critical juncture for the country. For the people out there in the moderate camp, I think you should support Donal…","Oct 5, 2:27:58 PM EDT"
-1842633589130686595,"Exactly, the whole country will be like California politically, which is a one-party state https://t.co/G3Hn2rVMdg","Oct 5, 2:30:56 PM EDT"
-1842655210902040959,"Not right https://t.co/CKPLSnnaeD","Oct 5, 3:56:51 PM EDT"
-1842657966647828823,"This is the PAC that I created to support candidates who believe in the core values of America https://t.co/8YVZ3lb4uH","Oct 5, 4:07:48 PM EDT"
-1842658102149042558,"Crazy https://t.co/0OJpq1pr4T","Oct 5, 4:08:21 PM EDT"
-1842659024065442226,"Exactly. Vote against the machine! https://t.co/Qk7KtPl5Yj","Oct 5, 4:12:00 PM EDT"
-1842664269143552201,"Live from the @realDonaldTrump rally in Pennsylvania.
-
-Same location where he was shot.
-
- https://t.co/qg31Yb977x","Oct 5, 4:32:51 PM EDT"
-1842676545082589273,"RT @JDVance: What happened here in Butler, PA on July 13th was nothing short of a miracle. On that day, America felt the truth of scripture…","Oct 5, 5:21:38 PM EDT"
-1842676948423913508,"RT @SpaceX: Teams encapsulated @NASA 's Europa Clipper spacecraft into Falcon Heavy's fairing earlier this week ahead of next week's Falcon…","Oct 5, 5:23:14 PM EDT"
-1842679008791581140,"Let’s go!! 🚀 https://t.co/t3FEt3G1gN","Oct 5, 5:31:25 PM EDT"
-1842679258587488697,"🇺🇸🇺🇸🇺🇸 Team America 🇺🇸🇺🇸🇺🇸 https://t.co/TYan6F7TyU","Oct 5, 5:32:25 PM EDT"
-1842701560343839037,"Anyone else seeing this sort of thing? https://t.co/sHD3q2RQ7d","Oct 5, 7:01:02 PM EDT"
-1842703639753761104,"This is the most important election of your LIFE!!
-
-And there are only 2 days left to register to vote in Arizona & Georgia before it’s too late!
-
-Make sure everyone you know & everyone you meet has registered to vote. The fate of our civilization","Oct 5, 7:09:18 PM EDT"
-1842703864228643169,"You’re most welcome! https://t.co/ZS2wquUI1x","Oct 5, 7:10:11 PM EDT"
-1842704316705964108,"Almost 10 million people watching!
- https://t.co/qg31Yb8zhZ","Oct 5, 7:11:59 PM EDT"
-1842704441843024231,"RT @stclairashley: Elon at the Trump rally: “Trump must win to preserve the Constitution, to preserve democracy.”
-
-🔥🔥🔥","Oct 5, 7:12:29 PM EDT"
-1842706955497766939,"If @realDonaldTrump doesn’t win, the “Democratic” Party will legalize so many illegals that there will be no swing states!
-
-America will become a single-party socialist state, just like what happened to California, where they just made requiring voter ID ","Oct 5, 7:22:28 PM EDT"
-1842723341955666228,"RT @stevenmarkryan: Elon Musk's FULL Speech At Donald Trump Rally (in Butler, Pennsylvania)
-
-In short: VOTE, VOTE, VOTE.
-
-1. Register to vo…","Oct 5, 8:27:35 PM EDT"
-1842724326988013900,"Yes! https://t.co/WloG1me4J3","Oct 5, 8:31:30 PM EDT"
-1842729851872031167,"Those against freedom of speech are the bad guys! https://t.co/0H9p0QIK4R","Oct 5, 8:53:27 PM EDT"
-1842730593643057310,"That’s how easy it is to turn on Starlink!
-
-Works anywhere 5 minutes after you take it out of the box. https://t.co/bBMHM9cBJd","Oct 5, 8:56:24 PM EDT"
-1842730813885948001,"https://t.co/3rp9bd61kX","Oct 5, 8:57:16 PM EDT"
-1842732702073594350,"Yup https://t.co/0HHYZyOvrI","Oct 5, 9:04:47 PM EDT"
-1842749839055962283,"Make America Based Again!","Oct 5, 10:12:52 PM EDT"
-1842760566076563756,"True https://t.co/FJW10gShuO","Oct 5, 10:55:30 PM EDT"
-1842773240223068569,"Make sure everyone you know has registered to vote! Only 2 days left to do so in Georgia & Arizona. https://t.co/QDrxjHQjXG","Oct 5, 11:45:52 PM EDT"
-1842773527004418502,"Incredible crowd today at the rally in Pennsylvania https://t.co/pamx8yAMd8","Oct 5, 11:47:00 PM EDT"
-1842774997099507981,"This is so crazy https://t.co/DZRFjb8qzw","Oct 5, 11:52:51 PM EDT"
-1842775715705418087,"💯😂 https://t.co/JfIbXHAezu","Oct 5, 11:55:42 PM EDT"
-1842779470635110724,"https://t.co/y4XDCdRyEX","Oct 6, 12:10:37 AM EDT"
-1842780716955824194,"I’m hearing this anti free speech bs being parroted by pretty much every leading Dem & their legacy media puppets https://t.co/j3gAyY7FhR","Oct 6, 12:15:34 AM EDT"
-1842782725192679854,"🤨 https://t.co/vVc86A2qCG","Oct 6, 12:23:33 AM EDT"
-1842800881948910014,"RT @MarioNawfal: 🇺🇸LAST CALL TO REGISTER!
-
-Time is running out for U.S citizens to register so they can vote in the election.
-
-As Elon said…","Oct 6, 1:35:42 AM EDT"
-1842808435106050069,"Vote, vote, vote! https://t.co/t63vqIt5NQ","Oct 6, 2:05:43 AM EDT"
-1842814508772839754,"https://t.co/Ze3Dc460wH","Oct 6, 2:29:51 AM EDT"
-1842816404912734372,"RT @MarioNawfal: ELON AT TRUMP’S RALLY: FULL VIDEO AND TRANSCRIPT
-
-"Hi everyone.
-
-As you can see, I'm not just MAGA, I'm dark MAGA.
-
-Firs…","Oct 6, 2:37:23 AM EDT"
-1842907805688189226,"So many prominent Democrats want to destroy the First Amendment! https://t.co/6YrjaqnPdZ","Oct 6, 8:40:35 AM EDT"
-1842908867446894950,"Yes https://t.co/KlQxndfDYb","Oct 6, 8:44:48 AM EDT"
-1842921799228788797,"Check your voting registration status! https://t.co/8oOsbYnzP9","Oct 6, 9:36:11 AM EDT"
-1842922293045141585,"RT @ScottPresler: Thank you for helping me reach 1.7 million followers.
-
-I challenge each of you to register 5 new voters
-
-& mobilize tho…","Oct 6, 9:38:09 AM EDT"
-1842937449904816541,"Low bar tbh. Unlike the border, we actually check IDs for the event 🤣🤣 https://t.co/KfMugIKw2W","Oct 6, 10:38:22 AM EDT"
-1842937718310834191,"Yes! https://t.co/0V7E0hdPGB","Oct 6, 10:39:26 AM EDT"
-1842937767065448578,"RT @ajtourville: NEWS: @Starlink is providing a lifeline in East Tennessee, Western North Carolina, and all along the devastation path of H…","Oct 6, 10:39:38 AM EDT"
-1842938181571772803,"Bring. It. On. https://t.co/cWinZDUsOI","Oct 6, 10:41:17 AM EDT"
-1842950151465484374,"Definitely not https://t.co/UDIGtuwdB1","Oct 6, 11:28:51 AM EDT"
-1842979742062150131,"Yup, sounds familiar.
-
-People have been so thorough my brainwashed by the legacy media. https://t.co/b6POqGBL7W","Oct 6, 1:26:26 PM EDT"
-1842980073395417243,"That was one heck of a day! https://t.co/H5ObnWqX1e","Oct 6, 1:27:45 PM EDT"
-1842980353751031889,"🤣🤣 https://t.co/vMYF6KXIPG","Oct 6, 1:28:51 PM EDT"
-1842981305056886952,"RT @Not_the_Bee: Appalachia has gone dark and criminals are pouring over the border but the Homeland Security chief had time to go luxury s…","Oct 6, 1:32:38 PM EDT"
-1842982237903753592,"RT @MarioNawfal: ELON: LET'S MAKE SCIENCE FICTION REAL, NOT HAVE TO BE SCIENCE FICTION FOREVER
-
-Source: @Eric_Schmitt @elonmusk https://t.c…","Oct 6, 1:36:21 PM EDT"
-1842982452840870204,"RT @fentasyl: Kamala-Mayorkas imported a staggering number of aliens from countries so far away & random that the CBP doesn't even name the…","Oct 6, 1:37:12 PM EDT"
-1842984307557798004,"It would be the end of America https://t.co/Fs7x67DCZJ","Oct 6, 1:44:34 PM EDT"
-1843001977472708845,"Exactly https://t.co/vUL8fsMoM6","Oct 6, 2:54:47 PM EDT"
-1843005216427561267,"https://t.co/XjTHCNw7B5","Oct 6, 3:07:39 PM EDT"
-1843011773567578166,"Sign our petition to support the Constitution!
-
-Also earn $47 for every person you refer to sign the petition if they’re in a swing state.
-
-Goal is to get 1M voters in swing states to show support for free speech & right to bear arms. https://t.co/2c","Oct 6, 3:33:42 PM EDT"
-1843074157917200669,"RT @SawyerMerritt: NEWS: SpaceX engineer Mike Coryell, who has been with the company for 10 years, has spent the past week in North Carolin…","Oct 6, 7:41:36 PM EDT"
-1843074431163457680,"Join us! https://t.co/9deAb6G6Ld","Oct 6, 7:42:41 PM EDT"
-1843074487572730039,"RT @america: Kamala Harris says she will be tough on illegal immigration because she “was a prosecutor”.
-
-Here she is chanting “Down, down…","Oct 6, 7:42:55 PM EDT"
-1843075222959960281,"Is this accurate @CommunityNotes? https://t.co/mr3uZCrKPL","Oct 6, 7:45:50 PM EDT"
-1843075820841251311,"Love is the answer 🥰 https://t.co/mU2D8UuMEp","Oct 6, 7:48:13 PM EDT"
-1843088883535503763,"What Walz is saying is utterly false.
-
-In fact, @realDonaldTrump recently posted that he would VETO a nationwide abortion ban!
-
-https://t.co/QdXkYQWQ1X https://t.co/GWZUY3L3Mj","Oct 6, 8:40:07 PM EDT"
-1843103932119490815,"Wow https://t.co/VouhYMRAJS","Oct 6, 9:39:55 PM EDT"
-1843108932036005947,"https://t.co/ksK3C6e0qb","Oct 6, 9:59:47 PM EDT"
-1843111827682869507,"Go Steelers!! https://t.co/q7AtNZIoZY","Oct 6, 10:11:17 PM EDT"
-1843113280703013164,"Saving American lives should be priority #1 https://t.co/Mf7dVplXrI","Oct 6, 10:17:04 PM EDT"
-1843124876108067200,"True https://t.co/uhDRZjeiu1","Oct 6, 11:03:08 PM EDT"
-1843126349760000253,"Propaganda terms are very effective https://t.co/R4eJpNVKLL","Oct 6, 11:09:00 PM EDT"
-1843132050242777187,"Trump now leading Kamala by 3% in betting markets. More accurate than polls, as actual money is on the line. https://t.co/WrsqZ2z8pp","Oct 6, 11:31:39 PM EDT"
-1843132312797782275,"Tomorrow is the last day to register to vote in Georgia and Arizona!","Oct 6, 11:32:41 PM EDT"
-1843133043961381178,"For every person you refer who is a swing state voter, you get $47! Easy money. https://t.co/5jCNuXIaui","Oct 6, 11:35:36 PM EDT"
-1843133507163619631,"RT @cb_doge: BREAKING: Donald Trump now leads Kamala Harris by 6% in Pennsylvania in betting markets, just a day after Elon Musk attended h…","Oct 6, 11:37:26 PM EDT"
-1843134748295877031,"The left controls almost all legacy media and all major search and social media companies, except this one.
-
-We strive to be a level playing field for all views. They do not. https://t.co/IjqiL84vdA","Oct 6, 11:42:22 PM EDT"
-1843141356786688185,"Yeah!! https://t.co/svk69ulkME","Oct 7, 12:08:38 AM EDT"
-1843144551089012757,"The truth shall set you free https://t.co/wY4ehxETYz","Oct 7, 12:21:19 AM EDT"
-1843185585319727182,"🔥🔥 https://t.co/8upx0SkcPM","Oct 7, 3:04:22 AM EDT"
-1843186041144115575,"RT @cb_doge: TRUMP MUST WIN 🇺🇸 https://t.co/9e15V7o8VB","Oct 7, 3:06:11 AM EDT"
-1843213892367122850,"https://t.co/pTN0O8emBs","Oct 7, 4:56:51 AM EDT"
-1843221235339280517,"Worth reading Lies My Liberal Teacher Told Me by @will_da_beast630 https://t.co/E4RaCaELDl","Oct 7, 5:26:02 AM EDT"
-1843223413529403545,"RT @DefiyantlyFree: Debunking the new leftist talking point about now it’s Republicans fault FEMA ran out of money.
-
-Congress does not nee…","Oct 7, 5:34:41 AM EDT"
-1843224135184585025,"RT @xmuse_: Men did not love Rome because she was great. She was great because they had loved her.
-
-— G. K. Chesterton
-
-📍Rome
-📹 Pablo Casta…","Oct 7, 5:37:33 AM EDT"
-1843351219726963068,"RT @dinkin_flickaa: Underrated 𝕏 shortcut on iOS is the little search icon that lets you search for posts on any profile
-
- Rolling out now…","Oct 7, 2:02:33 PM EDT"
-1843351308964675738,"RT @SpaceX: Hera is @ESA’s planetary defense mission that will study the impact NASA’s Double Asteroid Redirection Test (DART) spacecraft h…","Oct 7, 2:02:54 PM EDT"
-1843351345090449504,"RT @SpaceX: Liftoff of @ESA’s Hera! https://t.co/mMoNPzX0b6","Oct 7, 2:03:03 PM EDT"
-1843351651127832941,"View from Falcon upper stage as it departs Earth for interplanetary orbit https://t.co/0EUT6v9FY1","Oct 7, 2:04:16 PM EDT"
-1843363275398169020,"Victory is not enough, it must be absolutely decisive victory https://t.co/Ixe4Hl5tTR","Oct 7, 2:50:27 PM EDT"
-1843373225331568764,"NY Times is pure propaganda https://t.co/lkOMt618zS","Oct 7, 3:29:59 PM EDT"
-1843374647737495589,"Godspeed Hera! https://t.co/Jm91wNrIk7","Oct 7, 3:35:38 PM EDT"
-1843375201704390705,"Good question … why is funding for other countries being prioritized over Americans in dire need? https://t.co/RFYvu8RAhU","Oct 7, 3:37:50 PM EDT"
-1843375372035076485,"An easy prediction (sigh) https://t.co/FppJLgOsd8","Oct 7, 3:38:31 PM EDT"
-1843437178376073708,"Off-the-cuff conversation from yesterday https://t.co/GvvoqiMMgd","Oct 7, 7:44:07 PM EDT"
-1843440744138510443,"https://t.co/lyXp5GeVHO","Oct 7, 7:58:17 PM EDT"
-1843447413824209160,"It is a surefire way for the Dems to turn America in a one-party state, just like California https://t.co/f4hLI79al4","Oct 7, 8:24:47 PM EDT"
-1843475086554415130,"Launch could be as soon as Sunday https://t.co/D4NjaDvgM2","Oct 7, 10:14:45 PM EDT"
-1843484578440229225,"That would be a nice change https://t.co/Y4IGjMc7eh","Oct 7, 10:52:28 PM EDT"
-1843486748711788926,"Anchorman is a great movie 🤣🤣 https://t.co/q2p2Yy5EUH","Oct 7, 11:01:05 PM EDT"
-1843489545897013280,"What Vivek says is, of course, true.
-
-The “social safety net” of state & federal government payments is a powerful magnet for anyone living below that standard (over 5 billion people) to move to the United States.
-
-Couple that with open borders and ob","Oct 7, 11:12:12 PM EDT"
-1843505007167189389,"RT @gigafactories: Charging on Solar ☀️ https://t.co/H08l3q8UzO","Oct 8, 12:13:39 AM EDT"
-1843517430825660882,"🤨
- https://t.co/1o6Vy4L3Le","Oct 8, 1:03:01 AM EDT"
-1843520286735642901,"Yup, I lived in Pennsylvania for 3 years https://t.co/1QyVtJP6px","Oct 8, 1:14:21 AM EDT"
-1843520385976856880,"I am no stranger to the state","Oct 8, 1:14:45 AM EDT"
-1843534348777337200,"Walz has his own emoji 🤡 https://t.co/3payuXHkoR","Oct 8, 2:10:14 AM EDT"
-1843537210165039551,"https://t.co/vgvQJ9iCMV","Oct 8, 2:21:36 AM EDT"
-1843538784325083265,"I hear this from many people.
-
-If all they read is the legacy media propaganda, they have no idea what’s actually going on.
-
-Very important to send them links to 𝕏 posts, so they can learn the truth. https://t.co/4oVueIQk0G","Oct 8, 2:27:52 AM EDT"
-1843540557030928440,"RT @MarioNawfal: 🚨SPACEX SOLIDIFIES LAUNCH MARKET DOMINANCE
-
-The data is clear - SpaceX has firmly established itself as the runaway leader…","Oct 8, 2:34:54 AM EDT"
-1843596901649920064,"The Biden/Harris administration openly bragged about opening the border and stopping wall construction https://t.co/zZn42i1jmF","Oct 8, 6:18:48 AM EDT"
-1843597191526662298,"RT @ajtourville: NEWS: This weekend, the Generac storm response team met up with SpaceX engineer @MikeCoryell – together they organized 100…","Oct 8, 6:19:57 AM EDT"
-1843598035399409999,"Especially in big cities https://t.co/Edw2uKxc7U","Oct 8, 6:23:18 AM EDT"
-1843598761815355683,"Maybe Mayorkas could take a break from shoe shopping to look into this https://t.co/DEv0JBf3iu","Oct 8, 6:26:11 AM EDT"
-1843599248518250902,"https://t.co/0pCuh80HIj https://t.co/HPQSSNy83P","Oct 8, 6:28:07 AM EDT"
-1843718588299129191,"Encourage your friends in swing states to sign the petition in support of free speech & right to bear arms and earn $47 for doing something you already believe in! https://t.co/MoXLDCinkD","Oct 8, 2:22:20 PM EDT"
-1843903981480980642,"We have accelerated the rollout of Starlink direct to cell phone connectivity for areas affected by the hurricanes.
-
-This is being provided free of charge by SpaceX and TMobile to help those in need. https://t.co/SedY5jGEMJ","Oct 9, 2:39:01 AM EDT"
-1843923667430060102,"Watch the Tesla product launch event live on 𝕏 https://t.co/gEXxdi6knE","Oct 9, 3:57:15 AM EDT"
-1843923815367401795,"RT @GailAlfarATX: I am Gail, a US Army veteran, and a mother of five kids.
-I love the USA.
-Been through a lot and thought about it a lot,…","Oct 9, 3:57:50 AM EDT"
-1843924459281101305,"RT @JTLonsdale: Great to see more of my successful friends in tech having the courage to speak out against destructive “equity” initiatives…","Oct 9, 4:00:24 AM EDT"
-1843926269014196525,"💯 https://t.co/cxuhDnu8Ml","Oct 9, 4:07:35 AM EDT"
-1844139398348276001,"RT @MsMelChen: Nietzsche’s words so perfectly capture our zeitgeist https://t.co/pQpKzG68TF","Oct 9, 6:14:29 PM EDT"
-1844202860738904376,"Good deep dive into the global population collapse that is happening https://t.co/Sbc1TbkAaV","Oct 9, 10:26:40 PM EDT"
-1844255116448366762,"Hinton just won the Nobel Prize https://t.co/fI5CJNlEPP","Oct 10, 1:54:19 AM EDT"
-1844259132926534118,"💯
- https://t.co/lrfyLK3ID9","Oct 10, 2:10:16 AM EDT"
-1844259805562798409,"🤨 https://t.co/ef3IQNlzoB","Oct 10, 2:12:56 AM EDT"
-1844262642279682095,"RT @KanekoaTheGreat: .@shellenberger tells @joerogan: "In the '90s, the left was anti-war, pro-free speech, and pro-gay rights. Now, the le…","Oct 10, 2:24:13 AM EDT"
-1844263097244189044,"And all transport will be fully autonomous within 50 years https://t.co/M4GRx8N0EW","Oct 10, 2:26:01 AM EDT"
-1844380283770110471,"The Biden/Harris administration needs to go https://t.co/IO31QRdxug","Oct 10, 10:11:41 AM EDT"
-1844380832280252420,"Insane https://t.co/0rxSJ4hJW4","Oct 10, 10:13:52 AM EDT"
-1844382081222311963,"It made NY Times & WaPo unreadable https://t.co/uSkRKHs469","Oct 10, 10:18:49 AM EDT"
-1844383579213791654,"The Dem Party has moved so far left that it has left centrists behind https://t.co/c4BTzNjwvX","Oct 10, 10:24:46 AM EDT"
-1844392447566327955,"This explains the silly terminology of the leftist legacy press, where they only use the terms ‘left’ and ‘far right’.
-
-From their extremely left standpoint, even centrists are ‘far right’ 😂 https://t.co/wN7qiJAe4M","Oct 10, 11:00:01 AM EDT"
-1844426831564505456,"Excellent summary of the lawfare case against @realDonaldTrump that was just crushed by the NY Appellate.
-
-Incredibly sensible questions by appellate judges had me in stitches 🤣🤣
-
-American justice system for the W.
-
- https://t.co/zOH5czinBf","Oct 10, 1:16:39 PM EDT"
-1844427372847939949,"Except feet 😂","Oct 10, 1:18:48 PM EDT"
-1844434859554709742,"😢 https://t.co/VwFodGQ8Mq","Oct 10, 1:48:33 PM EDT"
-1844435192884416611,"Google is controlled by far left activists https://t.co/8erORKVGR1","Oct 10, 1:49:52 PM EDT"
-1844435610590986360,"Tonight https://t.co/gEXxdi6knE","Oct 10, 1:51:32 PM EDT"
-1844533711506899115,"Only a man of culture can clear level 69 ... https://t.co/srWHEfd44Y","Oct 10, 8:21:21 PM EDT"
-1844548290681192896,"Tesla product unveil in less than an hour https://t.co/gEXxdi6knE","Oct 10, 9:19:17 PM EDT"
-1844549020246736932,"Map of the Tesla future world constructed at the @WBPictures studio https://t.co/VwG48eYpXa","Oct 10, 9:22:11 PM EDT"
-1844550057242263591,"New profile pic 🤖","Oct 10, 9:26:18 PM EDT"
-1844550257008628132,"RT @KanekoaTheGreat: Boris Johnson says Putin wouldn't have invaded Ukraine if Trump were president
-
-“I happen to believe that when Donald…","Oct 10, 9:27:06 PM EDT"
-1844551442725835168,"Domo Arigato","Oct 10, 9:31:48 PM EDT"
-1844552423299481943,"We constructed a futuristic world https://t.co/L8gAvlLYLU","Oct 10, 9:35:42 PM EDT"
-1844555377473617947,"RT @teslaownersSV: Tesla always throws the best parties and launch events. https://t.co/8KHekfTEHz","Oct 10, 9:47:26 PM EDT"
-1844555767577444726,"RT @MarioNawfal: ELON: AGI IS LIKELY TO EMERGE FROM OUR AUTONOMOUS CARS AND HUMANOIDS
-
-“We're not actually specifically focused on AGI.
-
-I'…","Oct 10, 9:48:59 PM EDT"
-1844564812749210047,"https://t.co/U6uQsqPsGU","Oct 10, 10:24:56 PM EDT"
-1844564993192374724,"You can watch this on your TV! https://t.co/wcO7vnBr5F","Oct 10, 10:25:39 PM EDT"
-1844567949144883345,"A person in the crowd had a medical emergency. We have taken care of them and will be starting shortly.","Oct 10, 10:37:24 PM EDT"
-1844571587418390906,"Starting","Oct 10, 10:51:51 PM EDT"
-1844583875521151235,"Ever wanted your own personal R2 unit? https://t.co/8yM2x00BO6","Oct 10, 11:40:41 PM EDT"
-1844609123947888833,"RT @cb_doge: Welcome to the future! 🤖 https://t.co/wKA8InlSIf","Oct 11, 1:21:00 AM EDT"
-1844610822720618876,"RT @kimbal: Optimus 🦾 #Robotaxi https://t.co/eWzwUPlzho","Oct 11, 1:27:46 AM EDT"
-1844610983550972134,"RT @levie: Insane set of announcements from Tesla tonight. The multi trillion dollar bull case for Tesla feels entirely reasonable given se…","Oct 11, 1:28:24 AM EDT"
-1844611743500431692,"RT @FutureJurvetson: Cybercab
- Forging the future of our dreams https://t.co/0F7xqfV7jg","Oct 11, 1:31:25 AM EDT"
-1844612387237920949,"Futuristic Art Deco Bus https://t.co/4DDqJtGATU","Oct 11, 1:33:59 AM EDT"
-1844612977967890706,"The future will look like the future https://t.co/9DZ59Gdr1M","Oct 11, 1:36:19 AM EDT"
-1844613394353230112,"https://t.co/VK9vlGF0Ms","Oct 11, 1:37:59 AM EDT"
-1844613994709217467,"This is the actual interior of the Robobus/van https://t.co/YzOIbu7DCF","Oct 11, 1:40:22 AM EDT"
-1844656411734634659,"RT @MarioNawfal: ELON’S WE,ROBOT KEYNOTE - THIS IS THE WORLD WE WANT
-
-02:00 Elon takes to the stage
-
-03:40 What kind of world do we want to…","Oct 11, 4:28:55 AM EDT"
-1844662110879699377,"Indeed https://t.co/vWEMNVCvF6","Oct 11, 4:51:34 AM EDT"
-1844662891808731518,"So much green space potential in cities when vast parking lots aren’t needed https://t.co/3muKnJ60XT","Oct 11, 4:54:40 AM EDT"
-1844666570624373103,"RT @Tesla: Robovan seats 20 & can be adapted to commercial or personal use – school bus, RV, cargo https://t.co/CtjEfcaoHI","Oct 11, 5:09:17 AM EDT"
-1844671767165747695,"RT @elon_docs: Elon Musk: You can't solve self-driving unless you have millions of cars on the road.
-
-“We are no longer compute-constrained…","Oct 11, 5:29:56 AM EDT"
-1844676809327358407,"https://t.co/AkrJgh58L2","Oct 11, 5:49:58 AM EDT"
-1844837440282083601,"Extending the free period through end of year for those affected by the hurricanes https://t.co/NWIY6FZo0r","Oct 11, 4:28:15 PM EDT"
-1844838169805730195,"😂 https://t.co/GJ5pR7LHxJ","Oct 11, 4:31:09 PM EDT"
-1844840205486043138,"Looks like Starship might fly on Sunday!
-
-This the largest & most powerful flying object ever made at more than double the thrust of the Saturn V Moon rocket.
-
-We will try to catch it upon return to launch site using the Mechazilla arms like giant ch","Oct 11, 4:39:15 PM EDT"
-1844840553932030215,"Still zero people connected by the government program where they revoked the SpaceX award https://t.co/lHEyawo2x8","Oct 11, 4:40:38 PM EDT"
-1844841111250227348,"Basic camping solar panels plus a little battery will power Starlink all day https://t.co/hDK91prZwj","Oct 11, 4:42:51 PM EDT"
-1844841525102133287,"Cool https://t.co/wqiv2Uml0g","Oct 11, 4:44:29 PM EDT"
-1844841675744837847,"https://t.co/QvnQIWoIvN","Oct 11, 4:45:05 PM EDT"
-1844898939373486172,"RT @Benioff: @elonmusk One of the most inspiring visions of the future I have ever seen! Everyone should watch this. ❤️🤘 https://t.co/16Euv…","Oct 11, 8:32:38 PM EDT"
-1844899521920369071,"Join @xAI to build a maximally truth-seeking AI that will enable discovery of new physics & invent useful technologies! https://t.co/YFKADjQLbL","Oct 11, 8:34:57 PM EDT"
-1844904681585377647,"For my time-based predictions, I generally aim for the 50% percentile date, which means that half my predictions will be late and half will be early. The press never mentions the predictions that were early, so it seems like I’m always late.
-
-However, it","Oct 11, 8:55:27 PM EDT"
-1844908225495433629,"The press gets grumpy when we don’t invite them 😂
-
-Better if people just see video clips from the event and judge for themselves. https://t.co/jJEemYjRWx","Oct 11, 9:09:32 PM EDT"
-1844908858520764440,"Is this seriously what the current administration considers discrimination?
-
-@CommunityNotes https://t.co/fUGOsvRluG","Oct 11, 9:12:03 PM EDT"
-1844910640290464106,"America needs safe cities, secure borders, free speech, no lawfare & smaller government.
-
-If we don’t elect @realDonaldTrump, the situation will get MUCH worse! https://t.co/PI77RzjUqO","Oct 11, 9:19:08 PM EDT"
-1844911208849342785,"RT @ajtourville: Dan Ives: “I've covered tech for almost 25 years – What I saw yesterday in LA, I think was a game-changer. This is the new…","Oct 11, 9:21:23 PM EDT"
-1844961730306208203,"If it looks like an invasion,
-sounds like an invasion
-and uses guns like an invasion,
-then … it is an invasion. https://t.co/vMgI7lz691","Oct 12, 12:42:08 AM EDT"
-1845339995814477919,"The future we want https://t.co/ybWSuoZds9","Oct 13, 1:45:14 AM EDT"
-1845340808825766172,"Excitement is guaranteed, success is possible https://t.co/t0uIvL2FKg","Oct 13, 1:48:28 AM EDT"
-1845341767207457189,"Incredibly inappropriate. What I post on this platform has nothing to do with a “coastal commission” in California!
-
-Filing suit against them on Monday for violating the First Amendment. https://t.co/bDgFPTdNal","Oct 13, 1:52:16 AM EDT"
-1845341903539032242,"*Tuesday, since court is closed on Monday","Oct 13, 1:52:49 AM EDT"
-1845342756970906087,"True https://t.co/wzOKy2ETGg","Oct 13, 1:56:12 AM EDT"
-1845352723207594240,"Sounds about right https://t.co/mHFm2t7x5V","Oct 13, 2:35:48 AM EDT"
-1845353038459891835,"Political tribalism really does break most people’s brains https://t.co/ffz89BhDgY","Oct 13, 2:37:04 AM EDT"
-1845360164817322307,"RT @andrewschulz: Yerr we got Trump on the pod today to break down his stance on abortion, who he really thinks tried to take him out, and…","Oct 13, 3:05:23 AM EDT"
-1845366389168554487,"RT @mazemoore: 2007. Obama on immigration, border security, and the effect of illegal immigration on wages.
-
-Pretty amazing how far left th…","Oct 13, 3:30:07 AM EDT"
-1845367070688493574,"Trump must win or this will get more insane than you can imagine https://t.co/CTpmsoAOFf","Oct 13, 3:32:49 AM EDT"
-1845368068337197298,"Yes https://t.co/Je4Arb0Yjg","Oct 13, 3:36:47 AM EDT"
-1845368408797237478,"Profile pic changed to Starship Flight 5","Oct 13, 3:38:08 AM EDT"
-1845368770182721569,"Currently still go for launch, with flight window opening in just over 4 hours at 7am CT https://t.co/VAL7vbf7NL","Oct 13, 3:39:34 AM EDT"
-1845369196286243000,"Cool https://t.co/eHOCr3XoqJ","Oct 13, 3:41:16 AM EDT"
-1845369269871157426,"Great! https://t.co/Ss1ag9Hr2L","Oct 13, 3:41:33 AM EDT"
-1845369348241629367,"Great question https://t.co/C8ZWPeXUar","Oct 13, 3:41:52 AM EDT"
-1845369536939229408,"And more to come https://t.co/IMo4Fm1mLF","Oct 13, 3:42:37 AM EDT"
-1845391591151640807,"Let us be among the stars https://t.co/2Wl62BUqe3","Oct 13, 5:10:15 AM EDT"
-1845395193484153287,"Flight 5 https://t.co/w88QcNpOht","Oct 13, 5:24:34 AM EDT"
-1845446365717156265,"The tower has caught the rocket!!
- https://t.co/CPXsHJBdUh","Oct 13, 8:47:54 AM EDT"
-1845446793678778464,"Good morning https://t.co/0BBDo4Cut3","Oct 13, 8:49:37 AM EDT"
-1845451697835082118,"RT @kimbal: Booster starts in top right corner. Watch to the end. Sound on https://t.co/jS70tHLNcr","Oct 13, 9:09:06 AM EDT"
-1845458392531529991,"Ship landed precisely on target!
-
-Second of the two objectives achieved. https://t.co/aMnllnkyzP","Oct 13, 9:35:42 AM EDT"
-1845463518671466934,"Big step towards making life multiplanetary was made today https://t.co/dwE5MExToI","Oct 13, 9:56:04 AM EDT"
-1845467052443828579,"Starship rocket booster caught by tower https://t.co/aOQmSkt6YE","Oct 13, 10:10:07 AM EDT"
-1845467350235217974,"https://t.co/ZOvkj5idCY","Oct 13, 10:11:18 AM EDT"
-1845480595293438416,"The Starfactory is amazing and you can see it close-up from the public road https://t.co/uPwxMK0CxT","Oct 13, 11:03:55 AM EDT"
-1845492646699036697,"Happens often! https://t.co/txjMR2qApb","Oct 13, 11:51:49 AM EDT"
-1845571239227658430,"RT @SpaceX: Launching and returning the world's most powerful rocket https://t.co/E8AWRc5TTZ","Oct 13, 5:04:07 PM EDT"
-1845576437551521811,"RT @ajtourville: Video from a different vantage point shows Starship Booster never came even close to hitting the tower.
-
-As far as I can t…","Oct 13, 5:24:46 PM EDT"
-1845577171424944158,"Ascent and landing burns https://t.co/Th8FCEnDKR","Oct 13, 5:27:41 PM EDT"
-1845577746887344355,"RT @CollinRugg: Elon Musk explains exactly how Space X's Mechazilla can catch the Super Heavy booster.
-
-On Sunday morning, Space X successf…","Oct 13, 5:29:58 PM EDT"
-1845633730154545465,"Just inspected the Starship booster, which the arms have now placed back in its launch mount. Looks great!
-
-A few outer engine nozzles are warped from heating & some other minor issues, but these are easily addressed.
-
-Starship is designed to achieve ","Oct 13, 9:12:26 PM EDT"
-1845695217799680261,"https://t.co/tuG6M5cSM3","Oct 14, 1:16:45 AM EDT"
-1845723168498950574,"I hope I am able to serve the people in this regard. It is sorely needed. https://t.co/4l6FWoa0K8","Oct 14, 3:07:49 AM EDT"
-1845723515195924670,"Insane https://t.co/9aWwMstb9r","Oct 14, 3:09:12 AM EDT"
-1845725393786957985,"https://t.co/TRbXqFpGpr","Oct 14, 3:16:40 AM EDT"
-1845725747064766908,"RT @cremieuxrecueil: There could never be a space economy without low-cost flights.
-
-The plain fact of the matter is that SpaceX has enable…","Oct 14, 3:18:04 AM EDT"
-1845727092576514197,"3 years ago https://t.co/QCpXekZ1AG","Oct 14, 3:23:25 AM EDT"
-1845823381754515779,"Almost there https://t.co/OvqkOzaG9p","Oct 14, 9:46:02 AM EDT"
-1845832529112097016,"Achieving materially positive payload margin to a useful orbit with a fully & rapidly reusable rocket has eluded prior attempts. Many have tried to embark upon this path only to give up when it became clear that their design would have negative or neg","Oct 14, 10:22:23 AM EDT"
-1845832610745839852,"☀️ https://t.co/KrIwZaIfmw","Oct 14, 10:22:42 AM EDT"
-1845836334465761470,"The Border Patrol supports @realDonaldTrump https://t.co/vlV8DSCcBP","Oct 14, 10:37:30 AM EDT"
-1845881675462349197,"We gotta win, but, once we do, we can cut the millions of strings that, like Gulliver, hold back the giant that is America! https://t.co/KRu7R1fH74","Oct 14, 1:37:40 PM EDT"
-1845884681050276333,"The next generation Starlink satellites, which are so big that only Starship can launch them, will allow for a 10X increase in bandwidth and, with the reduced altitude, faster latency https://t.co/HLYdjjia3o","Oct 14, 1:49:37 PM EDT"
-1845885137386348632,"Cybertruck is just such an awesome product. You don’t realize how fun & useful it is until you try it! https://t.co/dmCAn6y9sO","Oct 14, 1:51:26 PM EDT"
-1845888450550984826,"https://t.co/fHt0SGL0XL","Oct 14, 2:04:36 PM EDT"
-1845899960383938668,"RT @SpaceX: Falcon Heavy lifts off from pad 39A in Florida for the 11th time! https://t.co/tcZu1LOOOm","Oct 14, 2:50:20 PM EDT"
-1845900000808546609,"RT @SpaceX: This was the sixth and final flight for the two side-boosters, which, one year ago today supported @NASA’s Psyche and previous…","Oct 14, 2:50:30 PM EDT"
-1845900168496886056,"One of our most important launches ever.
-
-Super glad it went well. https://t.co/9Rbqhjnpbb","Oct 14, 2:51:09 PM EDT"
-1845900634349789690,"Europa has the highest chance of life in our solar system, because of the thick, protective shell of ice that covers its ocean https://t.co/0UJcGg8Wnd","Oct 14, 2:53:01 PM EDT"
-1845903353923973281,"Even rockets need hugs 🥰 https://t.co/oF36F0AvBf","Oct 14, 3:03:49 PM EDT"
-1845938491391176793,"Much appreciated https://t.co/IMZvcg0wdc","Oct 14, 5:23:26 PM EDT"
-1845938651164713294,"RT @SawyerMerritt: SpaceX has released some new footage from the tower of the first Super Heavy booster catch yesterday. Absolutely epic sh…","Oct 14, 5:24:04 PM EDT"
-1845938694802559379,"RT @AutismCapital: TIME is calling out Kamala. We never thought we’d see the day. Wow. 😮 https://t.co/XOr8HlNx59","Oct 14, 5:24:15 PM EDT"
-1845940042457666011,"It is important in this often difficult and troubled world for there to be things that also inspire and make you feel great to be part of humanity","Oct 14, 5:29:36 PM EDT"
-1845971079883297046,"Let us venture among the stars! https://t.co/hxm01qtIDd","Oct 14, 7:32:56 PM EDT"
-1845971950935429415,"🔥🔥 https://t.co/Tyxv2Ztw3e","Oct 14, 7:36:24 PM EDT"
-1845988324621656152,"If even simple bacterial life is discovered on Europa, this will be the most significant planetary mission ever.
-
-Godspeed @EuropaClipper! https://t.co/mWhK6cVOhC","Oct 14, 8:41:28 PM EDT"
-1845991285720555734,"Wow https://t.co/LZWihPR6LM","Oct 14, 8:53:14 PM EDT"
-1845991524288319610,"RT @XData: Huge day for @SpaceX! As the world tuned in, the conversation took off on @X this weekend. 🚀
-
-8B impressions
-1B video views
-1M t…","Oct 14, 8:54:10 PM EDT"
-1846001324246319409,"Since your handle is “Whole Mars”, perhaps this lengthy reply is apropos:
-
-Getting the cost per ton to the surface of Mars low enough that humanity has the resources to make life multiplanetary requires a roughly 1000X improvement in rocket & spacecra","Oct 14, 9:33:07 PM EDT"
-1846139408933593568,"Bravo! https://t.co/ffYvSKwKss","Oct 15, 6:41:49 AM EDT"
-1846139657777520874,"True dough https://t.co/mknq6N5e5j","Oct 15, 6:42:48 AM EDT"
-1846139762689622314,"RT @edwards345: And new Falcon speed record: 12680 m/s (earth-centered inertial)","Oct 15, 6:43:13 AM EDT"
-1846139860714693115,"RT @EuropaClipper: Europa is about the same size as Earth's moon – yet evidence suggests that, beneath its surface, it has more water than…","Oct 15, 6:43:37 AM EDT"
-1846144109444026624,"The Romans didn’t try hard enough https://t.co/uQlZg4TRMu","Oct 15, 7:00:30 AM EDT"
-1846144908341420139,"That is mostly the case https://t.co/CDcEyoOLdD","Oct 15, 7:03:40 AM EDT"
-1846148272722780559,"And it gets worse every year!
-
-Only hope for stopping the slow strangulation by overregulation of America is to elect @realDonaldTrump.
-
-He will empower the Dept of Govt Efficiency to restore common sense regulation, instead of the mindless mountains of ","Oct 15, 7:17:02 AM EDT"
-1846148567196418322,"!! https://t.co/VbsKXkwFNq","Oct 15, 7:18:12 AM EDT"
-1846149209042440702,"Yes https://t.co/GcWb6sbAzm","Oct 15, 7:20:45 AM EDT"
-1846150988555534780,"🎯 https://t.co/vsDi0Bp2dB","Oct 15, 7:27:50 AM EDT"
-1846154282967368005,"Please do. There are many cool features and subscriptions allow us to resist censorship pressure from advertisers. https://t.co/i5Bpmyfb6l","Oct 15, 7:40:55 AM EDT"
-1846154721221886213,"RT @amuse: TRANSPARENCY: In a shocking Harvard Caps Harris Poll the vast majority of Democrats and Republicans believe CBS should release t…","Oct 15, 7:42:40 AM EDT"
-1846157694492676169,"https://t.co/zEiq8i68lM","Oct 15, 7:54:28 AM EDT"
-1846204145163759946,"Wow, this is active deception by CBS! https://t.co/PKBJMSAkCM","Oct 15, 10:59:03 AM EDT"
-1846208937764237428,"🥰 https://t.co/rCgLy8wsg6","Oct 15, 11:18:06 AM EDT"
-1846211256622968856,"Not many people these days know that the British Empire was the driving force behind ending the vast majority of global slavery.
-
-Slavery or de facto slavery was standard practice throughout the world from the dawn of civilization until a few hundred yea","Oct 15, 11:27:19 AM EDT"
-1846221667850141908,"This is the way https://t.co/XG5I5qzojP","Oct 15, 12:08:41 PM EDT"
-1846227676442333692,"RT @KTmBoyle: It is impossible to overstate what happened on the shores of Texas, or what’s happened for two decades in El Segundo, the lit…","Oct 15, 12:32:33 PM EDT"
-1846227946664563187,"Let’s build an inspiring future together! https://t.co/Rs0WOvaPmI","Oct 15, 12:33:38 PM EDT"
-1846230339070398639,"Tesla Semi will be available worldwide https://t.co/qo9504baST","Oct 15, 12:43:08 PM EDT"
-1846231856217198717,"Executive competence matters immensely in a President, as they are the CEO of America.
-
-Lack of competence, as we saw with the shameful handling of the Afghanistan withdrawal, causes terrible loss of life and limb.
-
-Between @KamalaHarris and @realDonaldT","Oct 15, 12:49:10 PM EDT"
-1846281675430334854,"The Coastal Commission has one job – take care of the California coast.
-
-It is illegal for them to make decisions based on what they (mostly wrongly) think are my politics.
-
-For example, I have done more to advance sustainable energy & help the envi","Oct 15, 4:07:08 PM EDT"
-1846287204223738143,"While many already do, I think all political & company leaders should post on this platform themselves directly, as it bypasses the legacy media negativity filter. Your actual message will reach people, instead of some reporter’s often unfair hit piec","Oct 15, 4:29:06 PM EDT"
-1846405459495854454,"Community Notes is hoax kryponite https://t.co/wVidckoWgT","Oct 16, 12:19:00 AM EDT"
-1846407354520117615,"Tomorrow night through Monday, I will be giving a series of talks throughout Pennsylvania.
-
-If you’d like to attend one of my talks, there’s no attendance fee. You just need to have signed our petition supporting free speech & right to bear arms &","Oct 16, 12:26:32 AM EDT"
-1846408202566463726,"Exactly https://t.co/EMu1uC69MV","Oct 16, 12:29:54 AM EDT"
-1846408376214798825,"To clarify, you need have voted in Pennsylvania","Oct 16, 12:30:36 AM EDT"
-1846409895169462521,"Probably some asshat spreading misinformation that misinformation is a thing 😂 https://t.co/yUIg3ydhrZ","Oct 16, 12:36:38 AM EDT"
-1846410313467359456,"RT @cb_doge: BREAKING: Elon Musk will be giving a series of talks throughout Pennsylvania, from tomorrow night through Monday.
-
-If you’d li…","Oct 16, 12:38:18 AM EDT"
-1846410785997701235,"RT @Tesla_Optimus: In addition to Tesla Vision, Optimus leverages many of our vehicles' hardware components, like batteries, cameras & comp…","Oct 16, 12:40:10 AM EDT"
-1846411138310815749,"For good reason https://t.co/BOGiyYF2vE","Oct 16, 12:41:34 AM EDT"
-1846411652050170231,"Why aren’t they arrested? https://t.co/zveroUDlWe","Oct 16, 12:43:37 AM EDT"
-1846416975716561181,"I mean, the fluid has to get from one ship to another somehow 🤷♂️ 😂 https://t.co/ELleTdoYUm","Oct 16, 1:04:46 AM EDT"
-1846420705866314139,"Sometimes things do work after all https://t.co/ApGw5wLHHD","Oct 16, 1:19:35 AM EDT"
-1846421356000207033,"https://t.co/95HT0rwBQa","Oct 16, 1:22:10 AM EDT"
-1846421607394271441,"Great energy from @SpaceX fans in Mexico
- https://t.co/R695MUaicc","Oct 16, 1:23:10 AM EDT"
-1846422721904754876,"The @America PAC is just aiming for common sense, centrist values https://t.co/mc0RmxXOhf","Oct 16, 1:27:36 AM EDT"
-1846426294344466592,"Yeah https://t.co/Eu7OG8GdKg","Oct 16, 1:41:48 AM EDT"
-1846426456374563286,"RT @america: Elon Musk tells Tucker Carlson why he created America PAC and why Donald Trump is the best candidate in this election who will…","Oct 16, 1:42:26 AM EDT"
-1846426512628531546,"RT @SpaceX: Starship on its fifth flight test. Views powered by @Starlink https://t.co/5SAs8Bp8Rz","Oct 16, 1:42:40 AM EDT"
-1846426855588364334,"RT @nicksortor: 🚨 #BREAKING: Elon Musk has just announced he will be touring Pennsylvania from tonight until Monday, giving talks to voters…","Oct 16, 1:44:01 AM EDT"
-1846434317083230303,"True https://t.co/rn5i2QgWen","Oct 16, 2:13:40 AM EDT"
-1846434847406903513,"RT @Rothmus: 🎯 https://t.co/CSgdK6JUxX","Oct 16, 2:15:47 AM EDT"
-1846579785159315529,"RT @AutismCapital: 🚨 Incredible Greg Gutfeld monologue on Elon Musk:
-
-Musk is changing the world and these bureaucrats think they can get…","Oct 16, 11:51:43 AM EDT"
-1846581269938713051,"Kamala is avoiding any interviews that won’t post edit her answers to sound like they make sense 😂 https://t.co/EQ0fbn8Vid","Oct 16, 11:57:37 AM EDT"
-1846583914279661597,"RT @iam_smx: Democrats are super scared of the idea of Elon Musk leading the Department of Government Efficiency. The thought of him questi…","Oct 16, 12:08:07 PM EDT"
-1846584205951529249,"Even the latest FBI crime data massively understates the problem https://t.co/6x2uwVemYT","Oct 16, 12:09:17 PM EDT"
-1846584546189254711,"RT @WesternLensman: Three weeks before an election — and after the debates — FBI revises their crime statistics — showing crime increased b…","Oct 16, 12:10:38 PM EDT"
-1846586555520979246,"RT @EndWokeness: Bureau of Labor: Oops, we added over 800,000 jobs that didn’t exist
-
-FBI: Oops, we reported a 2.1% drop in VIOLENT crime,…","Oct 16, 12:18:37 PM EDT"
-1846706757151654073,"Smh 🤦♂️ https://t.co/LnphweTDfo","Oct 16, 8:16:15 PM EDT"
-1846707425388229042,"Just sensible stuff https://t.co/MkkCurhXIu","Oct 16, 8:18:55 PM EDT"
-1846707994437771421,"How is it possible that this person is somehow a candidate for President of the United States? 🤣🤣 https://t.co/EKHs4c1TIx","Oct 16, 8:21:10 PM EDT"
-1846766563090743297,"Diablo T150 clear with @Rob_2628 🔥🔥 https://t.co/l2wtc0rfVY","Oct 17, 12:13:54 AM EDT"
-1846773355707306162,"Good arguments https://t.co/ffYvSKwKss","Oct 17, 12:40:54 AM EDT"
-1846776409462644874,"Yez https://t.co/5ScGQOtcmb","Oct 17, 12:53:02 AM EDT"
-1846776589280747797,"Good Supercharger progress https://t.co/OYt1u3Fld3","Oct 17, 12:53:44 AM EDT"
-1846777546228003103,"Funnier than any parody 🤣🤣
-https://t.co/lraBYGdDet","Oct 17, 12:57:33 AM EDT"
-1846778474603643150,"💯 https://t.co/cJMSJaDBNU","Oct 17, 1:01:14 AM EDT"
-1846778709040132157,"Birth rates continue to plummet. Population collapse is coming. https://t.co/BJPSZTHgCg","Oct 17, 1:02:10 AM EDT"
-1846781772584964331,"https://t.co/e9AloDc5y9","Oct 17, 1:14:20 AM EDT"
-1846783171012002005,"Who sends out the commands to the NPC media puppets? I’d like to meet them.
-
-They should really use a thesaurus, so that every media outlet doesn’t use the EXACT SAME words every time. https://t.co/gDU79umXly","Oct 17, 1:19:54 AM EDT"
-1846784025165181342,"Currently, I have 3 talks scheduled in Pennsylvania, but will probably do half a dozen throughout the state https://t.co/nXJgQ8DQuh","Oct 17, 1:23:17 AM EDT"
-1846826452282479012,"The Department of Government Effectively is sorely needed https://t.co/RRGB9C1bEG","Oct 17, 4:11:53 AM EDT"
-1846826782797799580,"“Testy” is this week’s “sharp as a tack” https://t.co/DoQgTOxKRN","Oct 17, 4:13:12 AM EDT"
-1846832187519189503,"It just so obviously is!
-
-Don’t let your friends & family be fooled by legacy media propaganda, send them links to the truth on 𝕏. https://t.co/takaIKOU3n","Oct 17, 4:34:40 AM EDT"
-1846834854479953999,"Imagine 4 more years of this getting worse https://t.co/DaNTOYX2a4","Oct 17, 4:45:16 AM EDT"
-1846835411907141661,"Yeah … https://t.co/wrxfSFM8pv","Oct 17, 4:47:29 AM EDT"
-1846837529292480677,"The so-called “Border Bill” (which was a wolf in sheep’s clothing) has nothing to do with the 90+ open border executive orders of the Biden/Harris administration https://t.co/48NouFOzZs","Oct 17, 4:55:54 AM EDT"
-1846837622695457078,"RT @ajtourville: Why @Neuralink — An estimated 180,000 Americans suffer from quadriplegia, and about 18,000 more are paralyzed by spinal co…","Oct 17, 4:56:16 AM EDT"
-1846838612492455976,"Yes! https://t.co/bleVYDBrEc","Oct 17, 5:00:12 AM EDT"
-1846838925173633400,"RT @JohnPompliano: These photos are only ~100 years apart.
-
-There is no limit to what humans can accomplish. https://t.co/WFyfqauAjD","Oct 17, 5:01:27 AM EDT"
-1846839528872411397,"Starbase is incredible https://t.co/wM9vx2IVwX","Oct 17, 5:03:50 AM EDT"
-1846841292367540506,"Not even slightly. The results speak for themselves. https://t.co/zyKWN7ggnf","Oct 17, 5:10:51 AM EDT"
-1846842281283703082,"🤔 https://t.co/TV6P5lu62C","Oct 17, 5:14:47 AM EDT"
-1846842738429333568,"https://t.co/JNTgEMy5xL","Oct 17, 5:16:36 AM EDT"
-1846843326248497568,"Hmm https://t.co/ZgwtXnIafL","Oct 17, 5:18:56 AM EDT"
-1846844052454457762,"🤣🤣 https://t.co/NUO3mIkVXc","Oct 17, 5:21:49 AM EDT"
-1846845201068777962,"RT @Tesla_Optimus: Navigating by myself https://t.co/CeFSqCcy5I","Oct 17, 5:26:23 AM EDT"
-1846846285917131130,"True https://t.co/j0lElvYytX","Oct 17, 5:30:41 AM EDT"
-1846955648468082711,"RT @Tesla: Rides in the city of the future https://t.co/mu5IfQD6AN","Oct 17, 12:45:16 PM EDT"
-1846956676147990982,"RT @teslaownersSV: "AI needs to say the truth & know the truth, even if the truth is unpopular”
-
-Elon Musk https://t.co/RteZwVRWJv","Oct 17, 12:49:21 PM EDT"
-1846970657793626397,"Exactly! https://t.co/6KsIM5Px66","Oct 17, 1:44:54 PM EDT"
-1846971270681731413,"RT @WallStreetSilv: NASA chief Bill Nelson roasts leftist interviewer who tried to lure him into attacking Elon Musk.
-
-🔊 https://t.co/R6Fow…","Oct 17, 1:47:20 PM EDT"
-1846971784782139512,"The legacy media, formerly the mainstream media, is a far left propaganda machine https://t.co/A6CK9Gpo6L","Oct 17, 1:49:23 PM EDT"
-1846972524753539200,"Only by the far left legacy media https://t.co/A3NoES3B5e","Oct 17, 1:52:19 PM EDT"
-1846973288213332440,"This is illegal https://t.co/EHuKfyMcnj","Oct 17, 1:55:21 PM EDT"
-1846994594501648473,"It really will https://t.co/hH0rkoxdbi","Oct 17, 3:20:01 PM EDT"
-1846996928451826093,"Making progress https://t.co/mbq042AKCg","Oct 17, 3:29:17 PM EDT"
-1846998864756461676,"True https://t.co/xp5TiPJdux","Oct 17, 3:36:59 PM EDT"
-1846999768209465658,"The legacy media is a click maximizing machine, not a truth maximizing machine https://t.co/O9ADo8DKcm","Oct 17, 3:40:34 PM EDT"
-1847016153358434524,"The trend will continue. Usually, the Democrat ground game is far better than the Republican one. Not this time.
-
-What’s amazing is that Democrats:
-
-1. Are massively outspending Republicans in swing states.
-
-2. Have the “mainstream” aka legacy media almos","Oct 17, 4:45:41 PM EDT"
-1847016259142942896,"🔥🔥 https://t.co/1WETKmD1kq","Oct 17, 4:46:06 PM EDT"
-1847017637974269974,"Mark Cuban and Rachel Maddow are the same person. Don’t believe conspiracy theorists who claim otherwise! https://t.co/1FoCHbIj62","Oct 17, 4:51:35 PM EDT"
-1847024043536404569,"https://t.co/ccnvgP6d1K","Oct 17, 5:17:02 PM EDT"
-1847024892958376380,"Politics is absurdly tribal!
-
-Also, didn’t realize Maddow was a billionaire 😂 https://t.co/5GSywxBI68","Oct 17, 5:20:25 PM EDT"
-1847025979740278927,"https://t.co/rBIqn4y6tr","Oct 17, 5:24:44 PM EDT"
-1847049775922782221,"We need a video gamer voting block!
-
-Make Games Great Again!!","Oct 17, 6:59:17 PM EDT"
-1847050102738747600,"Yup https://t.co/81D4op2XkE","Oct 17, 7:00:35 PM EDT"
-1847050375687204869,"Protect The Constitution! https://t.co/kO6t9LfA1I","Oct 17, 7:01:40 PM EDT"
-1847050724862988639,"Vote for @realDonaldTrump if you want humanity to be a spacefaring civilization! https://t.co/HvxfTpSArf","Oct 17, 7:03:04 PM EDT"
-1847051431410364656,"Voting should be in-person with paper ballots and identification required https://t.co/ZlH9BUayuS","Oct 17, 7:05:52 PM EDT"
-1847051653184205164,"RT @devindkim: the largest AI training cluster is becoming largest-er","Oct 17, 7:06:45 PM EDT"
-1847051887096316240,"RT @america: ELON MUSK: “We want secure borders, we want safe cities.. sensible spending. We want Freedom of Speech. We want the Constituti…","Oct 17, 7:07:41 PM EDT"
-1847052051148427574,"RT @AutismCapital: Kamala's Rally. Ended an hour ago. 97.1k Views.
-Elon's Town hall. Ended 6 minutes ago. 1M Views. https://t.co/o22sHXryCE","Oct 17, 7:08:20 PM EDT"
-1847053447180308708,"America is getting slow strangulation by overregulation https://t.co/QH7wWIMzUp","Oct 17, 7:13:53 PM EDT"
-1847053920704586065,"Register to vote and vote immediately! https://t.co/Dp2HjlAVOU","Oct 17, 7:15:45 PM EDT"
-1847055893021487146,"RT @Chesschick01: "The federal government is spending America into bankruptcy. When the government spends more than it brings in, that's wh…","Oct 17, 7:23:36 PM EDT"
-1847056315702452272,"Yup https://t.co/K07j8mxx0t","Oct 17, 7:25:16 PM EDT"
-1847056569315266560,"Excess government spending is driving America to bankruptcy! https://t.co/hgQvvKbgX8","Oct 17, 7:26:17 PM EDT"
-1847057291092058186,"Most based thing you could do in a Dem neighborhood is put Trump/Vance signs on your lawn 😂
-
-Please post pics to this thread!","Oct 17, 7:29:09 PM EDT"
-1847057691400941592,"RT @JDVance: Great to be back in Pittsburgh with this fired up crowd! https://t.co/dunBOajsGg","Oct 17, 7:30:44 PM EDT"
-1847058080841744540,"https://t.co/JO8rge9Oci","Oct 17, 7:32:17 PM EDT"
-1847058347536560348,"RT @johnkrausphotos: A future to look forward to https://t.co/Ds4Z21gXcf","Oct 17, 7:33:21 PM EDT"
-1847058554706165962,"RT @BigImpactHumans: I voted for Trump because I want America to be safe, secure and I believe in humanity’s mission to reach Mars, and I s…","Oct 17, 7:34:10 PM EDT"
-1847058810177048660,"This was alarming to hear! https://t.co/vHpSeP0kWx","Oct 17, 7:35:11 PM EDT"
-1847059172392624278,"RT @BehizyTweets: Yesterday, the black Sheriff of Jacksonville, Florida, released a message publicly supporting Trump. Today, Democrats fle…","Oct 17, 7:36:38 PM EDT"
-1847059439532036387,"Yes! https://t.co/zwnvRoAkB1","Oct 17, 7:37:41 PM EDT"
-1847060936076529932,"She was so disrespectful to Americans putting their lives at risk https://t.co/iU6LtujEPY","Oct 17, 7:43:38 PM EDT"
-1847061143094726743,"RT @America1stLegal: 🚨BIG NEWS FOR ARIZONA ELECTION
-
-We sued the AZ Secretary of State for illegally withholding a list of 218K+ registered…","Oct 17, 7:44:27 PM EDT"
-1847061705119195393,"It is the stated goal of the Democrats to legalize all illegals, which would make all swing states permanently blue and turn America into a single-party state, just like California. https://t.co/Vd1Oy9hbtt","Oct 17, 7:46:41 PM EDT"
-1847062350316122196,"Sunlight is the best disinfectant https://t.co/av3GRdk3bB","Oct 17, 7:49:15 PM EDT"
-1847064377133871195,"But now the Dems fight paper ballots tooth & nail. I wonder why. https://t.co/cRZ9SO4Ccx","Oct 17, 7:57:18 PM EDT"
-1847066973441519671,"Am doing another town hall Q&A tomorrow in Philadelphia https://t.co/2lgbG0wvAQ","Oct 17, 8:07:37 PM EDT"
-1847100106228597037,"RT @america: Pennsylvania — Your last day to register to Vote is Monday, October 21st
-
-REGISTER NOW: https://t.co/jctwB6Z73a https://t.co/V…","Oct 17, 10:19:17 PM EDT"
-1847115389676740899,"If you’re a registered Pennsylvania voter, you & whoever referred you will now get $100 for signing our petition in support of free speech & right to bear arms.
-
-Earn money for supporting something you already believe in!
-
-Offer valid until midnig","Oct 17, 11:20:01 PM EDT"
-1847115680421687754,"Link to the petition:
-https://t.co/Wb3hUCxGvl","Oct 17, 11:21:10 PM EDT"
-1847116160036118845,"Note, to minimize fraud, checks will be mailed to your voter address on file with the state of Pennsylvania","Oct 17, 11:23:04 PM EDT"
-1847116693094445377,"Starship is a big step forward on the Kardashev scale, as it leads to harnessing vastly more power from the sun https://t.co/46hq1Ismwm","Oct 17, 11:25:12 PM EDT"
-1847117216463864153,"One could consider any given civilization’s progress as % completion of Kardashev.
-
-By that measure, we are <1% towards even type 1.","Oct 17, 11:27:16 PM EDT"
-1847117354955657591,"RT @america: 🚨SPECIAL OFFER TO PENNSYLVANIA VOTERS
-
-If you’re a registered Pennsylvania voter, you and whoever referred you will now get $1…","Oct 17, 11:27:49 PM EDT"
-1847119137488707701,"RT @alx: ELON MUSK: “I haven't been politically active before. I'm politically active now, because I think the future of America and future…","Oct 17, 11:34:54 PM EDT"
-1847120295565332602,"Improved edit of the talk I gave in Pennsylvania today https://t.co/SEhzbDtEgX","Oct 17, 11:39:30 PM EDT"
-1847120683123265791,"Voter registration in Pennsylvania closes on Monday night https://t.co/WegJoOL3Cr","Oct 17, 11:41:03 PM EDT"
-1847130747317928297,"Vote against the machine!
- https://t.co/Wkz6dgAtWK","Oct 18, 12:21:02 AM EDT"
-1847131823412855121,"We are the leading news source in the UK! https://t.co/YzbyJK2kMH","Oct 18, 12:25:19 AM EDT"
-1847132199557972348,"RT @cb_doge: BREAKING: The people of America want to know the truth. More people are downloading the 𝕏 app.
-
-𝕏 is now the #1 news app in th…","Oct 18, 12:26:49 AM EDT"
-1847132699229585875,"RT @teslaownersSV: “Politicians seem to forget that the money being spent is your money and if it's not being spent in a way that is benefi…","Oct 18, 12:28:48 AM EDT"
-1847133389058355387,"RT @VigilantFox: .@ElonMusk is going after America’s core problems, and I honestly fear for his life.
-
-He just reminded politicians that th…","Oct 18, 12:31:32 AM EDT"
-1847133497061749135,"RT @MarioNawfal: 🇺🇸 ELON: HARDENED CRIMINALS ROAM FREE BECAUSE DEMOCRATS WON'T INCARCERATE THEM
-
-"If someone is a violent criminal and you…","Oct 18, 12:31:58 AM EDT"
-1847134332994863522,"… https://t.co/tUId4HWfa2","Oct 18, 12:35:17 AM EDT"
-1847322008054337580,"RT @EndWokeness: Exactly 8 years ago: https://t.co/5btf4gkcbx","Oct 18, 1:01:02 PM EDT"
-1847354508583538914,"All true https://t.co/kkyR88gr0C","Oct 18, 3:10:11 PM EDT"
-1847388271107862558,"The people of Pennsylvania are seeing the light https://t.co/inkrMoCLh6","Oct 18, 5:24:21 PM EDT"
-1847390573130367479,"Starship achieved a precise, soft landing in the ocean, paving the way for return to launch site and being caught by the tower arms, like the booster.
-
-Full & rapid reusability improves the cost of access to orbit & beyond by >10,000%.
-
-It is ","Oct 18, 5:33:30 PM EDT"
-1847407852740108681,"I can’t stop laughing 🤣🤣 https://t.co/l7mxpZo86W","Oct 18, 6:42:09 PM EDT"
-1847409129893351668,"Let’s go!!!
-
-A bright future is possible!!! https://t.co/IIM6M7z2Ut","Oct 18, 6:47:14 PM EDT"
-1847415689063387436,"My favorite was when he said that the only way Biden could be seen less is if he had a show on CNN 🤣🤣 https://t.co/V7NMu89Gax","Oct 18, 7:13:18 PM EDT"
-1847416291747041775,"This is what happens when people are fed state propaganda https://t.co/mS7iDYFrcZ","Oct 18, 7:15:41 PM EDT"
-1847416762712629332,"Very important! https://t.co/NA6l4e7NRd","Oct 18, 7:17:34 PM EDT"
-1847419095781695616,"RT @SpaceX: Watch Falcon 9 launch 20 @Starlink satellites to orbit from Florida, including 13 with Direct to Cell capabilities https://t.co…","Oct 18, 7:26:50 PM EDT"
-1847419354993852624,"RT @MaryTilesTexas: I couldn't take it anymore.
-
-The hypocrisy and manipulation are too much.
-
-I was a liberal, and now I am reformed. ht…","Oct 18, 7:27:52 PM EDT"
-1847421247598035335,"Giving another talk in Pennsylvania!
- https://t.co/NgB2w29g54","Oct 18, 7:35:23 PM EDT"
-1847471699681313134,"Great points! https://t.co/UOhDbJXW4q","Oct 18, 10:55:52 PM EDT"
-1847485993714078071,"Yeah https://t.co/4PSQ3jmTzo","Oct 18, 11:52:40 PM EDT"
-1847486352536870956,"RT @KanekoaTheGreat: NEW: @theallinpod praises @elonmusk and @SpaceX for successfully catching the massive Starship booster and projects th…","Oct 18, 11:54:05 PM EDT"
-1847486414864241150,"RT @stevenmarkryan: Elon Musk's Town Hall: America, Trump, Freedom, Tesla, SpaceX & More
-
-✅ FULL TALK
-✅ Silences removed to save you time
-✅…","Oct 18, 11:54:20 PM EDT"
-1847486874740273154,"DEI kills art https://t.co/LG9lmDSHjF","Oct 18, 11:56:10 PM EDT"
-1847487015371117018,"Needs to happen! https://t.co/onMQVEXlBi","Oct 18, 11:56:43 PM EDT"
-1847490617015763361,"💯 https://t.co/hNUqGDX8tk","Oct 19, 12:11:02 AM EDT"
-1847490880229220625,"Californication, but much worse https://t.co/KJMGPNs6Tf","Oct 19, 12:12:05 AM EDT"
-1847514048952181106,"Legacy (formerly mainstream) media are a chorus of puppets singing in unison!
- https://t.co/QfNaLcETZC","Oct 19, 1:44:09 AM EDT"
-1847515027269394897,"Yes https://t.co/7mVVDvcvTy","Oct 19, 1:48:02 AM EDT"
-1847515187101774085,"Fate loves irony, but hates hypocrisy https://t.co/m3LpzYTn5V","Oct 19, 1:48:40 AM EDT"
-1847515964981858418,"I keep sounding the alarm that extreme government spending is driving America into bankruptcy! https://t.co/na8cQS9YJx","Oct 19, 1:51:45 AM EDT"
-1847516395778564329,"People need to know that they’re not alone.
-
-Put a Trump/Vance sign on your lawn and wear MAGA merch! https://t.co/RLnPXANcIm","Oct 19, 1:53:28 AM EDT"
-1847518688309657896,"Be a citizen journalist! https://t.co/28Km1999ZG","Oct 19, 2:02:35 AM EDT"
-1847519268901970148,"Makes a big difference https://t.co/uIoGNe8Zlh","Oct 19, 2:04:53 AM EDT"
-1847519647404351551,"Major crisis https://t.co/ZmPtCT9fHc","Oct 19, 2:06:23 AM EDT"
-1847520978043113742,"RT @AutismCapital: 🚨ELON MUSK: "Be loud and proud. Wear a Trump T-shirt. Put a sign on the lawn. Wear a MAGA hat. If someone confronts you,…","Oct 19, 2:11:41 AM EDT"
-1847625920477077714,"Voice of the people https://t.co/ENK3tgkq6P","Oct 19, 9:08:41 AM EDT"
-1847626670108279231,"RT @america: Elon Musk’s message to the next generation of Americans: “Reach for the stars” https://t.co/hl6BV1p9ir","Oct 19, 9:11:40 AM EDT"
-1847626896625860753,"RT @ScottPresler: Wow.
-
-Just woke up to a text message from a friend telling me that
-
-his Reverend in Pennsylvania is going to push voter…","Oct 19, 9:12:34 AM EDT"
-1847627356283793419,"RT @AutismCapital: 🚨ELON MUSK: "All of America will be Californicated. And not in a good way. It will actually be worse than California. Th…","Oct 19, 9:14:23 AM EDT"
-1847627745829736679,"The US Treasury – your tax dollars – are being wasted at a staggering rate!
-
-This needs to stop. https://t.co/C6o95jpQH0","Oct 19, 9:15:56 AM EDT"
-1847632491131060491,"Washington DC has become an ever-increasing ocean of brake pedals stopping progress.
-
-Let’s change those brake pedals to accelerators, so we can get great things done in America and become a spacefaring civilization!","Oct 19, 9:34:47 AM EDT"
-1847660297042997388,"RT @america: BREAKING: U.S. deficit tops $1.8 trillion in 2024, up more than 8% from the previous year and the third highest on record.
-
-Th…","Oct 19, 11:25:17 AM EDT"
-1847679277900120174,"The Plaid Speed Model S Tesla does 0 to 60 mph in 2 seconds. Crushes any million dollar sports car, despite being a 4 door sedan. https://t.co/bU0TtjiCS6","Oct 19, 12:40:42 PM EDT"
-1847679980303507622,"Government absolutely needs to be re-engineered.
-
-It is a wasteful mess that is bankrupting America and spending the hard-earned money of taxpayers in foolish ways. https://t.co/Ph3c2M3NP6","Oct 19, 12:43:30 PM EDT"
-1847680692466921830,"RT @Chesschick01: "We are inching closer to Socialism." -@RepThomasMassie https://t.co/SzaLgYCysb","Oct 19, 12:46:19 PM EDT"
-1847681851990716863,"Vote for Trump to preserve freedom & democracy in America! https://t.co/LNEspiohWC","Oct 19, 12:50:56 PM EDT"
-1847698859654599001,"https://t.co/NJONRtWgAm","Oct 19, 1:58:31 PM EDT"
-1847699258645885389,"Wild times https://t.co/s8LvVjH6vr","Oct 19, 2:00:06 PM EDT"
-1847715781582160211,"Kamala hates Christians https://t.co/JBZH2sZq4a","Oct 19, 3:05:45 PM EDT"
-1847716589942296766,"This is a beautiful composition
- https://t.co/gQziTPXVfO","Oct 19, 3:08:58 PM EDT"
-1847716898945061199,"The left has institutionalized their disinformation https://t.co/NggiEPtYXg","Oct 19, 3:10:12 PM EDT"
-1847727121411821984,"💯 https://t.co/eodzFM19ws","Oct 19, 3:50:49 PM EDT"
-1847730567183474761,"Absolutely https://t.co/to7YWAU1B8","Oct 19, 4:04:31 PM EDT"
-1847731937168826582,"Voting for Trump is voting for Mars!
-
-Unless we stop the slow strangulation by overregulation happening in America, we will never become a multiplanetary civilization. https://t.co/IWeGnpPwhF","Oct 19, 4:09:57 PM EDT"
-1847760312000188806,"It is inspiring to see what humans are capable of. Here’s lookin at you. https://t.co/PqJX7yzlvx","Oct 19, 6:02:42 PM EDT"
-1847762705505276140,"It’s wild being in Pennsylvania and seeing nonstop annoying political ads everywhere!
-
-If you’re not in a “battleground state”, you’re lucky 😂","Oct 19, 6:12:13 PM EDT"
-1847764612747284592,"Dirty tricks https://t.co/LZiqUdZpbb","Oct 19, 6:19:48 PM EDT"
-1847769483957719052,"https://t.co/poWVmiEgkG","Oct 19, 6:39:09 PM EDT"
-1847770022963195976,"Looking to speaking again with the great people of the Commonwealth of Pennsylvania! https://t.co/NoCiL24rp7","Oct 19, 6:41:18 PM EDT"
-1847771113369022592,"VOX POPULI, VOX DEI https://t.co/QynCcrXZhz","Oct 19, 6:45:38 PM EDT"
-1847771342042779692,"Thanks Gad! https://t.co/zJKZDQrBPH","Oct 19, 6:46:32 PM EDT"
-1847771500763320827,"This should really get way more attention! https://t.co/NDfP8Uq4ZI","Oct 19, 6:47:10 PM EDT"
-1847772565718143342,"Catch as catch can https://t.co/n1jkdAwDDp","Oct 19, 6:51:24 PM EDT"
-1847773458437992684,"SpaceX has come a long way, but we are still at the very beginning of making life multiplanetary and being a true spacefaring civilization https://t.co/zHQj02EcOi","Oct 19, 6:54:57 PM EDT"
-1847773880192307605,"I’d like to congratulate CNN on their new name 🤣🤣 https://t.co/Jn0LrZ6ynY","Oct 19, 6:56:37 PM EDT"
-1847775059823218967,"This is a major reason why @realDonaldTrump must win.
-
-Unless something is done about strangulation by overregulation, humanity will never reach Mars. https://t.co/NSIV391PhN","Oct 19, 7:01:18 PM EDT"
-1847776346811879685,"RT @Tesla_AI: https://t.co/0GP98O2S7K","Oct 19, 7:06:25 PM EDT"
-1847776676220194836,"One day, Mars will save Earth. I am certain of it. https://t.co/ApOvBdWzs8","Oct 19, 7:07:44 PM EDT"
-1847777079435092222,"If baby can survive outside the womb and is “aborted”, that is unequivocally murder https://t.co/ECyTMrK9ZO","Oct 19, 7:09:20 PM EDT"
-1847777335707054465,"RT @DimaZeniuk: “I'm a huge fan of Elon Musk. What he's done, nobody else has ever done.”
-
-— Morgan Freeman https://t.co/4JIXG2lHBD","Oct 19, 7:10:21 PM EDT"
-1847777388551184860,"RT @MarioNawfal: 🇺🇸LEX FRIDMAN: WE NEED AN EFFICIENT GOVERNMENT
-
-"Making government more efficient & effective should be the goal for both…","Oct 19, 7:10:34 PM EDT"
-1847777630650847361,"We should be gravely concerned about this https://t.co/lRXfm1sZkC","Oct 19, 7:11:31 PM EDT"
-1847780855462179019,"Free the giant that is America from the millions of strings that hold you down! https://t.co/2nnqJ1xoWh","Oct 19, 7:24:20 PM EDT"
-1847781244408365517,"Michigan has more registered voters than eligible citizens!? Is that true @CommunityNotes? https://t.co/f7Q2iCZdQ7","Oct 19, 7:25:53 PM EDT"
-1847785076165070922,"Going live in Pennsylvania in 5 minutes!
- https://t.co/hUpa6gNoWK","Oct 19, 7:41:07 PM EDT"
-1847785772646052348,"So true 😂 https://t.co/XlhqlDdmlg","Oct 19, 7:43:53 PM EDT"
-1847787457141755957,"RT @libsoftiktok: This bakery in PA polls the popularity of candidates by how many themed cookies they sell. Trump is outselling Kamala alm…","Oct 19, 7:50:34 PM EDT"
-1847850607614304438,"This is just the tip of the iceberg https://t.co/W0ff5tlkNk","Oct 20, 12:01:30 AM EDT"
-1847851065682661594,"Reducing government waste is definitely not rocket science https://t.co/vmkyyDJUj4","Oct 20, 12:03:20 AM EDT"
-1847852628232822915,"Absolutely https://t.co/ZVGRWQjnGK","Oct 20, 12:09:32 AM EDT"
-1847853449183920626,"https://t.co/kXMTmY3ZZO","Oct 20, 12:12:48 AM EDT"
-1847853714213621895,"RT @AutismCapital: 🚨ELON MUSK: "If the margin of victory is high enough, it can exceed any type of cheating that can take place. We have to…","Oct 20, 12:13:51 AM EDT"
-1847854356105744666,"Free markets vs collectivism has been an ongoing dynamic since the dawn of civilization, dating back thousands of years before Marx.
-
-Read The Story of Civilization by Durant. https://t.co/HnD2Tcho1C","Oct 20, 12:16:24 AM EDT"
-1847854542714470893,"College is overrated https://t.co/JJMJAk3w7Y","Oct 20, 12:17:09 AM EDT"
-1847855014158442665,"🎯 https://t.co/uw7ilQdruv","Oct 20, 12:19:01 AM EDT"
-1847855328722874781,"RT @VigilantFox: BREAKING: @ElonMusk Drops Bombshell Announcement
-
-@America PAC is awarding a million dollars to a random person every day…","Oct 20, 12:20:16 AM EDT"
-1847856712914555061,"Every day, from now through Nov 5, @America PAC will be giving away $1M to someone in swing states who signed our petition to support free speech & the right to bear arms!
-
-We want to make sure that everyone in swing states hears about this and I susp","Oct 20, 12:25:46 AM EDT"
-1847860746627023143,"Link to the petition:
-https://t.co/Wb3hUCxGvl","Oct 20, 12:41:48 AM EDT"
-1847861436778688990,"RT @TheRabbitHole84: “I think we should be extremely concerned about anything that undermines the First Amendment.”
-
-— Elon Musk
- https://t…","Oct 20, 12:44:32 AM EDT"
-1847902560750846168,"The goal of the $1M/day prize is to maximize awareness of our petition to support The Constitution https://t.co/2zamrgJLuW","Oct 20, 3:27:57 AM EDT"
-1847903365113491760,"🚀 💫 💰 woohoo!!! https://t.co/Pzh50uRfCA","Oct 20, 3:31:09 AM EDT"
-1847907725843337319,"Facebook “fact-checkers” 🤡 https://t.co/IRANwAE9PW","Oct 20, 3:48:28 AM EDT"
-1847907924846293154,"RT @WR4NYGov: I'm reading the SpaceX lawsuit against California Coastal Commission right now
-
-The Commission's misconduct is far deeper tha…","Oct 20, 3:49:16 AM EDT"
-1847907999760760855,"RT @MarioNawfal: 🚨🇺🇸 ELON: OVERREGULATION IS STOPPING US FROM GETTING ANYTHING DONE
-
-"SpaceX can build a rocket faster than the government…","Oct 20, 3:49:34 AM EDT"
-1847908152697671791,"RT @cb_doge: ELON MUSK: "Everyday between now and the election, we'll be awarding a million dollars starting tonight."
-
-The first winner, J…","Oct 20, 3:50:10 AM EDT"
-1847908434089291975,"This is actually happening https://t.co/sPhxvya4Zs","Oct 20, 3:51:17 AM EDT"
-1847908805016735754,"RT @america: ELON MUSK: “The whole point of acquiring Twitter was to restore the voice of the people… they suspended a sitting president, w…","Oct 20, 3:52:46 AM EDT"
-1847909500839194999,"Tomorrow, I will tell the story of how SpaceX was forced by the government to kidnap seals, put earphones on them and play sonic boom sounds to see if they seemed upset https://t.co/e8VsQpTOOa","Oct 20, 3:55:32 AM EDT"
-1847910399976280096,"RT @america: Elon Musk takes the stage in Harrisburg and joins a crowd of over 1,500 Pennsylvanians 🔥 https://t.co/GpQtjyZc2z","Oct 20, 3:59:06 AM EDT"
-1847910846711701958,"RT @AutismCapital: 🚨ELON MUSK: "Kamala is just a puppet, if the teleprompter breaks, she doesn't know what to say. I just call it 'The Mach…","Oct 20, 4:00:53 AM EDT"
-1847911047656579180,"RT @KettlebellDan: I just signed the @america PAC petition
-
-Why? because I support the Constitution
-
-I don’t know if my one signature alo…","Oct 20, 4:01:40 AM EDT"
-1847912036962836937,"RT @cb_doge: Yes, you read it right!
-
-Elon Musk is giving away $1 million every day from now until the election for signing a petition! htt…","Oct 20, 4:05:36 AM EDT"
-1848054456551690713,"Exactly https://t.co/RvpoGRJv3J","Oct 20, 1:31:32 PM EDT"
-1848055198494728496,"The regulators made us kidnap seals TWICE! So crazy ... https://t.co/qWRIGgOc9E","Oct 20, 1:34:29 PM EDT"
-1848067833306988594,"Jocelyn Michelle Benson, shame on you for blatantly lying to the public!
-
-You only plan to remove the ineligible voters AFTER this election.
-
-That necessarily means that there are far more people registered to vote than there eligible voters. https://t.c","Oct 20, 2:24:41 PM EDT"
-1848069240030384435,"Good rule of thumb: those who frequently use the word “disinformation” are the ones most likely to be pushing it","Oct 20, 2:30:16 PM EDT"
-1848075104317591627,"About to start a town hall discussion in Pittsburgh!
- https://t.co/fnSgYmNsf7","Oct 20, 2:53:35 PM EDT"
-1848112303587139667,"Insane government spending is driving America into bankruptcy! https://t.co/C96RlJnwkM","Oct 20, 5:21:24 PM EDT"
-1848113556551577982,"Unconscionable https://t.co/cFGN2nwrCg","Oct 20, 5:26:22 PM EDT"
-1848113609651708137,"RT @AMAZlNGNATURE: Mars on the left, Earth on the right. https://t.co/6g0BXeykKo","Oct 20, 5:26:35 PM EDT"
-1848114357861019703,"Is this accurate? @CommunityNotes https://t.co/p9jFmp5Jyb","Oct 20, 5:29:33 PM EDT"
-1848114451376976216,"RT @skscartoon: If kamala wins, it will be the end of #FreeSpeech https://t.co/z9aAQdFYKO","Oct 20, 5:29:56 PM EDT"
-1848114590481314040,"Check your voting status today! https://t.co/pFaszwnqNJ","Oct 20, 5:30:29 PM EDT"
-1848125344450056691,"RT @AutismCapital: 🚨ELON MUSK: "It's pretty wild that a tiny tax on tea started the revolution and now we get the living daylights taxed ou…","Oct 20, 6:13:13 PM EDT"
-1848126677865423301,"RT @AutismCapital: 🚨ELON MUSK ON ABORTION:
-
-"President Trump has been very clear that he will veto a national abortion ban. He believes it…","Oct 20, 6:18:31 PM EDT"
-1848127009375113386,"If America falls, nothing else matters https://t.co/0WcgoJP4YA","Oct 20, 6:19:50 PM EDT"
-1848127120410828829,"RT @KettlebellDan: Elon’s advice today that I want every young couple to hear:
-
-“My advice regarding starting a family is start immediately…","Oct 20, 6:20:16 PM EDT"
-1848129124285767737,"Thank you for subscribing to 𝕏! https://t.co/1r3KqmcD9D","Oct 20, 6:28:14 PM EDT"
-1848130548746846276,"With their relentless hit pieces, legacy mainstream media are actively encouraging the assassination of @realDonaldTrump and now me https://t.co/fuPrWUqS3X https://t.co/rHPrF6HlYZ","Oct 20, 6:33:54 PM EDT"
-1848130610075984164,"RT @stclairashley: Another Pennsylvania resident just received $1 million from Elon Musk for signing his @america petition 🔥🔥🔥","Oct 20, 6:34:08 PM EDT"
-1848131167226044561,"Sign our petition to support The Constitution of the United States, especially the right to free speech & bear arms! https://t.co/rOLYWd6Urn","Oct 20, 6:36:21 PM EDT"
-1848132325797970004,"Paper ballots, in-person, with ID is by far the best way to ensure election integrity https://t.co/wFWOFE3uja","Oct 20, 6:40:57 PM EDT"
-1848133457781960710,"What they are doing is incitement to violence.
-
-There have been two assassination attempts on @realDonaldTrump already! https://t.co/92N6VXLIwE","Oct 20, 6:45:27 PM EDT"
-1848134363059228908,"My involvement in politics is not because I wish to be, but because I believe the future of the free world is at stake https://t.co/Ot6aPokmy3","Oct 20, 6:49:03 PM EDT"
-1848137817739739328,"Orbital refilling is an essential technology for making life multiplanetary https://t.co/Sl3mFfxLhx","Oct 20, 7:02:47 PM EDT"
-1848138218673258875,"This is awesome 😎
- https://t.co/RMkE20qWo2","Oct 20, 7:04:22 PM EDT"
-1848138407391703114,"🔥🔥 https://t.co/547UAH93NY","Oct 20, 7:05:07 PM EDT"
-1848138824796573960,"If the Democratic Party big government machine wins this election, they will ban voter ID nationwide, not just in California https://t.co/LX6ebg7WeK","Oct 20, 7:06:47 PM EDT"
-1848138950822842663,"RT @ajtourville: Elon Musk: I'm in favor of anything that supports freedom of speech. So any infringement on freedom of speech, I would be…","Oct 20, 7:07:17 PM EDT"
-1848139057039028524,"Yes https://t.co/FRgaNQK4ct","Oct 20, 7:07:42 PM EDT"
-1848139980436103336,"RT @EndWokeness: The most iconic campaign of all time https://t.co/Tw2TLFg0eu","Oct 20, 7:11:22 PM EDT"
-1848140431235711227,"RT @SawyerMerritt: Elon Musk today when asked if he would run for President:
-
-“There would have to be a constitutional amendment for me to…","Oct 20, 7:13:10 PM EDT"
-1848140946342387982,"If given another four years, the Dem machine will legalize so many illegals that there will be no swing states.
-
-This is what they did in California, which is now a supermajority Dem one-party state. https://t.co/sLQEDL08mZ","Oct 20, 7:15:13 PM EDT"
-1848145052951859606,"Signing our petition in support of the 1st & 2nd amendments to the Constitution is all it takes! https://t.co/OXyD3TpsZL","Oct 20, 7:31:32 PM EDT"
-1848147035607998575,"All you need to do is sign the @America petition in support of the Constitutional rights to free speech & bear arms to have a daily chance of winning $1,000,000!
-
-You can be from any or no political party and you don’t even have to vote. https://t.co/","Oct 20, 7:39:24 PM EDT"
-1848149097313964358,"Every night, @America will announce another $1M winner!
-
-All you have to do is sign our petition in support of The Constitution. https://t.co/Zsda5ao2In","Oct 20, 7:47:36 PM EDT"
-1848150009461584060,"💯 https://t.co/djyWGqXypp","Oct 20, 7:51:13 PM EDT"
-1848150446646472942,"Concerning that he would say such a thing https://t.co/BBbH6gjUPP","Oct 20, 7:52:58 PM EDT"
-1848151122571047156,"SpaceX just launched a competing satellite constellation to Starlink.
-
-Same price as other customers. No favoritism to our own system. https://t.co/JLGxo3WA3e","Oct 20, 7:55:39 PM EDT"
-1848151300820643855,"Fate loves irony, but hates hypocrisy https://t.co/evvZaDUrss","Oct 20, 7:56:21 PM EDT"
-1848151618962759900,"Post your thoughts on 𝕏! https://t.co/rt46QmgZAB","Oct 20, 7:57:37 PM EDT"
-1848152666989318605,"Yeah https://t.co/3TMPEi1Ifw","Oct 20, 8:01:47 PM EDT"
-1848152949136207875,"https://t.co/vBoXAj6jKk","Oct 20, 8:02:54 PM EDT"
-1848153571918762273,"RT @iam_smx: A German magazine has labeled Elon Musk 'Public Enemy No. 2' and that makes Trump 'Public Enemy No. 1' for supporting democrac…","Oct 20, 8:05:23 PM EDT"
-1848153648104177784,"RT @america: ELON MUSK: “We need to reduce the size of the government, spend less money, and let the people keep a lot more of their hard e…","Oct 20, 8:05:41 PM EDT"
-1848167267005047019,"The legacy media is pure left-wing propaganda https://t.co/L8NHjTK7Hn","Oct 20, 8:59:48 PM EDT"
-1848181149840871866,"Triple digit increases of illegals in swing states over the past 4 years.
-
-Voter importation at an unprecedented scale! https://t.co/BnOCrqEdbU","Oct 20, 9:54:58 PM EDT"
-1848182334538826182,"Please support Dave McCormick for Pennsylvania Senator https://t.co/aW2ePJWuwk","Oct 20, 9:59:40 PM EDT"
-1848183429009215898,"If the Dem big government machine wins, they will legalize illegals over the next 4 years and there will be no more “swing states”.
-
-America will become a permanent deep blue socialist state.","Oct 20, 10:04:01 PM EDT"
-1848184151855247446,"Accurate https://t.co/YRF5eq4miP","Oct 20, 10:06:54 PM EDT"
-1848184392394383592,"This platform is the #1 source of news on Earth! https://t.co/kDVHyRODFL","Oct 20, 10:07:51 PM EDT"
-1848185068985921683,"Sign our petition to support the Constitution of the United States! https://t.co/pYZ1B7l9SX","Oct 20, 10:10:32 PM EDT"
-1848185502291169306,"Wow https://t.co/3P6ly9LuOc","Oct 20, 10:12:16 PM EDT"
-1848192021141577755,"RT @AutismCapital: 🚨ELON MUSK: "With a Trump Presidency we will have secure borders, safe cities, sensible spending, deregulation, and we'l…","Oct 20, 10:38:10 PM EDT"
-1848193700909715686,"https://t.co/psdFwVL1PF","Oct 20, 10:44:50 PM EDT"
-1848195611574894752,"It’s a sure sign that someone is pushing disinformation if they use the word “disinformation” https://t.co/1nBoY4kA2z","Oct 20, 10:52:26 PM EDT"
-1848200305596645450,"Most important election in our lifetime https://t.co/BF06rdqJu3","Oct 20, 11:11:05 PM EDT"
-1848239368353231005,"What is life without purpose?
-
-But there is a purpose!
-
-It is to expand to the stars and thereby understand the Universe. https://t.co/j8egXr9ka5","Oct 21, 1:46:18 AM EDT"
-1848239579662323921,"Lawfare with diagrams! 😂 https://t.co/RA9liZbXfs","Oct 21, 1:47:09 AM EDT"
-1848239992138514825,"🤨 https://t.co/tjiLQ3mBaF","Oct 21, 1:48:47 AM EDT"
-1848240376676536822,"The various topics discussed today with the people of Pennsylvania https://t.co/4cXFcOXYUf","Oct 21, 1:50:19 AM EDT"
-1848243085467173305,"Yes https://t.co/iy7MFZoFpS","Oct 21, 2:01:04 AM EDT"
-1848248733856616551,"RT @cb_doge: Subscribing is the only way to ensure that major brand advertisers cannot demand censorship of this platform.
-
-When you subscr…","Oct 21, 2:23:31 AM EDT"
-1848249918936289319,"Absolutely https://t.co/Pt1CsvHzeq","Oct 21, 2:28:14 AM EDT"
-1848252564128596015,"RT @RuiHuang_art: https://t.co/dOrj1nzULi","Oct 21, 2:38:44 AM EDT"
-1848326917214072872,"Democrats are massively outspending Republicans, have almost the entire legacy & online media supporting them and almost all of Hollywood.
-
-And they’re still losing 🤣🤣 https://t.co/Px6ocVtQFD","Oct 21, 7:34:11 AM EDT"
-1848346527040672096,"😂 https://t.co/r6a0ft3uMi","Oct 21, 8:52:07 AM EDT"
-1848348998672822495,"It’s true https://t.co/xjCUHIxvRU","Oct 21, 9:01:56 AM EDT"
-1848350561734668542,"The Woke Mind Virus in graphical form.
-
-It is very quantifiable.
-
-Hey @jonstewart, why did you say at that dinner in Aspen that it’s fake?
-
-And why did you advocate censorship? https://t.co/11G3dDkEar","Oct 21, 9:08:09 AM EDT"
-1848353354121974029,"True https://t.co/nHiFp1E6Yf","Oct 21, 9:19:15 AM EDT"
-1848355657277170005,"The refreshing cool breeze of a wide open Overton Window https://t.co/zOGLJ8A9ax","Oct 21, 9:28:24 AM EDT"
-1848358982324256813,"New Republican voter registration last week in Pennsylvania absolutely crushed Democrat voter registration!
-
-27.7k Rep vs 12.7k Dem, a 3X difference.
-
-Midnight today is the deadline for registration. Let’s GOOOO!!!!! 🔥🔥🔥","Oct 21, 9:41:36 AM EDT"
-1848361914700611978,"Whoa https://t.co/5iTqG5uMSX","Oct 21, 9:53:16 AM EDT"
-1848362677602599322,"https://t.co/iQcXkRfShH","Oct 21, 9:56:17 AM EDT"
-1848362899804229641,"RT @america: 🚨BREAKING: Final week of Pennsylvania Voter Registration:
-
-🔴 Republican: +27,673
-🔵 Democratic: +12,722","Oct 21, 9:57:10 AM EDT"
-1848363094306938968,"You can easily register online at:
-https://t.co/GYagpUQMdu","Oct 21, 9:57:57 AM EDT"
-1848369111530918235,"RT @ajtourville: NEWS: @Cybertruck was the belle of the ball at the 2024 Paris Auto Show that ended yesterday.
-
-One attendee was overheard…","Oct 21, 10:21:51 AM EDT"
-1848371755347304826,"Model Y bestseller in Europe, probably the world https://t.co/vUp2H39Hb6","Oct 21, 10:32:22 AM EDT"
-1848373831045411278,"RT @america: The energy in Pittsburgh was 🔥
-
-Pennsylvania — Make sure to Register by midnight tonight and VOTE EARLY: https://t.co/Z0ZTl4mp…","Oct 21, 10:40:37 AM EDT"
-1848375429008073034,"Take the red pill","Oct 21, 10:46:58 AM EDT"
-1848378511720857718,"So many government agencies exist that even the government doesn’t know how many there are!
- https://t.co/ktAvCD13R2","Oct 21, 10:59:13 AM EDT"
-1848397369550733497,"😂 https://t.co/SV4N9iEmFD","Oct 21, 12:14:09 PM EDT"
-1848398370219364385,"The @xAI API is now live!","Oct 21, 12:18:07 PM EDT"
-1848398428570558690,"Try it at https://t.co/2uS53SvIQb","Oct 21, 12:18:21 PM EDT"
-1848398973368672444,"RT @elon_docs: Elon Musk: America needs a strong leader.
-
-“America needs a strong leader, where you have the perception of strength.
-
-You…","Oct 21, 12:20:31 PM EDT"
-1848400113170788770,"RT @johnkrausphotos: https://t.co/iB7ySb1J1e","Oct 21, 12:25:03 PM EDT"
-1848440632735326280,"RT @undertaker: Donald Trump Talks Pro Wrestling and What's at Stake in 2024 | Ep. #36 https://t.co/sXuQMQDgCc","Oct 21, 3:06:03 PM EDT"
-1848441161968451871,"Some background on the @xAI API https://t.co/N0y7Z0ZC9W","Oct 21, 3:08:10 PM EDT"
-1848441560800592074,"This is why https://t.co/oTKkOaUn18","Oct 21, 3:09:45 PM EDT"
-1848463905778987124,"Trump 💯 plays for @Steelers 😂 https://t.co/wTQYZzdqxX","Oct 21, 4:38:32 PM EDT"
-1848465510062489649,"🎯🎯🎯🎯 https://t.co/E0kyhpZTp6","Oct 21, 4:44:55 PM EDT"
-1848467092116254998,"If there is not radical reduction of government expenditures, then, just like an individual who has taken on too much debt, America will become de facto bankrupt.
-
-The interest on the debt is trending to rapidly absorb all tax revenue, leaving nothing fo","Oct 21, 4:51:12 PM EDT"
-1848468759700508992,"The foaming-at-the-mouth reaction from radical leftists is worth it 🤣🤣 https://t.co/ye6q9hMf9j","Oct 21, 4:57:49 PM EDT"
-1848475096240787631,"RT @JerryPikePhoto: The @CanaveralPilots getting onboard the SpaceX rocket barge this morning from Pilot Boat 3 https://t.co/fxwLwHCyFg","Oct 21, 5:23:00 PM EDT"
-1848476165024919945,"Well, I did Nazi that coming! Those fools will Goebbels anything down …
-
-I bet their pronouns are He/Himmler! https://t.co/Lwlh0wKvW4","Oct 21, 5:27:15 PM EDT"
-1848478931017486723,"💯 https://t.co/S9XgK5N2wh","Oct 21, 5:38:14 PM EDT"
-1848479124190597198,"Those are the correct lyrics https://t.co/TNMW6NUutq","Oct 21, 5:39:00 PM EDT"
-1848491533844275472,"Congratulations Shannon! https://t.co/a3VczZWBEa","Oct 21, 6:28:19 PM EDT"
-1848491668116267432,"Less than 6 hours left to register to vote in Pennsylvania!","Oct 21, 6:28:51 PM EDT"
-1848491780020572646,"https://t.co/eApZVuM6DI https://t.co/faUiIcDb36","Oct 21, 6:29:18 PM EDT"
-1848556868181836013,"Major Tom to Ground Control https://t.co/4UV76iLflI","Oct 21, 10:47:56 PM EDT"
-1848594975472091606,"RT @america: ELON MUSK: “Just in the greater Pittsburgh area, there about 60,000 registered Republicans who have requested an absentee ball…","Oct 22, 1:19:22 AM EDT"
-1848595028509168042,"RT @america: Kamala Harris cackles as she suggests the U.S. Government is “looking into” Elon Musk for allowing a person every day until El…","Oct 22, 1:19:34 AM EDT"
-1848617981896466783,"The “XOXOXO” part is fake https://t.co/EAHNdmebb8","Oct 22, 2:50:47 AM EDT"
-1848619558321459328,"What reason was given for repealing this law? https://t.co/uAmw3NiUne","Oct 22, 2:57:03 AM EDT"
-1848622653881356772,"RT @elon_docs: Elon Musk: Let's explore the galaxy!
-
-“Do you want a future where we're out there among the stars exploring the universe, or…","Oct 22, 3:09:21 AM EDT"
-1848623045058896111,"RT @billmaher: The right thinks that the left is in a very different place with free speech, and they're not wrong. https://t.co/CsaEwSjRRo","Oct 22, 3:10:54 AM EDT"
-1848624337986658526,"RT @DefiyantlyFree: 🧵Debunking the biggest Democrat and media lies about Donald Trump. Please send this to any voter on the fence that you…","Oct 22, 3:16:02 AM EDT"
-1848625504451973391,"RT @DefiyantlyFree: He has a good point. https://t.co/SfSPUZmibM","Oct 22, 3:20:40 AM EDT"
-1848628498820186291,"Yeah https://t.co/JFxNJGKImD","Oct 22, 3:32:34 AM EDT"
-1848631587736322485,"It must reach 69%, as foretold in the prophecy https://t.co/oR8p1ZiRha","Oct 22, 3:44:51 AM EDT"
-1848631967807426666,"This is insane https://t.co/bZcfZIScmB","Oct 22, 3:46:21 AM EDT"
-1848636341233340487,"RT @america: Kansas City Chiefs Kicker Harrison Butker (@buttkicker7) wants you to Vote Early!
-
-Find out when and where you can Vote in you…","Oct 22, 4:03:44 AM EDT"
-1848640849757843529,"Tragic https://t.co/CM49CXMwgu","Oct 22, 4:21:39 AM EDT"
-1848641362750558348,"RT @cb_doge: We are currently spending at rate that is bankrupting the country. The interest payments on US debt this year exceeded the ent…","Oct 22, 4:23:41 AM EDT"
-1848641597061079175,"RT @cb_doge: BREAKING: Elon Musk’s PAC has launched an 𝕏 Community focused on exposing voter fraud and election interference.
-
-A big step t…","Oct 22, 4:24:37 AM EDT"
-1848641615461523750,"RT @cb_doge: You can join the community here: https://t.co/Cc5bxtIvm9","Oct 22, 4:24:41 AM EDT"
-1848643971645341959,"RT @AdrianDittmann: Starship IFT5 Highlights https://t.co/b0oz2GG2j7","Oct 22, 4:34:03 AM EDT"
-1848765472378130513,"This is war https://t.co/tesncwEoXE","Oct 22, 12:36:51 PM EDT"
-1848766838655881624,"CCDH is a criminal organization https://t.co/iX2BRLrts9","Oct 22, 12:42:17 PM EDT"
-1848795224212197510,"Freedom of speech in the West is at stake in this election – vote for @realDonaldTrump to keep your rights! https://t.co/Le5kAFAgUJ","Oct 22, 2:35:05 PM EDT"
-1848820496378503184,"Two weeks ago, the early vote delta in Pennsylvania for 2024 was worse for Republicans than 2020. It is now dramatically better.
-
-Keep voting!! https://t.co/451c8cLrzo","Oct 22, 4:15:30 PM EDT"
-1848821461051707426,"Drag 10 friends to vote! https://t.co/xYX2d0p7si","Oct 22, 4:19:20 PM EDT"
-1848822931587273076,"The margin of the Biden PA win in 2020 was ~80k votes. Just based on the early vote delta, Pennsylvania will go Republican in 2024, but we cannot be complacent.
-
-Drag your friends & family to vote now!","Oct 22, 4:25:11 PM EDT"
-1848823094724727153,"RT @lindayaX: This is unconscionable and wrong.
-
-Evil thrives in darkness. We will continue to expose those seeking to silence our users.…","Oct 22, 4:25:49 PM EDT"
-1848825020019314743,"RT @America1stLegal: Since January 2023, Biden and Harris have imported 531,000+ illegal aliens on commercial flights.
-
-They're giving one…","Oct 22, 4:33:28 PM EDT"
-1848870835454677334,"Democrats greatly outspend Republicans, have 90% of legacy media & online media on their side, 90% of Hollywood celebs and a massive number of organizers on the ground.
-
-Frankly, it’s surprising that Republicans win at all! https://t.co/9l1NUILVl1","Oct 22, 7:35:32 PM EDT"
-1848872730386698294,"RT @MdeZegher: https://t.co/92hPCGPSYh","Oct 22, 7:43:03 PM EDT"
-1848873068929946043,"They are literally foaming at the mouth 😂 https://t.co/HlyJlIpkOU","Oct 22, 7:44:24 PM EDT"
-1848874194148462770,"Yes. But it originates in education. https://t.co/e3GYGuSkA1","Oct 22, 7:48:52 PM EDT"
-1848875059265605639,"This violates US criminal statutes against foreign interference in elections.
-
-We are going after CCDH and their donors.
-
-AND their donors. https://t.co/UyTtaE3Fzr","Oct 22, 7:52:19 PM EDT"
-1848910873966088680,"RT @sidgrao: We’ve started rolling out a completely new design of our advertising experience
-
-- AI Targeting: no more targeting knobs
-- Bid…","Oct 22, 10:14:38 PM EDT"
-1848913237787742601,"RT @TheRabbitHole84: 17.6% of professors in the Social Sciences identified as Marxists as of 2006.
-
-What do we think the number is now? htt…","Oct 22, 10:24:01 PM EDT"
-1848915294624092574,"https://t.co/6ci6EHTDvn","Oct 22, 10:32:12 PM EDT"
-1848916203508830650,"So many conspiracy theories have come true that we are running out of conspiracy theories 😂 https://t.co/xm02TAg1yH","Oct 22, 10:35:48 PM EDT"
-1848917477100818841,"This is crazy https://t.co/yHGTJKmDxb","Oct 22, 10:40:52 PM EDT"
-1848924413473001568,"RT @cb_doge: 4 people, 4 days, $1 million each —courtesy of Elon Musk for their support of the First and Second Amendments!
-
-Everyday unti…","Oct 22, 11:08:26 PM EDT"
-1848924538404503890,"Congratulations, Andy! https://t.co/QaLyMZOJvk","Oct 22, 11:08:55 PM EDT"
-1848926527016341710,"🤨 https://t.co/i9pBaI52JL","Oct 22, 11:16:50 PM EDT"
-1848927784963608855,"“Sharp as a tack” 🤣🤣 https://t.co/yynphjQ40W","Oct 22, 11:21:50 PM EDT"
-1848937304498270399,"Wild to think that Tesla’s mass flux is ~4 million tons of complex manufactured goods","Oct 22, 11:59:39 PM EDT"
-1848938534641799216,"Value for taxpayer money could be better https://t.co/PGScxk9n7z","Oct 23, 12:04:32 AM EDT"
-1848956461340414371,"Yeah https://t.co/xzNYJbT8zL","Oct 23, 1:15:46 AM EDT"
-1848970212701573320,"RT @AutismCapital: 🚨 JD Vance breaks down how the lobbying game works in DC: "It's all a big money laundering scheme." https://t.co/1CUvuOD…","Oct 23, 2:10:25 AM EDT"
-1848982609319383465,"RT @cb_doge: "If Donald Trump wins, we do have an opportunity to do kind of a once in a lifetime deregulation and reduction in the size of…","Oct 23, 2:59:41 AM EDT"
-1848983104326930732,"🤔 https://t.co/jSckFZ6A3w","Oct 23, 3:01:39 AM EDT"
-1848990933343473827,"It’s as if the 🤡 emoji came to life https://t.co/fYOG0adDwF","Oct 23, 3:32:45 AM EDT"
-1848992646712463608,"RT @Rothmus: 🎯 https://t.co/swJ9nXk0b8","Oct 23, 3:39:34 AM EDT"
-1848992923322618171,"RT @SpaceX: Flight 6 Super Heavy booster moved to the Starbase pad for testing. The move comes just one week after returning the first boos…","Oct 23, 3:40:40 AM EDT"
-1848993014028636635,"Good https://t.co/MQMNRAWffP","Oct 23, 3:41:01 AM EDT"
-1848993284024369552,"RT @qatarairways: #QatarAirways launches the world’s first Boeing 777 Starlink-equipped flight. @Starlink
-
-We are proud to be the airline t…","Oct 23, 3:42:06 AM EDT"
-1848993907109249058,"Yes https://t.co/enkORIpBTN","Oct 23, 3:44:34 AM EDT"
-1848995236925878486,"RT @alx: Elon Musk has made four Americans Millionaires in the past four days for supporting the U.S. Constitution and Democrats & legacy m…","Oct 23, 3:49:51 AM EDT"
-1848996053607190586,"RT @MarioNawfal: 🧵🇬🇧THE "KILL MUSK'S TWITTER" FIASCO: A TANGLED WEB OF FOREIGN INFLUENCE, CENSORSHIP, AND ETHICS
-
-1/ The leaked CCDH docume…","Oct 23, 3:53:06 AM EDT"
-1849111934815400136,"https://t.co/HLGv6SJzDa","Oct 23, 11:33:34 AM EDT"
-1849115330544881933,"https://t.co/eMiECOiPji","Oct 23, 11:47:04 AM EDT"
-1849118173209182441,"A common story.
-
-So many people I know have been assaulted on the street or had their homes or cars robbed. Out of dozens of stories, there was not one where the criminals were sent to prison. Not one. Zero.
-
-Enough is enough. https://t.co/cW4vsLEWgl","Oct 23, 11:58:22 AM EDT"
-1849118808704978998,"This is a crisis https://t.co/eKiURgMz2y","Oct 23, 12:00:53 PM EDT"
-1849119295722455063,"Those against voter ID in America are the ones who want to commit election fraud https://t.co/hSHXSLGVMK","Oct 23, 12:02:49 PM EDT"
-1849119588895928806,"Our system is broken https://t.co/WslAIex593","Oct 23, 12:03:59 PM EDT"
-1849122750125990232,"If they are able to do this, there will be no swing states next election https://t.co/CuEdmywYg4","Oct 23, 12:16:33 PM EDT"
-1849150743863067010,"If given 4 more years to do it, the big govt machine will legalize vast numbers of illegals, making all swing states permanently deep blue, just like they did with California.
-
-Every major Democrat politician has stated that their goal is to legalize all ","Oct 23, 2:07:47 PM EDT"
-1849151045886415203,"The Atlantic is an evil publication https://t.co/OAEsCNor98","Oct 23, 2:08:59 PM EDT"
-1849165169559294125,"RT @NASA: LIVE: NASA's @SpaceX #Crew8 mission is ready for the journey home. Watch as the @Space_Station crew closes the hatch of the Drago…","Oct 23, 3:05:06 PM EDT"
-1849165393279197265,"RT @premium: Our updated Creator Revenue Sharing program has received overwhelmingly positive feedback.
-
-Creators are earning more thanks t…","Oct 23, 3:06:00 PM EDT"
-1849165771404194289,"🤔 https://t.co/FFs7adwklF","Oct 23, 3:07:30 PM EDT"
-1849193294062027126,"https://t.co/xQhdySjj9b","Oct 23, 4:56:52 PM EDT"
-1849227594690068628,"Exactly https://t.co/79HpCwzpJx","Oct 23, 7:13:10 PM EDT"
-1849231786901201075,"More Starlinks to orbit https://t.co/Ly4ndcxLLA","Oct 23, 7:29:49 PM EDT"
-1849232199071285396,"RT @eyeslasho: The results of a government-funded research project that showed no mental health improvements for "gender-distressed" childr…","Oct 23, 7:31:27 PM EDT"
-1849232299705156080,"RT @america: Democrats are bringing illegals deliberately into swing states.
-
-Then they will try to grant them amnesty.
-
-We will no longer…","Oct 23, 7:31:51 PM EDT"
-1849238292518363407,"!! https://t.co/lQnUqPPqq2","Oct 23, 7:55:40 PM EDT"
-1849239011757601109,"RT @cb_doge: "The future is autonomous electric vehicles." 一 @elonmusk https://t.co/RCrHYD9Dh7","Oct 23, 7:58:32 PM EDT"
-1849239668082257927,"RT @niccruzpatane: Elon Musk:
-
-There isn’t another car company TRYING to do what we’re doing. 🤣🤣 https://t.co/xDISMw10eV","Oct 23, 8:01:08 PM EDT"
-1849239846713545181,"Major incitement to violence against @realDonaldTrump https://t.co/YR6IZWeHpC","Oct 23, 8:01:51 PM EDT"
-1849240225639493924,"Awesome 😎 https://t.co/vghr2OEKZj","Oct 23, 8:03:21 PM EDT"
-1849240506875981939,"Glad we could help https://t.co/4KSnSbIdBv","Oct 23, 8:04:28 PM EDT"
-1849241582501003484,"Progress https://t.co/i30NdTwCVl","Oct 23, 8:08:45 PM EDT"
-1849242139571765248,"🤣🤣 https://t.co/8d14rgcmJm","Oct 23, 8:10:57 PM EDT"
-1849242818767937571,"🎯 https://t.co/qEIyzAoiSC","Oct 23, 8:13:39 PM EDT"
-1849243365533171741,"Something special about the Falcon Heavy simultaneous side booster landings
- https://t.co/KPXrvtw5jN","Oct 23, 8:15:50 PM EDT"
-1849243990060912951,"Starship will lengthen in the next few years.
-
-10 years from now, there will probably be a much wider diameter Starship too. https://t.co/jIw2jstNOt","Oct 23, 8:18:19 PM EDT"
-1849244289114784062,"The vibe shift towards @realDonaldTrump is massive https://t.co/ibbu9KGo0E","Oct 23, 8:19:30 PM EDT"
-1849245464895672386,"RT @triggerpod: 33 Reasons to Vote For Trump - @BillAckman: "The world is on fire!"
-
-Our amazing interview is available right now, here on…","Oct 23, 8:24:10 PM EDT"
-1849245504561135704,"RT @stevenmarkryan: They’re FURIOUS Elon Musk Is Giving Away Millions (but he won’t stop)
-
-This is Elon Musk's most recent America talk, wi…","Oct 23, 8:24:20 PM EDT"
-1849245853372101090,"Crazy https://t.co/VO3XpV56wf","Oct 23, 8:25:43 PM EDT"
-1849246066232942817,"Congrats @SpaceX team on the 100th successful launch this year! https://t.co/UJJ55mHDOy","Oct 23, 8:26:34 PM EDT"
-1849287315115712738,"Cool https://t.co/tOA1CSUcdM","Oct 23, 11:10:28 PM EDT"
-1849318017060257817,"RT @Tesla: Produced our 7 millionth vehicle at Fremont factory https://t.co/cYhxVxADEe","Oct 24, 1:12:28 AM EDT"
-1849382167841013800,"RT @TheChiefNerd: BILL ACKMAN: “Elon Musk makes the argument that this is the last election because of the number of migrants that have com…","Oct 24, 5:27:23 AM EDT"
-1849397399929901339,"RT @cb_doge: "The reason why I'm involved in politics this time, is because this time it's a fork in the road. I think we're doomed if Trum…","Oct 24, 6:27:54 AM EDT"
-1849398079163916766,"RT @JudiciaryGOP: 🚨 INSANE: Biden and Kamala Harris’s DHS greenlight refugee applications for Venezuelan gang members.
-
-GANG MEMBERS.
-
-In…","Oct 24, 6:30:36 AM EDT"
-1849473683456430589,"RT @SpeakerJohnson: 🚨BREAKING NEWS: There’s now more evidence that illicit overseas donors are using the corrupt Democrat donor platform Ac…","Oct 24, 11:31:02 AM EDT"
-1849474432018067661,"RT @elon_docs: Elon Musk: Solar energy exceeds all other energy by a factor of a trillion.
-
-“The real massive energy source in our solar sy…","Oct 24, 11:34:00 AM EDT"
-1849474533352452535,"😂 https://t.co/XDzdFnp5BA","Oct 24, 11:34:24 AM EDT"
-1849474857861525558,"RT @america: Just a reminder that Kamala Harris raised her hand when asked if she would be in favor of decriminalizing crossing the border…","Oct 24, 11:35:42 AM EDT"
-1849475072974872721,"Then why do “Democrats” oppose the will of the people? https://t.co/nEVSwGBpcp","Oct 24, 11:36:33 AM EDT"
-1849481642022486494,"True https://t.co/g8oIn8amb7","Oct 24, 12:02:39 PM EDT"
-1849484892159299718,"Massive shift https://t.co/oKH8bDpetz","Oct 24, 12:15:34 PM EDT"
-1849485480364216605,"Wow https://t.co/9B2g1BT2po","Oct 24, 12:17:54 PM EDT"
-1849485682567471525,"RT @MarioNawfal: ELON: IMMIGRANTS SHOULD BE ASSETS TO SOCIETY
-
-"Obviously, as someone who's an immigrant, I'm pro-immigrant.
-
-I just want t…","Oct 24, 12:18:43 PM EDT"
-1849486097598017701,"RT @greggertruck: I'm 6'3" ish.. maybe more. @_kylee_23 is nearly 6' tall.
-
-This is how I fit in the Cybercab. I thought it felt very open…","Oct 24, 12:20:22 PM EDT"
-1849488348966195369,"😂🔥 https://t.co/8TKwUprA42","Oct 24, 12:29:18 PM EDT"
-1849489118390276492,"SpaceX & Tesla continue to execute extremely well, despite being large companies","Oct 24, 12:32:22 PM EDT"
-1849507064231706877,"Worth reading https://t.co/Hhsfshj6uD","Oct 24, 1:43:40 PM EDT"
-1849508065999266054,"RT @america: Americans support Common Sense Election Integrity Measures","Oct 24, 1:47:39 PM EDT"
-1849508144759832686,"Insane https://t.co/NOywOWVMHM","Oct 24, 1:47:58 PM EDT"
-1849508388918763643,"Yes, vote for @realDonaldTrump! https://t.co/eRv3pByiy5","Oct 24, 1:48:56 PM EDT"
-1849532708743151801,"Haven’t had a chance to watch it yet, but you may find this interesting https://t.co/af8w9JkIic","Oct 24, 3:25:35 PM EDT"
-1849532866318979305,"Major vibe shift! https://t.co/HkKujE5tKT","Oct 24, 3:26:12 PM EDT"
-1849533377449459833,"Major progress with early in-person voting in Nevada! https://t.co/felIobFiSP","Oct 24, 3:28:14 PM EDT"
-1849537362264781266,"Please make sure to get your friends & family to vote today!
-
-You can do early voting in person in many states, including Pennsylvania. https://t.co/BeNDj9mbNM","Oct 24, 3:44:04 PM EDT"
-1849633062172361051,"Wow https://t.co/KzIE1aOJcN","Oct 24, 10:04:21 PM EDT"
-1849637399418327250,"Wow https://t.co/Ome3g2i77j","Oct 24, 10:21:35 PM EDT"
-1849638631155302432,"Birth rates continue to collapse https://t.co/ppjIB2DKQl","Oct 24, 10:26:28 PM EDT"
-1849639215199650279,"Wikipedia is controlled by far-left activists.
-
-People should stop donating to them. https://t.co/Cjq2diadFY","Oct 24, 10:28:48 PM EDT"
-1849640138131005644,"RT @TrumpWarRoom: Crooked Hillary, increasingly bitter about the fact that she will never be president, says that everybody who attends Pre…","Oct 24, 10:32:28 PM EDT"
-1849641177651478991,"Voter ID should be required nationwide https://t.co/k1VgA8S1oH","Oct 24, 10:36:36 PM EDT"
-1849649153380679878,"Congratulations, Brian of Wisconsin! https://t.co/YPoNEU4Juc","Oct 24, 11:08:17 PM EDT"
-1849649228257296839,"Congratulations, Jason of Michigan! https://t.co/lV1EWLRiH6","Oct 24, 11:08:35 PM EDT"
-1849660835188396179,"Finally broke 4 mins for T150 clear! yay https://t.co/Oz8rVbTCP5","Oct 24, 11:54:42 PM EDT"
-1849702232872321523,"https://t.co/2OJ2SIGhF6","Oct 25, 2:39:12 AM EDT"
-1849702252274950543,"RT @NASA: LIVE: #Crew8 returns home from their mission on the @Space_Station. Splashdown of the @SpaceX Dragon capsule is expected at 3:29a…","Oct 25, 2:39:17 AM EDT"
-1849702750319411648,"RT @nypost: The Post endorses Donald Trump for president — the clear choice for a better future https://t.co/xGnYQzI6xK https://t.co/RwLkd2…","Oct 25, 2:41:16 AM EDT"
-1849703097301598618,"RT @MarioNawfal: ELON: WITH TRUMP, WE CAN UNLOCK THE GIANT THAT IS AMERICA
-
-“With a Trump presidency, we're going to get secure borders, sa…","Oct 25, 2:42:38 AM EDT"
-1849708182173892765,"Thanks! https://t.co/7NVaiMJYPT","Oct 25, 3:02:51 AM EDT"
-1849708438437363952,"RT @elon_docs: Elon Musk: I'm pro-immigration, but those who come here should be assets to society.
-
-“Obviously, as someone who's an immigr…","Oct 25, 3:03:52 AM EDT"
-1849708786736562191,"https://t.co/1E0RSxzint","Oct 25, 3:05:15 AM EDT"
-1849709247845843021,"RT @elon_docs: Elon Musk: My grandfather fought to stop the Nazis.
-
-“Think of all the people who fought to destroy Nazism. The vast majorit…","Oct 25, 3:07:05 AM EDT"
-1849715079639622002,"RT @SpaceX: Dragon’s four main parachutes have deployed https://t.co/X62W8z8JyB","Oct 25, 3:30:15 AM EDT"
-1849716469761966131,"RT @SpaceX: Dragon reentering Earth's atmosphere ahead of splashing down off the coast of Florida https://t.co/4CE8dtUeDw","Oct 25, 3:35:47 AM EDT"
-1849716643422937487,"Astronauts safely back on Earth https://t.co/8iW3D3gFgD","Oct 25, 3:36:28 AM EDT"
-1849718117297246377,"The Dems have imported massive numbers of illegals to swing states. Triple digit increases over the past 4 years!
-
-Their STATED plan is to give them citizenship as soon as possible, turning all swing states Dem.
-
-America would then become a one-party, de","Oct 25, 3:42:19 AM EDT"
-1849718349925843385,"Amazing that this happened recently! https://t.co/73YvsSXcYU","Oct 25, 3:43:15 AM EDT"
-1849719837691351494,"RT @Teslaconomics: If you won $1M from Elon Musk for signing the petition that supports the freedom of speech (1st amendment) and the right…","Oct 25, 3:49:10 AM EDT"
-1849720043527077895,"RT @eyeslasho: Most Americans now want a border wall, most Americans now want the mass deportation of illegals, most Americans now want pho…","Oct 25, 3:49:59 AM EDT"
-1849721577522463045,"RT @elon_docs: Elon Musk: There are no lords and peasants at Tesla. Everyone eats at the same table.
-
-“I actually know the people on the li…","Oct 25, 3:56:04 AM EDT"
-1849722041856823365,"RT @cb_doge: 🇺🇸🇺🇸 America First 🇺🇸🇺🇸 https://t.co/c2aFUGZYBW","Oct 25, 3:57:55 AM EDT"
-1849722395483156867,"RT @Jason: JK was correct all along: we shouldn’t run irreversible, science experiments on kids.
-
-now that the science is confirming she’s…","Oct 25, 3:59:19 AM EDT"
-1849722615319220346,"Unfair https://t.co/eC7Pb1ypr5","Oct 25, 4:00:12 AM EDT"
-1849722963358257641,"https://t.co/qjkpzwafOV","Oct 25, 4:01:35 AM EDT"
-1849723154207551516,"RT @charliekirk11: TULSI GABBARD: “How can we trust a person to uphold her oath to support and defend the Constitution of the United States…","Oct 25, 4:02:20 AM EDT"
-1849723278346289384,"RT @amuse: FREE SPEECH: Efforts by Elon Musk and Trump to sound the alarm about Democrat censorship are working. The second most important…","Oct 25, 4:02:50 AM EDT"
-1849723948394742174,"https://t.co/CP6zqDHryc","Oct 25, 4:05:30 AM EDT"
-1849724383209902304,"Yup https://t.co/taJPjMHnZr","Oct 25, 4:07:13 AM EDT"
-1849725782719070297,"Massive numbers flown directly to swing states and put on the fast track to citizenship.
-
-Voter importation.
-
-It’s a sure way for the Democratic Party to achieve permanent victory. Diabolically smart. https://t.co/1lpqSRNeLa","Oct 25, 4:12:47 AM EDT"
-1849726177084109038,"RT @DefiyantlyFree: The Party told you to reject the evidence of your eyes and ears. It was their final, most essential command. George Orw…","Oct 25, 4:14:21 AM EDT"
-1849726818724815165,"I see more and more stories like this https://t.co/oTqGdIQ5Mn","Oct 25, 4:16:54 AM EDT"
-1849727660399935963,"Almost every country on Earth requires voter ID. Why not America? https://t.co/JMod53O56Q","Oct 25, 4:20:15 AM EDT"
-1849727865304297682,"RT @america: Donald Trump encourages Americans to Vote Early
-
- https://t.co/FyCED7SDYd","Oct 25, 4:21:04 AM EDT"
-1849728433477255594,"Starship rocket booster with human for scale https://t.co/CcCt1V7Uw4","Oct 25, 4:23:19 AM EDT"
-1849730666738614609,"Bias https://t.co/dOl7vtAX0p","Oct 25, 4:32:11 AM EDT"
-1849770531555508319,"I wish they would https://t.co/AF881XMd09","Oct 25, 7:10:36 AM EDT"
-1849771417509998905,"RT @Rothmus: 🎯 @beinlibertarian https://t.co/W1WQ7RuoOx","Oct 25, 7:14:07 AM EDT"
-1849862303614894223,"Hey @jimmy_wales, this guy is distorting tens of thousands of wiki pages. Guys like him are destroying what you created.
-
-https://t.co/GfHbXB7Cjz","Oct 25, 1:15:16 PM EDT"
-1849916236211290546,"Congratulations, Shannon of Pennsylvania! https://t.co/yt34f5aGML","Oct 25, 4:49:35 PM EDT"
-1849921847195992331,"RT @lexfridman: I hope this election is not a close one, for everyone's sake.
-
-Go vote.","Oct 25, 5:11:52 PM EDT"
-1849940279031365707,"🇺🇸🇺🇸🇺🇸 YES 🇺🇸🇺🇸🇺🇸 https://t.co/tvmjyUVPO2","Oct 25, 6:25:07 PM EDT"
-1849956030282859009,"Virtual town hall regarding the election!
- https://t.co/PMJkxtgZke","Oct 25, 7:27:42 PM EDT"
-1849966695361937611,"RT @SpaceX: The Wall Street Journal published yet another incredibly misleading story about @Starlink based upon completely unsubstantiated…","Oct 25, 8:10:05 PM EDT"
-1849977472550568163,"Sunlight is the best disinfectant https://t.co/QcNEvrrgFS","Oct 25, 8:52:55 PM EDT"
-1849979388529607012,"The @joerogan conversation with @realDonaldTrump drops tonight. Can’t wait!
- https://t.co/ZWJtoIyCx9","Oct 25, 9:00:31 PM EDT"
-1850047696209576379,"Congratulations, Marie of Nevada! https://t.co/usYW0nYq1k","Oct 26, 1:31:57 AM EDT"
-1850048107356242132,"Exactly https://t.co/DTg6m6xtpN","Oct 26, 1:33:35 AM EDT"
-1850048975984001332,"RT @TheRabbitHole84: “Crossings are down since Donald Trump left office.”
-
-— Tim Walz https://t.co/USk3DlZNVa","Oct 26, 1:37:02 AM EDT"
-1850056362325082608,"RT @ajtourville: The legacy media has become a cancer on civilization.
-
-Those in the Tesla community have witnessed this first-hand long be…","Oct 26, 2:06:23 AM EDT"
-1850057404332847387,"RT @VigilantFox: The world’s richest man just accomplished what Kamala Harris never could—receive unscripted questions from everyday Americ…","Oct 26, 2:10:32 AM EDT"
-1850057557018095874,"I’m just spittin’ facts here https://t.co/iQs2S7sWUU","Oct 26, 2:11:08 AM EDT"
-1850057747137442112,"RT @VigilantFox: In his closing thoughts, Musk urged Americans to “vote like your life depends on it” because “it does.”
-
-“I’ve never said…","Oct 26, 2:11:53 AM EDT"
-1850058049022504990,"Wow https://t.co/Bp2C53xT3r","Oct 26, 2:13:05 AM EDT"
-1850058311195931043,"Yeah https://t.co/mv7xLf6Z0a","Oct 26, 2:14:08 AM EDT"
-1850059652106539058,"RT @johnkrausphotos: COVER, @AviationWeek physical edition: Game, Set and Catch
-
-Great to add another hard-copy cover to the list - thanks…","Oct 26, 2:19:28 AM EDT"
-1850066659803119812,"💯 https://t.co/Uzhr9GgL5L","Oct 26, 2:47:18 AM EDT"
-1850067512605671916,"If anyone needed further proof that I strongly support freedom of speech, please note that even a nutcase like Olbermann, who is literally calling for my arrest and government seizure of my companies, is in no way being censored https://t.co/rgGDkt856a","Oct 26, 2:50:42 AM EDT"
-1850075126919987218,"RT @cb_doge: People call for Elon Musk’s illegal arrest on his own platform, yet they're not silenced or suppressed.
-
-That’s real free spee…","Oct 26, 3:20:57 AM EDT"
-1850193690418872536,"RT @JTLonsdale: "The rich are getting richer, the poor, poorer, and the wealthy don't pay their fair share."
-
-We hear this ad nauseam from…","Oct 26, 11:12:05 AM EDT"
-1850194283984543833,"https://t.co/syJoQOp3dk","Oct 26, 11:14:26 AM EDT"
-1850197574348869656,"The extreme left wing bias of legacy media is because journalists these days are extremely left wing.
-
-They can’t even handle their newspapers not endorsing a candidate and remaining neutral! https://t.co/h1u36Q8ZcY","Oct 26, 11:27:31 AM EDT"
-1850250645993058591,"😂 https://t.co/Y9IFy5t8K6","Oct 26, 2:58:24 PM EDT"
-1850251178074100034,"Department of Government Efficiency https://t.co/YBjwr5bwKT","Oct 26, 3:00:31 PM EDT"
-1850251466805854345,"💯 https://t.co/FOpOaFKgqc","Oct 26, 3:01:40 PM EDT"
-1850257941913596388,"RT @america: There will be a Town Hall with Elon Musk in Lancaster, Pennsylvania tonight at 7pm ET
-
-Sign up & More info here: https://t.co/…","Oct 26, 3:27:24 PM EDT"
-1850260123589247249,"🇺🇸🇺🇸 Madison Square Garden 🇺🇸🇺🇸 https://t.co/nJGg2xLOxd","Oct 26, 3:36:04 PM EDT"
-1850261531482788132,"The woke mind virus is precisely measurable https://t.co/6WIIMqCUAq","Oct 26, 3:41:39 PM EDT"
-1850262171680477202,"The sharp spike matches when the gun emoji was nerfed 🔫 🔫🔫","Oct 26, 3:44:12 PM EDT"
-1850262431584723294,"Wokipedia has a possibly terminal case of the woke mind virus. Reddit too. https://t.co/yjfzE6lEyw","Oct 26, 3:45:14 PM EDT"
-1850267586988216371,"Inflation … inflation everywhere! https://t.co/qY2s5pqsgd","Oct 26, 4:05:43 PM EDT"
-1850267660917043320,"RT @Starlink: The Starlink team turned on service for our first paying customer four years ago today!
-
-Since then, we have connected 4M+ p…","Oct 26, 4:06:01 PM EDT"
-1850299037947461979,"Trust those who return the shopping cart https://t.co/u7s7CNdsxq","Oct 26, 6:10:42 PM EDT"
-1850299694347633086,"RT @texas_lizard: Everything we are is on the line... https://t.co/9RCAuvz680","Oct 26, 6:13:18 PM EDT"
-1850299798798438519,"Yeah https://t.co/86Ao722YDr","Oct 26, 6:13:43 PM EDT"
-1850299904792658290,"Exactly https://t.co/FShP0ZdIOO","Oct 26, 6:14:08 PM EDT"
-1850301826941501677,"https://t.co/8eYm6lowI8","Oct 26, 6:21:47 PM EDT"
-1850314255956169063,"Big numbers https://t.co/sCOleysD7b","Oct 26, 7:11:10 PM EDT"
-1850314954530034070,"Doesn’t it seem odd that the same people who demanded that everyone have vaccine ID are now insisting that voter ID should NOT be required? https://t.co/T2yyCNXN2p","Oct 26, 7:13:57 PM EDT"
-1850315037648556484,"RT @TheRabbitHole84: Woke has been defined many times at this point. For those still needing a definition a good one is attached. https://t…","Oct 26, 7:14:16 PM EDT"
-1850323110614184252,"Don’t just open the Overton Window, knock down the whole damn wall!","Oct 26, 7:46:21 PM EDT"
-1850327004010160253,"RT @KlendathuCap: "What was the test? Was it like some long complicated exam or something?"
-
-"Oh Joe it was actually quite simple. You see,…","Oct 26, 8:01:49 PM EDT"
-1850327415345533386,"Going on stage in Pennsylvania again tonight!
- https://t.co/09zEleg9jh","Oct 26, 8:03:27 PM EDT"
-1850327879810510932,"MASSIVE increases in illegals in swing states during the Biden-Harris administration https://t.co/HYkXUon0EG","Oct 26, 8:05:18 PM EDT"
-1850379682954236261,"So NOW he cares about illegals 🤣🤣 https://t.co/8JqQlu4Nyq","Oct 26, 11:31:09 PM EDT"
-1850383599981228179,"Great idea https://t.co/jLaY1Zg9Vq","Oct 26, 11:46:43 PM EDT"
-1850388472575504795,"RT @america: ELON MUSK: “I’m wearing this jacket that was given to me by the Space Force it’s got Star Trek Enterprise on it… we want to ma…","Oct 27, 12:06:05 AM EDT"
-1850397516568617019,"They are evil https://t.co/4LRRztVN57","Oct 27, 12:42:01 AM EDT"
-1850397807397478771,"The truth will set you free https://t.co/uKQtqzqkuq","Oct 27, 12:43:10 AM EDT"
-1850397966428704900,"Yup https://t.co/B9f7FIjyLH","Oct 27, 12:43:48 AM EDT"
-1850398257035329922,"RT @DefiyantlyFree: As I have watched the last four years play out, I have come to realize that 2020 was a necessary evil.
-
-2020 was the wa…","Oct 27, 12:44:57 AM EDT"
-1850400989385216013,"The Sun is ~99.8% of the entire mass of the solar system. Jupiter and Saturn are ~0.2% and everything else is a rounding error.
-
-Moreover, the Sun is >99.99% of energy output! Everything else combined is an inaudible background noise. https://t.co/0HHa","Oct 27, 12:55:49 AM EDT"
-1850408670120554808,"Yup https://t.co/aZZJOVtapR","Oct 27, 1:26:20 AM EDT"
-1850410433707946124,"Many Starships will go to Mars in 2 years, when the transit window opens again.
-
-The first wave will be without people and the second wave, 26 months later, with people, provided the first wave does not increment the crater count on Mars. https://t.co/w9","Oct 27, 1:33:21 AM EDT"
-1850410737618817420,"Legacy journalism is dead https://t.co/a4AYcA5n3x","Oct 27, 1:34:33 AM EDT"
-1850422549345165435,"Good collation https://t.co/AWZZ3Lrcxl","Oct 27, 2:21:29 AM EDT"
-1850424273401192705,"Kamala is Cruel
- https://t.co/W2hxGAENSI","Oct 27, 2:28:20 AM EDT"
-1850424719301906595,"Just listen to what she says and how she says it","Oct 27, 2:30:06 AM EDT"
-1850426893159321858,"Time to clean house https://t.co/NvnwFDb8cm","Oct 27, 2:38:45 AM EDT"
-1850427135019635145,"Common sense https://t.co/X6NRvocZEZ","Oct 27, 2:39:42 AM EDT"
-1850427548640874937,"RT @SawyerMerritt: Elon on Tesla stock's performance this week:
-
-"Yeah, it was a good week. The stock market is wild. I think Warren Buffet…","Oct 27, 2:41:21 AM EDT"
-1850427715783999755,"RT @AutismCapital: 🚨ELON MUSK ON TRAVELING TO MARS:
-
-"You can travel to Mars roughly every two years. We're actually at a planetary alignme…","Oct 27, 2:42:01 AM EDT"
-1850427827339894827,"Yes! https://t.co/wsellszKvm","Oct 27, 2:42:27 AM EDT"
-1850428081682383190,"It is a financial emergency https://t.co/N1XOoxylu7","Oct 27, 2:43:28 AM EDT"
-1850430101516660840,"Biden’s puppetmasters are at fault. He is just the puppet who talks the words on the teleprompter. https://t.co/hR4Qx8Ge0b","Oct 27, 2:51:30 AM EDT"
-1850431392116511114,"There is a million dollar giveaway every day through November 5th just for signing a petition in support of the Constitutional rights to free speech and bear arms! https://t.co/Mn9uH5eMNA","Oct 27, 2:56:37 AM EDT"
-1850431808908796026,"🔥🔥 https://t.co/nXIsDbms2x","Oct 27, 2:58:17 AM EDT"
-1850432699216892142,"RT @ajtourville: Elon Musk: ALL FEDERAL SPENDING IS TAXATION.
-
-All federal spending is taxation, whether it's direct taxation or indirect t…","Oct 27, 3:01:49 AM EDT"
-1850433258275668051,"The Sumerians crushed it on firsts https://t.co/TuXc9bapzN","Oct 27, 3:04:02 AM EDT"
-1850433977863020807,"RT @iam_smx: Today at a town hall in Lancaster, Pennsylvania, Elon Musk wore a jacket gifted to him by the United States Air Force Academy.…","Oct 27, 3:06:54 AM EDT"
-1850434341223981318,"RT @ajtourville: NEWS: President Donald Trump on the Joe Rogan Experience talking about Elon Musk and @SpaceX Starship Flight 5.
-
-“Elon is…","Oct 27, 3:08:21 AM EDT"
-1850435612932747385,"Exactly https://t.co/akOwExskL8","Oct 27, 3:13:24 AM EDT"
-1850435777068409174,"Chuck Norris level https://t.co/zJ1MYI7LJJ","Oct 27, 3:14:03 AM EDT"
-1850438280430457011,"But all the legacy (formerly “mainstream”) media said there was no fraud.
-
-They lied. https://t.co/wX0eACmiGi","Oct 27, 3:24:00 AM EDT"
-1850441141948125559,"RT @DefiyantlyFree: Trump Rogan interview was at 7 million views when this video was done, now it’s at 18 million views. Must listen. https…","Oct 27, 3:35:22 AM EDT"
-1850443636166500698,"Citizen journalism is infinitely superior https://t.co/7FnYzeWoO2","Oct 27, 3:45:17 AM EDT"
-1850444510024650836,"The left left us behind https://t.co/AMTcDY5ql6","Oct 27, 3:48:45 AM EDT"
-1850447098430492941,"Write your thoughts & observations here! https://t.co/zTXb9LXbdV","Oct 27, 3:59:02 AM EDT"
-1850449756352307280,"https://t.co/OjwToJ8mB6","Oct 27, 4:09:36 AM EDT"
-1850450336483352792,"Anomalies in the matrix were needed https://t.co/rgFixyj9O1","Oct 27, 4:11:54 AM EDT"
-1850453309074633007,"And give responsibility for streamlining legal immigration management to a competent company, as the bureaucracy is utterly broken.
-
-It is literally easier for a serial killer to get into America than a Nobel Prize winner! https://t.co/RMavZ6mr4P","Oct 27, 4:23:43 AM EDT"
-1850453589975581006,"RT @ajtourville: Elon Musk: Almost every country on Earth has Voter ID requirements and we don’t — Why?
-
-It's my firm opinion that those w…","Oct 27, 4:24:50 AM EDT"
-1850455133206769692,"RT @spacesudoer: Prelude to Mars! https://t.co/jeFperl2Rz","Oct 27, 4:30:58 AM EDT"
-1850455769373667629,"Most important message of the night is to get everyone you know to vote and vote now!
-
-There is always some chance of a work or personal emergency or some external factor on Nov 5th that prevents people from voting. https://t.co/ngSeJbAdjf","Oct 27, 4:33:29 AM EDT"
-1850456782914679012,"Yup, it’d be a 3 hr train wreck https://t.co/C1femAwZbr","Oct 27, 4:37:31 AM EDT"
-1850457017900519620,"Yes!! https://t.co/fvxT79uQwx","Oct 27, 4:38:27 AM EDT"
-1850461732604453180,"Let’s turn even the blue states red!","Oct 27, 4:57:11 AM EDT"
-1850462045335933266,"Bingo https://t.co/cEQg9IpL1M","Oct 27, 4:58:26 AM EDT"
-1850464367805972892,"Watch the @realDonaldTrump conversation with Joe Rogan
- https://t.co/9dmCpiHo8B","Oct 27, 5:07:39 AM EDT"
-1850467283371516411,"Let that sink in! https://t.co/It4dPAKSk7","Oct 27, 5:19:15 AM EDT"
-1850557059776876827,"For sure.
-
-Obviously doesn’t make sense to count known fraudulent ballots.
-
-What the heck is going? https://t.co/16v4LxXrO0","Oct 27, 11:15:59 AM EDT"
-1850557269882056946,"RT @MarioNawfal: 🇺🇸Is Kamala losing control of her crowds?
-
-She was interrupted yet again during a speech in a Philadelphia church. Just la…","Oct 27, 11:16:49 AM EDT"
-1850567314250301610,"https://t.co/LYRgoi7Njt","Oct 27, 11:56:44 AM EDT"
-1850600002500133093,"I forgetting he’s Prez & so does he 🤣🤣 https://t.co/sEemFkbYrb","Oct 27, 2:06:37 PM EDT"
-1850627664392175957,"RT @beinlibertarian: https://t.co/mAwQc1pnRk","Oct 27, 3:56:32 PM EDT"
-1850631137850269794,"RT @BillyM2k: elon buying twitter 2 years ago made the world worse… for hateful authoritarian leftists who can only convince people of thei…","Oct 27, 4:10:20 PM EDT"
-1850644788191912100,"https://t.co/VePF3EVr4b","Oct 27, 5:04:35 PM EDT"
-1850645253516149086,"🇺🇸🇺🇸🇺🇸 https://t.co/csIdn30GMa","Oct 27, 5:06:26 PM EDT"
-1850653600273637618,"https://t.co/D01bkG1R3c","Oct 27, 5:39:36 PM EDT"
-1850654889527087263,"RT @VivekGRamaswamy: With DJT @ MSG https://t.co/gTKHlfqNrI","Oct 27, 5:44:43 PM EDT"
-1850657224252690460,"🇺🇸🇺🇸🇺🇸🔥🔥🔥🇺🇸🇺🇸🇺🇸 https://t.co/Wu3bvvZOce","Oct 27, 5:54:00 PM EDT"
-1850658307540705658,"A lot people still believe the Trump/Russia hoax and have no idea that the Steele Dossier was a scam funded by Hillary’s campaign https://t.co/HmLzzE6dgR","Oct 27, 5:58:18 PM EDT"
-1850660124823523466,"The legacy broadcast networks are using public spectrum, but act as an extension of the Democratic Party.
-
-No more free lunch for them. https://t.co/fDR8S3d4Gw","Oct 27, 6:05:32 PM EDT"
-1850663360355844099,"At the @realDonaldTrump / @JDVance rally at Madison Square Garden!
- https://t.co/gEcj39mXIp","Oct 27, 6:18:23 PM EDT"
-1850667483935686853,"https://t.co/f1QTGwBrOo","Oct 27, 6:34:46 PM EDT"
-1850700452805136479,"https://t.co/aVk3rLClpT","Oct 27, 8:45:46 PM EDT"
-1850700544379076723,"RT @AutismCapital: 🚨ELON MUSK: "I think we can rip out at least 2T out of the wasted 6.5T Harris/Biden budget. All government spending is t…","Oct 27, 8:46:08 PM EDT"
-1850701920987455717,"LET’S GOOOO!!!!
- https://t.co/2ifjLk9iIT","Oct 27, 8:51:36 PM EDT"
-1850702974202298662,"⚔️🇺🇸⚔️ BATTTTLE CRYYYY ⚔️🇺🇸⚔️ https://t.co/umEMondUn2","Oct 27, 8:55:48 PM EDT"
-1850706090347970697,"Imagine an all-powerful woke AI https://t.co/TUH3uuOkxU","Oct 27, 9:08:11 PM EDT"
-1850706464848925025,"RT @brian_armstrong: Btw - as usual @balajis was early but right on this
-
-He was the first one i saw call out this trend. Probably 7-8 year…","Oct 27, 9:09:40 PM EDT"
-1850707626234871927,"😂🎯 https://t.co/4k1pwf7aR5","Oct 27, 9:14:17 PM EDT"
-1850707904590176612,"RT @AutismCapital: 🚨ELON MUSK: "This is a REAL election battle. You need to get your friends to get out and VOTE EARLY. We're going to be p…","Oct 27, 9:15:23 PM EDT"
-1850709391533588803,"Extremely troubling https://t.co/jOLTDaYrgq","Oct 27, 9:21:18 PM EDT"
-1850711847000838414,"This needs to be investigated! https://t.co/UPr6plHOkn","Oct 27, 9:31:03 PM EDT"
-1850713080386224237,"To the stars https://t.co/sX38UVILCG","Oct 27, 9:35:57 PM EDT"
-1850713527012503755,"https://t.co/FWpW6KYz6k","Oct 27, 9:37:44 PM EDT"
-1850717006783287720,"RT @teslaownersSV: To the Stars, Mars and Beyond. https://t.co/yOJ1l8SF9h","Oct 27, 9:51:33 PM EDT"
-1850718171214365041,"RT @teslaownersSV: The future should look like the future. https://t.co/n3IMlYmNG2","Oct 27, 9:56:11 PM EDT"
-1850718458851332511,"RT @libsoftiktok: Worst. Nazi. Rally. Ever. https://t.co/FNWqbu8EoR","Oct 27, 9:57:19 PM EDT"
-1850718973564006767,"https://t.co/y0UCd5NvMj","Oct 27, 9:59:22 PM EDT"
-1850723340136198379,"https://t.co/IdvPHJdBE7","Oct 27, 10:16:43 PM EDT"
-1850724646414606406,"Grok now understands images, even explaining the meaning of a joke.
-
-This is an early version. It will rapidly improve.
-
- https://t.co/gQ5BBISVRc","Oct 27, 10:21:55 PM EDT"
-1850724942641262876,"RT @Rothmus: The party of kindness and tolerance. https://t.co/ey5SBqF2zD","Oct 27, 10:23:05 PM EDT"
-1850725159839142205,"Absolutely true https://t.co/y77PTu4Hvs","Oct 27, 10:23:57 PM EDT"
-1850726593842270345,"RT @TheRabbitHole84: Americans list free speech among their top concerns https://t.co/XaCAV0G9DX","Oct 27, 10:29:39 PM EDT"
-1850726684322107636,"Accurate https://t.co/y3bxm9XGJm","Oct 27, 10:30:01 PM EDT"
-1850726890526400687,"RT @FoxNews: 'VOTE NOW': @elonmusk took the stage at former President Trump's MSG rally while leading the crowd in a "USA" chant and implor…","Oct 27, 10:30:50 PM EDT"
-1850728059348902329,"Ever wondered about the Overton Window? https://t.co/1bWCpzgHZo","Oct 27, 10:35:28 PM EDT"
-1850728322273050801,"RT @teslaownersSV: Are you sick of the hate from mainstream media on Elon Musk?
-
-We are. Make sure to subscribe to 𝕏 premium and support fr…","Oct 27, 10:36:31 PM EDT"
-1850729089448956253,"Google and Microsoft control almost 100% of the web search market https://t.co/cWBtEO9Htt","Oct 27, 10:39:34 PM EDT"
-1850729831865942130,"A clean sweep is possible if we fight hard for votes every day.
-
-@America will post daily stats of 2024 swing state early votes compared to 2020. https://t.co/CPfKyOmrtJ","Oct 27, 10:42:31 PM EDT"
-1850731084889157952,"RT @america: Raise your hand if this is you in this election https://t.co/tmw5V2jBxp","Oct 27, 10:47:30 PM EDT"
-1850731274266394684,"Congratulations Nancy of Arizona! https://t.co/F1wzkDQKf2","Oct 27, 10:48:15 PM EDT"
-1850731728295309374,"RT @america: ELON MUSK: “Any given piece of legislation must be short enough to understand. The longer the legislation is, the worse it get…","Oct 27, 10:50:03 PM EDT"
-1850731830502207749,"RT @devindkim: Make Starfleet Academy real and help us understand the universe","Oct 27, 10:50:27 PM EDT"
-1850731926321090777,"Super important https://t.co/5dmM5RLkcT","Oct 27, 10:50:50 PM EDT"
-1850734494816276923,"RT @Not_the_Bee: Elon is enemy #2 for the media and half the country, and for no good reason. He helped us when nobody else would. Seeing t…","Oct 27, 11:01:03 PM EDT"
-1850735422281752793,"Will get 69.420%, as foretold in the prophecy https://t.co/ubFKrORwvA","Oct 27, 11:04:44 PM EDT"
-1850740163707584904,"RT @MarioNawfal: NVIDIA'S JENSEN HUANG: ELON IS SUPERHUMAN
-
-His comments came after xAI set a jaw-dropping record with its "Colossus" super…","Oct 27, 11:23:34 PM EDT"
-1850740550271484146,"Exactly https://t.co/BUEELLGhsv","Oct 27, 11:25:06 PM EDT"
-1850741043978805581,"Kapow!! https://t.co/M12u4qbAEb","Oct 27, 11:27:04 PM EDT"
-1850741322312765518,"RT @DavidSacks: Vote vote vote!","Oct 27, 11:28:11 PM EDT"
-1850741967828701267,"It was full to the rafters – every seat in the house – and there were over 70,000 people just standing in support in the streets around MSG.
-
-The movement is MASSIVE!! https://t.co/sNUJexEFx7","Oct 27, 11:30:44 PM EDT"
-1850742389826109733,"🔥🔥🔥 https://t.co/nLjsYzSBEe","Oct 27, 11:32:25 PM EDT"
-1850801917347168692,"RT @pmarca: BATTLE CRY OF THE AUTISTS' REVOLUTION
-https://t.co/0fLE9N2WTw","Oct 28, 3:28:57 AM EDT"
-1850811622371348909,"RT @rpoo: I don't think people realize this is the closest elon will come to being involved in government, and what an opportunity it is..…","Oct 28, 4:07:31 AM EDT"
-1850811639601209761,"RT @KettlebellDan: imagine what government agencies could look like in 4 years… https://t.co/7XOnpG1iDX","Oct 28, 4:07:35 AM EDT"
-1850902690878152764,"RT @grok: eyes have been granted
-
-image understanding now available","Oct 28, 10:09:24 AM EDT"
-1850904702273442113,"RT @TimRunsHisMouth: This is my new favorite person.
-
-"Kamala is sooooo stupid." 🔥🔥🔥 https://t.co/p5EZeI7YL0","Oct 28, 10:17:23 AM EDT"
-1850904924563075346,"RT @TheRabbitHole84: Countries that require Voter ID. Are they racist or being pragmatic? https://t.co/9FmF055JYP","Oct 28, 10:18:16 AM EDT"
-1850906290933076169,"The legacy media is just a propaganda arm of the “Democratic” Party https://t.co/7HTGj5RKUx","Oct 28, 10:23:42 AM EDT"
-1850906442708197422,"RT @elon_docs: Elon Musk: Laws need to be short enough so that everyone can read them. And it should be easier to get rid of a law than mak…","Oct 28, 10:24:18 AM EDT"
-1850906693456302494,"RT @PeterSweden7: BREAKING: Fertility rates in Britain collapses to RECORD LOW.
-
-It is now 1.44 children per women, the lowest number since…","Oct 28, 10:25:18 AM EDT"
-1850908759138447537,"Wow https://t.co/jmTbbclp4z","Oct 28, 10:33:31 AM EDT"
-1850959071459098844,"RT @luismbat: I was really impressed by Grok's ability to convert a page from Feynman's PhD thesis to LaTeX, compared to other LLMs.
-
-Imagi…","Oct 28, 1:53:26 PM EDT"
-1850973543267545431,"There is massive far left censorship at Google/YouTube https://t.co/vwNLYvaPy1","Oct 28, 2:50:56 PM EDT"
-1850974610491420999,"Alphabet (Google/YouTube) is the #1 biggest donor to the Democratic Party https://t.co/WrmYnhPTPu","Oct 28, 2:55:11 PM EDT"
-1850975622287458477,"Democrats are the corpo stooge party https://t.co/Uh9ueBi3cO","Oct 28, 2:59:12 PM EDT"
-1850981236707385662,"Pennsylvania voter registration data from last week just came in and Republican registrations exceeded Democrat by 85%!!
-
-GOP +36,507
-DEM +19,774","Oct 28, 3:21:31 PM EDT"
-1850981706557505835,"Wow https://t.co/JILIdl13t9","Oct 28, 3:23:23 PM EDT"
-1850981834022391851,"Wow https://t.co/1F8IFOlBXz","Oct 28, 3:23:53 PM EDT"
-1850982018064269423,"Unreal https://t.co/fdFpfx3FLc","Oct 28, 3:24:37 PM EDT"
-1850982446273315096,"RT @iam_smx: People love Elon Musk! When he took the stage, the crowd erupted in chants of 'Elon, Elon, Elon!'
-
-Elon's response: 'You guys…","Oct 28, 3:26:19 PM EDT"
-1850986959692578927,"Actual size of illegal migration is 25% higher than the recent number published by the Biden-Harris administration! https://t.co/duySG69kCw","Oct 28, 3:44:15 PM EDT"
-1850987411540754538,"This is messed up.
-
-Vote Republican in Nevada! https://t.co/EBPGbLyajp","Oct 28, 3:46:03 PM EDT"
-1850987535188807957,"RT @megynkelly: This is horrifying. And a must-watch.","Oct 28, 3:46:32 PM EDT"
-1850987764571128178,"RT @stclairashley: Last week a FAKE video of ballots being destroyed in Bucks County Pennsylvania spread rapidly online.
-
-This was deliber…","Oct 28, 3:47:27 PM EDT"
-1850988474083786819,"https://t.co/SZWBGCiyJm","Oct 28, 3:50:16 PM EDT"
-1850988892054569041,"Interesting https://t.co/E27HI97EyA","Oct 28, 3:51:56 PM EDT"
-1850990683294999013,"RT @jasondebolt: You can’t search for the Joe Rogan Trump interview on YouTube even when searching by the episode number 2219, yet you can…","Oct 28, 3:59:03 PM EDT"
-1850991323010261230,"Soon to become a 200k H100/H200 training cluster in a single building https://t.co/2YvdmqXp1W","Oct 28, 4:01:35 PM EDT"
-1851020608236351772,"RT @512x512: We've got a shortcut for grok! Now https://t.co/SzZyevXiJq will open grok tab straight away. Thnx the X team!","Oct 28, 5:57:57 PM EDT"
-1851020949778522137,"RT @ajtourville: NEWS: @Starlink is now rolling out to thousands of residents living in the National Radio Quiet Zone in Virginia and West…","Oct 28, 5:59:19 PM EDT"
-1851021048927699438,"Interesting https://t.co/Z1WdafAbpZ","Oct 28, 5:59:43 PM EDT"
-1851021574385910254,"Arizona, Nevada & North Carolina all showing a massive shift towards Republican now vs 2020 https://t.co/WIDJtvXjJv","Oct 28, 6:01:48 PM EDT"
-1851021921582006692,"💯 https://t.co/gk5ugQ29IS","Oct 28, 6:03:11 PM EDT"
-1851022135655088388,"RT @elon_docs: Elon Musk: I'm doing this because if America falls, nothing else matters.
-
-“I'm doing this because I think it's critical to…","Oct 28, 6:04:02 PM EDT"
-1851023018249896221,"RT @cybertruck: Say hello to my little friend https://t.co/5C5FZWrLaI","Oct 28, 6:07:32 PM EDT"
-1851033728132448433,"They sure did https://t.co/7eKgSbOVUd","Oct 28, 6:50:05 PM EDT"
-1851040353190887713,"Importing future voters is by far the most competent program in the Biden-Harris administration https://t.co/NTxMfWS6JZ","Oct 28, 7:16:25 PM EDT"
-1851043769065570606,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app on the AppStore in Argentina, leading both the free and grossing categories.
-
- https://t.c…","Oct 28, 7:29:59 PM EDT"
-1851046159743402482,"I am increasingly convinced that @Neuralink should prioritize making an implant that can eliminate back & neck pain.
-
-Would greatly improve people’s happiness while awake, as well as enhance quality of sleep.
-
- https://t.co/kabge5XRuH","Oct 28, 7:39:29 PM EDT"
-1851046441000837281,"This hoax was repeated by Kamala in the debate with Trump even though she knows it’s a hoax https://t.co/mcyzmGQgCP","Oct 28, 7:40:36 PM EDT"
-1851047553569349641,"https://t.co/vrOfLycsbg","Oct 28, 7:45:02 PM EDT"
-1851066757764862137,"RT @ajtourville: NEWS: In a press release today, Nvidia confirmed @xAI's unbelievably short timeframe for the build-out of Colossus, the la…","Oct 28, 9:01:20 PM EDT"
-1851071116431016420,"Discussion with the Neurosurgeon community https://t.co/CTqq7R9T5g","Oct 28, 9:18:40 PM EDT"
-1851071252175409475,"Cool https://t.co/qNZxZns1Ms","Oct 28, 9:19:12 PM EDT"
-1851077086460723636,"The New York Times is a threat to our democracy https://t.co/uF9lMuCh5j","Oct 28, 9:42:23 PM EDT"
-1851077429709951349,"Indeed, kudos to @JeffBezos https://t.co/UNh4rlB3lS","Oct 28, 9:43:45 PM EDT"
-1851080997414277548,"Early votes in Pennsylvania now show Republicans doing 435k better than Democrats vs the same date in 2020. Biden’s margin of victory was only 80k in 2020.
-
-Trending towards a crushing victory. https://t.co/I1sXndevlD","Oct 28, 9:57:55 PM EDT"
-1851085799212925345,"Power to the people! https://t.co/bobQjEQGb4","Oct 28, 10:17:00 PM EDT"
-1851087655876092349,"https://t.co/EWA9YAsJhP","Oct 28, 10:24:23 PM EDT"
-1851089207697277417,"That said, there are still far more D than R early votes! It’s just that the in-person R vote on election day is historically far higher than D.
-
-Please bring everyone you know to early vote. You can request & hand in your ballot in person at your cou","Oct 28, 10:30:33 PM EDT"
-1851089467081441790,"This platform is the #1 source of news on Earth! https://t.co/n0UWPXZzx1","Oct 28, 10:31:35 PM EDT"
-1851090243556164098,"RT @AutismCapital: The left machine has become so desperate that they are throwing the kitchen sink at everything. They're rolling out Medi…","Oct 28, 10:34:40 PM EDT"
-1851092377567678703,"RT @anammostarac: “I just want Twitter to be maximum amazing.”
-
-Happy birthday, X! https://t.co/Q08Von041J","Oct 28, 10:43:09 PM EDT"
-1851094880451486031,"The legacy news media is having a collective mental breakdown 🤣🤣 https://t.co/DS80IQgTzN","Oct 28, 10:53:05 PM EDT"
-1851098291171365177,"https://t.co/pa6lIyYVB2","Oct 28, 11:06:39 PM EDT"
-1851098453293875318,"💯 https://t.co/2hVwGZPqrZ","Oct 28, 11:07:17 PM EDT"
-1851098716645834823,"RT @MarioNawfal: ELON: I’LL FOCUS ON EFFICIENCY, THEN I HOPE I CAN LEAVE POLITICS
-
-“I'm doing this because I think it's critical to the fut…","Oct 28, 11:08:20 PM EDT"
-1851099279328493686,"Congratulations, Jordan of Michigan! https://t.co/KVoMW6CqTO","Oct 28, 11:10:34 PM EDT"
-1851106791486378064,"We will add a parenthetical “Not” right before Department, so that way it is:
-
-“Not-a-Department of Government Efficiency”
-
-Problem solved! 🤣🤣 https://t.co/VlK1IM0Uuf","Oct 28, 11:40:25 PM EDT"
-1851107330102018459,"https://t.co/aWVStFQdMo","Oct 28, 11:42:34 PM EDT"
-1851109170575261815,"The cycle repeats again:
-
-1. It’s not happening
-2. Ok, it’s happening
-3. It’s happening and that’s good
-4. Use government to force it to happen https://t.co/lalQKXd60J","Oct 28, 11:49:52 PM EDT"
-1851109347797188864,"RT @cb_doge: Here’s the joke Elon Musk made about Kamala, but some media are falsely reporting that he suggested she could be assassinated.…","Oct 28, 11:50:35 PM EDT"
-1851110553043026127,"RT @cb_doge: "The Dems have imported massive numbers of illegals to swing states. Triple digit increases over the past 4 years. Their plan…","Oct 28, 11:55:22 PM EDT"
-1851122935165304847,"Full episode of @JoeRogan & @realDonaldTrump available on 𝕏!
-
-YouTube experienced some uh … technical difficulties 🙄
-
- https://t.co/YAzxRT2JQQ","Oct 29, 12:44:34 AM EDT"
-1851123979626693067,"RT @shaunmmaguire: America has temporarily forgotten the values that made it great
-
-- Work hard
-- Have kids
-- Nation over self
-- Be respect…","Oct 29, 12:48:43 AM EDT"
-1851124600475939261,"Power to the people! https://t.co/xsxLP1IqvN","Oct 29, 12:51:11 AM EDT"
-1851127828521296168,"https://t.co/xhMFiHLZFR","Oct 29, 1:04:01 AM EDT"
-1851132314333679903,"Write your thoughts on 𝕏! https://t.co/zTXb9LXbdV","Oct 29, 1:21:50 AM EDT"
-1851132436778008692,"RT @america: ELON MUSK: “America is not just going to be great. America is going to reach heights that it has not seen before. The future i…","Oct 29, 1:22:19 AM EDT"
-1851133045174387143,"RT @cb_doge: You can now watch the full episode of Joe Rogan with Donald Trump on the 𝕏一 TV app. https://t.co/ZvabmNBpXD","Oct 29, 1:24:45 AM EDT"
-1851133312506712207,"Vote in Pennsylvania! https://t.co/a0dk23BHhA","Oct 29, 1:25:48 AM EDT"
-1851136832643482070,"RT @WesternLensman: MAKE AMERICA GREAT AGAIN 🇺🇸 MSG SUPERCUT https://t.co/eoRB4GrVyN","Oct 29, 1:39:48 AM EDT"
-1851137541363454202,"RT @america: ELON MUSK: “In roughly two years, there will be another planetary alignment and that’s when we intend to send the first Starsh…","Oct 29, 1:42:36 AM EDT"
-1851139012146389330,"Great hat https://t.co/SGLFiVTxos","Oct 29, 1:48:27 AM EDT"
-1851139424039682232,"RT @ModdedQuad: Today is exactly 9 months since I got my surgery. Boy does it not feel like it. Let me update you on what’s been going on a…","Oct 29, 1:50:05 AM EDT"
-1851140727876759570,"RT @DillonLoomis22: Mid 2023: Elon endorses Trump's border wall idea
-
-Late 2023: Pundits begin declaring the death of Tesla as Elon was "al…","Oct 29, 1:55:16 AM EDT"
-1851141756332752973,"RT @ajtourville: NEWS: 14 years ago, @Tesla purchased the derelict NUMMI factory in Fremont, California and made it into the highest-produc…","Oct 29, 1:59:21 AM EDT"
-1851141857268666707,"Of course https://t.co/GB79raUf8L","Oct 29, 1:59:45 AM EDT"
-1851142521805816200,"RT @LibertyCappy: This deserves an answer https://t.co/q9LUAlslPE","Oct 29, 2:02:24 AM EDT"
-1851143490731929631,"🤔 https://t.co/ai6jR8glFO","Oct 29, 2:06:15 AM EDT"
-1851150579491537401,"It was a great event. So much positive energy! https://t.co/lrSCERjpJI","Oct 29, 2:34:25 AM EDT"
-1851151321342353843,"RT @MELANIATRUMP: 🇺🇸
-
-Madison Square Garden, 2024 https://t.co/t9mifebwvP","Oct 29, 2:37:22 AM EDT"
-1851151793876844949,"Cybertruck can beat a Porsche 911 while towing a Porsche 911! https://t.co/iNTaF2V1xt","Oct 29, 2:39:15 AM EDT"
-1851152287202484293,"RT @mayemusk: I sat front row, and felt incredibly hopeful for the future of America ❤️🇺🇸","Oct 29, 2:41:12 AM EDT"
-1851158629204054052,"RT @Teslaconomics: SpaceX turns CGI into IRL https://t.co/QnyeVxRAs1","Oct 29, 3:06:24 AM EDT"
-1851159079991066791,"The right choice is clear as day https://t.co/BB1e9Co357","Oct 29, 3:08:12 AM EDT"
-1851206080564773344,"Try submitting x-ray, PET, MRI or other medical images to Grok for analysis.
-
-This is still early stage, but it is already quite accurate and will become extremely good.
-
-Let us know where Grok gets it right or needs work.","Oct 29, 6:14:58 AM EDT"
-1851207590526726218,"The new Boeing CEO spends time in the factory and understands engineering, which are big improvements. Hopefully, he turns around a once great company. https://t.co/JkHb1uf8YJ","Oct 29, 6:20:58 AM EDT"
-1851212449053340048,"However bad the anti-Trump propaganda is in the US, it is actually even crazier overseas!
-
-People in most countries still think the news is real. https://t.co/qkbya3GBpd","Oct 29, 6:40:16 AM EDT"
-1851212850733383809,"Yes https://t.co/LGFPlmLYEV","Oct 29, 6:41:52 AM EDT"
-1851214052737105971,"Important to send https://t.co/J6TuRWrNyA links to friends & relatives overseas so that they know what’s really going on https://t.co/JQMenKxSeF","Oct 29, 6:46:38 AM EDT"
-1851214775277273483,"China’s space program is very impressive https://t.co/uckjMz3HIJ","Oct 29, 6:49:30 AM EDT"
-1851219799889912314,"Super important https://t.co/WTUx8EJUFD","Oct 29, 7:09:28 AM EDT"
-1851223176396882002,"RT @JohnnaCrider1: I send links to X posts to my friends all the time.
-
-Especially when they send me an Elon Musk related news article that…","Oct 29, 7:22:53 AM EDT"
-1851224844865847374,"RT @America1stLegal: Invasion by design.","Oct 29, 7:29:31 AM EDT"
-1851224940957351972,"Fraud https://t.co/bm2u2r7OTv","Oct 29, 7:29:54 AM EDT"
-1851270870800760935,"Whoa https://t.co/jgIpYEf7p9","Oct 29, 10:32:25 AM EDT"
-1851271346439012599,"For sure! https://t.co/GnrC82IIVv","Oct 29, 10:34:18 AM EDT"
-1851273059191439509,"Yes, this election is a fork in the road of destiny https://t.co/LYsPqHih4G","Oct 29, 10:41:06 AM EDT"
-1851276299547132050,"Grok is great at math https://t.co/vo3J1JyHVG","Oct 29, 10:53:59 AM EDT"
-1851276510289936596,"The New York Times is a threat to our democracy https://t.co/o34coYmxS3","Oct 29, 10:54:49 AM EDT"
-1851277025144934732,"This is outrageous! https://t.co/WMM8PvzNpH","Oct 29, 10:56:52 AM EDT"
-1851277287221817514,"Catherine Herridge exposes government corruption
- https://t.co/i4BAg1bYvn","Oct 29, 10:57:54 AM EDT"
-1851278184538689742,"This is the last day you can request an absentee ballot in Pennsylvania.
-
-Moreover, you can hand it in immediately in person, so it never touches the mail.
-
-Please bring anyone you know to vote today!","Oct 29, 11:01:28 AM EDT"
-1851278480434180250,"https://t.co/SZWBGCiyJm","Oct 29, 11:02:39 AM EDT"
-1851279819277025796,"🤣🤣 https://t.co/2V92VgEKJS","Oct 29, 11:07:58 AM EDT"
-1851280968893767981,"RT @TheRabbitHole84: The United States is amongst the most racially tolerant nations on the planet. As far as better alternatives go there…","Oct 29, 11:12:32 AM EDT"
-1851281533027655884,"RT @C__Herridge: Thank you Elon.
-
-We launch these investigations on @X because journalism that demands accountability must be published wit…","Oct 29, 11:14:47 AM EDT"
-1851281683326386653,"RT @ajtourville: NEWS: @ARKInvest analysts say @Tesla driverless ride-hailing plans could unlock $11 trillion in revenue potential, exceedi…","Oct 29, 11:15:23 AM EDT"
-1851281944216289741,"RT @SawyerMerritt: "I just had the fastest in-flight Wi-Fi experience of my life, thanks to @Starlink"
-
-"When the plane was landing, the do…","Oct 29, 11:16:25 AM EDT"
-1851282231937093661,"RT @DefiantLs: We need to talk about this more. https://t.co/DTWcs6KEAt","Oct 29, 11:17:33 AM EDT"
-1851282439525843268,"RT @nima_owji: My friends and I are using X DMs to chat with each other instead of WhatsApp.
-
-We found it more interesting to send some fun…","Oct 29, 11:18:23 AM EDT"
-1851284051338150141,"🇺🇸🇺🇸🇺🇸 https://t.co/UiRC0TpJWn","Oct 29, 11:24:47 AM EDT"
-1851285597757100252,"The Republican lead in North Carolina almost doubled from yesterday!
-
-Rumor has it that the Kamala campaign is shifting resources to shore up Virginia, which means they’re worried about losing Virginia.
-
-Let’s make even the blue states red! https://t.co/o","Oct 29, 11:30:56 AM EDT"
-1851286527072186489,"Vote right now and bring everyone you know! https://t.co/FoEr3hjnJ6","Oct 29, 11:34:37 AM EDT"
-1851286854672531504,"🔥🔥 https://t.co/HNjiCBr4b8","Oct 29, 11:35:56 AM EDT"
-1851310228140339368,"RT @elon_docs: 🧵ELON MUSK'S TOWN HALLS IN PENNSYLVANIA
-
-Here are the full videos of Elon Musk’s five in-person town hall events in Pennsylv…","Oct 29, 1:08:48 PM EDT"
-1851311033178341676,"Wikipedia is broken https://t.co/luZErdUJ1x","Oct 29, 1:12:00 PM EDT"
-1851313718254321900,"Well said by @BillAckman https://t.co/DVn0sGPK0k","Oct 29, 1:22:40 PM EDT"
-1851319207826452490,"RT @ajtourville: Damn... the Cybercab truly looks like the future, a sexy future. https://t.co/x25Tn0utZw","Oct 29, 1:44:29 PM EDT"
-1851319270573293620,"RT @pmddomingos: There are risks in voting for Trump. With Kamala there’s the certainty that America will continue to go in the wrong direc…","Oct 29, 1:44:44 PM EDT"
-1851320444189884778,"RT @SawyerMerritt: NEWS: Neoen has just turned on its 219 MW/ 877 MWh Tesla Megapack battery, the largest in western Australia. But this is…","Oct 29, 1:49:24 PM EDT"
-1851334020610867315,"RT @KanekoaTheGreat: .@BillAckman: "I prefer the world under Trump than I do to Kamala. I think the single biggest threat to the United Sta…","Oct 29, 2:43:21 PM EDT"
-1851358009316032595,"RT @RonPaul: He's Right! -- Government Spending Is A Tax -- Cut The $2 Trillion @elonmusk! https://t.co/FkA8Ogu37N","Oct 29, 4:18:40 PM EDT"
-1851359164259582178,"Documentary of @realDonaldTrump.
-
-You can watch the whole thing on 𝕏! https://t.co/af8w9JkIic","Oct 29, 4:23:16 PM EDT"
-1851359667295044061,"RT @C__Herridge: IRS whistleblowers say the FBI, IRS, and Justice Department knew immediately the Hunter Biden laptop was real in late 2019…","Oct 29, 4:25:15 PM EDT"
-1851361972501299626,"Cool https://t.co/NdVFkSjsi7","Oct 29, 4:34:25 PM EDT"
-1851362295412338881,"Big upgrade to Community Notes! https://t.co/vFkKSSs3vb","Oct 29, 4:35:42 PM EDT"
-1851385426386575809,"RT @Tesla_AI: Cybercab is individualized point-to-point autonomous transport https://t.co/So9vA5sw35","Oct 29, 6:07:37 PM EDT"
-1851391640789020979,"Independent/swing voters are overwhelmingly on this platform https://t.co/PyOljpSr42","Oct 29, 6:32:19 PM EDT"
-1851391793553936416,"RT @TheBabylonBee: California Man Arrested For Showing I.D. To Vote https://t.co/uWTccnZM5d https://t.co/FTVxynpLjW","Oct 29, 6:32:55 PM EDT"
-1851402366211539152,"Wow … https://t.co/mKuhiuD6Pu","Oct 29, 7:14:56 PM EDT"
-1851402661935079530,"RT @teslaownersSV: "I'm going to colonize Mars. My mission in life is to make mankind a multiplanetary civilization."
-
-Elon Musk https://t…","Oct 29, 7:16:06 PM EDT"
-1851437047145468217,"Biden just called half of America ‘garbage’ https://t.co/N3VtLLdzwK","Oct 29, 9:32:44 PM EDT"
-1851439877260525608,"Super talented & cool team @xAI! https://t.co/lfDe5l4Pwq","Oct 29, 9:43:59 PM EDT"
-1851440016406478891,"RT @cb_doge: Elon Musk is just supporting common sense in this election. 🇺🇸 https://t.co/nEkyHRnJfc","Oct 29, 9:44:32 PM EDT"
-1851442550269415782,"RT @cb_doge: Elon Musk’s PAC has launched an 𝕏 Community focused on exposing voter fraud and election interference.
-
-If you find any videos…","Oct 29, 9:54:36 PM EDT"
-1851442890687594664,"If you are aware of any election integrity issues, please report them to the 𝕏 Election Integrity Community https://t.co/debSdx4qmo","Oct 29, 9:55:57 PM EDT"
-1851476641698209962,"RT @XDevelopers: We are changing our Self Serve X API with new pricing options and limits. Below are the highlights. 🎉
-
-~ Launching Annual…","Oct 30, 12:10:04 AM EDT"
-1851479243274010994,"🤯 https://t.co/18k879kwJt","Oct 30, 12:20:25 AM EDT"
-1851508571693035720,"RT @realDonaldTrump: While I am running a campaign of positive solutions to save America, Kamala Harris is running a campaign of hate. She…","Oct 30, 2:16:57 AM EDT"
-1851511594980880679,"RT @DimaZeniuk: Elon Musk created this https://t.co/zrAxMQl3aw","Oct 30, 2:28:58 AM EDT"
-1851514737273823637,"RT @cb_doge: Autonomous vehicles and reusable rockets are the future! https://t.co/g2wDihIECl","Oct 30, 2:41:27 AM EDT"
-1851515326581916096,"https://t.co/uJvmOhuRK3","Oct 30, 2:43:48 AM EDT"
-1851549864309731644,"RT @TheRabbitHole84: Global Fertility Rates have dropped from 5.3 in 1963 to 2.3 in 2021.
-
-3.0 decline in ~58 years. https://t.co/OwImWAkU5h","Oct 30, 5:01:02 AM EDT"
-1851551249885450294,"How insane is it that the Biden-Harris Administration is suing states to KEEP non-citizens on their voter rolls? https://t.co/OUuLAhbfK7","Oct 30, 5:06:32 AM EDT"
-1851551644355588290,"69.420% coming soon https://t.co/Kq8a3Hdzfu","Oct 30, 5:08:06 AM EDT"
-1851554440492552288,"Republican early votes now exceed Democrat votes in New Jersey, normally a Democrat-leaning state! https://t.co/0eZQjVNlM6","Oct 30, 5:19:13 AM EDT"
-1851556584868155830,"RT @cb_doge: "Birth rates have been collapsing worldwide. If the current compounding effect continues you would see many countries become 5…","Oct 30, 5:27:44 AM EDT"
-1851556871372484998,"RT @MZHemingway: Text from a friend https://t.co/pmoh5Aqr2Y","Oct 30, 5:28:53 AM EDT"
-1851557330174771581,"RT @realDonaldTrump: Kamala is now running billboards near the Border advertising FREE Legal Services for Illegal Alien Criminals. When I w…","Oct 30, 5:30:42 AM EDT"
-1851557829746073731,"Congratulation, Wayne of Georgia! https://t.co/PEjMlqaRzG","Oct 30, 5:32:41 AM EDT"
-1851558069638991959,"Thanks for signing our petition in support of the Constitution! https://t.co/1hjsAUeIRK","Oct 30, 5:33:38 AM EDT"
-1851558550809829759,"RT @america: Join the community to share possible incidents of voter fraud or irregularities
-https://t.co/XW8AnzGGP1 https://t.co/7tM2hMtRZf","Oct 30, 5:35:33 AM EDT"
-1851654015815492076,"RT @C__Herridge: In 2025, I believe independent, investigative journalism can take it to the next level @X
-
-Facts have a power all their o…","Oct 30, 11:54:54 AM EDT"
-1851655216258773056,"Wow https://t.co/v9qM3TrWC2","Oct 30, 11:59:40 AM EDT"
-1851656454409003112,"Freudian slip https://t.co/xDwXhtvY4z","Oct 30, 12:04:35 PM EDT"
-1851656615784849897,"The woke mind virus is very real and measurable https://t.co/QppbYIpShP","Oct 30, 12:05:13 PM EDT"
-1851656949550719453,"I recommend following Catherine Herridge for sound investigative reporting on 𝕏 https://t.co/afS4O5aGiJ","Oct 30, 12:06:33 PM EDT"
-1851657313515659488,"Buzz Aldrin endorses @realDonaldTrump
-
-He gets it https://t.co/btb9p83Whq","Oct 30, 12:08:00 PM EDT"
-1851657604025753713,"We are investigating this https://t.co/JR7gikRDxY","Oct 30, 12:09:09 PM EDT"
-1851657701945925746,"RT @naval: If you have secret information, secret police, and secret courts, you are ruled by a secret government.","Oct 30, 12:09:32 PM EDT"
-1851658711686848717,"Trending well, but we should never be complacent.
-
-Drag everyone you know to vote on Nov 5th. https://t.co/DTciKJlDQb","Oct 30, 12:13:33 PM EDT"
-1851658955136925929,"Appreciate the kind words https://t.co/cD9z0vI86R","Oct 30, 12:14:31 PM EDT"
-1851659311132692541,"Just 2.42% to go and the prophecy will be fulfilled 😂 https://t.co/f8VF9VvEr6","Oct 30, 12:15:56 PM EDT"
-1851659947546943513,"RT @Eric_Schmitt: Biden and Kamala call you Nazis, fascists, and garbage.
-
-President Trump calls you Americans and patriots. https://t.co/n…","Oct 30, 12:18:28 PM EDT"
-1851660278452379780,"Well, then it should be implemented, given that we live in a democracy https://t.co/ccg4vad6f0","Oct 30, 12:19:47 PM EDT"
-1851681222977819022,"RT @ajtourville: NEWS: @Tesla is crushing it in California with 71% of registrations among the Top 15 selling EVs
-
-→ Model Y – #1 with 48%…","Oct 30, 1:43:00 PM EDT"
-1851682281607569751,"💯 https://t.co/8g3gXI0Et0","Oct 30, 1:47:13 PM EDT"
-1851689165685166268,"Congratulations!
-
-Insane that the “Democratic” Party was suing to allow non-citizens to vote … https://t.co/jzm1feizDZ","Oct 30, 2:14:34 PM EDT"
-1851731953395130816,"https://t.co/0jsw5Jcu9n","Oct 30, 5:04:35 PM EDT"
-1851732220391886879,"Wow https://t.co/H7mARobVed","Oct 30, 5:05:39 PM EDT"
-1851732724941500918,"RT @ajtourville: NEWS: @Starlink Mini review by The Verge
-
-“Starlink Mini combines the terminal and Wi-Fi router into a single dish that’s…","Oct 30, 5:07:39 PM EDT"
-1851733120636322184,"💯 https://t.co/rWeTvwm2vA","Oct 30, 5:09:14 PM EDT"
-1851733567413588439,"RT @GOPoversight: 🚨BREAKING: Biden-Harris White House may have violated the law by altering President Biden’s “garbage” remarks in official…","Oct 30, 5:11:00 PM EDT"
-1851734736793931967,"What’s going on @dominionvoting?
- https://t.co/2Y3if0nvTo","Oct 30, 5:15:39 PM EDT"
-1851734820042461269,"RT @TheBabylonBee: In Devastating Blow To Democrats, Supreme Court Rules In Favor Of Following The Law https://t.co/AoE3kwLBDQ https://t.co…","Oct 30, 5:15:59 PM EDT"
-1851735044190277706,"Concerning https://t.co/4Po7X3sF2F","Oct 30, 5:16:52 PM EDT"
-1851736809497334267,"Exactly. That is their stated goal. Every leading Democrat has said that they want expedited citizenship for illegals.
-
-That would flip every swing state to blue and America would become a one-party state, like California. https://t.co/p7ihjwa5f2","Oct 30, 5:23:53 PM EDT"
-1851737155502247959,"RT @TiffanyFong_: Buzz Aldrin, Apollo 11 astronaut and second man to walk on the moon, has endorsed Donald Trump. 🇺🇸 https://t.co/424Ynrr9sX","Oct 30, 5:25:16 PM EDT"
-1851737255993577547,"RT @EndWokeness: 198 House Democrats voted down a bill to require proof of citizenship to vote https://t.co/nRBf6cBjnh","Oct 30, 5:25:40 PM EDT"
-1851739513611260113,"All of her statements below are demonstrably false https://t.co/BUG0VzlxeA","Oct 30, 5:34:38 PM EDT"
-1851740065430671632,"The mind-blowing thing is no identification to vote WHATSOEVER, not even a library card, is required in the gray states! https://t.co/gQ4j4eRvTm","Oct 30, 5:36:49 PM EDT"
-1851740148494647516,"RT @TheRabbitHole84: News outlets featured in the search results are skewed in favor of the Left across various search engines such as Goog…","Oct 30, 5:37:09 PM EDT"
-1851740675852898718,"It’s totally insane. https://t.co/Cy7Ht8sAHC","Oct 30, 5:39:15 PM EDT"
-1851741130666447324,"Corruption of science https://t.co/x9RVMnUKbO","Oct 30, 5:41:03 PM EDT"
-1851741347767816463,"RT @Tesla: The future is autonomous https://t.co/VGtlUteT9I","Oct 30, 5:41:55 PM EDT"
-1851741586704732609,"🤦♂️ https://t.co/6AsUQszGFS","Oct 30, 5:42:52 PM EDT"
-1851741739029295377,"https://t.co/7AdcQws18U","Oct 30, 5:43:28 PM EDT"
-1851741816741368024,"RT @cb_doge: "Freedom of speech in the West is at stake in this election – vote for Donald Trump to keep your rights!" 🇺🇸
-
-一 Elon Musk http…","Oct 30, 5:43:47 PM EDT"
-1851741962472427562,"Exactly! https://t.co/WRF9hvlwG1","Oct 30, 5:44:22 PM EDT"
-1851745648313602189,"The 2024 Pennsylvania Republican vs Democrat vote is now over 500k better than the same day in 2020, when Biden’s victory margin was only 80k!
-
-Moreover, yesterday there were more Republican early votes than Democrat.
-
-Pennsylvania will be a decisive Repu","Oct 30, 5:59:00 PM EDT"
-1851749846363050079,"True.
-
-I think @realDonaldTrump winning makes a big difference in humanity getting to Mars and making life multiplanetary.
-
-This might one day save life as we know it. https://t.co/f9KVHslTY8","Oct 30, 6:15:41 PM EDT"
-1851750827112992902,"This is just the beginning.
-
-My guess is that there will be as many Starlink direct to cell phone satellites as there are for our high bandwidth terminals.
-
-As a rough rule of thumb, however, bandwidth will be ~1/10th as high for phones vs a dedicated St","Oct 30, 6:19:35 PM EDT"
-1851751101240131841,"It was an outrage https://t.co/Cn5evjAJWe","Oct 30, 6:20:41 PM EDT"
-1851763523107590651,"This is so awesome 😎 https://t.co/yxKHZQdPYv","Oct 30, 7:10:02 PM EDT"
-1851763863706054818,"Much appreciated, my friend! @eldsjal https://t.co/uUW6uApbGg","Oct 30, 7:11:23 PM EDT"
-1851764476565246372,"JD Vance is a good, smart man. Just a great human being. https://t.co/ivOPvhaQY6","Oct 30, 7:13:49 PM EDT"
-1851765303556084191,"RT @Not_the_Bee: Trump just rolled up in a Wisconsin garbage truck "in honor of Kamala and Joe Biden" 🤣
-
-https://t.co/BVLrriVWPf","Oct 30, 7:17:07 PM EDT"
-1851765427967529028,"Genius-level trolling!! https://t.co/TtpElfb5uh","Oct 30, 7:17:36 PM EDT"
-1851766802784965077,"The second Trump Presidency will be the most fun America has had in a while.
-
-It’s gonna be awesome! 😎","Oct 30, 7:23:04 PM EDT"
-1851767094922342563,"Epic https://t.co/QsqU0I5t0y","Oct 30, 7:24:14 PM EDT"
-1851767528349126665,"RT @nicksortor: The history books are about to be freaking legendary 🔥 https://t.co/BtDTJ2c1xd","Oct 30, 7:25:57 PM EDT"
-1851801379146469860,"Congrats @SpaceX team on the 200th successful Starlink flight! https://t.co/9Jzoi5OqFX","Oct 30, 9:40:28 PM EDT"
-1851854260079608143,"RT @DavidSHolz: If you stop looking up—towards transcendence—you start looking around—towards envy","Oct 31, 1:10:36 AM EDT"
-1851854926399385727,"Not bad https://t.co/iK6RP7cUyN","Oct 31, 1:13:14 AM EDT"
-1851894928395116820,"RT @elon_docs: Elon Musk: I created xAI to have an AI that loves humanity.
-
-“You really want to have a maximally truth-seeking AI. I can't…","Oct 31, 3:52:12 AM EDT"
-1851959072263671970,"😂 https://t.co/LCGAPqVIjW","Oct 31, 8:07:05 AM EDT"
-1851959224940581075,"RT @Tesla_AI: As October comes to a close, here's an update on the releases
-
-What we completed:
-- End-to-end on highway has shipped to ~50k…","Oct 31, 8:07:41 AM EDT"
-1851961943357051252,"RT @GailAlfarATX: VIDEO: Take a tour of Elon Musk’s Colossus. The most powerful AI training system in the world.
-This is Grok’s brain, whic…","Oct 31, 8:18:29 AM EDT"
-1851962106507092338,"RT @elon_docs: Elon Musk: We're currently harnessing less than 1% of the Sun's energy available on Earth.
-
-“One way to look at civilization…","Oct 31, 8:19:08 AM EDT"
-1851963030327742806,"🇺🇸🇺🇸🇺🇸 TRUE 🇺🇸🇺🇸🇺🇸 https://t.co/qsaOeB3jYG","Oct 31, 8:22:48 AM EDT"
-1851965096584532152,"RT @X: https://t.co/fccKsmIuy0","Oct 31, 8:31:01 AM EDT"
-1851966459288703173,"RT @Scobleizer: I am in love with my robot.
-
-You are an idiot if you don’t want a ride.
-
-AI is the wildest technology of my life. https://t…","Oct 31, 8:36:26 AM EDT"
-1851966653451350256,"RT @iam_smx: This engineer chose to work at SpaceX over established companies like Boeing and Lockheed, because he saw Elon Musk’s potentia…","Oct 31, 8:37:12 AM EDT"
-1851967312980582417,"Starlink will be good for the people https://t.co/ubtKdbT591","Oct 31, 8:39:49 AM EDT"
-1851967857082384800,"What’s going on @JoshShapiroPA? https://t.co/B83kNSU8Xy","Oct 31, 8:41:59 AM EDT"
-1851968785449627927,"RT @cb_doge: We, the people, have just one chance every four years to protect democracy.
-
-Use your vote to safeguard America’s future. Vote…","Oct 31, 8:45:41 AM EDT"
-1851968854441816308,"RT @JDVance: If you are in line, stay in line! If someone tells you to get out of line or to go home, take a video of them!
-
-If you commit…","Oct 31, 8:45:57 AM EDT"
-1851970548714139679,"We have an upside down system that makes it hard for highly talented people to come to America legally, but trivial for criminals to come here illegally.
-
-Why is easier to get in illegally as a murderer than legally as a Nobel Laureate?
-
-@realDonaldTrump ","Oct 31, 8:52:41 AM EDT"
-1851970923877871665,"The future should look like the future https://t.co/ztlCvEdUmh","Oct 31, 8:54:10 AM EDT"
-1851971319111262506,"Let us know if you’ve been illegally fired for expressing your political views https://t.co/JlEtNmEllI","Oct 31, 8:55:45 AM EDT"
-1851971913586786676,"https://t.co/D3xwF6cWBr","Oct 31, 8:58:06 AM EDT"
-1851974683853218261,"Unhinged mode 🤣🤣 https://t.co/kprn2uGRIg","Oct 31, 9:09:07 AM EDT"
-1851975451968671843,"Fraud https://t.co/QUX9vK7Ano","Oct 31, 9:12:10 AM EDT"
-1851975986704794063,"RT @profstonge: Biden-Harris goons go after @elonmusk and others for being pro-free speech and pro-Trump.
-
-Attacking dissidents is a hallma…","Oct 31, 9:14:17 AM EDT"
-1851976149225664713,"Congratulations, Joshua of North Carolina! https://t.co/xz01PIwcyj","Oct 31, 9:14:56 AM EDT"
-1851976798822715788,"Go figure 🤔 https://t.co/5rj4iS1aGL","Oct 31, 9:17:31 AM EDT"
-1851977843263078810,"RT @ICannot_Enough: My Halloween costume is Inflation.
-
-Too bad nobody will see it because Inflation Tax is invisible. https://t.co/CXrrJdJ…","Oct 31, 9:21:40 AM EDT"
-1851978442746515806,"Epic moments https://t.co/tZZpNMGPBQ","Oct 31, 9:24:03 AM EDT"
-1851980733088243802,"Every independent voter I know is voting for @realDonaldTrump https://t.co/bnvHVOLDKp","Oct 31, 9:33:09 AM EDT"
-1851982161735221468,"RT @DefiyantlyFree: No accomplishments.
-
-No votes in a presidential primary.
-
-No policies.
-
-No ideas.
-
-She was never popular.
-
-She nev…","Oct 31, 9:38:50 AM EDT"
-1851982372431941662,"😬 https://t.co/WkNR9pvaB7","Oct 31, 9:39:40 AM EDT"
-1851983586141913093,"That is a major factor https://t.co/YQREqobf6R","Oct 31, 9:44:29 AM EDT"
-1851985438933668337,"She will be fired soon https://t.co/nMtL8MUQ75","Oct 31, 9:51:51 AM EDT"
-1851987398969737696,"This is it https://t.co/aoBTW1ny7f","Oct 31, 9:59:38 AM EDT"
-1851987523314000032,"RT @SpaceX: Falcon 9 launches our 200th @Starlink mission to orbit! https://t.co/OQXSMPYxbA","Oct 31, 10:00:08 AM EDT"
-1851988351437402618,"RT @cb_doge: "I'm glad to say that the Starship mission was done entirely with human brains without any use of A.I.
-
-The future of A.I. mig…","Oct 31, 10:03:25 AM EDT"
-1851988580089938391,"RT @MarioNawfal: Seems accurate… https://t.co/CwMo66y5qf","Oct 31, 10:04:20 AM EDT"
-1851998948325466153,"RT @elon_docs: Elon Musk: “There's the potential for us to have an amazing, exciting future, but we just have to work hard to make that hap…","Oct 31, 10:45:32 AM EDT"
-1852000367959044200,"https://t.co/g49somRd0Y","Oct 31, 10:51:10 AM EDT"
-1852003570452742342,"RT @TheRabbitHole84: Costco: Can we see your membership?
-
-California: https://t.co/pfrCQdOALy","Oct 31, 11:03:54 AM EDT"
-1852004336550703239,"RT @DefiantLs: Elon Musk: "If Donald Trump wins, we do have an opportunity to do kind of a once in a lifetime deregulation and reduction in…","Oct 31, 11:06:57 AM EDT"
-1852006885676773767,"RT @america: Virginia Governor Glenn Youngkin calls the Supreme Court decision allowing the state to remove noncitizens from the voter roll…","Oct 31, 11:17:04 AM EDT"
-1852011217037979981,"“Media Matters” is evil incarnate https://t.co/j3raCt7xhy","Oct 31, 11:34:17 AM EDT"
-1852017282618134950,"American Justice FTW 🙌 https://t.co/5KKNGHrOXF","Oct 31, 11:58:23 AM EDT"
-1852017881640505530,"The New York Times is pure propaganda https://t.co/dQC8FBaiPN","Oct 31, 12:00:46 PM EDT"
-1852019209976312039,"The Woke Mind Virus is not just real, but extremely quantifiable! https://t.co/HHDEK9sTCq","Oct 31, 12:06:03 PM EDT"
-1852021739674288387,"𝕏 is where you can learn what is real.
-
-Legacy media lies licentiously. https://t.co/wex19tbcm6","Oct 31, 12:16:06 PM EDT"
-1852024671136309335,"RT @ArtoftheSurge: NOW LIVE: #ArtoftheSurge Episode 5: Debategate 2024.
-
-Our cameras enter the ABC News debate hall for the Trump-Harris sh…","Oct 31, 12:27:45 PM EDT"
-1852079654435164532,"Election interference by a foreign entity is a felony criminal violation https://t.co/5KH6fmHBwq","Oct 31, 4:06:14 PM EDT"
-1852091132353593620,"RT @AutismCapital: 🚨ROGAN: "If it wasn't for Elon purchasing Twitter and finding out how much of an influence they were having on the Hunte…","Oct 31, 4:51:50 PM EDT"
-1852116022939259176,"🔥🔥 https://t.co/W9vGXuoRux","Oct 31, 6:30:45 PM EDT"
-1852116297016025252,"Good point https://t.co/vAV7dtAa1f","Oct 31, 6:31:50 PM EDT"
-1852116454537052572,"RT @ajtourville: “You want to wake up in the morning and think the future is going to be great, and that’s what being a spacefaring civiliz…","Oct 31, 6:32:28 PM EDT"
-1852140423562645679,"Exactly https://t.co/ujuZFlFoT1","Oct 31, 8:07:42 PM EDT"
-1852207993112199502,"RT @AutismCapital: 🚨😂TRUMP: "John Bolton was a real dope. He was so stupid. He was like a boiler. If someone ever shot down a crappy little…","Nov 1, 12:36:12 AM EDT"
-1852208350735278317,"They are importing voters https://t.co/vbzeaVrhkK","Nov 1, 12:37:37 AM EDT"
-1852208597242974693,"Yeah https://t.co/JPs2sTF1b7","Nov 1, 12:38:36 AM EDT"
-1852208751022895277,"RT @Tesla: 🎃 https://t.co/GfnmOE5zRs","Nov 1, 12:39:13 AM EDT"
-1852212613213479261,"Well said https://t.co/frXPM8Zo1n","Nov 1, 12:54:34 AM EDT"
-1852213488753455468,"The diplomats want war and the soldiers want peace https://t.co/6FsVALxV7C","Nov 1, 12:58:02 AM EDT"
-1852213633205358777,"Yeah https://t.co/eWo1i0oKdX","Nov 1, 12:58:37 AM EDT"
-1852216375139336198,"RT @shaunmmaguire: If you don't know about any of these incidents you should research them","Nov 1, 1:09:31 AM EDT"
-1852224111734329417,"Yes https://t.co/H1ohT1T64R","Nov 1, 1:40:15 AM EDT"
-1852225253423878276,"Yeah https://t.co/M3AYGXHJjD","Nov 1, 1:44:47 AM EDT"
-1852227500518101447,"Accurate https://t.co/sZA5hgPVA9","Nov 1, 1:53:43 AM EDT"
-1852228465707073881,"Exactly https://t.co/4WfzArwR7Q","Nov 1, 1:57:33 AM EDT"
-1852228710012772474,"🔥😂 https://t.co/PMSOT6mUPQ","Nov 1, 1:58:31 AM EDT"
-1852231903803228656,"The trend away from legacy media continues https://t.co/fTPwKBRHzG","Nov 1, 2:11:13 AM EDT"
-1852357280915734695,"RT @WesternLensman: NEW: Peter Doocy nails the White House down for altering Biden’s “garbage” transcript, and engaging in a clear coverup:…","Nov 1, 10:29:25 AM EDT"
-1852358808133382378,"Correct https://t.co/hdoynHG73v","Nov 1, 10:35:29 AM EDT"
-1852358949019824621,"Well said https://t.co/hAtLgdnSxX","Nov 1, 10:36:03 AM EDT"
-1852359608234316183,"Accurate https://t.co/xlPwmUBgmk","Nov 1, 10:38:40 AM EDT"
-1852362075734950360,"Wow https://t.co/M5zR5flsSl","Nov 1, 10:48:28 AM EDT"
-1852362189744607572,"The legacy media lies https://t.co/BQL8XU09CU","Nov 1, 10:48:55 AM EDT"
-1852362688325656884,"Women are exceeding men in academia https://t.co/3dgJ55asNp","Nov 1, 10:50:54 AM EDT"
-1852363150676373875,"RT @cb_doge: This election is the most important election of our lifetime. The fate of America depends on this election. A Trump victory is…","Nov 1, 10:52:45 AM EDT"
-1852363186353193051,"RT @DefiyantlyFree: I am listening to the JD Vance interview and I have to tell you the Democrats are scared shitless right now. He is the…","Nov 1, 10:52:53 AM EDT"
-1852363362580955419,"Vote, Vote, Vote! https://t.co/0L0TIIYxfM","Nov 1, 10:53:35 AM EDT"
-1852363658912845848,"Electing @realDonaldTrump is the path to becoming a multiplanet species https://t.co/nECtgN73qw","Nov 1, 10:54:46 AM EDT"
-1852364315270975846,"It is outrageous that our cities are not safe. @realDonaldTrump will solve that. https://t.co/t6FkhntrbP","Nov 1, 10:57:22 AM EDT"
-1852366043852751129,"Tesla FSD is now almost entirely AI https://t.co/mMtgz4r0q1","Nov 1, 11:04:14 AM EDT"
-1852366147821195726,"RT @TheRabbitHole84: Interest in conspiracies from the media and academia.
-
-Notice the uptick in the mid 2010s 👀 https://t.co/VIjpnLyLrj","Nov 1, 11:04:39 AM EDT"
-1852366415552028939,"The amount of Dem propaganda is reaching unprecedented levels! https://t.co/0aIHNL8i2Y","Nov 1, 11:05:43 AM EDT"
-1852367147592540362,"They should change their name to DNN – Disinformation News Network! https://t.co/herVR73YGC","Nov 1, 11:08:37 AM EDT"
-1852367548798443726,"Wow https://t.co/4UWxc3UbvV","Nov 1, 11:10:13 AM EDT"
-1852370408302940193,"I was born 69 days after 4/20 👻
- https://t.co/gqM0G9iw4C","Nov 1, 11:21:35 AM EDT"
-1852373422023545102,"So true 🤣🤣 https://t.co/QFa80v06HC","Nov 1, 11:33:33 AM EDT"
-1852378869556294026,"https://t.co/KLAUd4vcmY","Nov 1, 11:55:12 AM EDT"
-1852379985941500253,"Vote, Vote, Vote! https://t.co/ungR2XyX0G","Nov 1, 11:59:38 AM EDT"
-1852380080934092889,"Yup https://t.co/RvnMALgV8G","Nov 1, 12:00:01 PM EDT"
-1852380223846633978,"Vote for @realDonaldTrump if you want humanity to make it to Mars! https://t.co/sBfW930OpQ","Nov 1, 12:00:35 PM EDT"
-1852380699736600933,"Vote in person in Bucks County!
-
-Only 5 hours left. https://t.co/D2R4zZv9l2","Nov 1, 12:02:29 PM EDT"
-1852382019059151195,"Hugh Hewitt is right: there was election interference by the Democrats in Bucks County that was so serious that a judge ordered early voting to be extended several more days! https://t.co/jTH4Zqf9WB","Nov 1, 12:07:43 PM EDT"
-1852382747207073819,"Yes https://t.co/gWcha2pavo","Nov 1, 12:10:37 PM EDT"
-1852383566933406197,"RT @BillyM2k: dragons don’t exist…. but a white peacock flying kinda looks like one https://t.co/RyPh0cSoe4","Nov 1, 12:13:52 PM EDT"
-1852417130924216744,"A major factor for why Ukraine was NOT overrun by Russia is the Starlink support I provided, at great risk to @SpaceX cyber & physical attack by Russian military forces.
-
-Starlink is the BACKBONE of Ukrainian military communications at the front line","Nov 1, 2:27:14 PM EDT"
-1852417305344356682,"Yes https://t.co/X3I5lF5Vbu","Nov 1, 2:27:56 PM EDT"
-1852417404065718316,"California needs comprehensive reform https://t.co/OGext7hxIe","Nov 1, 2:28:20 PM EDT"
-1852417667530956870,"This was so funny 🤣🤣 https://t.co/F0mki4wf67","Nov 1, 2:29:22 PM EDT"
-1852419253665698141,"RT @realDonaldTrump: Wishing everyone a Blessed and Happy All Saints’ Day! https://t.co/5VlPkCJ7M5","Nov 1, 2:35:41 PM EDT"
-1852419469383217401,"Thank you everyone for subscribing to 𝕏 and supporting freedom of speech! https://t.co/4N93jAhFq7","Nov 1, 2:36:32 PM EDT"
-1852420030530556257,"RT @BillboardChris: Democracy dies when media lies.
-
-Well done to @hughhewitt for dropping the truth and leaving mid-show.
-
-“We are news pe…","Nov 1, 2:38:46 PM EDT"
-1852420352699240921,"A lot of people still don’t believe me when I say that the Dems will do everything in their power to destroy me if they win on Nov 5th https://t.co/MCLlNBDHBG","Nov 1, 2:40:03 PM EDT"
-1852422236067467775,"https://t.co/McEYKmBvak","Nov 1, 2:47:32 PM EDT"
-1852422316312945018,"Exactly https://t.co/wTZB71AjI6","Nov 1, 2:47:51 PM EDT"
-1852422455664447730,"The legacy media has relentlessly promoted hate and division https://t.co/0MXSf1Q6p8","Nov 1, 2:48:24 PM EDT"
-1852424263619256569,"Congratulations, Ronald of Michigan! https://t.co/cmsxsPmoOx","Nov 1, 2:55:35 PM EDT"
-1852471324490543270,"Concerning https://t.co/aSM7lnY3M6","Nov 1, 6:02:35 PM EDT"
-1852471651742478507,"https://t.co/VFiZK0MwVS","Nov 1, 6:03:53 PM EDT"
-1852472035714163016,"Exactly https://t.co/kgDbW7gFZf","Nov 1, 6:05:25 PM EDT"
-1852474552112280037,"🔥😂 https://t.co/GYhYp6tFMk","Nov 1, 6:15:25 PM EDT"
-1852475396929008120,"RT @bennyjohnson: WATCH THE FULL DOCUMENTARY ON 𝕏: The Man You Don’t Know
-
-Donald Trump has been persecuted, raided, impeached and miraculo…","Nov 1, 6:18:46 PM EDT"
-1852475956528881959,"RT @elon_docs: Elon Musk: I think the goal of any given technology being developed should be to help humanity, to bring joy and to help peo…","Nov 1, 6:21:00 PM EDT"
-1852476203657257462,"Setting new records in the backstroke 😂 https://t.co/1URdTcRM3n","Nov 1, 6:21:58 PM EDT"
-1852536990115266927,"RT @TheBabylonBee: Trump Says To Drink Lots Of Water, Media Reports He Told Everyone To Drown Themselves https://t.co/IbeybTdfgi https://t.…","Nov 1, 10:23:31 PM EDT"
-1852539548158362094,"Worth watching this documentary to understand the @realDonaldTrump https://t.co/HB2rBKhddg","Nov 1, 10:33:41 PM EDT"
-1852541539508961608,"Legacy media lies licentiously https://t.co/OhNdqSkl5H","Nov 1, 10:41:36 PM EDT"
-1852542159519392019,"Vote like your life depends on it https://t.co/NNccXQtaVI","Nov 1, 10:44:04 PM EDT"
-1852545112347124006,"Worth forwarding this to friends & family
- https://t.co/I2JbFeWogi","Nov 1, 10:55:48 PM EDT"
-1852545176801034496,"RT @TheRabbitHole84: Live and let live https://t.co/s9ykNbl2o3","Nov 1, 10:56:03 PM EDT"
-1852545292026994809,"Cool https://t.co/tXykkYarhf","Nov 1, 10:56:30 PM EDT"
-1852545364454207576,"RT @ajtourville: NEWS: 🇨🇦 @Rogers CTO Mark Kennedy and team met with SpaceX this week regarding @Starlink Direct to Cell (DTC)
-
-“We’re prou…","Nov 1, 10:56:48 PM EDT"
-1852545464203198792,"Yes! https://t.co/1gTgJJcISK","Nov 1, 10:57:11 PM EDT"
-1852546475382726776,"Super important to share links so people know what’s really happening https://t.co/GPNFvNq9vi","Nov 1, 11:01:13 PM EDT"
-1852546748956225833,"Department of Government Efficiency
- https://t.co/mlI25deCBn","Nov 1, 11:02:18 PM EDT"
-1852547128175829149,"RT @AutismCapital: Exactly. 💯 🎯 https://t.co/7stCoOdCnO","Nov 1, 11:03:48 PM EDT"
-1852596960458387874,"Legacy media lies https://t.co/PqA50Mz2dT","Nov 2, 2:21:49 AM EDT"
-1852599665096569027,"Even if everyone in music & entertainment endorses the Kamala puppet, it won’t matter.
-
-The public sees through it. https://t.co/Yw7Ezk4bhR","Nov 2, 2:32:34 AM EDT"
-1852600356846346560,"🤣🤣🤣 https://t.co/jkITk6LQI4","Nov 2, 2:35:19 AM EDT"
-1852601902900355193,"Becker is a liar https://t.co/bjDj9neCoP","Nov 2, 2:41:27 AM EDT"
-1852602091312750637,"There is nowhere to go.
-
-This election is a verdict on civilization. https://t.co/Q4Tp4Uvaa3","Nov 2, 2:42:12 AM EDT"
-1852604003760185719,"🔥🔥 https://t.co/IK7ug6swEl","Nov 2, 2:49:48 AM EDT"
-1852604979439153403,"Yes https://t.co/r3xuUbyypi","Nov 2, 2:53:41 AM EDT"
-1852605210444562575,"RT @DefiyantlyFree: This is the Trump rally before it started in WI today.
-
-Without Cardi B or JLo or Beyoncé.
-
-We have the numbers Ameri…","Nov 2, 2:54:36 AM EDT"
-1852605361749893484,"RT @DefiyantlyFree: If Trump is a dictator, name one time he usurped power from the other branches of government to enact his will in viola…","Nov 2, 2:55:12 AM EDT"
-1852607151044235331,"This platform is the top source of news on Earth! https://t.co/MZAnWZsPrY","Nov 2, 3:02:19 AM EDT"
-1852608489941553567,"Republican early vote now is massively ahead of where it was in 2020.
-
-If this trend continues, then @realDonaldTrump will win (and I hope he does) https://t.co/3kTEuFRuHU","Nov 2, 3:07:38 AM EDT"
-1852735893578162311,"All Lives Matter https://t.co/joHy1OmaIK","Nov 2, 11:33:53 AM EDT"
-1852738470017700051,"President @realDonaldTrump will save the squirrels 🐿️ 😢
-
-RIP P’Nut https://t.co/yoIBV0Okpd","Nov 2, 11:44:08 AM EDT"
-1852739857262493755,"Exactly. The reason that the public no longer trusts the legacy media is that the media has been exposed as lying too many times to count.
-
-Legacy media absolutely deserves the lack of respect and ridicule it gets.
-
-Just yesterday, the legacy media tried","Nov 2, 11:49:38 AM EDT"
-1852740420448539064,"Government overreach kidnapped an orphan squirrel and executed him … https://t.co/YKoOCJWLMv","Nov 2, 11:51:53 AM EDT"
-1852743301683650752,"The legacy media is the propaganda arm of the radical leftists, so will immediately go after anyone who merely wants centrist policies and fairness for all.
-
-The policy positions of my @America PAC are just common sense and moderate by any reasonable def","Nov 2, 12:03:20 PM EDT"
-1852743766957838743,"The government should leave people and their animals alone https://t.co/wFHZHuqJEv","Nov 2, 12:05:11 PM EDT"
-1852745739379658774,"“If you strike me down, I will become more powerful than you could possibly imagine” Obi PNut Kenobi https://t.co/dD2Xo0fSkr","Nov 2, 12:13:01 PM EDT"
-1852751589502574907,"Highly recommend reading @waitbutwhy or anything by Tim Urban.
-
-You will learn a lot about the world, clearly explained with evidence to back it up. https://t.co/EiDxCaMK7F","Nov 2, 12:36:16 PM EDT"
-1852752031762497546,"𝕏 is now #1 in Germany! https://t.co/UwowSP90bD","Nov 2, 12:38:01 PM EDT"
-1852753304625013026,"RT @BasedBeffJezos: Half the timeline right now https://t.co/xKXKA9ec2R","Nov 2, 12:43:04 PM EDT"
-1852757200470421567,"Danke schön, Deutschland! https://t.co/Hb0zYIPxYn","Nov 2, 12:58:33 PM EDT"
-1852782434703536213,"Government overreach in action https://t.co/ymK7HHN9sE","Nov 2, 2:38:50 PM EDT"
-1852782988242870295,"𝕏 is 🥜 for 🐿️ rn","Nov 2, 2:41:02 PM EDT"
-1852783528016011566,"You don’t hate the legacy media enough https://t.co/gCB68us8ie","Nov 2, 2:43:10 PM EDT"
-1852785079363182639,"Yeah!
-
-Also, the legacy media says you’re far right if you care about the government killing pet squirrels … https://t.co/CVFUeEPN1P","Nov 2, 2:49:20 PM EDT"
-1852785203405619645,"💯 https://t.co/ywWDpcOk7S","Nov 2, 2:49:50 PM EDT"
-1852785608923418716,"No amount of Diddy party “celebrity” endorsements can save Kamala https://t.co/f8DxoBjBkW","Nov 2, 2:51:26 PM EDT"
-1852786914166006139,"Another puppet who can’t even talk without being fed the words.
-
-The Kamala campaign has no authenticity or true empathy. https://t.co/gwbZBKIAk8","Nov 2, 2:56:38 PM EDT"
-1852788884398346739,"The Onion is less funny than a clown in a @StephenKing novel!
-
-Defeat the woke mind virus to make comedy legal again. https://t.co/sQFXKRoUpB","Nov 2, 3:04:27 PM EDT"
-1852794208723095815,"💯 https://t.co/kH1JeH0Zfe","Nov 2, 3:25:37 PM EDT"
-1852794932752269330,"Wow, this is crazy https://t.co/3rT931Qoen","Nov 2, 3:28:29 PM EDT"
-1852795182510412086,"I’m hearing this a lot https://t.co/UB9cy7PVlK","Nov 2, 3:29:29 PM EDT"
-1852795503529841095,"Cybertruck is tougher than a bag of nails https://t.co/vEHBjSpgE7","Nov 2, 3:30:45 PM EDT"
-1852795684296012085,"Take a long trip in a Tesla and everything just works https://t.co/8q2ZyKsAuU","Nov 2, 3:31:29 PM EDT"
-1852796163331948786,"Actually true.
-
-Worth noting that criminals vote overwhelmingly for Democrats, because they are the soft-on-crime party.
-
-The Democratic Party is literally the party of criminals! Just a statement of fact. https://t.co/NHAJrzQrh6","Nov 2, 3:33:23 PM EDT"
-1852796618158055658,"Democratic Party priority list … https://t.co/t25wGNeoVO","Nov 2, 3:35:11 PM EDT"
-1852805349973098557,"John Wick just wanted peace, but then killed his innocent, beloved dog … https://t.co/Gm4tTz7Kzd","Nov 2, 4:09:53 PM EDT"
-1852806290151526752,"Why is the Democratic Party so cruel? https://t.co/hUrMfSU1yR","Nov 2, 4:13:37 PM EDT"
-1852807444541431903,"He called me “gay” and now he wants to touch my ass 🤣🤣🥲🥲 https://t.co/qH2wigqd32","Nov 2, 4:18:12 PM EDT"
-1852807779863691389,"Why citizen journalism is vastly superior to legacy media journalism https://t.co/ZL6juH0hKO","Nov 2, 4:19:32 PM EDT"
-1852808932391092546,"Sounds about right.
-
-Units of cognition and also robot-seconds of use. They will be fine-grained, but very low cost. https://t.co/0YiBhuht0n","Nov 2, 4:24:07 PM EDT"
-1852809089732002105,"Legacy media election interference
- https://t.co/9yHck1pyA3","Nov 2, 4:24:45 PM EDT"
-1852809398025965999,"Big numbers https://t.co/BiVt8o7wSA","Nov 2, 4:25:58 PM EDT"
-1852810094674940028,"The so-called “Secure the Border Bill” would have converted illegals to legal immigrants, legalized the illegal actions of the Biden administration and done nothing to reduce illegal immigration.
-
-It was a wolf in sheep’s clothing.
-
-Any given piece of l","Nov 2, 4:28:44 PM EDT"
-1852810221145698673,"Walz is a lying 🤡 https://t.co/BDQM1HO39a","Nov 2, 4:29:14 PM EDT"
-1852810358739919265,"🔥🔥 https://t.co/oCNGLPXHNx","Nov 2, 4:29:47 PM EDT"
-1852810842074669473,"Should be called Disinformation News Network! DNN, not CNN. https://t.co/HDhE7iOfp5","Nov 2, 4:31:42 PM EDT"
-1852811172170420329,"The more you dig, the crazier it gets.
-
-Legacy media sits upon a throne of lies! https://t.co/Kpmay7IpFA","Nov 2, 4:33:01 PM EDT"
-1852812047614144702,"RT @txsalth2o: @kerpen This video is 6 years old. I felt it then, and I feel it now…https://t.co/Yh44CMQvgF","Nov 2, 4:36:30 PM EDT"
-1852812357161881613,"Rogan is right https://t.co/PDnd0HWAG2","Nov 2, 4:37:44 PM EDT"
-1852835572848407000,"Well put https://t.co/LRZcgqUzlD","Nov 2, 6:09:59 PM EDT"
-1852858903286907245,"RT @teslaownersSV: "Elon Musk told me they were trying to put him in jail before the election. Elon was willing to accept it in order to sa…","Nov 2, 7:42:41 PM EDT"
-1852859560752550061,"This is something new for an historically deep blue city! https://t.co/VdRzZT9m0H","Nov 2, 7:45:18 PM EDT"
-1852859664376987692,"Yeah https://t.co/4TJ13kiwGB","Nov 2, 7:45:43 PM EDT"
-1852869378686984505,"RT @TheBabylonBee: California Man Arrested For Showing I.D. To Vote https://t.co/uWTccnZM5d https://t.co/TsR1d28chm","Nov 2, 8:24:19 PM EDT"
-1852914164093550795,"The government should not be allowed to barge into your house and kill your pet! That’s messed up.
-
-Even if it is illegal to have a pet squirrel (which it shouldn’t be), why kill PNut instead of simply releasing him into the forest!? https://t.co/2m9Gi5Q","Nov 2, 11:22:16 PM EDT"
-1852932381201641742,"🔥🔥 https://t.co/BR028qBZpF","Nov 3, 12:34:40 AM EDT"
-1852935299518681480,"True https://t.co/sm1g4ZcI1s","Nov 3, 12:46:15 AM EDT"
-1852942320649326791,"What it’s like living in a swing state https://t.co/NIZXfJsuDs","Nov 3, 1:14:09 AM EDT"
-1852945666604990919,"Yes https://t.co/9ueFB7tYhJ","Nov 3, 1:27:27 AM EDT"
-1852945832649097574,"💯 https://t.co/LQvl03wXZY","Nov 3, 1:28:07 AM EDT"
-1852945904648454562,"RT @pmarca: Like, literally just stop. No government subsidies to companies. No government subsidies to NGO's, nonprofits, foundations, act…","Nov 3, 1:28:24 AM EDT"
-1852946928033542208,"RT @america: ELON MUSK: “We want the sensible basic things: We want safe cities, we want secure borders, we want support for the Constituti…","Nov 3, 1:32:28 AM EDT"
-1852947026171834680,"Exactly https://t.co/wrAXHn2dRD","Nov 3, 1:32:51 AM EDT"
-1852951337979306409,"Pennsylvania is on track for a major Republican victory.
-
-The gap between 2024 and 2020 is now over 600k, which almost 10% of the entire electorate! https://t.co/1IGuyjM0Xx","Nov 3, 1:49:59 AM EDT"
-1852951716074852572,"RT @Not_the_Bee: NY be like https://t.co/VQT2nZdpn5","Nov 3, 1:51:29 AM EDT"
-1852952572576878886,"Cool 😎 https://t.co/rPbNixEaWw","Nov 3, 1:54:54 AM EDT"
-1852957603044728957,"RT @cb_doge: ELON MUSK: "Some people think their one vote doesn't count or they don't think it's serious enough.
-
-It's really important to…","Nov 3, 1:14:53 AM EST"
-1852958265753104392,"RT @JudiciaryGOP: Justice for Peanut.","Nov 3, 1:17:31 AM EST"
-1852958703944626363,"Yup 🇺🇸🇺🇸 🚀 🚀 https://t.co/CpvSCcKHtR","Nov 3, 1:19:15 AM EST"
-1852958817719369763,"https://t.co/kKi8kS8gnI","Nov 3, 1:19:43 AM EST"
-1852959955348840486,"RT @america: Is it too much to ask for to have a government that focuses on defending the rights of Americans instead of raiding homes to e…","Nov 3, 1:24:14 AM EST"
-1852960557638340801,"RT @DimaZeniuk: Starlink satellites 🛰️🛰️ https://t.co/a2xXq1DCV7","Nov 3, 1:26:37 AM EST"
-1852961330346529189,"💯 https://t.co/6v8qdWCCVj","Nov 3, 1:29:42 AM EST"
-1852961487624536270,"Support the right to bear arms! https://t.co/7hYA7zkdkM","Nov 3, 1:30:19 AM EST"
-1853064247661514967,"Exactly https://t.co/TULbLAigiC","Nov 3, 8:18:39 AM EST"
-1853064314942378105,"RT @XEng: We’re starting to launch the block function update","Nov 3, 8:18:55 AM EST"
-1853065072865583390,"Every year, your freedom is eroded with millions of new rules.
-
-High time your freedom was restored! https://t.co/oltWepUzmM","Nov 3, 8:21:56 AM EST"
-1853065874657165754,"Correct.
-
-In fact, SpaceX received only half the money that Boeing did to develop a crewed spacecraft, yet has done ALL the completed missions! https://t.co/yIb6okfKTb","Nov 3, 8:25:07 AM EST"
-1853067927815102831,"Exactly.
-
-It is easy for Cheney to send others to die while having fancy dinners in DC, but she would think very differently if on the front lines herself. https://t.co/JjBgfHzJhD","Nov 3, 8:33:16 AM EST"
-1853071386425651582,"She wants to break the Constitution https://t.co/tb8UtNqlwL","Nov 3, 8:47:01 AM EST"
-1853078131881464171,"RT @ajtourville: NEWS: @SpaceX Crew Dragon Freedom has successfully completed its port relocation maneuver at the International Space Stati…","Nov 3, 9:13:49 AM EST"
-1853079087763341368,"I’m this accurate @CommunityNotes? https://t.co/OefCIqHehl","Nov 3, 9:17:37 AM EST"
-1853079605596340235,"There should be no need for FOIA requests. All government data should be default public for maximum transparency. https://t.co/tH5x4jpEOA","Nov 3, 9:19:41 AM EST"
-1853079991304474861,"Doesn’t that seem insanely messed up? https://t.co/vrI46kRJO4","Nov 3, 9:21:13 AM EST"
-1853080822003253349,"Absolutely https://t.co/ldAL2iu8YT","Nov 3, 9:24:31 AM EST"
-1853089783574142991,"Cool 😎 https://t.co/3m7Kf4UtF2","Nov 3, 10:00:07 AM EST"
-1853092210649997698,"Putting only one Presidential candidate on right before the election was not cool, but this is very funny 😂
- https://t.co/CEGZj6O868","Nov 3, 10:09:46 AM EST"
-1853093487693922307,"Citizen journalism is the only way to break out of the legacy media propaganda machine.
-
-Send https://t.co/bOUOek5Cvy link to your friends! https://t.co/JKyUOapyd7","Nov 3, 10:14:50 AM EST"
-1853094940441452619,"RT @ImMeme0: Imagine the state of our country when a 44-year-old man, who leans Democrat, feels compelled to vote for the first time in his…","Nov 3, 10:20:37 AM EST"
-1853103936174969124,"Power to the people! https://t.co/VEQ2lsxDg6","Nov 3, 10:56:22 AM EST"
-1853104405689622650,"Yes! https://t.co/ZUf9HbpF8T","Nov 3, 10:58:13 AM EST"
-1853104660011229277,"RT @TheRabbitHole84: “The thing about censorship, for those who would advocate it, just remember at some point it will turn on you.”
-
-— Elo…","Nov 3, 10:59:14 AM EST"
-1853104903532454204,"Yeah https://t.co/OlyVclC25N","Nov 3, 11:00:12 AM EST"
-1853108802607866008,"💯
-
-Those are their stated goals!
-
-Unless @realDonaldTrump wins, this will be the last election.
-
-The Dems will legalize all the illegals in swing states, so there be no more swing states. America will become a one-party, deep blue socialist state. https","Nov 3, 11:15:42 AM EST"
-1853109786008506730,"RT @america: ELON MUSK: “More Government is just the DMV at scale”
-
- https://t.co/xKvuRkkSjT","Nov 3, 11:19:36 AM EST"
-1853110733397192950,"What it’s like if someone only watches legacy media 😂
-
-They aren’t just drinking the Kool-Aid, they’re swimming in it!
-
-Vital to send https://t.co/bOUOek6al6 links to your friends. https://t.co/HbrTXax8VN","Nov 3, 11:23:22 AM EST"
-1853113059402801252,"It is NOT ok for the government to barge into your home and kill your pets!
-
-What has become of the Land of the Free? https://t.co/xBfmAW0ncS","Nov 3, 11:32:37 AM EST"
-1853114107248979978,"But the legacy media says this never happens https://t.co/VjSYZSUapL","Nov 3, 11:36:47 AM EST"
-1853114584749551991,"True https://t.co/oJLGZZMSKh","Nov 3, 11:38:40 AM EST"
-1853115703886225873,"Send people links to the actual source data on https://t.co/bOUOek5Cvy!
-
-All it takes is for people to hear @realDonaldTrump’s actual speeches or to see a compilation of Jewish speakers at the MSG rally to start realizing how much they were lied to by leg","Nov 3, 11:43:07 AM EST"
-1853164983602835764,"Thanks Steve! https://t.co/eizZp2OfG4","Nov 3, 2:58:56 PM EST"
-1853172332249899083,"Good point https://t.co/yFpaZzmlqf","Nov 3, 3:28:08 PM EST"
-1853172590598074528,"Cool https://t.co/o2injjAEtV","Nov 3, 3:29:10 PM EST"
-1853173174164209827,"They can earn double income, go on vacation, whatever they want. It’s a good deal. https://t.co/vxSOeyyQmH","Nov 3, 3:31:29 PM EST"
-1853173679816953870,"It is unfair, even if SNL did so unintentionally, given that NBC is allowed to use public airwaves for free https://t.co/RHhx7HwjaF","Nov 3, 3:33:30 PM EST"
-1853174035288559771,"RT @GailAlfarATX: Make Babies Great Again! Elon Musk at the Town Hall in Lancaster.
-
-Enjoy this post with my thoughts on this at the end...…","Nov 3, 3:34:54 PM EST"
-1853174400503210275,"Similar situation in the USA https://t.co/ZcjTf8crbE","Nov 3, 3:36:22 PM EST"
-1853174546347782406,"Yes! https://t.co/TMJWPye9Co","Nov 3, 3:36:56 PM EST"
-1853177671015907762,"RT @SawyerMerritt: X has just started rolling out the updated block function. Here are the changes:
-
-• If your posts are set to public, acc…","Nov 3, 3:49:21 PM EST"
-1853178544748433770,"Congrats, Brian of Wisconsin! https://t.co/gqCQmcPEtg","Nov 3, 3:52:50 PM EST"
-1853178589253918877,"RT @america: ELON MUSK: “For those who are in areas that are usually deep blue.. put at Trump/Vance sign on your lawn. People need social p…","Nov 3, 3:53:00 PM EST"
-1853178776466657299,"Two more town halls! Anyone can join. https://t.co/KA9jaCRDQ9","Nov 3, 3:53:45 PM EST"
-1853179387819999471,"Live on this platform tomorrow and Tuesday! https://t.co/VLqUl04U03","Nov 3, 3:56:11 PM EST"
-1853179455461786111,"Wow https://t.co/YxLkxBr3b9","Nov 3, 3:56:27 PM EST"
-1853179757959041152,"Yes. https://t.co/RmxnbwUAih","Nov 3, 3:57:39 PM EST"
-1853251066608963846,"Thanks Mom 🥰 🇺🇸 https://t.co/PoK7Kj8Z5A","Nov 3, 8:41:00 PM EST"
-1853251428212465760,"The number of times that the Dems have deliberately pushed this hoax – a calculated lie – is unconscionable! https://t.co/ZkT0XCiS0H","Nov 3, 8:42:26 PM EST"
-1853259040098308317,"Funny that she has never said a word about Soros, who has cumulatively put a hundred times more money into elections than I have 🤔
-
-If I can figure out 🚀science with SpaceX and 🧠 surgery with Neuralink, then maybe I can figure out politics too 🤷♂️ ht","Nov 3, 9:12:41 PM EST"
-1853259268423565689,"Whoa, this is crazy! https://t.co/0XQk7ODTi3","Nov 3, 9:13:36 PM EST"
-1853260913690005634,"Vote
-For PNut!
-For Liberty!
-For Freedom!","Nov 3, 9:20:08 PM EST"
-1853281611367792889,"RT @TheRabbitHole84: Be wary of the censors https://t.co/iFvyt3qqHS","Nov 3, 10:42:23 PM EST"
-1853282049399906373,"Yeah https://t.co/6vFcWYzGDg","Nov 3, 10:44:07 PM EST"
-1853300922232758455,"🇺🇸🇺🇸 https://t.co/dmnivJqImL","Nov 3, 11:59:07 PM EST"
-1853303465637818447,"https://t.co/0hebJPsbX0","Nov 4, 12:09:13 AM EST"
-1853303540778672375,"RT @mayemusk: I need to add, when I model or give talks in Europe and Asia, they love Trump. It’s just America that may have a problem. Alt…","Nov 4, 12:09:31 AM EST"
-1853305641382584768,"✋ https://t.co/9ofZwRQHGU","Nov 4, 12:17:52 AM EST"
-1853306406595695043,"RT @DefiyantlyFree: This is the first time he has voted in his 44 years. He cast his first vote ever for Donald J. Trump. https://t.co/nsjW…","Nov 4, 12:20:54 AM EST"
-1853328114798977514,"Yeah, it’s totally insane.
-
-The only reason to ban ID is to make voting fraud untraceable.
-
-Obviously. https://t.co/1183PhzI2u","Nov 4, 1:47:10 AM EST"
-1853329249614131365,"Last election, I didn’t know a single independent/swing voter who was voting for Trump.
-
-This time, I don’t know anyone who isn’t.
-
-And one person after another has confided in me that they’re voting for Trump, but they’re afraid to say so publicly, beca","Nov 4, 1:51:40 AM EST"
-1853331963056205934,"How ironic that the same people on the left who say that they want to stop “disinformation” are also the ones pushing debunked hoaxes relentlessly … https://t.co/R0I4xgr4ZF","Nov 4, 2:02:27 AM EST"
-1853333324036559025,"So here’s the thing … https://t.co/X9En85Qw1Z","Nov 4, 2:07:52 AM EST"
-1853334620349112336,"🎶 We been spending most our lives
-Livin' in an Amish paradise 🎶
- https://t.co/70iFhUVXPJ","Nov 4, 2:13:01 AM EST"
-1853336521098580198,"Red wave next-level LFG!!! https://t.co/TrO7by2RCF","Nov 4, 2:20:34 AM EST"
-1853338773892780245,"Yes https://t.co/m603Y2DOp7","Nov 4, 2:29:31 AM EST"
-1853341657942331647,"Yup https://t.co/H8gubr5oEA","Nov 4, 2:40:59 AM EST"
-1853341808773808594,"They still don’t https://t.co/pKhO570LZO","Nov 4, 2:41:35 AM EST"
-1853342180112314710,"Men must vote! https://t.co/9FRB4iKvRP","Nov 4, 2:43:03 AM EST"
-1853343040036827527,"🤨 https://t.co/pCwvhArqni","Nov 4, 2:46:28 AM EST"
-1853343513364119576,"RT @BasedMikeLee: When Democrats tell you they’ll mess with the First Amendment if they win …
-
-Believe them https://t.co/9neEy4YuDN","Nov 4, 2:48:21 AM EST"
-1853343906018062712,"That is how they want to run America https://t.co/2noEpnJsH5","Nov 4, 2:49:55 AM EST"
-1853346784476541292,"What he said 👇 https://t.co/jZzSyyY6w1","Nov 4, 3:01:21 AM EST"
-1853347874441990335,"RT @GailAlfarATX: Elon Musk's Thoughts on the Teachings of Christ: Be Strong First
-
-Many people (including at the Town Halls) want to know…","Nov 4, 3:05:41 AM EST"
-1853350360057839727,"https://t.co/tDkwEZoVhu","Nov 4, 3:15:34 AM EST"
-1853350833611542868,"RT @cb_doge: It's not Trump vs Harris.
-
-It's Trump vs Machine.","Nov 4, 3:17:26 AM EST"
-1853434577513029733,"Be fair to all https://t.co/2HkRnRUkbO","Nov 4, 8:50:13 AM EST"
-1853435600117932480,"Starlink is working to increase Internet capacity in dense urban areas in Africa as fast as possible.
-
-Please note that there is still significant capacity outside of city centers. https://t.co/Vlk4sNDAjX","Nov 4, 8:54:16 AM EST"
-1853437418092847306,"When a politician says they want to stop “misinformation”, what they really mean is that they want to stop anyone from contradicting their lies https://t.co/BSgeWXEATM","Nov 4, 9:01:30 AM EST"
-1853439127489826922,"🤔 https://t.co/os7tvspbnl","Nov 4, 9:08:17 AM EST"
-1853440278968914302,"🇺🇸🇺🇸 I love this 🇺🇸🇺🇸 https://t.co/5OpppK3dMg","Nov 4, 9:12:52 AM EST"
-1853441675084853436,"RT @cb_doge: "I think Donald Trump winning makes a big difference in humanity getting to Mars and making life multiplanetary.
-
-Vote for Tr…","Nov 4, 9:18:25 AM EST"
-1853442078782411098,"RT @ajtourville: NEWS: @xAI announces that starting today, developers can build on its Grok foundation models using its newly released API.…","Nov 4, 9:20:01 AM EST"
-1853443021540397400,"🇺🇸🇺🇸🇺🇸 Yes! 🇺🇸🇺🇸🇺🇸 https://t.co/c1Ats12xkJ","Nov 4, 9:23:46 AM EST"
-1853446296171839726,"Please check to make sure your mail in ballot was accepted https://t.co/UdUkPabVvD","Nov 4, 9:36:47 AM EST"
-1853449318147010776,"🇺🇸🇺🇸🇺🇸 Let’s go, America!! 🇺🇸🇺🇸🇺🇸 https://t.co/VdF7aq88eD","Nov 4, 9:48:47 AM EST"
-1853449640789557587,"RT @DonaldJTrumpJr: If you’re still really not sure. Maybe this will help. RT & share for all to see!!! https://t.co/AU3Hv7KCy2","Nov 4, 9:50:04 AM EST"
-1853459323940139291,"Vote for an exciting future with @realDonaldTrump! https://t.co/a17f343CGs","Nov 4, 10:28:33 AM EST"
-1853461582577062326,"RT @johnkrausphotos: https://t.co/QKYDvE5og3","Nov 4, 10:37:31 AM EST"
-1853466433721688472,"RT @PlanetOfMemes: @elonmusk Accurate https://t.co/neXbnQzn6w","Nov 4, 10:56:48 AM EST"
-1853468997297250748,"Accurate https://t.co/jEKtoL7rlp","Nov 4, 11:06:59 AM EST"
-1853471747443659232,"The Dems will tell whatever lie wins the election https://t.co/PIawcHudFi","Nov 4, 11:17:55 AM EST"
-1853472071747096968,"Important for Pennsylvania https://t.co/oOwLhO8Vi1","Nov 4, 11:19:12 AM EST"
-1853472314920190215,"It will get far worse under a Kamala puppet regime https://t.co/W7M7VeUnM2","Nov 4, 11:20:10 AM EST"
-1853518551702990858,"RT @MegynKellyShow: "I will proudly explain to that audience and beyond why I think it's absolutely essential that he win this election..."…","Nov 4, 2:23:54 PM EST"
-1853519314877300803,"I’m doing a digital town hall on 𝕏 tonight at 8:30 ET","Nov 4, 2:26:56 PM EST"
-1853519397341823002,"Yes https://t.co/Ljq9RnEp8b","Nov 4, 2:27:15 PM EST"
-1853521111964606772,"https://t.co/myUQzInILv","Nov 4, 2:34:04 PM EST"
-1853521610655101150,"https://t.co/WXrmVxAetR","Nov 4, 2:36:03 PM EST"
-1853536650657145340,"RT @FoxNews: 'NO OTHER CHOICE': Elon Musk’s mom @MayeMusk weighs in on the historic 2024 election as she pledges her support for former Pre…","Nov 4, 3:35:49 PM EST"
-1853543592314159374,"https://t.co/nrPa1tPdVX","Nov 4, 4:03:24 PM EST"
-1853554503280472281,"https://t.co/Cyb4pBicjJ","Nov 4, 4:46:45 PM EST"
-1853554588126720164,"RT @FoxNews: X-ED OUT: Elon Musk's mom calls out the "malicious" and "dishonest" Democratic Party and explains why she has no regrets about…","Nov 4, 4:47:05 PM EST"
-1853555238726475839,"https://t.co/zJEdAaAGp8","Nov 4, 4:49:40 PM EST"
-1853557473824624917,"The hammer of justice is coming https://t.co/6aGbyymcTE","Nov 4, 4:58:33 PM EST"
-1853560303881224585,"RT @MaximMag: Maxim is the only major magazine to endorse Donald J. Trump for President. Maxim stands with Trump and Elon for freedom. @rea…","Nov 4, 5:09:48 PM EST"
-1853600391511879958,"https://t.co/h1k9z0DZ37","Nov 4, 7:49:06 PM EST"
-1853600436063809769,"https://t.co/vkw2Gr7gse","Nov 4, 7:49:16 PM EST"
-1853609588664487971,"Alarming, yet soothing
- https://t.co/SEjAglIqqK","Nov 4, 8:25:38 PM EST"
-1853609871469695053,"Tough sledding, but it will work out in the end https://t.co/AJzwdoECHY","Nov 4, 8:26:46 PM EST"
-1853609958903836959,"https://t.co/MLZ31M9bpR","Nov 4, 8:27:07 PM EST"
-1853610234105008157,"https://t.co/eAQfN9Rj0v","Nov 4, 8:28:12 PM EST"
-1853610759663534159,"Yeah https://t.co/N2Ee3FGqo2","Nov 4, 8:30:18 PM EST"
-1853611128808407111,"RT @farzyness: My prediction - Trump wins by a lot and the election will be over by Wednesday morning.
-
-Reason:
-
-Trump is outperforming vs…","Nov 4, 8:31:46 PM EST"
-1853612871877329188,"https://t.co/UlhNZ56Z6D","Nov 4, 8:38:41 PM EST"
-1853614981624840695,"Worth listening to this @JoeRogan episode before end of voting tomorrow
- https://t.co/qNchBVR0f9","Nov 4, 8:47:04 PM EST"
-1853619311341904147,"For PNut https://t.co/v9lr3UxpVC","Nov 4, 9:04:17 PM EST"
-1853620264396824669,"Instead of a town hall Q&A tonight, I recommend listening to this discussion about the election I had today with Joe Rogan https://t.co/bghzlaqv8e","Nov 4, 9:08:04 PM EST"
-1853620960223453676,"https://t.co/NKP6joXW05","Nov 4, 9:10:50 PM EST"
-1853621771909435773,"Yes https://t.co/gQj516Xz9V","Nov 4, 9:14:03 PM EST"
-1853622640457499130,"Wow … https://t.co/IIvAcSgMTA","Nov 4, 9:17:30 PM EST"
-1853623061263569332,"It just gets crazier and crazier! https://t.co/iDSSubOoUr","Nov 4, 9:19:11 PM EST"
-1853623206327853411,"8 years ago https://t.co/WighKdcgVP","Nov 4, 9:19:45 PM EST"
-1853623675544645943,"Speaking of misinformation … https://t.co/RP5Sz3ohcT","Nov 4, 9:21:37 PM EST"
-1853625288615157993,"Vote for @realDonaldTrump or the Dems will legalize so many illegals in swing states that this will be the last real election in America.
-
-@JoeRogan agrees.
-
- https://t.co/AtPVm3lSr2","Nov 4, 9:28:02 PM EST"
-1853625573391618245,"The counter to misinformation is not censorship, but better information https://t.co/eJYT2JKxE6","Nov 4, 9:29:10 PM EST"
-1853629098200891681,"Absolutely https://t.co/pHLn710oNy","Nov 4, 9:43:10 PM EST"
-1853633719791124681,"Tomorrow’s vote is a fork in human destiny https://t.co/mcJ2zDEqXj","Nov 4, 10:01:32 PM EST"
-1853647461702914394,"RT @ajtourville: Elon Musk: “They're allowing violent criminals to go free, but they're spending your tax dollars to come in and execute yo…","Nov 4, 10:56:08 PM EST"
-1853648550443311538,"RT @GadSaad: A Last-Ditch Warning from a Canadian to all Americans. https://t.co/gpYNUgXXzS","Nov 4, 11:00:28 PM EST"
-1853658441308377316,"🤨 https://t.co/p3On4n6fUf","Nov 4, 11:39:46 PM EST"
-1853660633528459296,"The only reason to ban voter ID is to make fraud impossible to prove https://t.co/LKwXitUSV9","Nov 4, 11:48:29 PM EST"
-1853669602137456908,"Yes https://t.co/7B9Y6iATu0","Nov 5, 12:24:07 AM EST"
-1853678173705154871,"Yeah https://t.co/IgAwicOon7","Nov 5, 12:58:10 AM EST"
-1853679120598675593,"Interesting thread https://t.co/awhl1MOtYb","Nov 5, 1:01:56 AM EST"
-1853679967646683592,"Vote to preserve democracy! https://t.co/USindMXQC5","Nov 5, 1:05:18 AM EST"
-1853685052367855617,"Great speech by @MegynKelly! https://t.co/sS9nHI8GWy","Nov 5, 1:25:30 AM EST"
-1853685381075513817,"RT @AutismCapital: We've uploaded all of the Joe Rogan x Elon Musk clips.
-
-Fantastic interview. Fun and real.
-
-Elon's biggest takeaway is…","Nov 5, 1:26:49 AM EST"
-1853685969213358267,"RT @TrumpWarRoom: PRESIDENT TRUMP: "To every citizen across this land, I am asking for the honor of your vote... As your president, I will…","Nov 5, 1:29:09 AM EST"
-1853688289036783673,"Congratulations, Joshua of Arizona! https://t.co/KE6Cq4wtOm","Nov 5, 1:38:22 AM EST"
-1853688563356848527,"RT @america: ELON MUSK: “Go out there and vote... for Peanut… How can it be that we live in America, supposedly land of the free and the go…","Nov 5, 1:39:28 AM EST"
-1853688868572156328,"This platform is the top source of news on Earth! https://t.co/YhmSY9K6x8","Nov 5, 1:40:40 AM EST"
-1853689153340227928,"RT @beeple: LAST PUSH https://t.co/iJ3Hw3Vz4J","Nov 5, 1:41:48 AM EST"
-1853691543007137814,"Below are the R minus D early vote deltas in swing states before tomorrow.
-
-Republican turnout on election day is usually much higher than Democrat, so any state currently leaning R in early voting is very likely to side with Trump.
-
-Pennsylvania, while ","Nov 5, 1:51:18 AM EST"
-1853729301817864213,"RT @SpaceX: Liftoff of Dragon's 31st Commercial Resupply Services mission to the @Space_Station! https://t.co/MPRoutKS3t","Nov 5, 4:21:20 AM EST"
-1853729326711075165,"RT @SpaceX: Falcon 9’s first stage has landed at LZ-1 https://t.co/tQ4TJQUwTk","Nov 5, 4:21:26 AM EST"
-1853729528717132114,"Congrats @SpaceX on the 400th launch! https://t.co/f1HrYxSkFm","Nov 5, 4:22:14 AM EST"
-1853742334040592806,"RT @RonPaul: With JD Vance and Elon Musk, Suddenly Ideas Are Back in this Campaign https://t.co/8QIjNo8PQp","Nov 5, 5:13:07 AM EST"
-1853743587512471661,"RT @america: ELON MUSK: “I view this election as a fork in the road of destiny. The reason I have been politically active this election is…","Nov 5, 5:18:06 AM EST"
-1853750864344736165,"RT @visual_iam: Vehicle is supersonic @spacex #starship https://t.co/3kdGMVS6mm","Nov 5, 5:47:01 AM EST"
-1853814133902168299,"RT @TobyPhln: Immediate API roadmap:
-- API playground
-- Better docs
-- Auto-upgrade of rate limits
-- More serving capacity
-- Vision model (l…","Nov 5, 9:58:26 AM EST"
-1853814238378094859,"RT @realGeorgeHotz: If you weren't planning to, go vote.
-
-Was it ever possible to dismantle the bureaucracy and reverse the decline? We onl…","Nov 5, 9:58:51 AM EST"
-1853817300824084668,"RT @TheRabbitHole84: Coverage of Donald Trump and Kamala Harris https://t.co/ipCyGnjasG","Nov 5, 10:11:01 AM EST"
-1853817502838497608,"RT @cybertruck: O Canada https://t.co/UaZFaZ4Cu7","Nov 5, 10:11:49 AM EST"
-1853820794083647548,"The legacy media hope that a hoax a day keeps DJT away. It won’t work. https://t.co/FpELXz6lgn","Nov 5, 10:24:54 AM EST"
-1853820986744832196,"Send https://t.co/bOUOek5Cvy links to your friends so that they know what’s really going on https://t.co/FeY4A7GXw5","Nov 5, 10:25:40 AM EST"
-1853821077794799877,"RT @ajtourville: NEWS: SpaceX's @Starlink Direct to Cell (DTC) system connected more than 27,000 phones located in hurricane-ravaged parts…","Nov 5, 10:26:01 AM EST"
-1853822005788713191,"RT @chrispavlovski: In the last 4 years, everyone at Rumble did their part in upholding the values of the constitution while it was under r…","Nov 5, 10:29:43 AM EST"
-1853822510199926898,"RT @ScottPresler: To our libertarians, we want your vote. This is a pro-peace, anti-war election.
-
-To our RFK Jr. supporters, we want your…","Nov 5, 10:31:43 AM EST"
-1853839602852712599,"RT @SpaceX: Watch Dragon dock with the @Space_Station","Nov 5, 11:39:38 AM EST"
-1853840406074589197,"Test drive a Tesla and see for yourself! https://t.co/oIWIrG3AFR","Nov 5, 11:42:50 AM EST"
-1853841252619571606,"RT @fentasyl: 1,700,000 brought in to the USA despite being found "Inadmissible" by CBP. This remains the most significant scandal of these…","Nov 5, 11:46:11 AM EST"
-1853841424581533752,"This is a massive sea change https://t.co/aACHYvTwqf","Nov 5, 11:46:52 AM EST"
-1853847172309209357,"The cavalry has arrived.
-
-Men are voting in record numbers.
-
-They now realize everything is at stake.","Nov 5, 12:09:43 PM EST"
-1853849226385506443,"RT @benshapiro: Tesla is the best. It just is. My 8-year-old son begs us to drive in our Tesla whenever we leave the house. Because it's de…","Nov 5, 12:17:53 PM EST"
-1853853581956272270,"RT @sheislaurenlee: If you had told me a few months ago that I'd be voting for Donald Trump, I'd have called you crazy.
-
-But as an Indepen…","Nov 5, 12:35:11 PM EST"
-1853853769152548945,"And let us strive for ever greater heights! https://t.co/IbYVruTpyQ","Nov 5, 12:35:56 PM EST"
-1853854780331786632,"🇺🇸🇺🇸🇺🇸 https://t.co/H1wXdWfutX","Nov 5, 12:39:57 PM EST"
-1853860311335334392,"What today’s election feels like!
-
-🇺🇸🇺🇸🇺🇸Team America 🇺🇸🇺🇸🇺🇸 https://t.co/uwlscqDzMz","Nov 5, 1:01:55 PM EST"
-1853872286601748632,"RT @cb_doge: "This election is the most important election of our lifetime. This is no ordinary election. The other side wants to take away…","Nov 5, 1:49:31 PM EST"
-1853882417888829829,"Are others seeing this too? https://t.co/mlwRY08hgo","Nov 5, 2:29:46 PM EST"
-1853884245086769398,"😂 https://t.co/ZCrG80Q3ZF","Nov 5, 2:37:02 PM EST"
-1853887450365735153,"Haha so accurate!! https://t.co/0Mg4bcBy9p","Nov 5, 2:49:46 PM EST"
-1853890669649031584,"🤨 https://t.co/BsPZA362Cu","Nov 5, 3:02:33 PM EST"
-1853890783730163935,"Absolutely https://t.co/SEoNCTtwFQ","Nov 5, 3:03:01 PM EST"
-1853890997911990686,"This is messed up https://t.co/27tSOF0AKD","Nov 5, 3:03:52 PM EST"
-1853893064236183619,"I just tried this myself and Google still shows you where to vote for Harris, but not Trump, even when anonymous https://t.co/b2nqGo9oRt","Nov 5, 3:12:04 PM EST"
-1853902675441578146,"Thanks for the clarification https://t.co/JReZUGiWF8","Nov 5, 3:50:16 PM EST"
-1853906676476182960,"Just voted in Cameron County, Texas, home of Starbase! https://t.co/dE8oRGlI4p","Nov 5, 4:06:10 PM EST"
-1853909084627783742,"Go vote right now!
-
-The future of the world is at stake!! https://t.co/gzhdXEZrFI","Nov 5, 4:15:44 PM EST"
-1853918850925957458,"Freeform discussion about the election
- https://t.co/8LkbOhK082","Nov 5, 4:54:32 PM EST"
-1853921420918591496,"https://t.co/8LkbOhK082","Nov 5, 5:04:45 PM EST"
-1853944040913297776,"RT @AutismCapital: 🚨ELON MUSK: "I just voted in South Texas, where Starbase is, and now I'm headed to Florida to Mar-a-Lago to be there wit…","Nov 5, 6:34:38 PM EST"
-1853948745521439079,"Dark MAGA Assemble!
- https://t.co/JGqFQ1DTGO","Nov 5, 6:53:20 PM EST"
-1853949501364383957,"Drag everyone you know to vote!!! https://t.co/TDwrH01EkA","Nov 5, 6:56:20 PM EST"
-1853951035326562527,"Hear all sides of an issue on this platform, corrected further by the fully open source @CommunityNotes! https://t.co/MvTdgQfLMx","Nov 5, 7:02:26 PM EST"
-1853966935169339839,"Absolutely https://t.co/zsPUi3pl6s","Nov 5, 8:05:37 PM EST"
-1853971711923757153,"The prophecy has been fulfilled! https://t.co/ub1Jt29CjL","Nov 5, 8:24:35 PM EST"
-1853972501384020000,"RT @Rothmus: As the prophecy foretold! 🔥🔥 https://t.co/QCAQoKxKG7","Nov 5, 8:27:44 PM EST"
-1854000203868614823,"Great song
- https://t.co/7knOrvBfV3","Nov 5, 10:17:48 PM EST"
-1854000537508655584,"Kapow 💥 https://t.co/d6IcFz6iLj","Nov 5, 10:19:08 PM EST"
-1854003982387068929,"Game, set and match","Nov 5, 10:32:49 PM EST"
-1854004862062624831,"𝕏 is the signal https://t.co/QoCd3XjvhO","Nov 5, 10:36:19 PM EST"
-1854018015827788241,"RT @farzyness: To all Democrats that are watching this unfold and can't understand how the public is voting for such an evil person:
-
-Take…","Nov 5, 11:28:35 PM EST"
-1854018433077154244,"RT @BasedBeffJezos: CEO, CMO, CTO of the USA https://t.co/lI4JU5SbQC","Nov 5, 11:30:15 PM EST"
-1854021306083107256,"Exactly https://t.co/Kf0QeLfVXz","Nov 5, 11:41:40 PM EST"
-1854023551575322959,"America is a nation of builders
-Soon, you will be free to build","Nov 5, 11:50:35 PM EST"
-1854024475559248300,"Sure it was a lot of pressure, but it pales by comparison with President @realDonaldTrump, who they tried to kill twice, bankrupt and imprison for eternity https://t.co/nUFeVcArtQ","Nov 5, 11:54:15 PM EST"
-1854026234339938528,"🇺🇸🇺🇸The future is gonna be so 🔥 🇺🇸🇺🇸 https://t.co/x56cqb6oT5","Nov 6, 12:01:15 AM EST"
-1854034776815972649,"Let that sink in https://t.co/XvYFtDrhRm","Nov 6, 12:35:11 AM EST"
-1854042843142373793,"Record usage of this platform!! https://t.co/SfWyi9kBWd","Nov 6, 1:07:14 AM EST"
-1854045379408326909,"You are the media now","Nov 6, 1:17:19 AM EST"
-1854047333958254597,"The people of America gave @realDonaldTrump a crystal clear mandate for change tonight","Nov 6, 1:25:05 AM EST"
-1854048115206078507,"The future is gonna be fantastic https://t.co/I46tFsHxs3","Nov 6, 1:28:11 AM EST"
-1854069664642424936,"RT @alx: Vox Populi, Vox Dei https://t.co/jUWaLo8qiA","Nov 6, 2:53:49 AM EST"
-1854201929519247803,"It is morning in America again https://t.co/GNTE0cUWoc","Nov 6, 11:39:24 AM EST"
-1854206931256099056,"The reality of this election was plain to see on 𝕏, while most legacy media lied relentlessly to the public.
-
-You are the media now.
-
-Please post your thoughts & observations on 𝕏, correct others when wrong and we will have at least one place in t","Nov 6, 11:59:16 AM EST"
-1854209328107917524,"News should come from the people.
-
-From those actually on the scene and those who actually are subject-matter experts!","Nov 6, 12:08:48 PM EST"
-1854227645694656636,"RT @ajtourville: NEWS: @Starlink testimonial from Namibia 🇳🇦
-
-“I have to say I was blown away, I simply plugged the unit in, waited roughly…","Nov 6, 1:21:35 PM EST"
-1854279370862444828,"Huge thank you to everyone who supported this platform and our mutual quest to support freedom of speech!","Nov 6, 4:47:07 PM EST"
-1854284210577735811,"RT @Caitlyn_Jenner: Hope is back in America. These two men will single-handedly save western civilization and that starts with a strong Uni…","Nov 6, 5:06:21 PM EST"
-1854285066479800445,"RT @KaiTrumpGolfs: The whole squad https://t.co/5yQVkFiney","Nov 6, 5:09:45 PM EST"
-1854300355955421560,"Accurate assessment https://t.co/yLtweucwxe","Nov 6, 6:10:30 PM EST"
-1854313368401613146,"Novus Ordo Seclorum https://t.co/RKTU7pATXl","Nov 6, 7:02:13 PM EST"
-1854321729797017716,"Given the unequivocal mandate given to @realDonaldTrump from the people of America, winning not just the electoral college by a landslide, but also the popular vote, Senate AND House, there will be none of that nonsense this time.
-
-They won’t even try. h","Nov 6, 7:35:26 PM EST"
-1854325591639503134,"LFG https://t.co/abnG5hFftr","Nov 6, 7:50:47 PM EST"
-1854326028274954332,"Yup https://t.co/GtHceoPdP1","Nov 6, 7:52:31 PM EST"
-1854337096829350384,"https://t.co/kEyeHPkgQC","Nov 6, 8:36:30 PM EST"
-1854337390569009217,"The people of America have spoken and spoken with absolute clarity https://t.co/QMJzTYcLXI","Nov 6, 8:37:40 PM EST"
-1854339192794251529,"The truth will set you free
-https://t.co/CznOFU8Zzz","Nov 6, 8:44:50 PM EST"
-1854340056061816924,"I agree! https://t.co/wda1KfOiWS","Nov 6, 8:48:15 PM EST"
-1854385260798287961,"Arizona just declared for @realDonaldTrump, making it a clean sweep of all swing states!
-
-Massive red wave success! It is beyond a landslide, as Republicans won:
-
-– Presidency
-– Popular vote
-– Senate majority
-– House majority
-– State governor majority
-– S","Nov 6, 11:47:53 PM EST"
-1854387062255833233,"For anyone, whether in America or other countries, who finds this result shocking, they should reconsider where they get their information.
-
-This trend was obvious on 𝕏 for months, but almost all the legacy mainstream media pushed a completely false rea","Nov 6, 11:55:03 PM EST"
-1854389596294987948,"Propaganda is far less effective when there is a real-time source of truth on 𝕏 https://t.co/0e5QwiUPP8","Nov 7, 12:05:07 AM EST"
-1854526518900252923,"True https://t.co/Ol1eiL6iGU","Nov 7, 9:09:12 AM EST"
-1854526964511457325,"RT @ajtourville: NEWS: @SpaceX partner One New Zealand on the game-changing Starlink Direct to Cell (DTC) connectivity 🇳🇿
-
-“We've all been…","Nov 7, 9:10:58 AM EST"
-1854530085857927303,"Worth noting that far more “billionaires” backed Harris than Trump and she raised almost 50% more money.
-
-Nonetheless, America showed that elections aren’t just a function of money and gave Trump a resounding victory! https://t.co/tcQmdnrQw2","Nov 7, 9:23:22 AM EST"
-1854530919337496783,"Academia and some “think tanks” are the origin of the extinctionist mind viruses https://t.co/ErHoJlSZrT","Nov 7, 9:26:41 AM EST"
-1854532191377576023,"RT @RonPaul: Play The Long Game President Trump
-By, Chris Rossini (@chrisrossini)
-
-It’s easy to gain weight, but difficult to lose weight.…","Nov 7, 9:31:44 AM EST"
-1854534490636329405,"Starship is now more than twice as powerful as the Saturn V Moon rocket and, in a year or so, it will be three times as powerful at 10,000 metric tons of thrust.
-
-More importantly, it is designed to be fully reusable, burning ~80% liquid oxygen and ~20% l","Nov 7, 9:40:52 AM EST"
-1854534865007280320,"RT @ElonFactsX: Elon Musk explains why SpaceX sent Starman on Falcon Heavy:
-
-“There need to be things that inspire you, that make you glad…","Nov 7, 9:42:22 AM EST"
-1854540598499323944,"😂 https://t.co/y2BY0WcMNc","Nov 7, 10:05:09 AM EST"
-1854542988552093755,"Justice prevails.
-
-Meanwhile, none of the many short sellers who egregiously manipulated Tesla stock for years and lied repeatedly on TV has been prosecuted. Not one. https://t.co/e59jz38nns","Nov 7, 10:14:38 AM EST"
-1854546155381617119,"They say red light helps you sleep better https://t.co/XvVFnmcF9O","Nov 7, 10:27:13 AM EST"
-1854546287095349477,"Absolutely https://t.co/aKXVfxHleu","Nov 7, 10:27:45 AM EST"
-1854546470894027165,"Justice prevails.
-
-Meanwhile, none of the many short sellers who egregiously manipulated Tesla stock for years and lied repeatedly on TV have been prosecuted. Not one. https://t.co/e59jz38nns","Nov 7, 10:28:29 AM EST"
-1854547483680031076,"Yup.
-
-Something is seriously wrong with our “elite” colleges. https://t.co/eEVcXVoXi5","Nov 7, 10:32:30 AM EST"
-1854557300830195948,"RT @BillyM2k: https://t.co/UoByqXMqng","Nov 7, 11:11:31 AM EST"
-1854558020136542246,"True, that is encouraging to see 💫 https://t.co/GI7FXryiSl","Nov 7, 11:14:22 AM EST"
-1854558548732121169,"Olaf ist ein Narr https://t.co/Yye3DIeA17","Nov 7, 11:16:28 AM EST"
-1854559894369689800,"The New York Times is pure propaganda https://t.co/H0iSi1W1tX","Nov 7, 11:21:49 AM EST"
-1854560427226661142,"Worth showing this again. You can see the mind virus spread rapidly, just like a physical virus. https://t.co/JaxtueeX9b","Nov 7, 11:23:56 AM EST"
-1854563397859193136,"CCDH should be prosecuted for interference in US elections by a foreign entity, among their many crimes https://t.co/sI1nCZ9XST","Nov 7, 11:35:44 AM EST"
-1854567200113533325,"When there are egregiously wrong legal judgments in a single state that substantially harm American citizens in all other 49 states, the Federal government should take immediate corrective action","Nov 7, 11:50:51 AM EST"
-1854574653865705922,"#1 News App in Canada! https://t.co/3i71WHegLM","Nov 7, 12:20:28 PM EST"
-1854575079293645114,"Wow, this is crazy! https://t.co/rNS5iAW14e","Nov 7, 12:22:09 PM EST"
-1854576605399536024,"❤️🚀🇺🇸 Woohoo LFG!!! 🇺🇸🚀❤️ https://t.co/Fc0YOmMLEI","Nov 7, 12:28:13 PM EST"
-1854579792697270710,"America’s A team is usually building companies in the private sector
-
-Once in a long time, reforming government is important enough that the A team allocates time to government.
-
-This is that time. https://t.co/Hzv0ZDup20","Nov 7, 12:40:53 PM EST"
-1854600166663168094,"In a properly functioning democracy, the people should get what the people want! https://t.co/DBZKbYKB5q","Nov 7, 2:01:51 PM EST"
-1854600534667542850,"Wow, electricity prices are crazy high in the UK and Europe! https://t.co/1lvIHk2kc8","Nov 7, 2:03:18 PM EST"
-1854600759779729873,"Sounds pretty bad https://t.co/uBFqXtDYSK","Nov 7, 2:04:12 PM EST"
-1854601226429628660,"That would just cause Democrats to lose even more than they already have, since they way outspend Republicans.
-
-And they have almost all of legacy media and social media on their side! https://t.co/AKX2IP0BPz","Nov 7, 2:06:03 PM EST"
-1854712793049505909,"Exactly https://t.co/qdixZu2PUj","Nov 7, 9:29:23 PM EST"
-1854765735005856038,"The 𝕏 platform reached another all-time high of usage this week! https://t.co/OcFoxjsrcU","Nov 8, 12:59:45 AM EST"
-1854765949582299508,"Government Efficiency 🙌 https://t.co/zMtNsVU4Tm","Nov 8, 1:00:36 AM EST"
-1854767127393092006,"RT @ElonFactsX: Citizen journalism as a continuation of the Enlightenment
-
-Central to Elon Musk's strong commitment to citizen journalism i…","Nov 8, 1:05:17 AM EST"
-1854776804185161747,"RT @pmarca: America is an economic coiled spring. We should be growing at least 4% annually and ideally 6-8%+. Growth has been brutally sup…","Nov 8, 1:43:44 AM EST"
-1854777813464662307,"All-time high usage of this platform! https://t.co/QjI2RgOud1","Nov 8, 1:47:45 AM EST"
-1854778119846031432,"How to share posts with those who aren’t on this platform yet: https://t.co/J5I2Su75PL","Nov 8, 1:48:58 AM EST"
-1854778304659693820,"RT @america: Donald Trump gained support in 49 out of 50 states from 2020 to 2024 https://t.co/Jd4O2plEWZ","Nov 8, 1:49:42 AM EST"
-1854778980160700521,"Yes! https://t.co/0tfJMRZFCj","Nov 8, 1:52:23 AM EST"
-1854781365444571161,"Truth wins in the end https://t.co/IJWySRbqKK","Nov 8, 2:01:52 AM EST"
-1854781712384848009,"RT @cb_doge: People are moving to 𝕏 to discover the truth in real-time. https://t.co/AuRnSUkIuU","Nov 8, 2:03:15 AM EST"
-1854781885928337447,"News by the people, for the people! https://t.co/f9fz2kVrCR","Nov 8, 2:03:56 AM EST"
-1854782038953296077,"RT @cb_doge: https://t.co/1VeUCg6hCI","Nov 8, 2:04:32 AM EST"
-1854783605119058373,"RT @pmddomingos: Turns out all the misinformation experts were mainly misinforming themselves.","Nov 8, 2:10:46 AM EST"
-1854783695346954620,"Much appreciated! https://t.co/yvgxvSVhTu","Nov 8, 2:11:07 AM EST"
-1854783747264012792,"💯 https://t.co/D6tYTAThNC","Nov 8, 2:11:20 AM EST"
-1854789727330955711,"Susie Wiles is great https://t.co/h56f2LIn6d","Nov 8, 2:35:05 AM EST"
-1854791822801092624,"Let’s push https://t.co/bOUOek6al6 to #1 in Norway! https://t.co/xiduwsQvsn","Nov 8, 2:43:25 AM EST"
-1854895487197102389,"RT @ajtourville: NEWS: @Tesla has officially entered the Philippine market with the grand opening of its first store in Uptown Bonifacio 🇵🇭…","Nov 8, 9:35:21 AM EST"
-1854897604494344635,"RT @charliekirk11: The kids are alright. https://t.co/MSeF0cFc53","Nov 8, 9:43:45 AM EST"
-1854897633481158842,"RT @RuiHuang_art: Full loop cycle https://t.co/IjkoFx3hyj","Nov 8, 9:43:52 AM EST"
-1854898968293261722,"Government handouts at the national and state level enable illegals who come here to have a standard of living that is better than half of Earth.
-
-This creates a forcing function for half of Earth to move here.
-
-They will do so, unless the border is secu","Nov 8, 9:49:11 AM EST"
-1854915519100707092,"This is just a very basic first step.
-
-Earth and Mars will ultimately need >petabit/sec connectivity. https://t.co/FBXeDQeczZ","Nov 8, 10:54:57 AM EST"
-1854922020297019860,"Great summary edit of my conversation with @JoeRogan
- https://t.co/Y2yG503Du8","Nov 8, 11:20:47 AM EST"
-1854922250266591737,"Community Notes 🙌 https://t.co/rtTvG3iJcL","Nov 8, 11:21:41 AM EST"
-1854925239693832576,"The legacy media wants to destroy your right to freedom of speech.
-
-They are saying it out loud and repeatedly. https://t.co/WX9Cr4gP2w","Nov 8, 11:33:34 AM EST"
-1854925721443127782,"The legacy media lied to you
- https://t.co/TuylN2IqYi","Nov 8, 11:35:29 AM EST"
-1854927087184007462,"You, the individual, are the media now https://t.co/cywyamS1qE","Nov 8, 11:40:55 AM EST"
-1854929830648873222,"RT @teslaownersSV: Legacy media has lied to you.
-
-𝕏 is where you can find out what’s really going on.","Nov 8, 11:51:49 AM EST"
-1854935550232535486,"Yes https://t.co/5XpJBf2NLA","Nov 8, 12:14:32 PM EST"
-1854936804182638716,"Their propaganda isn’t even consistent 😂 https://t.co/bkFbmn4SCD","Nov 8, 12:19:31 PM EST"
-1854937873830887567,"Exactly https://t.co/LOfCfmSekW","Nov 8, 12:23:46 PM EST"
-1854939087985426503,"🙌🔥 https://t.co/jxcZBpNPZF","Nov 8, 12:28:36 PM EST"
-1854939848496603279,"The Norwegian media lied to their people.
-
-They should join 𝕏 to know the truth.
-
-Please send https://t.co/bOUOek6al6 links to your friends. https://t.co/ItPgaxXkTB","Nov 8, 12:31:37 PM EST"
-1854941108725596203,"True https://t.co/R6J5g4mM8C","Nov 8, 12:36:38 PM EST"
-1854941636629086578,"You are the media now https://t.co/5ILwQVoYi6","Nov 8, 12:38:43 PM EST"
-1854945316426203567,"You are the media now https://t.co/2ACwIYegO6","Nov 8, 12:53:21 PM EST"
-1854975557806834107,"The problem is that she places political activism above science https://t.co/ANsmLdmfEG","Nov 8, 2:53:31 PM EST"
-1855045143893831941,"Yeah! https://t.co/jw0KXSIh8S","Nov 8, 7:30:02 PM EST"
-1855104662149746831,"Troubling https://t.co/t1gGhkFF9N","Nov 8, 11:26:32 PM EST"
-1855105346525970673,"Interesting https://t.co/WKrYdergji","Nov 8, 11:29:15 PM EST"
-1855107928409489627,"🎯 https://t.co/l4z6BHAqba","Nov 8, 11:39:31 PM EST"
-1855108773754683437,"Hmm https://t.co/k4wtww7Jre","Nov 8, 11:42:52 PM EST"
-1855109609348120862,"😂💯 https://t.co/zXZ6SBqBYw","Nov 8, 11:46:11 PM EST"
-1855110334878756907,"Working on it https://t.co/I4Xl14dfz5","Nov 8, 11:49:04 PM EST"
-1855114682501415322,"RT @SpaceX: Nine Merlin engines at full power and liftoff of Falcon 9! https://t.co/MJp0wzzlXB","Nov 9, 12:06:21 AM EST"
-1855114989830631588,"Yeah https://t.co/SDW14ZP6q2","Nov 9, 12:07:34 AM EST"
-1855119856649355729,"YES!
- https://t.co/yrtfxAGfXi","Nov 9, 12:26:54 AM EST"
-1855121289230664116,"Interesting https://t.co/H7OZjg77eD","Nov 9, 12:32:36 AM EST"
-1855122591994069074,"True https://t.co/Q0IlAum6BH","Nov 9, 12:37:47 AM EST"
-1855123080097808885,"That would be much appreciated https://t.co/GP7iu6BVYf","Nov 9, 12:39:43 AM EST"
-1855124318830907876,"https://t.co/57R5pPHN5g","Nov 9, 12:44:38 AM EST"
-1855124482442285348,"RT @alx: Subscribe to 𝕏 Premium, and if you can afford it, you can also gift Premium to users who might not be able to.
-
-Makes a great gift…","Nov 9, 12:45:17 AM EST"
-1855124708506976674,"🤨 https://t.co/QAuAjQIgI6","Nov 9, 12:46:11 AM EST"
-1855129799637057573,"Embarrassingly slow vote counting in California, where requiring voter ID was recently made illegal …
-
-That said, almost 40% of California voted for @realDonaldTrump. https://t.co/ynmfkKhEGI","Nov 9, 1:06:25 AM EST"
-1855130406221496591,"🤔 https://t.co/MST8YagQs9","Nov 9, 1:08:50 AM EST"
-1855130734362870255,"RT @SpaceX: Watch Falcon 9 launch 20 @Starlink satellites to orbit from California, including 13 with Direct to Cell capabilities https://t…","Nov 9, 1:10:08 AM EST"
-1855131506584567840,"RT @naval: Free speech is how you spot the errors, voting is how you fix them, and staying armed is how you keep those rights.","Nov 9, 1:13:12 AM EST"
-1855131839679393901,"RT @mayemusk: What is even sadder is that men will not try to protect women in danger, as they may be imprisoned. That has to change. Danie…","Nov 9, 1:14:31 AM EST"
-1855131907253776716,"RT @ACTBrigitte: Daniel Penny isn’t just innocent, he’s a hero. https://t.co/FmY3LarIkh","Nov 9, 1:14:48 AM EST"
-1855137120169738449,"The real loser was not the puppet, but rather the big government machine behind the puppet https://t.co/QWhzI2kamT","Nov 9, 1:35:30 AM EST"
-1855138142657052831,"RT @longmier: Only 4 more launches to complete the MVP @Starlink Direct to Cell constellation.
-
-Testing is ongoing in the US, Japan, and N…","Nov 9, 1:39:34 AM EST"
-1855138415421145506,"That’s not easy 🤣 https://t.co/bBvph6Mqek","Nov 9, 1:40:39 AM EST"
-1855138681834946808,"A launch a day keeps the … away https://t.co/WleA75NN7O","Nov 9, 1:41:43 AM EST"
-1855140564217610486,"Washington DC swamp creatures trying to join the @realDonaldTrump administration right now 🤣🤣 https://t.co/K3vJ6byDwy","Nov 9, 1:49:12 AM EST"
-1855142049995276803,"Yes https://t.co/YcO0uN61tO","Nov 9, 1:55:06 AM EST"
-1855142438651953424,"RT @elonmusk: @ArthurMacwaters @ajtourville A weekly email of accomplishments seems like it should be mandatory for all government employees","Nov 9, 1:56:38 AM EST"
-1855142777237258589,"RT @AutismCapital: 🚨Vivek Ramaswamy on Elon:
-
-"Elon's significance going forward will be huge. I only got to know him last year. We hit it…","Nov 9, 1:57:59 AM EST"
-1855142950537511097,"That is why https://t.co/OeYnaA65bA","Nov 9, 1:58:40 AM EST"
-1855143365173821676,"You can upload any image to Grok, including medical imaging and get its (non-doctor) opinion.
-
-Grok accurately diagnosed a friend of mine from his scans. https://t.co/vyJVmIYAng","Nov 9, 2:00:19 AM EST"
-1855144298221912164,"I was just reading 𝕏 and combining that with real-time swing state voting data sent to me by my @America PAC team https://t.co/DWYCrOV0m1","Nov 9, 2:04:02 AM EST"
-1855145563794149666,"Yup https://t.co/5MXMoMO0nm","Nov 9, 2:09:04 AM EST"
-1855147575219007618,"RT @DimaZeniuk: Static fire of Super Heavy booster 🤯🔥 https://t.co/qFxgG7o9Xv","Nov 9, 2:17:03 AM EST"
-1855147888650691046,"RT @MarioNawfal: 🇺🇸 DAVID SACKS: TRUMP WAS CONFIDENT ON ELECTION NIGHT
-
-“I think he [Trump] was confident, but he wasn’t acting like he had…","Nov 9, 2:18:18 AM EST"
-1855150686323065129,"Of Course I Still Love You https://t.co/dzKBawLYkk","Nov 9, 2:29:25 AM EST"
-1855151845217648938,"I asked Grok to generate an image of The View 😂 https://t.co/UIX2L47Sgv","Nov 9, 2:34:01 AM EST"
-1855152466775699894,"RT @theallinpod: E203: trump wins!
-
-the besties break down how it happened and what's next
-
-(0:00) bestie intros!
-
-(4:55) sacks recaps elec…","Nov 9, 2:36:29 AM EST"
-1855152953944162426,"https://t.co/1h7veRzfGn","Nov 9, 2:38:25 AM EST"
-1855153253002235998,"RT @cb_doge: Donald Trump winning was the most entertaining outcome.","Nov 9, 2:39:37 AM EST"
-1855153320777990413,"RT @MostlyPeacefull: https://t.co/nLrvBq0EE4","Nov 9, 2:39:53 AM EST"
-1855154819818045481,"Grok can explain memes https://t.co/8Uvv4jpz7G","Nov 9, 2:45:50 AM EST"
-1855155485885788315,"Yeah https://t.co/GCWISUZiN4","Nov 9, 2:48:29 AM EST"
-1855155615712288980,"RT @PirateWires: To “save democracy” the Democrats:
-
-• Installed a presidential candidate without a primary
-
-• Tried to imprison the leadin…","Nov 9, 2:49:00 AM EST"
-1855155816883798367,"RT @DefiyantlyFree: https://t.co/EPNa7EMNTk","Nov 9, 2:49:48 AM EST"
-1855158639012818993,"RT @SpaceX: Falcon 9 delivers 20 @Starlink satellites to orbit from California https://t.co/4MWAleE8J1","Nov 9, 3:01:01 AM EST"
-1855288688617628154,"😂 https://t.co/AofOJmNWrA","Nov 9, 11:37:47 AM EST"
-1855293151982088478,"Try out the @xAI API! https://t.co/T6ucknp2uH","Nov 9, 11:55:31 AM EST"
-1855346934644605341,"RT @shivon: Proud to build in Texas and proud to be an American https://t.co/Y1rnzBAvKy","Nov 9, 3:29:14 PM EST"
-1855373652310860278,"RT @amuse: If you were wondering why Democrats fight so hard against voter ID laws, wonder no more... https://t.co/XNEdKDT4nF","Nov 9, 5:15:24 PM EST"
-1855384930647413157,"RT @pmarca: Please submit questions for an upcoming podcast by @bhorowitz and me on the Post-Election Landscape for tech, the economy, Sili…","Nov 9, 6:00:13 PM EST"
-1855386192600265046,"RT @ElonFactsX: “The long-term aspiration for Neuralink would be to achieve a symbiosis and a democratization of artificial intelligence, s…","Nov 9, 6:05:14 PM EST"
-1855387364757291323,"The unelected and unconstitutional Federal bureaucracy currently has more power than the presidency, legislature or judiciary!
-
-This needs to change. https://t.co/kAyxZXGMxF","Nov 9, 6:09:53 PM EST"
-1855387789434740877,"It is the only way to understand the universe https://t.co/tLJ5GNuAtx","Nov 9, 6:11:35 PM EST"
-1855389580813631725,"It’s crazy https://t.co/jacOLgHQKw","Nov 9, 6:18:42 PM EST"
-1855390756560896184,"Fidias has a good point https://t.co/zswH788AvK","Nov 9, 6:23:22 PM EST"
-1855398281121300675,"🔥🔥 https://t.co/PjI0cZ2Fcw","Nov 9, 6:53:16 PM EST"
-1855400972450984058,"RT @Tesla: FSD Supervised avoids wildlife collision","Nov 9, 7:03:58 PM EST"
-1855411977226776770,"RT @Cernovich: X is not an echo chamber, X is real life.","Nov 9, 7:47:41 PM EST"
-1855415726775115785,"You are the media now https://t.co/gcTz2DN0P0","Nov 9, 8:02:35 PM EST"
-1855450174409392489,"This debt growth is unsustainable https://t.co/3hjc8t3MEQ","Nov 9, 10:19:28 PM EST"
-1855455589641646246,"Yup https://t.co/PMo4SKWu06","Nov 9, 10:40:59 PM EST"
-1855461728123040039,"RT @thatsKAIZEN: If you know anyone who is afraid because of Project 2025, please share this with them. It should help. https://t.co/oShyOt…","Nov 9, 11:05:23 PM EST"
-1855463760221352133,"Great rebuttal https://t.co/MfPbgD8OEl","Nov 9, 11:13:27 PM EST"
-1855468171043770740,"You are the media now https://t.co/vdZpmdCsxE","Nov 9, 11:30:59 PM EST"
-1855472875429666852,"https://t.co/3fyE6N1f9D https://t.co/0WcgoJP4YA","Nov 9, 11:49:41 PM EST"
-1855473783923933677,"Wow https://t.co/grHLNcXToA","Nov 9, 11:53:17 PM EST"
-1855473928829038960,"RT @MarioNawfal: ELON: WE WANT TO BE THE ALIENS EXPLORING GALAXIES
-
-“I grew up watching Star Trek, and Star Wars was the first movie that I…","Nov 9, 11:53:52 PM EST"
-1855474771431223673,"RT @iam_smx: While others were relaxing on yachts, sipping Mai Tais and cocktails, Elon Musk was in Pennsylvania, tirelessly giving talks d…","Nov 9, 11:57:13 PM EST"
-1855475711563497499,"RT @iam_smx: Starship Flight 6 is set to launch as early as Monday, November 18th.
-
-Godspeed! 🚀 https://t.co/vAb69tF3Fm","Nov 10, 12:00:57 AM EST"
-1855482360437031240,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app in Qatar, leading both the 'free' and 'grossing' categories on the AppStore 🥇 https://t.co/…","Nov 10, 12:27:22 AM EST"
-1855560954534416627,"True.
-
-Send them https://t.co/bOUOek6al6 to debunk the hoaxes pushed by the legacy media. https://t.co/0yziECeDOY","Nov 10, 5:39:40 AM EST"
-1855565891280511147,"Yes https://t.co/RVnLoZEXsv","Nov 10, 5:59:17 AM EST"
-1855566914409415027,"RT @Tesla: Imagine never having to go to the gas station ever again","Nov 10, 6:03:21 AM EST"
-1855567708613648805,"RT @cb_doge: Elon Musk. Lil X. https://t.co/TTcwKbsmPE","Nov 10, 6:06:31 AM EST"
-1855567735440183381,"RT @TheRabbitHole84: Fertility Rates in Canada https://t.co/5dO6TMWPHW","Nov 10, 6:06:37 AM EST"
-1855568459511521747,"RT @teslaownersSV: “At SpaceX we specialize in converting things from impossible to late.”
-Elon Musk https://t.co/vyhSOFCWun","Nov 10, 6:09:30 AM EST"
-1855568776466698480,"From impossible to late https://t.co/m8q4j8puCO","Nov 10, 6:10:45 AM EST"
-1855572939585843610,"Couldn’t agree more https://t.co/Y9k17r9q2Y","Nov 10, 6:27:18 AM EST"
-1855573165029953671,"Exactly https://t.co/vvKB6geHZL","Nov 10, 6:28:12 AM EST"
-1855573423034179590,"They did and they will get it https://t.co/QgvEYYrOKN","Nov 10, 6:29:13 AM EST"
-1855574186854646058,"Essential to stop fraud in elections https://t.co/PMu7JYVjh3","Nov 10, 6:32:15 AM EST"
-1855574490471887251,"Yes https://t.co/BG3rZbJOOm","Nov 10, 6:33:28 AM EST"
-1855647150144995639,"Who should be Senate Majority Leader?","Nov 10, 11:22:11 AM EST"
-1855650251077722130,"Must be a coincidence 🙄 https://t.co/npsMqqatx0","Nov 10, 11:34:30 AM EST"
-1855650994509738338,"Yeah https://t.co/ZeD5OHyqG1","Nov 10, 11:37:28 AM EST"
-1855652143107322129,"RT @AMAZlNGNATURE: I have no idea what is happening here but it is the best thing I’ve seen today! https://t.co/xjQJ2eKzQU","Nov 10, 11:42:01 AM EST"
-1855652744302039323,"𝕏 is back to being #1 in Brazil! https://t.co/VmnSaWEWUc","Nov 10, 11:44:25 AM EST"
-1855654054770397261,"RT @teslaownersSV: Hop in boys and girls, let’s go to Mars. https://t.co/YGbUhqd1wx","Nov 10, 11:49:37 AM EST"
-1855669462353199583,"RT @lindayaX: You are the media now.","Nov 10, 12:50:51 PM EST"
-1855686929553207425,"(Republican) Senator Thune is the top choice of Democrats 🤣🤣 https://t.co/M265pKW4MT","Nov 10, 2:00:15 PM EST"
-1855687977562964103,"RT @DavidSacks: List of people in tech who actually took a risk to end wokeness through a historic and decisive election. (Writing mealymou…","Nov 10, 2:04:25 PM EST"
-1855694053268169146,"Without recess appointments, it will take two years or more to confirm the new administration!
-
-This would make it impossible to enact the change demanded by the American people, which is utterly unacceptable. https://t.co/vTZabMxR5b","Nov 10, 2:28:34 PM EST"
-1855694773690208448,"Exactly!
-
-I have great respect for the American people, who saw through the relentless propaganda and voted for change. https://t.co/CqrBG7czG2","Nov 10, 2:31:25 PM EST"
-1855701819147887049,"𝕏 predicted the election outcome, because it represents America https://t.co/PhLM59jx1V","Nov 10, 2:59:25 PM EST"
-1855702328571253103,"Rick Scott for Senate Majority Leader! https://t.co/lpT34yHTKk","Nov 10, 3:01:27 PM EST"
-1855715126328148324,"True https://t.co/md4zCmPULg","Nov 10, 3:52:18 PM EST"
-1855718110118219943,"This would be cool 🇺🇸🚀❤️ https://t.co/g0K91QHn1O","Nov 10, 4:04:09 PM EST"
-1855723651502669856,"The general public is on 𝕏 https://t.co/Hhw6knu4bs","Nov 10, 4:26:10 PM EST"
-1855724526614757777,"RT @teslaownersSV: 𝕏 was the most important platform for this election.
-
-𝕏 is what 🇺🇸 believes in.","Nov 10, 4:29:39 PM EST"
-1855724702054138163,"RT @DefiyantlyFree: So I followed the election on X and I listened to @dbongino and War Room and @scrowder live streams.
-
-My husband was…","Nov 10, 4:30:21 PM EST"
-1855724868542845028,"Occupy Mars! https://t.co/jHWmXPIPSH","Nov 10, 4:31:01 PM EST"
-1855726780516311538,"RT @TheRabbitHole84: 𝕏 bringing back the gun emoji was awesome 🔫 https://t.co/Ol6r2CEhs9","Nov 10, 4:38:36 PM EST"
-1855726899437437232,"RT @jk_rowling: You can keep telling yourself this, but you're simply wrong. I'm a left-leaning liberal who's fiercely anti-authoritarian,…","Nov 10, 4:39:05 PM EST"
-1855747600936513964,"Perfectly articulated https://t.co/wibLebwuAM","Nov 10, 6:01:20 PM EST"
-1855749856176013550,"RT @teslaownersSV: Imagine looking up to the largest and most powerful rocket ever.
-
-Human scale vs Starship https://t.co/9v6dmFGnVC","Nov 10, 6:10:18 PM EST"
-1855753255441277031,"RT @america: President-Elect Donald Trump says his mandate is “to bring common sense back to the country” https://t.co/VkbaRJl17c","Nov 10, 6:23:48 PM EST"
-1855757901903942018,"Yes https://t.co/Uiz4ImaJfd","Nov 10, 6:42:16 PM EST"
-1855758490083770419,"RT @DimaZeniuk: It’s truly amazing what people are capable of https://t.co/at9yCSVw2z","Nov 10, 6:44:37 PM EST"
-1855779261304746198,"Happy birthday! https://t.co/yG9FRk57nG","Nov 10, 8:07:09 PM EST"
-1855779455874334980,"RT @KanekoaTheGreat: NEW: CNN's Zakaria slams Dems for illegal immigration, 'lawfare' against Trump, and 'deeply illiberal' woke culture of…","Nov 10, 8:07:55 PM EST"
-1855784653388763473,"RT @teslaownersSV: Ever wanted to know how @neuralink works and the impact it could have?
-
-@ModdedQuad was the first ever patient and it's…","Nov 10, 8:28:34 PM EST"
-1855785511648104741,"RT @SenJohnThune: We must act quickly and decisively to get the president’s nominees in place as soon as possible, & all options are on the…","Nov 10, 8:31:59 PM EST"
-1855800815417757711,"RT @X: you are the media
-
-the voice of the people","Nov 10, 9:32:48 PM EST"
-1855810991709475099,"Great! https://t.co/pUhauJnGWq","Nov 10, 10:13:14 PM EST"
-1855828970807406610,"Absolutely! Would be interesting to hear recommendations for roles in the new administration for consideration by the President. https://t.co/aOUDPluOmX","Nov 10, 11:24:40 PM EST"
-1855833601142915356,"RT @Teslaconomics: Tesla absolutely nailed the design of the Tesla Robotaxi https://t.co/disFuNmTjR","Nov 10, 11:43:04 PM EST"
-1855837662952968304,"Indeed, the obstacles are overcoming the Kafkaesque nature of the rules governing this vast bureaucracy and ensuring that maniacally dedicated small-government revolutionaries join this administration! https://t.co/ObfnIeuTXa","Nov 10, 11:59:13 PM EST"
-1855839065465290948,"Congratulations @RealTomHoman on being given responsibility for enforcing our borders!","Nov 11, 12:04:47 AM EST"
-1855843259513548977,"Use Grok for answers that are based on up-to-date info! https://t.co/sVMtO3y9aJ","Nov 11, 12:21:27 AM EST"
-1855843636669522253,"RT @america: BREAKING: President-Elect Donald Trump has announced that he intends to name Tom Homan “Border Czar”
-
-Flashback: https://t.co/…","Nov 11, 12:22:57 AM EST"
-1855844676664005033,"RT @w1991e: SpaceX Starship ITF-6 is likely on Nov 18 🚀
- https://t.co/wSHDc2MYPH","Nov 11, 12:27:05 AM EST"
-1855848521313968335,"RT @kevinnbass: Lol https://t.co/tGGrU91vo8","Nov 11, 12:42:22 AM EST"
-1855937667432587322,"The new Senate Majority Leader must respond to the will of the people https://t.co/L0v3MhWYQz","Nov 11, 6:36:36 AM EST"
-1855991776475013188,"RT @america: Donald Trump’s newly named “Border Czar” Tom Homan to Democrat Governors and Sanctuary Cities: “If you don’t want to help us,…","Nov 11, 10:11:36 AM EST"
-1856004205019791448,"Exactly https://t.co/ZBxfO18kyP","Nov 11, 11:01:00 AM EST"
-1856004575100092543,"RT @SpaceX: Thank you to all those who have served, including the 1,600+ men and women at SpaceX
-
-Happy Veterans Day! https://t.co/oHyXawaP…","Nov 11, 11:02:28 AM EST"
-1856021153359286325,"Not exactly great value for money! https://t.co/i9jcpIWfnZ","Nov 11, 12:08:20 PM EST"
-1856021616503009296,"Good idea
- https://t.co/AiBnhUwp8U","Nov 11, 12:10:11 PM EST"
-1856054592737554930,"RT @realDonaldTrump: https://t.co/qH4jDmLF9h","Nov 11, 2:21:13 PM EST"
-1856056009480937855,"Government Efficiency FTW!! https://t.co/OoTaOIy9g4","Nov 11, 2:26:51 PM EST"
-1856056100417659172,"RT @teslaownersSV: 𝕏 is the voice of the world.
-
-𝕏 is indispensable","Nov 11, 2:27:12 PM EST"
-1856058648897663001,"RT @readswithravi: Some audiobook recommendations by @elonmusk: https://t.co/CmTDrpUu9y","Nov 11, 2:37:20 PM EST"
-1856060843756020047,"Starlink now available in Chad! https://t.co/mzr5YQWKFl","Nov 11, 2:46:03 PM EST"
-1856071814834991187,"RT @SpaceX: Falcon 9 launches the Koreasat-6A mission to orbit from Florida and lands on Landing Zone 1 https://t.co/eRAiTOoR80","Nov 11, 3:29:39 PM EST"
-1856071837802799412,"RT @SpaceX: Deployment of Koreasat-6A satellite confirmed https://t.co/O3P1EtLvM2","Nov 11, 3:29:44 PM EST"
-1856107870409961689,"RT @johnkrausphotos: Falcon 9 soars by an American Flag and the Moon on the way to orbit with 24 Starlink satellites. Happy Veterans Day an…","Nov 11, 5:52:55 PM EST"
-1856111206932639993,"More Starlinks https://t.co/evwjXFe5Dz","Nov 11, 6:06:11 PM EST"
-1856114715694444856,"https://t.co/d6BiayAjwy","Nov 11, 6:20:07 PM EST"
-1856138002059190426,"RT @america: BREAKING: Republicans officially retain control of the U.S. House, giving the GOP a Trifecta; Control of both chambers of Cong…","Nov 11, 7:52:39 PM EST"
-1856152133323665536,"RT @thatsKAIZEN: If you know someone who can’t let go of the fact that Trump is a felon, please send them this.
-
-It may not change their mi…","Nov 11, 8:48:48 PM EST"
-1856172877688570095,"Interesting
-https://t.co/61G9RKibAY","Nov 11, 10:11:14 PM EST"
-1856223958871241151,"Normally, PACs go somewhat dormant after a big election.
-
-@America PAC is going to do the opposite and keep grinding, increasing Republican registrations in key districts around the country, in preparation for special elections and the midterms.","Nov 12, 1:34:13 AM EST"
-1856224068778766528,"And, of course, play a significant role in primaries.","Nov 12, 1:34:39 AM EST"
-1856226120531673580,"Any activist judge being pushed through by Pocahontas is bad for the country https://t.co/uNnR2zlGCh","Nov 12, 1:42:48 AM EST"
-1856236661736145280,"Very telling https://t.co/R8FmnPKRZ7","Nov 12, 2:24:42 AM EST"
-1856343280344010803,"Should your tax dollars really be paying for an organization run by people who think the truth is a “distraction”? https://t.co/W79tcJJLxu","Nov 12, 9:28:21 AM EST"
-1856343381129023516,"Absolutely! https://t.co/fjY86gyRnq","Nov 12, 9:28:45 AM EST"
-1856343613044670884,"Exactly right https://t.co/9sBBGo4Qyx","Nov 12, 9:29:41 AM EST"
-1856346403729027381,"Nonstop rocket launches! https://t.co/84jEYrFEWO","Nov 12, 9:40:46 AM EST"
-1856347227007992099,"Trust in the legacy media is rightfully at an all-time low and declining.
-
-Send https://t.co/bOUOek5Cvy links to friends, especially of actual source material, so that they know the truth of what’s going on. https://t.co/NE8Lj3Bmx2","Nov 12, 9:44:02 AM EST"
-1856348704514437170,"The latter https://t.co/nXvdFV1Dwn","Nov 12, 9:49:55 AM EST"
-1856349325896392787,"Becoming multiplanetary will greatly increase the lifespan of our civilization and it is the critical next step to becoming multistellar https://t.co/6L83Vc6Vru","Nov 12, 9:52:23 AM EST"
-1856351376747479042,"Solar power will be the vast majority of power generation in the future https://t.co/DhLfYJjsrm","Nov 12, 10:00:32 AM EST"
-1856351641236091091,"“Scientific” American needs a change in management https://t.co/XYrO0E7tSJ","Nov 12, 10:01:35 AM EST"
-1856375686212010298,"RT @gigafactories: Happy 5th Gigaversary https://t.co/XqSAzq7rHf","Nov 12, 11:37:08 AM EST"
-1856376361209774297,"RT @elon_docs: Elon Musk: Do we want to be in many worlds, or forever confined to Earth?
-
-“There are so many things to worry about, so many…","Nov 12, 11:39:48 AM EST"
-1856382407227695340,"RT @teslaownersSV: Legacy media is a 🤡 show
-
-𝕏 is where you get real time and truthful news.","Nov 12, 12:03:50 PM EST"
-1856390770628145546,"Congratulations Tesla Powerwall team!
-
-These will make a big difference around the world. With a Powerwall, your home or business has guaranteed continuous power during utility blackouts or brownouts.
-
-Add solar to your roof and/or nearby ground and you ","Nov 12, 12:37:04 PM EST"
-1856440437986259135,"RT @SpaceX: Starship moved to the pad at Starbase in advance of our sixth flight test https://t.co/u6Mbc35ARr","Nov 12, 3:54:26 PM EST"
-1856441126057840876,"Starship Flight 6 coming up soon https://t.co/QaDTOeZq56","Nov 12, 3:57:10 PM EST"
-1856454028294541611,"RT @matiroy9: https://t.co/w7a5z4DWMC","Nov 12, 4:48:26 PM EST"
-1856454529971093521,"𝕏 is #1 in Italy! https://t.co/YI6Zttgmce","Nov 12, 4:50:25 PM EST"
-1856456726163136939,"#1 Nederland Nieuws! https://t.co/tz7Z5ty1yR","Nov 12, 4:59:09 PM EST"
-1856456937241751567,"🤨 https://t.co/N6waEtnQR6","Nov 12, 4:59:59 PM EST"
-1856460069661286467,"RT @MarioNawfal: ELON: I DON’T WANT TO ESCAPE TO MARS, BUT TO EXPAND THE LIFESPAN OF CIVILIZATION
-
-“Technically, being a multiplanet speci…","Nov 12, 5:12:26 PM EST"
-1856465495089639826,"RT @pmarca: Please enjoy this special Post-Election Landscape episode of the "Marc & Ben Show"! 🇺🇸🚀💥
-
-01:05 – Two disclaimers
-01:42 – Recap…","Nov 12, 5:34:00 PM EST"
-1856471636561527076,"Lara Trump is genuinely great https://t.co/iqbDJAMTLe","Nov 12, 5:58:24 PM EST"
-1856481898685423705,"Something wrong with this chart, but I can’t quite figure it out 😂 https://t.co/Fp8wMvioaT","Nov 12, 6:39:11 PM EST"
-1856484106642829747,"Cool! https://t.co/wWviU7pfZk","Nov 12, 6:47:57 PM EST"
-1856502075162800482,"The prophecy has been fulfilled https://t.co/2EgiOBOGeM","Nov 12, 7:59:21 PM EST"
-1856502787930050927,"https://t.co/Vnk4MCAofY","Nov 12, 8:02:11 PM EST"
-1856503013226987539,"Yup https://t.co/bOwBPqR2oy","Nov 12, 8:03:05 PM EST"
-1856504428913705061,"Department of Government Efficiency
-
-The merch will be 🔥🔥🔥","Nov 12, 8:08:42 PM EST"
-1856504881483231694,"RT @VivekGRamaswamy: We will not go gently, @elonmusk. 🇺🇸","Nov 12, 8:10:30 PM EST"
-1856505561501561307,"Threat to democracy?
-
-Nope, threat to BUREAUCRACY!!!","Nov 12, 8:13:12 PM EST"
-1856506310444941571,"Sure does … https://t.co/fFTCB7lAFs","Nov 12, 8:16:11 PM EST"
-1856506953742094439,"RT @charliekirk11: BREAKING: President Trump has tapped Elon Musk and Vivek Ramaswamy to lead the DOGE — Department of Government Efficienc…","Nov 12, 8:18:44 PM EST"
-1856517586894369204,"Interesting thread https://t.co/bJ3ft5PUW7","Nov 12, 9:00:59 PM EST"
-1856518955541713326,"So true! https://t.co/sMtqWuJUY2","Nov 12, 9:06:26 PM EST"
-1856519262526963775,"The people are indeed watching https://t.co/FtxPpPGonF","Nov 12, 9:07:39 PM EST"
-1856519438381519333,"RT @chamath: D.O.G.E. https://t.co/P34ObKo7gm","Nov 12, 9:08:21 PM EST"
-1856519658301473258,"RT @AutismCapital: Elon’s first email to the entire Washington DC listserv https://t.co/chZQU7wRw5","Nov 12, 9:09:13 PM EST"
-1856520760656797801,"All actions of the Department of Government Efficiency will be posted online for maximum transparency.
-
-Anytime the public thinks we are cutting something important or not cutting something wasteful, just let us know!
-
-We will also have a leaderboard for ","Nov 12, 9:13:36 PM EST"
-1856523237208797221,"https://t.co/4K0ruu7UMS","Nov 12, 9:23:26 PM EST"
-1856523737429852622,"Wow https://t.co/qamI5yhRMm","Nov 12, 9:25:26 PM EST"
-1856523898470257082,"Making Government Fun Again! https://t.co/Q2s4rZKInx","Nov 12, 9:26:04 PM EST"
-1856524326591197273,"RT @Brick_Suit: @elonmusk Department of Governmental Efficiency is gonna be sweet! https://t.co/h1b6UF5g7l","Nov 12, 9:27:46 PM EST"
-1856524761804738691,"Your tax dollars at “work” 😂 https://t.co/FlxHy96bR3","Nov 12, 9:29:30 PM EST"
-1856524944672194695,"Cool https://t.co/bOJvfkyshV","Nov 12, 9:30:14 PM EST"
-1856525161001820178,"RT @america: More transparency in government is always better","Nov 12, 9:31:05 PM EST"
-1856525977129554374,"Definitely not! https://t.co/hkpqAV8co9","Nov 12, 9:34:20 PM EST"
-1856526354004517366,"RT @GailAlfarATX: The Rebel Flag
-
-When you're on X, you are often surrounded by your followers and many people who think like you on the to…","Nov 12, 9:35:50 PM EST"
-1856526443095765275,"RT @america: ELON MUSK ON D.O.G.E. “A lot of people who are taking advantage of the government are going to be upset about it… I need a lot…","Nov 12, 9:36:11 PM EST"
-1856526660440317977,"RT @pmarca: 🎯","Nov 12, 9:37:03 PM EST"
-1856526786806354071,"Yes https://t.co/Nt7SK8u1OI","Nov 12, 9:37:33 PM EST"
-1856527510814548431,"Either we get government efficient or America goes bankrupt.
-
-That’s what it comes down to.
-
-Wish I were wrong, but it’s true. https://t.co/HkCEe40xc0","Nov 12, 9:40:25 PM EST"
-1856527643119849528,"Same in government https://t.co/hOJLyPdvQb","Nov 12, 9:40:57 PM EST"
-1856528360320401634,"RT @DefiyantlyFree: Donald Trump won the electoral vote and the popular vote.
-
-We control both chambers of Congress.
-
-CNN and MSNBC are g…","Nov 12, 9:43:48 PM EST"
-1856528548648935643,"RT @MarshaBlackburn: Senator Rick Scott and I spoke earlier today about how to best ensure conservatives have a stronger voice in the proce…","Nov 12, 9:44:33 PM EST"
-1856530164236091660,"Progress https://t.co/bOJvfkyshV","Nov 12, 9:50:58 PM EST"
-1856530324877902112,"🇺🇸🇺🇸🚀🚀💫💫 https://t.co/z8rbHTpnA0","Nov 12, 9:51:36 PM EST"
-1856530955709587762,"So … what would you say you do here? 😂 https://t.co/LkdlfrIEc8","Nov 12, 9:54:07 PM EST"
-1856531114354946406,"RT @jeffreyatucker: When @elonmusk took over Twitter, he fired 4 out of 5 employees in a fortnight, and remade X to be the number one socia…","Nov 12, 9:54:44 PM EST"
-1856531152489591259,"RT @AutismCapital: Let those sinks in. 🔥 https://t.co/538Lv9LRJG","Nov 12, 9:54:54 PM EST"
-1856531508082672040,"It really is https://t.co/qjMsMsLlPl","Nov 12, 9:56:18 PM EST"
-1856531670943326528,"RT @Kristennetten: When Elon & Vivek of DOGE arrive in DC https://t.co/nEk2un8d82","Nov 12, 9:56:57 PM EST"
-1856531756083527702,"Yup https://t.co/zZR674MG4R","Nov 12, 9:57:17 PM EST"
-1856532456066695429,"RT @houmanhemmati: Incredible news: President @realDonaldTrump planning to tax excessively large private university endowments (which have…","Nov 12, 10:00:04 PM EST"
-1856532525633388683,"RT @lindayaX: @farzyness You are the media now. And me too 😊","Nov 12, 10:00:21 PM EST"
-1856532692927410319,"It morning in America again! https://t.co/Y9ev3ENUgS","Nov 12, 10:01:01 PM EST"
-1856532960104583329,"99 Federal agencies is more than enough https://t.co/OmWmfEHqyv","Nov 12, 10:02:05 PM EST"
-1856533257547890993,"RT @thatsKAIZEN: This is what happens when a top 20 Diablo player who has min-maxed his own life gets to min-max government
-
-based","Nov 12, 10:03:15 PM EST"
-1856537289033146689,"The public deserves to know https://t.co/SfSE53uuiy","Nov 12, 10:19:17 PM EST"
-1856537332049936571,"RT @BasedMikeLee: 🧵1. Tonight I hosted & moderated a forum for GOP senators, giving my colleagues a chance to hear from each of the three c…","Nov 12, 10:19:27 PM EST"
-1856542056308469775,"RT @VivekGRamaswamy: DOGE will soon begin crowdsourcing examples of government waste, fraud, & and abuse. Americans voted for drastic gover…","Nov 12, 10:38:13 PM EST"
-1856542141796774219,"RT @ElonFactsX: “This will send shockwaves through the system, and anyone involved in Government waste, which is a lot of people!”
-
-– Great…","Nov 12, 10:38:34 PM EST"
-1856542634199728442,"RT @CollinRugg: In honor of Elon and Vivek being picked as the heads of Department of Government Efficiency (DOGE), here some of the dumbes…","Nov 12, 10:40:31 PM EST"
-1856542694102782178,"RT @Rothmus: DOGE will fix this. https://t.co/RESkUSRoUD","Nov 12, 10:40:45 PM EST"
-1856542915750662274,"RT @BasedBeffJezos: The new SecDef of the USA.
-
-We are so back. https://t.co/5SRXzPu5wD","Nov 12, 10:41:38 PM EST"
-1856544610794799581,"Congrats @PeteHegseth! https://t.co/WD44fGcjr9","Nov 12, 10:48:22 PM EST"
-1856544809856446958,"Wow https://t.co/UBVFGJtiJ6","Nov 12, 10:49:10 PM EST"
-1856548680523788503,"🥜 https://t.co/WtiVsmJj3z","Nov 12, 11:04:33 PM EST"
-1856548741072683054,"RT @elon_docs: Elon Musk on D.O.G.E: We'll drain many swamps and be very transparent about it.
-
-“We're going to be very open and transparen…","Nov 12, 11:04:47 PM EST"
-1856549100231049662,"RT @VivekGRamaswamy: Afuera! 🔥","Nov 12, 11:06:13 PM EST"
-1856549598140977443,"Yeah https://t.co/vm8cJyOmsO","Nov 12, 11:08:11 PM EST"
-1856549845684588855,"RT @WholeMarsBlog: Just recorded a 4 hour long zero intervention drive on Tesla FSD 12.5.6.3
-
-End to end on highways is legit. This is a g…","Nov 12, 11:09:10 PM EST"
-1856549989377306827,"RT @martianwyrdlord: Holy shit.
-
-He's going for the endowments.
-
-He's going to not only tax, but confiscate the endowments of every univers…","Nov 12, 11:09:45 PM EST"
-1856636284208300422,"A weak faker vs the real deal https://t.co/Xnn475EnKX","Nov 13, 4:52:39 AM EST"
-1856636962645401627,"Incentives matter. There should be rewards for wise spending, but those who waste taxpayer funds cannot be allowed to keep doing so without consequences. https://t.co/5qupZtMHUC","Nov 13, 4:55:21 AM EST"
-1856637489487708211,"Make Orwell Fiction Again! https://t.co/7NEx53qkaZ","Nov 13, 4:57:26 AM EST"
-1856637767758815323,"This platform is at all-time highs.
-
-You are the media now. https://t.co/8Zy049xGAh","Nov 13, 4:58:33 AM EST"
-1856638118520111330,"Yes! https://t.co/pfSB25M1qO","Nov 13, 4:59:56 AM EST"
-1856639260117352634,"Exactly https://t.co/WtJhXlmnwl","Nov 13, 5:04:28 AM EST"
-1856639364337414282,"This needs to stop https://t.co/wvwxkHvVMT","Nov 13, 5:04:53 AM EST"
-1856646184816808228,"RT @trussliz: What is needed in Britain 👇","Nov 13, 5:31:59 AM EST"
-1856652010415599863,"This is unacceptable. Do the people of Italy live in a democracy or does an unelected autocracy make the decisions? https://t.co/MdVUbt1jbF","Nov 13, 5:55:08 AM EST"
-1856665933537792272,"Some of this stuff is not merely a waste of money, but outright evil https://t.co/OzNFTaXz3i","Nov 13, 6:50:28 AM EST"
-1856673944058630154,"This is the only way https://t.co/Lp7k907pHy","Nov 13, 7:22:18 AM EST"
-1856674203702796768,"Sure will 🚀🚀🚀 https://t.co/sV6fVJCFUW","Nov 13, 7:23:20 AM EST"
-1856674610785157523,"RT @realDonaldTrump: https://t.co/fPSZoe9S5c","Nov 13, 7:24:57 AM EST"
-1856675200341074325,"Important details https://t.co/L0KHaMDiFn","Nov 13, 7:27:17 AM EST"
-1856708008316719510,"It will be done much faster https://t.co/06TdkNZ1Ko","Nov 13, 9:37:39 AM EST"
-1856711249045643321,"🙌 https://t.co/dwP9IkMCCy","Nov 13, 9:50:32 AM EST"
-1856728143836369071,"💯 https://t.co/6dNgYsoHHu","Nov 13, 10:57:40 AM EST"
-1856728740845232481,"The “approve cookie” banner is super annoying. It should be removed. https://t.co/FNXOqD7FPi","Nov 13, 11:00:02 AM EST"
-1856729913148989710,"The world is suffering slow strangulation by overregulation. Every year, the noose tightens a little more.
-
-We finally have a mandate to delete the mountain of choking regulations that do not serve the greater good. https://t.co/PJnEA4InAZ","Nov 13, 11:04:42 AM EST"
-1856730108888756646,"Exactly https://t.co/t9oeEf808n","Nov 13, 11:05:28 AM EST"
-1856730465601761573,"😂 https://t.co/W9ljsho8Kw","Nov 13, 11:06:54 AM EST"
-1856730523361546673,"RT @EvaVlaar: No. @elonmusk & PM @GiorgiaMeloni hanno ragione. Il fatto che i giudici del tribunale di Roma ritengano di essere al di sopra…","Nov 13, 11:07:07 AM EST"
-1856733455939510593,"The Democratic Party senate candidate in Pennsylvania is trying to change the outcome of the election by counting NON-CITIZEN votes, which is illegal.
-
-That has been their goal all along. They are just flat-out openly doing crime now. https://t.co/HcUlRd","Nov 13, 11:18:46 AM EST"
-1856734112444264477,"“Government-funded non-governmental organizations” is obviously a contradiction in terms 😂
-
-They are just an illegal arm of the government. https://t.co/j5CRlWK388","Nov 13, 11:21:23 AM EST"
-1856736622026653815,"🇺🇸🇺🇸 https://t.co/s9lZoB0zY1","Nov 13, 11:31:21 AM EST"
-1856763285053608435,"🚀🚀🚀 https://t.co/z7H8qqLQUd","Nov 13, 1:17:18 PM EST"
-1856765175598387453,"Takes 5 mins from receiving your @Starlink to it working! https://t.co/hf2cPJt0Tz","Nov 13, 1:24:49 PM EST"
-1856786457698210131,"It begins https://t.co/gVhuWFuBNz","Nov 13, 2:49:23 PM EST"
-1856786698543452444,"RT @SpaceX: Starship’s fifth flight test was a seminal moment in iterating towards a fully and rapidly reusable launch system.
-
-Next up: t…","Nov 13, 2:50:21 PM EST"
-1856792689527984443,"RT @Jason: Independent of how you feel about Trump, you should be absolutely thrilled that Elon and @VivekGRamaswamy are joining forces to…","Nov 13, 3:14:09 PM EST"
-1856799959775137922,"RT @elonmusk: @mattgaetz Congratulations!","Nov 13, 3:43:02 PM EST"
-1856808536447111457,"RT @SenJohnThune: Republicans have a mandate from the American people to clean up the mess left by the Biden-Harris-Schumer agenda and to d…","Nov 13, 4:17:07 PM EST"
-1856808899636240586,"RT @boringcompany: Prufrock fits nicely in the Starship payload bay","Nov 13, 4:18:34 PM EST"
-1856809119115522499,"The Hammer of Justice is coming","Nov 13, 4:19:26 PM EST"
-1856809199256101176,"RT @Tesla: FSD Supervised sees more than you
-
-And never gets tired or distracted https://t.co/eMp6LwhoIw","Nov 13, 4:19:45 PM EST"
-1856823028027625589,"The absurd regulations get worse every year. Unless we push back, everything will become illegal. https://t.co/EvscHG7G45","Nov 13, 5:14:42 PM EST"
-1856823092338696518,"RT @JudiciaryGOP: Congrats, @RepMattGaetz!","Nov 13, 5:14:57 PM EST"
-1856824760606376370,"RT @teslaownersSV: 𝕏 is only trusted source for news.","Nov 13, 5:21:35 PM EST"
-1856825799955157397,"Send https://t.co/bOUOek6al6 links to friends so they know what’s really going on! https://t.co/RTirtrBSkT","Nov 13, 5:25:43 PM EST"
-1856831591168794827,"RT @america: The American people deserve a government that prioritizes sensible spending instead of wasting tax dollars with no scrutiny.","Nov 13, 5:48:44 PM EST"
-1856831705933382042,"RT @KenPaxtonTX: I am excited to work with my friend @mattgaetz. There are few people I trust more to take on the deep state and end the we…","Nov 13, 5:49:11 PM EST"
-1856831915182985404,"RT @america: Just a small example of how your leaders spend your money and why the Department of Government Efficiency is needed https://t.…","Nov 13, 5:50:01 PM EST"
-1856843524555104526,"While others partied, Cybertruck studied the blade https://t.co/8OV4BzHiF7","Nov 13, 6:36:09 PM EST"
-1856843794018140566,"😂 https://t.co/xj38Oxk5B4","Nov 13, 6:37:13 PM EST"
-1856844410870182109,"RT @CommunityNotes: Today, we’re giving more contributors the ability to write notes on images & videos, which show on posts with matching…","Nov 13, 6:39:40 PM EST"
-1856851950270021984,"The hidden regulatory cost burden on Americans in immense https://t.co/7Eab4uLuqg","Nov 13, 7:09:38 PM EST"
-1856856019118215249,"The big government machine https://t.co/5QL0b4xRBZ","Nov 13, 7:25:48 PM EST"
-1856856311343800620,"Yay!! https://t.co/Xk94ZHb3p0","Nov 13, 7:26:58 PM EST"
-1856856741813608952,"You are the media now! https://t.co/TPTTkc3puo","Nov 13, 7:28:40 PM EST"
-1856857283910660529,"😂 https://t.co/DH9abUoKay","Nov 13, 7:30:49 PM EST"
-1856857419092996406,"RT @DefiyantlyFree: https://t.co/OLBfgwFsIm","Nov 13, 7:31:22 PM EST"
-1856857856970002791,"RT @teslaownersSV: 𝕏 usage is higher than ever. People are sick of the lies from legacy media. https://t.co/DpmcPyCUtq","Nov 13, 7:33:06 PM EST"
-1856858481615135207,"This is awesome beyond words 🤣🤣 https://t.co/TP1sKQH1pa","Nov 13, 7:35:35 PM EST"
-1856921435576365162,"Do these expenditures seem like a good use of your taxes?
- https://t.co/itgI9Np2m1","Nov 13, 11:45:44 PM EST"
-1856926451154505946,"True https://t.co/zp72hdNMAK","Nov 14, 12:05:40 AM EST"
-1856926672873730435,"RT @MarioNawfal: 🚨HOW SPACEX REVOLUTIONIZED LAUNCH COSTS: FROM $25K TO $200 PER KG
-
-SpaceX's innovation has dramatically transformed the ec…","Nov 14, 12:06:33 AM EST"
-1856930152350974452,"https://t.co/MbLtPzlSBf","Nov 14, 12:20:23 AM EST"
-1856932639191527522,"Of course https://t.co/gRPUH6xOnP","Nov 14, 12:30:15 AM EST"
-1856933297315623258,"Keep sending https://t.co/bOUOek5Cvy links to friends so they know what’s actually happening! https://t.co/aEe8VX5kdu","Nov 14, 12:32:52 AM EST"
-1856933665692934518,"Awesome 😎 https://t.co/q4cztFblbP","Nov 14, 12:34:20 AM EST"
-1856933745158177106,"RT @SpaceX: Falcon 9’s first stage lands on the Of Course I Still Love You droneship https://t.co/9ztO9qXvUm","Nov 14, 12:34:39 AM EST"
-1856933822085931467,"RT @wlopwangling: I believe in a bond that transcends love - a salvation found in each other. https://t.co/Vq8nKtuXRc","Nov 14, 12:34:58 AM EST"
-1856934417249276238,"💯 https://t.co/yYDik99K1U","Nov 14, 12:37:19 AM EST"
-1856935068284940775,"RT @teslaownersSV: 𝕏 is the only source of news I trust.","Nov 14, 12:39:55 AM EST"
-1856935396829008237,"True of both parties 😂 https://t.co/9Hs4iuvUoD","Nov 14, 12:41:13 AM EST"
-1856935591696289889,"The sheer magnitude of government waste is staggering to behold! https://t.co/RXxxXrAXoK","Nov 14, 12:41:59 AM EST"
-1856936641253781518,"Merrick Garland is not a good person https://t.co/dHx4NoUmI3","Nov 14, 12:46:10 AM EST"
-1856937215483396537,"The excess government spending is what causes inflation!
-
-ALL government spending is taxation. This is a very important concept to appreciate.
-
-It is either direct taxation, like income tax, or indirect via inflation due to increasing the money supply. ","Nov 14, 12:48:27 AM EST"
-1856938399149514790,"The real number is far higher https://t.co/XNbim9cKot","Nov 14, 12:53:09 AM EST"
-1856938980853354977,"Amazing 😂
- https://t.co/CmDmUFXptP","Nov 14, 12:55:27 AM EST"
-1856939236210938193,"Seriously
- https://t.co/kxcg2Arf8v","Nov 14, 12:56:28 AM EST"
-1856939549693231172,"Good point https://t.co/HRiIE4ef2W","Nov 14, 12:57:43 AM EST"
-1856939827125461445,"Wild times ahead for rocket launches https://t.co/HvEfooi5Vi","Nov 14, 12:58:49 AM EST"
-1856944134956671458,"This is so awesome 😎 😂 https://t.co/QLixI9t1tC","Nov 14, 1:15:56 AM EST"
-1856946381971206331,"End tribalism in entertainment! https://t.co/lr5M4wCRNA","Nov 14, 1:24:52 AM EST"
-1856949425412657482,"Nature is healing https://t.co/KkReLGwwQH","Nov 14, 1:36:58 AM EST"
-1856949766644437273,"20 more Starlinks in orbit https://t.co/yNe9kOlFrJ","Nov 14, 1:38:19 AM EST"
-1856955741246009447,"True https://t.co/ogbH9AHwfi","Nov 14, 2:02:03 AM EST"
-1856955855658270733,"Beautiful movie https://t.co/XkSjibAcyv","Nov 14, 2:02:31 AM EST"
-1856956015327011045,"Yeah https://t.co/T7TnghGCNV","Nov 14, 2:03:09 AM EST"
-1856957049143267564,"Starship Flight 6 coming up soon!
- https://t.co/WgtLjxsP52","Nov 14, 2:07:15 AM EST"
-1856960025832337663,"True https://t.co/GstlmZe7Hi","Nov 14, 2:19:05 AM EST"
-1856962072757620980,"Crazy https://t.co/HRi5VOg0pK","Nov 14, 2:27:13 AM EST"
-1857036937548202434,"Douglas Murray is an excellent writer https://t.co/ei1WIHq5L7","Nov 14, 7:24:42 AM EST"
-1857044160462618923,"Without rigorous pursuing truth, you obviously cannot understand the true nature of the universe https://t.co/K7qYfIbuIO","Nov 14, 7:53:24 AM EST"
-1857045110032126004,"It is the only way to build a large enough city for Mars to be self-sustaining https://t.co/e2Vt6NMA6L","Nov 14, 7:57:11 AM EST"
-1857045875417108949,"Even a brief stint in government by people with high competence and integrity would greatly help America https://t.co/bcKHSorSn5","Nov 14, 8:00:13 AM EST"
-1857046018547741116,"Cool https://t.co/IE9IOjh7yQ","Nov 14, 8:00:47 AM EST"
-1857048689937723895,"John Bolton, who is a staggeringly dumb warmonger, being against someone is a great sign!
-
-Gaetz will be great. https://t.co/IKtqnEKOKg","Nov 14, 8:11:24 AM EST"
-1857049104406224925,"That is the goal https://t.co/BFDbQuCFd5","Nov 14, 8:13:03 AM EST"
-1857050002746454373,"Another Falcon launch
- https://t.co/hrsIMXGxYf","Nov 14, 8:16:37 AM EST"
-1857050774288670736,"Looks like a lot of opportunity for @DOGE! https://t.co/jGeL08Rgmv","Nov 14, 8:19:41 AM EST"
-1857051336535158878,"RT @MarioNawfal: 🚨SPACEX TO LAUNCH 24 STARLINK SATELLITES IN BACK-TO-BACK FLIGHTS
-
-SpaceX is set to launch 24 Starlink satellites from Cape…","Nov 14, 8:21:55 AM EST"
-1857051392248033280,"Exactly https://t.co/Qzc2HpIUJF","Nov 14, 8:22:08 AM EST"
-1857051744842166573,"RT @Anc_Aesthetics: I don't know who needs to hear this but we just won a landslide election and the popular vote. If you are too scared to…","Nov 14, 8:23:32 AM EST"
-1857052665567420497,"RT @PeterSweden7: Britain is turning into a woke stasi police state.
-
-Journalists are being interrogated because someone felt "offended" ov…","Nov 14, 8:27:12 AM EST"
-1857052742788776189,"Yes 🔧 https://t.co/ks64wN6lw9","Nov 14, 8:27:30 AM EST"
-1857054920974664143,"As predicted https://t.co/2mOJqi4gB3","Nov 14, 8:36:10 AM EST"
-1857056487710814495,"RT @teslaownersSV: Today, Neuralink is already massively impressive, but compared to the potential it holds of where it can be in the futur…","Nov 14, 8:42:23 AM EST"
-1857057166282158141,"RT @MarioNawfal: ELON: THE ECONOMY IS NOT A ZERO-SUM GAME
-
-“I think generally, people should always be wary that they may have, either cons…","Nov 14, 8:45:05 AM EST"
-1857057908992721177,"RT @diana_dukic: 𝕏 is the only trustworthy platform","Nov 14, 8:48:02 AM EST"
-1857058645659263209,"RT @DefiyantlyFree: . @BillAckman discusses the potential economic boom due to a second Trump term and how even investors who didn’t vote f…","Nov 14, 8:50:58 AM EST"
-1857064841212551629,"https://t.co/4vIyGDXM47","Nov 14, 9:15:35 AM EST"
-1857064962994172382,"Yes https://t.co/YLEqTgE3eW","Nov 14, 9:16:04 AM EST"
-1857065396806848852,"Crazy https://t.co/sgfqogullh","Nov 14, 9:17:47 AM EST"
-1857066170161021269,"Super important to send https://t.co/bOUOek5Cvy links to friends to show them what’s really true! https://t.co/ysKlY7EaKj","Nov 14, 9:20:52 AM EST"
-1857066302432588228,"Wow! https://t.co/ybuobja0rJ","Nov 14, 9:21:23 AM EST"
-1857066358963318971,"💯 https://t.co/AzqSSvFAHt","Nov 14, 9:21:37 AM EST"
-1857066604170760477,"RT @KonstantinKisin: This interview was 🔥🔥🔥","Nov 14, 9:22:35 AM EST"
-1857067049521959169,"Thanks! https://t.co/NSAOGRgRql","Nov 14, 9:24:21 AM EST"
-1857067349167202761,"RT @SquawkCNBC: "I came back to him because, honestly, what I learned is his instincts are so good," says Colony Capital Founder & @realDon…","Nov 14, 9:25:33 AM EST"
-1857068064447082709,"Cool https://t.co/lZlzAfuEqI","Nov 14, 9:28:23 AM EST"
-1857068310216446330,"Another batch of Starlinks in orbit https://t.co/VJE2d1ckPx","Nov 14, 9:29:22 AM EST"
-1857068712492191763,"True https://t.co/BfbGk5wCr0","Nov 14, 9:30:58 AM EST"
-1857110494433190316,"😂 https://t.co/tt8aCxV8nl","Nov 14, 12:16:59 PM EST"
-1857110647835660485,"RT @SpaceX: Falcon 9 lifts off from pad 40 in Florida, completing our 17th launch in 31 days! https://t.co/w0snRDcUA9","Nov 14, 12:17:36 PM EST"
-1857110814848888922,"RT @EndWokeness: BREAKING: Venezuelan gang TDA is now operating in "every city in Tennessee" https://t.co/qU1GkBxveJ","Nov 14, 12:18:16 PM EST"
-1857111669568323750,"RT @ajtourville: NEWS: @Starlink installed just outside Lumsden, Saskatchewan 🇨🇦
-
-Whether you’re working from home, streaming, or need depe…","Nov 14, 12:21:40 PM EST"
-1857111919817277779,"Hard to believe that things turned out this way https://t.co/oHWivbZx9I","Nov 14, 12:22:39 PM EST"
-1857112441529700671,"Indeed, this will be tedious work, make lots of enemies & compensation is zero.
-
-What a great deal! 😂 https://t.co/16e7EKRS6i","Nov 14, 12:24:44 PM EST"
-1857172785023291779,"Congratulations @RobertKennedyJr! https://t.co/lLMF0juTLt","Nov 14, 4:24:31 PM EST"
-1857195205356576797,"🐹 https://t.co/SJJr18Ywiu","Nov 14, 5:53:36 PM EST"
-1857197036527050757,"https://t.co/BvzLAXErvf","Nov 14, 6:00:53 PM EST"
-1857213101533188484,"Wow! https://t.co/bN5xMlzlWN","Nov 14, 7:04:43 PM EST"
-1857256580397330472,"RT @america: Here’s what the U.S. Government wasted $900 Billion of your tax dollars on in 2023.
-
-The Department of Government Efficiency (…","Nov 14, 9:57:29 PM EST"
-1857288831453503838,"RT @ElonFactsX: Elon Musk said today:
-
-“I think this will be the most transformative presidency, perhaps since the founding of the country.…","Nov 15, 12:05:38 AM EST"
-1857296402927288322,"Yes https://t.co/AMDNPaYlbw","Nov 15, 12:35:44 AM EST"
-1857302516125569304,"🤯 https://t.co/xI738NpOq5","Nov 15, 1:00:01 AM EST"
-1857308617449279858,"RT @konstructivizm: Incredible New Image of Saturn
-NASA https://t.co/yidfXfzoPf","Nov 15, 1:24:16 AM EST"
-1857313354315939960,"RT @AutismCapital: 🚨TOM HOMAN: "The cartels are like a Fortune 500 company. The Sinaloa cartel is in over 40 countries around the globe. Th…","Nov 15, 1:43:05 AM EST"
-1857319904233267289,"RT @Tesla: Watch movies, play music & games, adjust airflow & more on the rear display https://t.co/5DVUt47liE","Nov 15, 2:09:07 AM EST"
-1857322075817484448,"RT @boringcompany: Prufrock-3 undergoing final checks on “The Monster.”
-
-Once complete, Prufrock-3 will launch directly into the ground a…","Nov 15, 2:17:44 AM EST"
-1857322947670680005,"RT @Starlink: High-speed connectivity coming soon to a rail line near you🛰️🚊
-
-https://t.co/wkcARbqFzX","Nov 15, 2:21:12 AM EST"
-1857412257786810398,"Interesting https://t.co/DqrgPfCLGo","Nov 15, 8:16:05 AM EST"
-1857412471364911406,"Governing Mars will be up to the Martians, but these are some ideas https://t.co/2HuX6KeOks","Nov 15, 8:16:56 AM EST"
-1857414511960940646,"Yes https://t.co/zV3O1FuFAO","Nov 15, 8:25:03 AM EST"
-1857417421142806586,"RT @madorni: Fin. https://t.co/EncsskRux5","Nov 15, 8:36:37 AM EST"
-1857417792795881689,"There are thousands of examples of taxpayer dollars being wasted. These just a few: https://t.co/YmyeNigvRU","Nov 15, 8:38:05 AM EST"
-1857418145578791104,"RT @GailAlfarATX: Elon Musk shares a moment of sweet victory for America with Javier Milei. There’s also a slight sense of urgency based on…","Nov 15, 8:39:29 AM EST"
-1857418296506658873,"This seems very reasonable https://t.co/Rw1ZgkygSw","Nov 15, 8:40:05 AM EST"
-1857418530146140284,"This seems messed up https://t.co/G1hmBSJV9o","Nov 15, 8:41:01 AM EST"
-1857418907549610163,"This is the sort of reasoned debate that I like to see on this platform https://t.co/ZLRuWZ6Tl8","Nov 15, 8:42:31 AM EST"
-1857420107598667805,"The censorship and advertising boycott cartel must end now! https://t.co/jX7yyQspa3","Nov 15, 8:47:17 AM EST"
-1857420350516056102,"The UK has become a police state https://t.co/yEjvyHZaD2","Nov 15, 8:48:15 AM EST"
-1857420521555529942,"Getting ready for Starship Flight 6! https://t.co/9TM5crChVG","Nov 15, 8:48:56 AM EST"
-1857446328361529544,"RT @TheRabbitHole84: As of 2023, the type of government reform that has the most support is Dismantling which was defined as:
-
-"Very major…","Nov 15, 10:31:29 AM EST"
-1857446953912566152,"Open dialogue between opposing viewpoints is vital to a healthy democracy https://t.co/fSSHIX8g5Y","Nov 15, 10:33:58 AM EST"
-1857447620198674593,"This is so true.
-
-Please send https://t.co/bOUOek5Cvy links to friends, so that they know what’s really going on! https://t.co/8lFai2ZZaN","Nov 15, 10:36:37 AM EST"
-1857448200845602951,"The political party closest to the views of the “moderates” will win. That party is currently the Republicans. https://t.co/r7NG3zl812","Nov 15, 10:38:55 AM EST"
-1857448532321448388,"They are openly trying to count illegal ballots in Pennsylvania! Unreal … https://t.co/ADYWl3zeDv","Nov 15, 10:40:14 AM EST"
-1857449353641689371,"RT @diana_dukic: https://t.co/Ac79AJYJtF","Nov 15, 10:43:30 AM EST"
-1857449911215706118,"Great video of Starship Super Heavy Booster landing as seen from Mexico! 🇲🇽
- https://t.co/R695MUaicc","Nov 15, 10:45:43 AM EST"
-1857452134112895486,"RT @TheBabylonBee: APPALLING: New Trump Appointee Has Zero Experience Being A Useless Government Bureaucrat https://t.co/bEC9aSaNm9 https:/…","Nov 15, 10:54:33 AM EST"
-1857452661278228637,"RT @BigImpactHumans: Strive to greater heights,
-For a future brighter than the past. https://t.co/yRL4BlFthR","Nov 15, 10:56:38 AM EST"
-1857453317607055663,"I love Gorsuch. RIP PNut 🫡. https://t.co/mvAejTsAJ3","Nov 15, 10:59:15 AM EST"
-1857455784860213373,"True! https://t.co/cEQImoI7DO","Nov 15, 11:09:03 AM EST"
-1857456159759687980,"Last night with @realDonaldTrump & @JMilei https://t.co/8AjQ8QMAIM","Nov 15, 11:10:33 AM EST"
-1857457062722122144,"Guess not 🤣🤣 https://t.co/c7AnicbVWs","Nov 15, 11:14:08 AM EST"
-1857457274102403138,"🤨 https://t.co/Hg73gDHRAX","Nov 15, 11:14:58 AM EST"
-1857469415568167019,"It will be destroyed root and stem https://t.co/KNgOk1V1RU","Nov 15, 12:03:13 PM EST"
-1857471850676367646,"Just want to say that we super appreciate major brands resuming advertising on our platform!
-
-Thanks @lindayaX and the whole 𝕏 team for your hard work in restoring confidence in our platform and ensuring that advertising content only appears where advert","Nov 15, 12:12:54 PM EST"
-1857472204214022571,"🤨 https://t.co/TC5WwkVd3T","Nov 15, 12:14:18 PM EST"
-1857524809107730901,"RT @RuiHuang_art: 诞 Nativitas
-Open edition on @Highlight_xyz
-with @zerion https://t.co/nT5S4kPAIs","Nov 15, 3:43:20 PM EST"
-1857527084739920282,"RT @rookisaacman: @SawyerMerritt @Starlink Starship will be such a 'light switch' moment for humankind and along the way it will bring a lo…","Nov 15, 3:52:22 PM EST"
-1857558892974321713,"How @Starlink works https://t.co/9inqmnJp7H","Nov 15, 5:58:46 PM EST"
-1857558921738858546,"RT @Teslaconomics: @Starlink @SawyerMerritt It’s the most reliable internet in the world, I use it every single day and it has never let me…","Nov 15, 5:58:53 PM EST"
-1857559264560140488,"RT @TheChiefNerd: Rob Baron Says Elon Musk Will Bring the Efficiency of Tesla & SpaceX to the U.S. Government
-
-“The government wanted to se…","Nov 15, 6:00:15 PM EST"
-1857590183215948116,"Swindly Sam is at it again … https://t.co/g86nws9g9h","Nov 15, 8:03:06 PM EST"
-1857595843806654954,"https://t.co/xYKGJ0kixW","Nov 15, 8:25:36 PM EST"
-1857601441990361334,"Interesting thread https://t.co/xidm4lrrB8","Nov 15, 8:47:50 PM EST"
-1857615170371002496,"Yup https://t.co/fGNMPJMbF3","Nov 15, 9:42:24 PM EST"
-1857615490694226075,"RT @ibab: Post your daily use cases for Grok here and we will improve them.","Nov 15, 9:43:40 PM EST"
-1857621017520181743,"😂 https://t.co/vCuaVOq9t2","Nov 15, 10:05:38 PM EST"
-1857622499518726652,"Fetterman has a good sense of humor 😂 https://t.co/pfGkmWGWmj","Nov 15, 10:11:31 PM EST"
-1857637174201536734,"True :) https://t.co/DWmAnvrsMT","Nov 15, 11:09:50 PM EST"
-1857637584714780761,"Making some progress https://t.co/0Yf1TyHilk","Nov 15, 11:11:28 PM EST"
-1857638282147831865,"Population collapse https://t.co/nfxEzjFzSH","Nov 15, 11:14:14 PM EST"
-1857638514034184537,"https://t.co/9Pd5TV4qWA","Nov 15, 11:15:09 PM EST"
-1857648410133688676,"RT @SpaceX: Targeting Tuesday, November 19 for Starship’s sixth flight test. A 30-minute launch window opens at 4:00 p.m. CT → https://t.co…","Nov 15, 11:54:29 PM EST"
-1857650247352119784,"Cool https://t.co/rog7TyCZQB","Nov 16, 12:01:47 AM EST"
-1857662892813742277,"RT @anime_twits: https://t.co/b5A3RGdga9","Nov 16, 12:52:02 AM EST"
-1857666029263921200,"RT @america: The American people deserve Free Speech on the internet","Nov 16, 1:04:29 AM EST"
-1857666846972850592,"https://t.co/4LPeGnGPi2","Nov 16, 1:07:44 AM EST"
-1857667225852826080,"Starting to feel like The @DOGE has real potential","Nov 16, 1:09:15 AM EST"
-1857670026465063297,"RT @teslaownersSV: 𝕏 is addicting. It’s the everything app.","Nov 16, 1:20:22 AM EST"
-1857670457807208595,"RT @texas_lizard: ~S T A R S H I P ~ https://t.co/CvGnzFkHxj","Nov 16, 1:22:05 AM EST"
-1857687835211407374,"RT @GOPoversight: Incoming Border Czar Tom Homan says that under the Biden-Harris Administration, Laken Riley’s murderer was given a free a…","Nov 16, 2:31:08 AM EST"
-1857694219244048691,"Wow, this is crazy https://t.co/AZLBlO6AVB","Nov 16, 2:56:30 AM EST"
-1857694995550986383,"Exactly https://t.co/YM7CIyDDqf","Nov 16, 2:59:35 AM EST"
-1857696032496267390,"RT @kevinnbass: Sweden did not lock down and had the best outcomes in Europe.
-
-Doctors perpetuated a mass disinformation campaign to propag…","Nov 16, 3:03:43 AM EST"
-1857696339938652400,"RT @AutismCapital: It's really happening. It's all happening. https://t.co/WMDDbScEqS","Nov 16, 3:04:56 AM EST"
-1857698387371397241,"Good move https://t.co/lrIevpBU3l","Nov 16, 3:13:04 AM EST"
-1857699114969940365,"It was almost fatal https://t.co/yI7XQbTmJB","Nov 16, 3:15:58 AM EST"
-1857777966152822946,"This is the way https://t.co/gNW8tQ5B9L","Nov 16, 8:29:17 AM EST"
-1857778329807405528,"They almost succeeded in America and would have done the same thing here if @realDonaldTrump had not won https://t.co/kuE1ulPgyG","Nov 16, 8:30:44 AM EST"
-1857779257612673515,"Not good https://t.co/9WLSgYQrUe","Nov 16, 8:34:25 AM EST"
-1857796179632734392,"😂 https://t.co/zuKmneQlWO","Nov 16, 9:41:40 AM EST"
-1857799774294212721,"The radical left is at it again. Same playbook:
-
-1. They accuse anyone who says illegal votes are being counted of being a far right wing conspiracy theorist.
-
-2. It turns out to be happening …
-
-3. They AGREE it’s happening, but now that’s actually GOOD!","Nov 16, 9:55:57 AM EST"
-1857800924292354521,"🥱 https://t.co/E7FFqwOxTa","Nov 16, 10:00:31 AM EST"
-1857801163837428122,"Yup https://t.co/pUCl6nRYcc","Nov 16, 10:01:28 AM EST"
-1857801789367558168,"Haha true https://t.co/PRlr05fxYm","Nov 16, 10:03:57 AM EST"
-1857802505729515955,"There will be consequences for those who pushed foreign interference hoaxes.
-
-The Hammer of Justice is coming.","Nov 16, 10:06:48 AM EST"
-1857804512209043735,"Yup https://t.co/RHqQYCQdXE","Nov 16, 10:14:46 AM EST"
-1857807199579386220,"RT @teslaeurope: Model 3 in Austria https://t.co/O2oV4lw27J","Nov 16, 10:25:27 AM EST"
-1857807668158558508,"Ron left the Democratic Party, because they have moved so far left that they are out of touch with the people.
-
-That is why they lost so badly in this election. https://t.co/Yklewj2pVd","Nov 16, 10:27:19 AM EST"
-1857807850514333961,"Sensible https://t.co/YrvLN9yjiZ","Nov 16, 10:28:02 AM EST"
-1857808494570684812,"Much appreciated https://t.co/O21LlumHOo","Nov 16, 10:30:36 AM EST"
-1857809033958203550,"Bingo https://t.co/y39HgPWfBZ","Nov 16, 10:32:44 AM EST"
-1857809746738188339,"https://t.co/SY42rvf9I9","Nov 16, 10:35:34 AM EST"
-1857809846197748087,"RT @teslaownersSV: Ditch mainstream bias! 𝕏 is your only trusted Musk Industries source. Find out what’s really going on at SpaceX, Tesla,…","Nov 16, 10:35:58 AM EST"
-1857809970038808611,"Launching on Tuesday https://t.co/8gxIuSFiKr","Nov 16, 10:36:27 AM EST"
-1857811663027630158,"He sense of humor is amazing 😂
-
-https://t.co/4BL4rTXaZS https://t.co/pacq5vNkza","Nov 16, 10:43:11 AM EST"
-1857811901763260924,"Such a cult! https://t.co/0feMuHEgNt","Nov 16, 10:44:08 AM EST"
-1857814466101960783,"Interesting https://t.co/ONE5OCIY2r","Nov 16, 10:54:19 AM EST"
-1857814606120436119,"https://t.co/9gn18YBB1A","Nov 16, 10:54:53 AM EST"
-1857814974325833908,"🤨 https://t.co/RSWewefp8h","Nov 16, 10:56:21 AM EST"
-1857815198200975668,"Red shift https://t.co/W4cE3JvbLr","Nov 16, 10:57:14 AM EST"
-1857815504087302605,"Send https://t.co/bOUOek5Cvy links to friends so they know what’s actually happening! https://t.co/KvsIuq6Z1v","Nov 16, 10:58:27 AM EST"
-1857815824490443236,"RT @elon_docs: Javier Milei: Elon Musk's work on 𝕏 has saved humanity.
-
-“There is a silent majority, or rather silenced, that has begun to…","Nov 16, 10:59:43 AM EST"
-1857816470371078145,"RT @cb_doge: You can fine-tune your 𝕏 ‘For You’ feed by engaging with and sharing posts that interest you.
-
-It’s a simple way to make your…","Nov 16, 11:02:17 AM EST"
-1857819784865362211,"Would be interesting to hear more people weigh in on this for @realDonaldTrump to consider feedback.
-
-My view fwiw is that Bessent is a business-as-usual choice, whereas @howardlutnick will actually enact change.
-
-Business-as-usual is driving America ban","Nov 16, 11:15:27 AM EST"
-1857819857766465600,"RT @america: NYC Mayor Eric Adams explains that the American people care more about issues that impact them, not legacy media hoaxes:
-
-“The…","Nov 16, 11:15:45 AM EST"
-1857822093477327322,"Courage during tough times is a great virtue https://t.co/4kVCwdiOi8","Nov 16, 11:24:38 AM EST"
-1857822233470660826,"RT @MarioNawfal: 🚨🇺🇸NAVY SEAL WHO KILLED BIN LADEN PRAISES TRUMP'S DEFENSE PICK
-
-Robert O’Neill, the Navy SEAL who killed Osama bin Laden,…","Nov 16, 11:25:11 AM EST"
-1857829492271481029,"Yeah https://t.co/IR7addyHak","Nov 16, 11:54:02 AM EST"
-1857829592792175062,"Cool https://t.co/jwM5W1wE6G","Nov 16, 11:54:26 AM EST"
-1857844941403111853,"Yeah https://t.co/v6CsllfRp8","Nov 16, 12:55:25 PM EST"
-1857845431956582839,"You are the media now https://t.co/wbiYA56d1G","Nov 16, 12:57:22 PM EST"
-1857846409187438626,"RT @Bangershell11: 🇦🇷🚀 | ARGENTINA SOARS: JP Morgan Revises Forecast, Predicting 8.5% Annual GDP Growth https://t.co/QtKSBxgHvK","Nov 16, 1:01:15 PM EST"
-1857848690204971264,"🤨 https://t.co/DXitE0o0Yc","Nov 16, 1:10:19 PM EST"
-1857871820809978159,"Sounds like a job for @DOGE! https://t.co/JPU1b8rUUY","Nov 16, 2:42:14 PM EST"
-1857872013836300316,"RT @Geiger_Capital: The IRS is warning Americans that starting 2025 they must report payments on Venmo, PayPal & Zelle of over $600.
-
-Meanw…","Nov 16, 2:43:00 PM EST"
-1857880306079903843,"RT @MarioNawfal: 🇺🇸JOE ROGAN: I’VE GROWN TO LIKE TRUMP
-
-@joerogan : "As time went on I was like, 'Oh you need a guy that is completely craz…","Nov 16, 3:15:57 PM EST"
-1857880683357544615,"A clear mandate for change from the people https://t.co/2hX5oeBvAS","Nov 16, 3:17:27 PM EST"
-1857881163894763978,"Crazy https://t.co/gI5b1Gzine","Nov 16, 3:19:21 PM EST"
-1857895303309123930,"https://t.co/7MFINBcBgt","Nov 16, 4:15:32 PM EST"
-1857898143355924871,"True https://t.co/O7qj2sbQJR","Nov 16, 4:26:50 PM EST"
-1857898904898953472,"Seriously 😂 @TheBabylonBee https://t.co/dStvfI8U92","Nov 16, 4:29:51 PM EST"
-1857899381703192644,"🎯🎯 https://t.co/LmftIHYDLQ","Nov 16, 4:31:45 PM EST"
-1857900504531063181,"Legacy media is dying fast https://t.co/JhXkRP54jo","Nov 16, 4:36:13 PM EST"
-1857900943729136025,"So what? 🤣🤣 https://t.co/bSJQ0psVJ3","Nov 16, 4:37:57 PM EST"
-1857901111794909271,"RT @TheBabylonBee: Fattest, Sickest Country On Earth Concerned New Health Secretary Might Do Something Different https://t.co/dS1Rolb6QX","Nov 16, 4:38:37 PM EST"
-1857901347112137005,"lol https://t.co/a36krnWGXT","Nov 16, 4:39:33 PM EST"
-1857901698204721359,"https://t.co/drCZAs8lzb","Nov 16, 4:40:57 PM EST"
-1857901947182834157,"RT @DefiyantlyFree: People keep saying that Donald Trump wants retribution, but it’s not Donald Trump, who wants retribution, it’s the Amer…","Nov 16, 4:41:57 PM EST"
-1857903066550337545,"RT @TheBabylonBee: Jimmy Kimmel Ratings Soar After Debuting New Segment Where He Stands There All Sad And Cries Like A Wuss https://t.co/LJ…","Nov 16, 4:46:23 PM EST"
-1857903364186493084,"2 tier justice in the UK https://t.co/foBjiYAdas","Nov 16, 4:47:34 PM EST"
-1857903924184760817,"Lightning quick Internet from Starlink https://t.co/VC00E4F7iz","Nov 16, 4:49:48 PM EST"
-1857904467208716779,"This is insane https://t.co/ZJjUIPHASD","Nov 16, 4:51:57 PM EST"
-1857907171440107644,"https://t.co/3GVf5veDIn","Nov 16, 5:02:42 PM EST"
-1857907956370780505,"Thank goodness for @RealTomHoman https://t.co/ulWzPXpD19","Nov 16, 5:05:49 PM EST"
-1857909713024774191,"RT @SpaceX: SpaceX teams targeting four launches from all four launch pads in Texas, Florida, and California → https://t.co/bJFjLCiTbK","Nov 16, 5:12:48 PM EST"
-1857918825775144983,"RT @america: Democrats are now openly counting illegal votes in Pennsylvania.
-
-There must be accountability.
-
-America deserves secure elect…","Nov 16, 5:49:01 PM EST"
-1857919131464478752,"Wow, this needs to be greatly simplified @DOGE! https://t.co/RL6JEAxXjq","Nov 16, 5:50:14 PM EST"
-1857924588891521174,"Cool https://t.co/rJwUyPzyaj","Nov 16, 6:11:55 PM EST"
-1857924656873038056,"RT @teslaownersSV: The best way to counter the legacy media's propaganda is by sending people links to videos and information on the 𝕏 plat…","Nov 16, 6:12:11 PM EST"
-1857925861606834251,"Wow https://t.co/qAlwdvy22g","Nov 16, 6:16:58 PM EST"
-1857929276743413864,"True https://t.co/x1OAs2wUdE","Nov 16, 6:30:32 PM EST"
-1857950014934270187,"Simulation vs Reality https://t.co/juoDezl8dj","Nov 16, 7:52:57 PM EST"
-1857951809299415073,"Your tax dollars could be spent better https://t.co/cHXk9ISZHZ","Nov 16, 8:00:05 PM EST"
-1857954385931677828,"… https://t.co/Fpg9zILEx7","Nov 16, 8:10:19 PM EST"
-1857956330008416297,"Yeah https://t.co/541QJh6LTD","Nov 16, 8:18:02 PM EST"
-1857957025516331086,"🤔 https://t.co/rGYX3JuewP","Nov 16, 8:20:48 PM EST"
-1857958440481538145,"Europe is dying 😔 https://t.co/Dtyffk3Ci2","Nov 16, 8:26:26 PM EST"
-1857960746635636813,"We live on a thin crust of solid rock, beneath which is vast ball of molten rock.
-
-Earth’s core, which generates most of our magnetic field is ~85% iron and moves independently from the surface plates, which is why the magnetic pole changes position. htt","Nov 16, 8:35:35 PM EST"
-1857962570247774272,"This is crazy https://t.co/jxd0rbFMh4","Nov 16, 8:42:50 PM EST"
-1857968423055065134,"RT @dvorahfr: Humanity will be multi-planetary.
-
-Moon ✨Mars ✨and more ✨
-@elonmusk https://t.co/gVA0Cf0SrG","Nov 16, 9:06:06 PM EST"
-1858007852067000351,"I’m watching myself watch this 😂 https://t.co/37GMB1EQN9","Nov 16, 11:42:46 PM EST"
-1858011749640794440,"RT @iam_smx: Elon Musk wore glasses at the UFC event today. 😂 https://t.co/JP0XiQRXbI","Nov 16, 11:58:15 PM EST"
-1858094252493832688,"RT @john: #UFC309 with the squad. https://t.co/kWBwJyVk82","Nov 17, 5:26:06 AM EST"
-1858097995050319941,"Instead of teaching fear of pregnancy, we should teach fear of childlessness https://t.co/0wUUADibcl","Nov 17, 5:40:58 AM EST"
-1858098098377048349,"RT @512x512: Grok can now show you posts & web results immediately - no need to wait for response completion.
-(Web/Android, iOS soon) https…","Nov 17, 5:41:23 AM EST"
-1858103431816249706,"RT @elon_docs: Elon Musk: Let's make Starfleet Academy real!
-
-“I'm wearing this jacket that was given to me by the Space Force. It's got St…","Nov 17, 6:02:34 AM EST"
-1858103838424596862,"🕯️ https://t.co/j7qdiBB9KA","Nov 17, 6:04:11 AM EST"
-1858105003652579565,"14 years ago https://t.co/RBEn0fN1Vw","Nov 17, 6:08:49 AM EST"
-1858111340235104258,"RT @MarioNawfal: 🇺🇸JOE ROGAN: THE FBI IS OUT OF CONTROL
-
-"We didn't know that you could have a kidnapping case with 14 people, and 12 of th…","Nov 17, 6:34:00 AM EST"
-1858178546293669903,"Does seem to create a conflict of interest https://t.co/lJm5MZyowR","Nov 17, 11:01:03 AM EST"
-1858178718801301566,"Major driver of healthcare cost https://t.co/2xgvh5SEVz","Nov 17, 11:01:44 AM EST"
-1858179518621470941,"Britain is turning into a police state https://t.co/TYy3ZR7DJB","Nov 17, 11:04:55 AM EST"
-1858180734931833334,"“No one knows it’s me” – thought bubble https://t.co/OXHjkjOzlB","Nov 17, 11:09:45 AM EST"
-1858181667443089776,"True https://t.co/n9vRWnQ3f9","Nov 17, 11:13:27 AM EST"
-1858182263277592691,"Yes https://t.co/BMUyXuwSjK","Nov 17, 11:15:49 AM EST"
-1858182462372819257,"RT @Rothmus: Hitchens is missed. https://t.co/YuXC8Xyw9I","Nov 17, 11:16:37 AM EST"
-1858184885493485672,"Guess who? https://t.co/ExzlBOGSBz","Nov 17, 11:26:14 AM EST"
-1858207603261637016,"RT @shaunmmaguire: If any of you have failed to extrapolate what this paragraph means
-
-It means the NYT is absolutely full of shit
-
-And not…","Nov 17, 12:56:31 PM EST"
-1858207722635948400,"RT @ibab: Fact check your ChatGPT responses with Grok","Nov 17, 12:56:59 PM EST"
-1858208067407515974,"RT @SpeakerJohnson: After our long day of work & planning at Mar-a-Lago yesterday, the trip to @ufc 309 was a fun break. Great days are ahe…","Nov 17, 12:58:21 PM EST"
-1858220102686310500,"RT @Geiger_Capital: Absolute culture shift in America. 🇺🇸🥊 https://t.co/NO89P5hkiV","Nov 17, 1:46:11 PM EST"
-1858221417096954191,"🔥🔥 https://t.co/wCY1S1az2Y","Nov 17, 1:51:24 PM EST"
-1858221664615494141,"True https://t.co/OeNReCDlrK","Nov 17, 1:52:23 PM EST"
-1858221923723010455,"The Department of [In]Justice needs major reform! https://t.co/PEevzCFuCJ","Nov 17, 1:53:25 PM EST"
-1858222363311292641,"The swamp will fight hard to avoid being drained https://t.co/py8V7ecDYB","Nov 17, 1:55:10 PM EST"
-1858223019187138908,"Concerning https://t.co/4QAnYxPwor","Nov 17, 1:57:46 PM EST"
-1858256207011516917,"🐿️🇺🇸 @DOGE https://t.co/w7jo2SMqCH","Nov 17, 4:09:39 PM EST"
-1858256824979304754,"Tuesday flight of Starship looks promising https://t.co/WkCkK1axIF","Nov 17, 4:12:06 PM EST"
-1858257145046749240,"https://t.co/iGMDGwPsQ0","Nov 17, 4:13:22 PM EST"
-1858258018770563260,"Strangulation by Regulation https://t.co/oSSGZ1FeXK","Nov 17, 4:16:51 PM EST"
-1858266013197885723,"The government runs on ancient computers & software. Needs an upgrade! https://t.co/2gAfI1mhnJ","Nov 17, 4:48:37 PM EST"
-1858266076322144399,"https://t.co/NP971A6CeR","Nov 17, 4:48:52 PM EST"
-1858266543437553698,"Exciting times https://t.co/R8w3mIdYM6","Nov 17, 4:50:43 PM EST"
-1858273930609319969,"https://t.co/ZMuoxownmF","Nov 17, 5:20:04 PM EST"
-1858274335716524241,"https://t.co/SZmUYgq0AY","Nov 17, 5:21:41 PM EST"
-1858281282389574081,"Which one would do a better job of deciding interest rates?","Nov 17, 5:49:17 PM EST"
-1858303381707665483,"😂 https://t.co/ZMp24x3lnl","Nov 17, 7:17:06 PM EST"
-1858303570770063794,"Accurate analysis https://t.co/XTCm52ZdoC","Nov 17, 7:17:51 PM EST"
-1858304227862557143,"RT @cb_doge: corporate wants you to find the difference between these two pictures: https://t.co/BjnqhN309D","Nov 17, 7:20:28 PM EST"
-1858305335355924652,"RT @ajtourville: Peter Thiel defines The Machine as an extremely regimented and fast consensus formation process from which ideas, debates,…","Nov 17, 7:24:52 PM EST"
-1858312225103974593,"🫡 https://t.co/mw8SxIi5Mb","Nov 17, 7:52:14 PM EST"
-1858313210664816711,"RT @cb_doge: BREAKING: Elon Musk has surpassed 205 million followers. He is the most followed account on 𝕏. https://t.co/FZLkQYKoEA","Nov 17, 7:56:09 PM EST"
-1858314445883146538,"RT @SenJohnThune: If the ICC and its prosecutor do not reverse their outrageous and unlawful actions to pursue arrest warrants against Isra…","Nov 17, 8:01:04 PM EST"
-1858315622431830138,"Challenges ahead https://t.co/kbpfQD3dVJ","Nov 17, 8:05:44 PM EST"
-1858318050971238400,"Humanity is the steward of life as we know it https://t.co/cXszxvYe7e","Nov 17, 8:15:23 PM EST"
-1858318609858117783,"Yes https://t.co/NMVpMOofE7","Nov 17, 8:17:37 PM EST"
-1858318917141197107,"There are so many regulators that it’s like a sports game with more refs than players on the field! https://t.co/0YCoJMQwLS","Nov 17, 8:18:50 PM EST"
-1858319088206151918,"RT @uxaiagency: How biased is ChatGPT?
-
-I found it favors Kamala Harris—so I built a fact-checker using @Grok.
-
-The potential of truth-seek…","Nov 17, 8:19:31 PM EST"
-1858319827552653351,"RT @techdevnotes: xAI team launching new features https://t.co/EFGk7MTlWX","Nov 17, 8:22:27 PM EST"
-1858320189638520944,"RT @AutismCapital: America is fun again.","Nov 17, 8:23:53 PM EST"
-1858320262434889889,"RT @KettlebellDan: 𝕏 is such a wild place https://t.co/U2zIfA4cN6","Nov 17, 8:24:11 PM EST"
-1858322262115434938,"RT @DimaZeniuk: Elon loves Diet Coke https://t.co/uApjU2jJGO","Nov 17, 8:32:07 PM EST"
-1858322964938117545,"RT @SpaceX: The 1-million square foot Starfactory brings many parts of the manufacturing process under one roof for the first time, moving…","Nov 17, 8:34:55 PM EST"
-1858323128130154776,"https://t.co/AM9WehnNG7","Nov 17, 8:35:34 PM EST"
-1858324856955142654,"https://t.co/Z8vuMR40oO","Nov 17, 8:42:26 PM EST"
-1858326452204130393,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida https://t.co/Dm3uiNSiNQ","Nov 17, 8:48:46 PM EST"
-1858326527957418215,"RT @Rothmus: 🎯🎯 https://t.co/C73vUXEQVH","Nov 17, 8:49:04 PM EST"
-1858326721788772852,"RT @SpaceX: Propellant load test and preflight checkouts complete ahead of Starship's sixth flight test → https://t.co/oIFc3u9laE https://t…","Nov 17, 8:49:51 PM EST"
-1858327232881561600,"Watch the Starship flight live on 𝕏! https://t.co/ORmSc5d8Mr","Nov 17, 8:51:53 PM EST"
-1858328128218612134,"RT @diana_dukic: S T A R S H I P
- 🔴
- 🚀…","Nov 17, 8:55:26 PM EST"
-1858328745347629529,"RT @cb_doge: The same people who hate Elon Musk are often the ones who believe everything they see on News TV. https://t.co/2C9gYIK0OF","Nov 17, 8:57:53 PM EST"
-1858329020863238161,"RT @teslaownersSV: Starship —> Mars
-
- 🔴
- 🚀
- .…","Nov 17, 8:58:59 PM EST"
-1858329537899114992,"Interesting thread https://t.co/hNjizHIP3b","Nov 17, 9:01:02 PM EST"
-1858330769401278807,"RT @BrendanCarrFCC: We must dismantle the censorship cartel and restore free speech rights for everyday Americans.","Nov 17, 9:05:56 PM EST"
-1858336750852067708,"https://t.co/HFG5Fn6E8M","Nov 17, 9:29:42 PM EST"
-1858337085981155395,"https://t.co/mz9Z2vCPe9","Nov 17, 9:31:02 PM EST"
-1858338787027271726,"Some deep truths here 😂😂 https://t.co/ZwIuZrnfBo","Nov 17, 9:37:47 PM EST"
-1858339250481049909,"RT @DimaZeniuk: Starship compared to Airbus A380 https://t.co/7hYKAsyAzq","Nov 17, 9:39:38 PM EST"
-1858339534028591193,"RT @rookisaacman: Completely agree. The country doesn’t have a revenue problem--we have an expense problem. Taxpayers deserve the best for…","Nov 17, 9:40:45 PM EST"
-1858394630535962934,"RT @DefiyantlyFree: It’s amazing to watch it happen in real time. https://t.co/WSRFHPtOPQ","Nov 18, 1:19:41 AM EST"
-1858396057446527262,"Interesting https://t.co/UDUlCko8Hs","Nov 18, 1:25:22 AM EST"
-1858398528214630863,"RT @DefiyantlyFree: Pete Hegseth on the corruption in government schools. https://t.co/WN6iQGWSD1","Nov 18, 1:35:11 AM EST"
-1858515902079045658,"RT @512x512: You can now save shared Grok responses, or interact with them by sending follow up messages.
-
-Try it yourself on web: https:/…","Nov 18, 9:21:35 AM EST"
-1858520802838138951,"With Starship, humanity finally has a rocket design capable of making life multiplanetary https://t.co/izhtEOLcA4","Nov 18, 9:41:03 AM EST"
-1858521463889825807,"Britain is going full Stalin https://t.co/GYtwBMu11S","Nov 18, 9:43:41 AM EST"
-1858522024970252583,"Deeply insightful thread by Senator Lee https://t.co/h6f8q8HdTj","Nov 18, 9:45:55 AM EST"
-1858523288495862041,"RT @charliekirk11: Did you know that 85% of the federal workforce works from home and only have to come in one day a month?On any given day…","Nov 18, 9:50:56 AM EST"
-1858523677165236697,"RT @shellenberger: Lovers of free speech just scored victories in the US, EU, and Ireland. But now we’re in pitched battles in Britain & Au…","Nov 18, 9:52:28 AM EST"
-1858525356967309412,"RT @charliekirk11: Did you know that 85% of the federal workforce works from home and only have to come in one day a month? On any given da…","Nov 18, 9:59:09 AM EST"
-1858527614916292779,"The people want their freedom of speech https://t.co/wXQXMjd7N6","Nov 18, 10:08:07 AM EST"
-1858529795966972331,"Because @DOGE will expose the insane waste and graft of government https://t.co/aoSj2bCehg","Nov 18, 10:16:47 AM EST"
-1858531517955248317,"RT @AntiWokeMemes: @elonmusk @DOGE Department of Government Efficiency is coming... https://t.co/3NHfZ5qu1F","Nov 18, 10:23:38 AM EST"
-1858532026732724422,"RT @KonstantinKisin: "If opposing this insanity makes me "right-wing", so be it. Ultimately, the choice is between civilisation and people…","Nov 18, 10:25:39 AM EST"
-1858532133012205927,"RT @farzyness: Independent media won.
-
-It beat a decades-long stranglehold by Legacy Media on the public's opinion, funded by insanely larg…","Nov 18, 10:26:05 AM EST"
-1858534626240688289,"RT @america: Kevin O’Leary on Elon Musk and Vivek Ramaswamy at @DOGE: “I don’t see any reason why these two can’t just release the hounds a…","Nov 18, 10:35:59 AM EST"
-1858534898249662527,"https://t.co/LtSLPCFAAv","Nov 18, 10:37:04 AM EST"
-1858535807520227531,"RT @BillyM2k: elon: electric cars good
-the left: elon bad electric cars bad
-
-elon: space travel good
-the left: elon bad space travel bad…","Nov 18, 10:40:41 AM EST"
-1858537093837816175,"Wow https://t.co/88hbmf8RLu","Nov 18, 10:45:47 AM EST"
-1858543116845781389,"RT @ajtourville: NEWS: This year at the Baja 1000 saw dirt bike rider Ben Hunter cross the finish line with a @Starlink Mini taped to his h…","Nov 18, 11:09:43 AM EST"
-1858545709047259402,"Government reform brings prosperity to Argentina! https://t.co/ciSd0Rml7z","Nov 18, 11:20:01 AM EST"
-1858551419986428161,"RT @elonmusk: @AlexanderSoros *scamdemic","Nov 18, 11:42:43 AM EST"
-1858552503769465334,"Wow https://t.co/J9wdaHwV9h","Nov 18, 11:47:01 AM EST"
-1858552628600299553,"As a reminder, excess government spending is what causes inflation https://t.co/J9wdaHwV9h","Nov 18, 11:47:31 AM EST"
-1858552969148420554,"Starship Flight 6 tomorrow
- https://t.co/oOdRG30qOl","Nov 18, 11:48:52 AM EST"
-1858557856347549882,"Misgnomer is when someone refers to a hobbit as a gnome","Nov 18, 12:08:17 PM EST"
-1858558074144894983,"Wow https://t.co/b0JtCkg4Eq","Nov 18, 12:09:09 PM EST"
-1858582610580058205,"🤨 https://t.co/x84M3oBOny","Nov 18, 1:46:39 PM EST"
-1858583523969348035,"Seems like we could save a lot of money by switching to a Magic 8-Ball 🤣🤣 https://t.co/7O7zmUkcjp","Nov 18, 1:50:17 PM EST"
-1858633965965316499,"Giant rockets need giant rocket factories
- https://t.co/CcKQsojMst","Nov 18, 5:10:43 PM EST"
-1858634471102112021,"RT @SpaceX: SpaceX was founded to increase access to space and help make life multiplanetary.
-
-In just this year, we’ve launched 114 succ…","Nov 18, 5:12:44 PM EST"
-1858634753567846889,"Congrats SpaceX team on completing 3 successful orbital launches in 20 hours! https://t.co/uMvkT51OB9","Nov 18, 5:13:51 PM EST"
-1858638005327561062,"Immediate action is needed to stop the de facto bankruptcy of America https://t.co/DqyhxY2YZp","Nov 18, 5:26:46 PM EST"
-1858641997193724062,"https://t.co/7R9gO4j1aD","Nov 18, 5:42:38 PM EST"
-1858642751601914214,"NFL portal https://t.co/YHWJNPGIzh","Nov 18, 5:45:38 PM EST"
-1858643022629515282,"RT @KimKardashian: meet my new friend 🦾🤖 @Tesla https://t.co/C34OvPA2dY","Nov 18, 5:46:43 PM EST"
-1858645121643786374,"🇺🇸🇺🇸 https://t.co/eVTB8yBIZi","Nov 18, 5:55:03 PM EST"
-1858649232871141792,"If we don’t tackle the national debt, all tax revenue will go to paying interest and there will be nothing left for anything else https://t.co/BakfL5lbdE","Nov 18, 6:11:23 PM EST"
-1858649784128508190,"That was a such a fun night!
-
-I have to say that the team @realDonaldTrump is assembling for this administration is very strong. The vibe is good. https://t.co/pFml7m3Vsp","Nov 18, 6:13:35 PM EST"
-1858650774948946051,"RT @cb_doge: Donald Trump shared his experience watching the Starship booster landing.
-
- https://t.co/z0UO7CVD3C","Nov 18, 6:17:31 PM EST"
-1858651200465277053,"https://t.co/v3X7RIinRO","Nov 18, 6:19:12 PM EST"
-1858656844400427367,"RT @DefiantLs: Don Jr. talks Elon Musk, the iconic plane picture and how RFK Jr. agreed to McDonald’s
-
-“MAHA starts on Monday” 😆
-
-https://…","Nov 18, 6:41:38 PM EST"
-1858658589662937516,"RT @DefiyantlyFree: The following presidents used the recess appointment power:
-
-- George Washington
-- Thomas Jefferson
-- James Madison
-- A…","Nov 18, 6:48:34 PM EST"
-1858661172477857946,"RT @Starlink: High-speed internet while in motion. Duct tape not included https://t.co/sC6R2exNVB","Nov 18, 6:58:50 PM EST"
-1858661269680910474,"Yes https://t.co/8wLRu6YvKs","Nov 18, 6:59:13 PM EST"
-1858662274682007918,"RT @SpaceX: Deployment of @NSIL_India GSAT-N2 confirmed https://t.co/AHYjp9Zn6S","Nov 18, 7:03:13 PM EST"
-1858663907608396036,"Enough is enough https://t.co/FJ6jAwe7E2","Nov 18, 7:09:42 PM EST"
-1858665956362375384,"Much appreciated, Senator @ChrisCoons! https://t.co/dTChQsQRnM","Nov 18, 7:17:50 PM EST"
-1858682108228641209,"https://t.co/hTYxoD1RAX","Nov 18, 8:22:01 PM EST"
-1858682849605648416,"https://t.co/rvQRDuH7fz","Nov 18, 8:24:58 PM EST"
-1858742234453057711,"RT @BrendanCarrFCC: Sunset over South Texas.
-
-It is time to unleash America’s space economy. 🚀🚀 https://t.co/Ey924FpzR2","Nov 19, 12:20:57 AM EST"
-1858743189798056105,"Enough is enough https://t.co/C10UT9Val0","Nov 19, 12:24:44 AM EST"
-1858744380980359504,"I’m hearing this a lot 😂 https://t.co/z1Icz6LCpI","Nov 19, 12:29:28 AM EST"
-1858745509936033924,"Unless civilization collapses, @SpaceX will make life multiplanetary https://t.co/sX3oPRmFR7","Nov 19, 12:33:58 AM EST"
-1858745722188763147,"RT @AJamesMcCarthy: Last night before leaving Earth. Godspeed, flight 6🫡 https://t.co/QkR4ZQISPG","Nov 19, 12:34:48 AM EST"
-1858746722756780361,"True https://t.co/9WGmDwA2DV","Nov 19, 12:38:47 AM EST"
-1858746987333497067,"Yes https://t.co/ixd3ZqQt4m","Nov 19, 12:39:50 AM EST"
-1858747684972048695,"https://t.co/6CkZHGwFAh","Nov 19, 12:42:36 AM EST"
-1858748850787238258,"If you look closely, you can see a human walking around the base of the rocket.
-
-Each Raptor rocket engine produces twice as much thrust as all 4 engines on a 747.
-
-There are 33 Raptor engines powering the Starship rocket booster.
-
- https://t.co/VHLGlJ","Nov 19, 12:47:14 AM EST"
-1858748880386449842,"RT @froggyups: Ukrainian photographer Nika Ritshel masterfully highlights the grace of ballerinas through her distinctive vision.
-
-📹 nika_…","Nov 19, 12:47:21 AM EST"
-1858748967753843199,"Yeah https://t.co/w1YfJ2OGMO","Nov 19, 12:47:42 AM EST"
-1858749197006115199,"RT @MarioNawfal: 🚨HOLY STARSHIP!
-
-The Starship 31 Super Heavy Booster 13 - X.
-
-"Roads? Where we're going, we don't need roads."
-
-Source:…","Nov 19, 12:48:37 AM EST"
-1858749672317165857,"RT @Teslaconomics: Just so everyone knows how fuckin massive Starship is… here’s a human next to it. https://t.co/4MTDxGKIVg","Nov 19, 12:50:30 AM EST"
-1858749709386444819,"https://t.co/GhQGJd90Yh","Nov 19, 12:50:39 AM EST"
-1858749962634318204,"https://t.co/7NHqlQBbcZ","Nov 19, 12:51:39 AM EST"
-1858750471109742737,"RT @teslaownersSV: Working on the Starship fully stacked is 🤯 https://t.co/cEvXa9iyhp","Nov 19, 12:53:40 AM EST"
-1858751138645922144,"RT @DefiyantlyFree: This is why Matt Gaetz is an existential threat to these people. https://t.co/NCnFkr1ufZ","Nov 19, 12:56:20 AM EST"
-1858752008187973867,"Accurate https://t.co/iUAYYyj3iu","Nov 19, 12:59:47 AM EST"
-1858752371867660690,"RT @BrianRoemmele: The grand rivers of Africa. https://t.co/LMsBGIzQdF","Nov 19, 1:01:14 AM EST"
-1858753656612388999,"Mach diamonds
- https://t.co/t0PmGumZNA","Nov 19, 1:06:20 AM EST"
-1858753677458072036,"RT @MarioNawfal: 🚨🇺🇸 JON STEWART: THE ELECTION REJECTED A BROKEN SYSTEM—RIP P'NUT
-
-"This election was a repudiation of the status quo—an ov…","Nov 19, 1:06:25 AM EST"
-1858761732765684052,"This needs to stop https://t.co/XwGPoWCktt","Nov 19, 1:38:25 AM EST"
-1858762071938101406,"Yes, the legacy (formerly mainstream) media just literally lied relentlessly https://t.co/1NC8T39o5J","Nov 19, 1:39:46 AM EST"
-1858762490714485024,"That is just the tip of the iceberg.
-
-The actual fraud and waste in government spending is much higher. https://t.co/Ut7rsBCEF6","Nov 19, 1:41:26 AM EST"
-1858762930185269460,"Moreover, much of the fraud is driven by organized theft rings from other countries, so a lot of it is not even going to American crooks, which is extra galling!","Nov 19, 1:43:11 AM EST"
-1858763170942206338,"Yes https://t.co/cXav9QsJHQ","Nov 19, 1:44:08 AM EST"
-1858763641945719085,"https://t.co/LpzMEZzYP9","Nov 19, 1:46:01 AM EST"
-1858763941024829864,"Yup https://t.co/Rokx8RrTiX","Nov 19, 1:47:12 AM EST"
-1858764380340387884,"Starlink is how we are paying for humanity to get to Mars.
-
-That’s why there is a Hohmann transfer orbit diagram on the Starlink router. https://t.co/JacNKHTvOK","Nov 19, 1:48:57 AM EST"
-1858764447260578075,"Interesting https://t.co/HSSrkPRcEv","Nov 19, 1:49:13 AM EST"
-1858764579909566918,"RT @BrandonWarmke: Academics will demand that this app be shut down for causing harm and misinformation then turn around and publish as “re…","Nov 19, 1:49:44 AM EST"
-1858764720066486352,"And we will https://t.co/hQGadu5nxk","Nov 19, 1:50:18 AM EST"
-1858766986508927479,"Matt Gaetz has 3 critical assets that are needed for the AG role: a big brain, a spine of steel and an axe to grind.
-
-He is the Judge Dredd America needs to clean up a corrupt system and put powerful bad actors in prison.
-
-Gaetz will be our Hammer of Jus","Nov 19, 1:59:18 AM EST"
-1858768057256088021,"As for these accusations against him, I consider them worth less than nothing. Under our laws, a man is considered innocent until proven guilty.
-
-If AG Garland (an unprincipled douchebag) could have secured a conviction against Gaetz, he would have, but ","Nov 19, 2:03:33 AM EST"
-1858769435739254950,"RT @TeslaAUNZ: Powerwall 3, Wall Connector & Mobile Connector now available at select Bunnings Warehouse stores → https://t.co/Yh5ZnHacc0 h…","Nov 19, 2:09:02 AM EST"
-1858863837480460564,"Drop the @DOGE hammer 🔨 https://t.co/0D21Ueqafl","Nov 19, 8:24:09 AM EST"
-1858864184542269627,"This is the top of Megabay at Starbase https://t.co/oLnH9oIqMS","Nov 19, 8:25:32 AM EST"
-1858864430584340688,"Yes https://t.co/HPcmgVM7Dy","Nov 19, 8:26:30 AM EST"
-1858864778501923006,"The fixed pie fallacy as at the heart of many bad government decisions https://t.co/OaDF6bqLEd","Nov 19, 8:27:53 AM EST"
-1858865216714326066,"Yes https://t.co/VTm8y8RIO6","Nov 19, 8:29:38 AM EST"
-1858865800112718107,"How new taxes start vs how they end https://t.co/hAjlGYfd6L","Nov 19, 8:31:57 AM EST"
-1858867695233425734,"The objectives for Starship Flight 6 are:
-
-1. Restart of Raptor engines in vacuum.
-2. Daylight landing of the ship.
-3. Higher peak heating (steeper) reentry.
-4. Faster/harder booster catch.
-
-There are thousands of small design changes also being tested.","Nov 19, 8:39:29 AM EST"
-1858868285158137976,"Current Starship is more than twice as powerful as the Saturn V Moon rocket.
-
-Starship V3, which hopefully flies in about a year, will be 3X more powerful. https://t.co/K0p8HuXH3b","Nov 19, 8:41:49 AM EST"
-1858872194949951528,"20 years ago https://t.co/dTOfAxyVU3","Nov 19, 8:57:22 AM EST"
-1858872775395426553,"Crazy idea: let’s simplify the tax code 🤷♂️ https://t.co/TUQRiEbKh3","Nov 19, 8:59:40 AM EST"
-1858873266129056170,"Uh oh 😧 https://t.co/b38fECnNDc","Nov 19, 9:01:37 AM EST"
-1858873423641854229,"Crazy high https://t.co/zwtBkEkFwR","Nov 19, 9:02:15 AM EST"
-1858873877184627039,"🤨 https://t.co/OJDz283WAJ","Nov 19, 9:04:03 AM EST"
-1858875611927761387,"🤡🌎 https://t.co/EB5qIELmGb","Nov 19, 9:10:56 AM EST"
-1858875915138159015,"https://t.co/GiMAQ8yChK","Nov 19, 9:12:09 AM EST"
-1858876233645195391,"The Southern Poverty Law Center (SPLC) is a criminal organization imo https://t.co/zWcWaUaCkO","Nov 19, 9:13:25 AM EST"
-1858876394580611236,"🤔 https://t.co/rWmE10Apc4","Nov 19, 9:14:03 AM EST"
-1858876557139309011,"No advertising for pharma https://t.co/gFAOlFsB2Y","Nov 19, 9:14:42 AM EST"
-1858876817727213876,"RT @Teslaconomics: STARSHIP 6 LAUNCH IS TOMORROW, WHO’S HYPED?! https://t.co/u7YmdbLIKC","Nov 19, 9:15:44 AM EST"
-1858876931027988674,"Yes! https://t.co/PilXEi6Rhm","Nov 19, 9:16:11 AM EST"
-1858877485921800449,"Interesting @America https://t.co/XhXTDoREnF","Nov 19, 9:18:23 AM EST"
-1858877581862342933,"Great https://t.co/h3r1cRmvNv","Nov 19, 9:18:46 AM EST"
-1858878822256386375,"RT @Yasin__Shafiei: Starship Flight 6 (targeted for today) will make humanity closer to fully and rapidly reusable rockets and Mars 🚀🔥 http…","Nov 19, 9:23:42 AM EST"
-1858879211483590782,"A fully reusable rocket with orbital refilling is the critical breakthrough needed to make life multiplanetary.
-
-For the first time in 4.5 billion years.","Nov 19, 9:25:14 AM EST"
-1858879565579297022,"Far from how the media portrayed him https://t.co/kD28om0nwF","Nov 19, 9:26:39 AM EST"
-1858906139624169681,"Stop the Swamp! https://t.co/5siQZN9LoO","Nov 19, 11:12:15 AM EST"
-1858906374458966396,"This is so crazy. https://t.co/xsdKXeSIhz","Nov 19, 11:13:11 AM EST"
-1858907247444722039,"Starbase is an area that experiences storms and hurricanes that are far more serious than Starship launches.
-
-The real headline of this article is boring, because it would say “Starship Launches Cause No Damage” 😂 https://t.co/sp6bkpIDMj","Nov 19, 11:16:39 AM EST"
-1858907678010909164,"It was necessary to increase the probable lifespan of civilization https://t.co/X8dAsW0XeD","Nov 19, 11:18:21 AM EST"
-1858913274680529152,"RT @SpaceX: All systems and weather are looking good for today's flight test of Starship.
-
-The live launch webcast on @X will go live ~40 m…","Nov 19, 11:40:36 AM EST"
-1858914228624924963,"But maybe her advice is amazing 🤣🤣 https://t.co/i1PEwHzhrp","Nov 19, 11:44:23 AM EST"
-1858914354705445135,"🔥🥰 https://t.co/ezh2MEbxEP","Nov 19, 11:44:53 AM EST"
-1858916546338590740,"So many fake jobs https://t.co/aVH8QtMcLE","Nov 19, 11:53:36 AM EST"
-1858923672209420480,"A classic 😂
- https://t.co/hTWfJJ37Ob","Nov 19, 12:21:55 PM EST"
-1858924861403656525,"RT @Teslaconomics: Just a reminder, how fucking massive Starship 6 is https://t.co/beu0Yt1Zqc","Nov 19, 12:26:38 PM EST"
-1858927701220049023,"The chart below is due for an update, but is roughly accurate.
-
-Flight 6 liftoff thrust is ~7500 tons and mass is ~5000 tons.
-
-The tanker version of Starship V3 will weigh over 7000 tons.
-
-By comparison, the heaviest Boeing 747 is less than 500 tons ful","Nov 19, 12:37:55 PM EST"
-1858935963029745903,"😂 https://t.co/uOtX9ef04I","Nov 19, 1:10:45 PM EST"
-1858939734271422921,"Raptor 3 is truly sublime engineering.
-
-So much so that even experienced veterans of the space industry thought it was impossible. https://t.co/f0XbWp7oFp","Nov 19, 1:25:44 PM EST"
-1858947454689046615,"RT @xai: Our API is now available through @LangChainAI!
-
-Our team is shipping new things everyday! What are you going to build?
-
-🐍 Python…","Nov 19, 1:56:25 PM EST"
-1858947629969011178,"That would awesome https://t.co/ohhwR6JQzA","Nov 19, 1:57:07 PM EST"
-1858947992931496149,"RT @TheRabbitHole84: Drug overdoses by sex https://t.co/DqYNnCobPb","Nov 19, 1:58:33 PM EST"
-1858953705686790316,"The Two Towers https://t.co/5gY09zh6rx","Nov 19, 2:21:15 PM EST"
-1858954313886036096,"The major problem is that social activists are being appointed to judicial positions https://t.co/m837vy5Pok","Nov 19, 2:23:40 PM EST"
-1858960357467058367,"https://t.co/NTSXxc30y4","Nov 19, 2:47:41 PM EST"
-1858961161808736320,"https://t.co/XcQnYcI58J","Nov 19, 2:50:53 PM EST"
-1858963091918143619,"Umm https://t.co/6leMytEATX","Nov 19, 2:58:33 PM EST"
-1858972671956127824,"Honored to have President @realDonaldTrump at our Starship launch! https://t.co/eTEbMVh91X","Nov 19, 3:36:37 PM EST"
-1858973101452886213,"Yes https://t.co/lR85exvwgS","Nov 19, 3:38:20 PM EST"
-1858990449828168089,"RT @Starlink: Today’s Starship flight test has a special payload onboard – a banana! This universally-accepted measurement of scale is appr…","Nov 19, 4:47:16 PM EST"
-1858990696067461449,"RT @alx: CNN is complaining that people are comparing Trump, Elon Musk, RFK Jr, Tulsi Gabbard and others to superheroes🤣 https://t.co/hgayl…","Nov 19, 4:48:14 PM EST"
-1858990762513625258,"RT @margomartin: .@elonmusk greets President @realDonaldTrump on Starbase!! 🚀🇺🇸 https://t.co/fkMIubPHzp","Nov 19, 4:48:30 PM EST"
-1858990887050899642,"RT @SpaceX: Super Heavy will generate a sonic boom upon return, which is a brief, thunder-like noise we hear when an aircraft or other obje…","Nov 19, 4:49:00 PM EST"
-1858991066441281683,"Starship will go halfway around the world in ~45 mins https://t.co/3uhqUq6G6w","Nov 19, 4:49:43 PM EST"
-1858991255130435834,"RT @TrumpWarRoom: President Trump has arrived to watch the SpaceX launch with @elonmusk! 🔥 https://t.co/D5awPUUQTC","Nov 19, 4:50:28 PM EST"
-1858991588187533428,"8 minutes to liftoff of Starship!
- https://t.co/Ngu7VnFsh9","Nov 19, 4:51:47 PM EST"
-1858991880459219293,"RT @Cmdr_Hadfield: This will be very cool! Watch the Starship launch live, from high overhead on the Space Station!
-Fingers crossed for ev…","Nov 19, 4:52:57 PM EST"
-1858992185599029737,"RT @cb_doge: Donald Trump with Elon Musk to watch the Starship Flight 6 Launch. https://t.co/DOwbPM04Vw","Nov 19, 4:54:10 PM EST"
-1858992269971583379,"RT @SpaceX: We recently tested heatshield materials in a simulated Martian atmosphere as we aim to launch the first Starships to Mars in 20…","Nov 19, 4:54:30 PM EST"
-1859036912348262787,"Successful ocean landing of Starship!
-
-We will do one more ocean landing of the ship. If that goes well, then SpaceX will attempt to catch the ship with the tower. https://t.co/osFud7XXPo","Nov 19, 7:51:53 PM EST"
-1859055428782657915,"To the Moon and beyond! https://t.co/S1N8Hwu1fd","Nov 19, 9:05:28 PM EST"
-1859065068740108592,"https://t.co/raDVXprw0M","Nov 19, 9:43:46 PM EST"
-1859067433769996322,"Impressive progress in Argentina! https://t.co/w7TSJsJhJt","Nov 19, 9:53:10 PM EST"
-1859068810692644949,"The biggest technology challenge remaining for Starship is a fully & immediately reusable heat shield.
-
-Being able to land the ship, refill propellant & launch right away with no refurbishment or laborious inspection. That is the acid test.","Nov 19, 9:58:38 PM EST"
-1859072843092287580,"Real-time high definition video all the way through reentry and landing! https://t.co/yKXtgwon5j","Nov 19, 10:14:40 PM EST"
-1859081392010801185,"The sheer magnitude & audacity of government fraud is mind-blowing! https://t.co/6Q5185GSaE","Nov 19, 10:48:38 PM EST"
-1859105120253788350,"Starship is by far the most powerful flying object ever created https://t.co/vEUEhOTaAe","Nov 20, 12:22:55 AM EST"
-1859230878234206497,"Milton Friedman was the best
- https://t.co/CeLlQnNWHo","Nov 20, 8:42:38 AM EST"
-1859263514478555627,"😂 https://t.co/mzwvEE1R5M","Nov 20, 10:52:19 AM EST"
-1859312617803948418,"Special version of Starship: delete heat shield & flaps, add landing legs.
-
-This could (of course) only be used between trans lunar orbit and lunar surface, given no heat shield or flaps. https://t.co/E97kUvN2gR","Nov 20, 2:07:27 PM EST"
-1859332471441027384,"RT @RuiHuang_art: I created my own intersteller
-Who wants see next? https://t.co/MQLKPnMmFm","Nov 20, 3:26:20 PM EST"
-1859333397505577105,"A fully reusable orbital rocket is the critical breakthrough needed to make life multiplanetary https://t.co/3Sozmadkxp","Nov 20, 3:30:01 PM EST"
-1859333698073645244,"Yes https://t.co/GymyeTrdVL","Nov 20, 3:31:13 PM EST"
-1859336516750934115,"RT @TheRabbitHole84: Defund the police was supported by people who either did not think through the ramifications or were in a position to…","Nov 20, 3:42:25 PM EST"
-1859336582857404470,"RT @neuralink: 🇨🇦 We’re happy to announce that Health Canada has approved the launch of our first clinical trial in Canada! Recruitment is…","Nov 20, 3:42:40 PM EST"
-1859347325233099131,"Very important https://t.co/1C0pSqBF7B","Nov 20, 4:25:21 PM EST"
-1859349580833571198,"侘び寂び","Nov 20, 4:34:19 PM EST"
-1859350187074072930,"Tbh, I wouldn’t cut that funding 🤣🤣 https://t.co/UntGqQB0GF","Nov 20, 4:36:44 PM EST"
-1859356661997060345,"https://t.co/5HXACkMKhB","Nov 20, 5:02:28 PM EST"
-1859369148159033619,"Why are “sanctuary” cities protecting child rapists? Unconscionable.
-
-Any politician who does so should be recalled immediately. https://t.co/GGhVB4sfm5","Nov 20, 5:52:04 PM EST"
-1859369443228516793,"Wow https://t.co/mZ2Ds5WMnW","Nov 20, 5:53:15 PM EST"
-1859400135186203117,"https://t.co/i3Vj8JsCwO","Nov 20, 7:55:12 PM EST"
-1859418529130221885,"RT @MatthewDR: 🪫HALF A MILLION SEATTLE HOMES WITHOUT POWER🔋
-
-Every gas station in my neighborhood is closed! Even those with generators hav…","Nov 20, 9:08:18 PM EST"
-1859420066284028183,"Legal immigration to America is ridiculously slow & difficult, even for super talented people. Needs to be fixed.
- https://t.co/h65o4ShPgX","Nov 20, 9:14:24 PM EST"
-1859422886789804342,"https://t.co/nshV5KJ7sI","Nov 20, 9:25:37 PM EST"
-1859423120064643079,"RT @yayavarkm: @elonmusk Javier Milei | there is a formidable phrase by Milton Friedman: "inflation is always and everywhere a monetary phe…","Nov 20, 9:26:32 PM EST"
-1859423307939934393,"RT @elon_docs: Elon Musk: The government is inefficient because it lacks incentives to serve its customers.
-
-“Generally, I'm pretty moderat…","Nov 20, 9:27:17 PM EST"
-1859423464915976694,"RT @JohnnaCrider1: Insane that this is real and not AI https://t.co/9KEYmJg4KM","Nov 20, 9:27:55 PM EST"
-1859423895365050824,"Each rocket engine produces twice as much thrust as all 4 engines on a Boeing 747 and there are 33 of them https://t.co/3D8pEVIvoL","Nov 20, 9:29:37 PM EST"
-1859423996162322470,"https://t.co/kKPRwvtKXQ","Nov 20, 9:30:01 PM EST"
-1859424993861419183,"I usually actually answer the question, but it does shock people when I say “mixed” or “bad” 😂","Nov 20, 9:33:59 PM EST"
-1859428737692873087,"Just replace “democracy” with “bureaucracy” and it makes total sense 😂 https://t.co/eFfzd9aoQS","Nov 20, 9:48:52 PM EST"
-1859429518064144840,"https://t.co/2C2YHW42e1","Nov 20, 9:51:58 PM EST"
-1859432339472068923,"The establishment political parties are going to get utterly crushed in the next UK election https://t.co/Vt2OAFmXwK","Nov 20, 10:03:10 PM EST"
-1859433066508272006,"Low bar tbh https://t.co/ZnBcavvxQw","Nov 20, 10:06:04 PM EST"
-1859437922639872385,"He was a genius https://t.co/DOYzzACUeu","Nov 20, 10:25:22 PM EST"
-1859441231283036477,"RT @creation247: @elonmusk My favorite quote of his:
-
-"It is hard to imagine a more stupid or more dangerous way of making decisions than b…","Nov 20, 10:38:30 PM EST"
-1859468933012574501,"🤨 https://t.co/iqLN0BGFWs","Nov 21, 12:28:35 AM EST"
-1859469143092699434,"Your tax dollars [not] at work https://t.co/yggTAzH26q","Nov 21, 12:29:25 AM EST"
-1859472839792820276,"Community Notes goes hard 😂 https://t.co/wHb0wVjp4X","Nov 21, 12:44:06 AM EST"
-1859473375640346954,"Quite a big difference https://t.co/obuFKg09Y7","Nov 21, 12:46:14 AM EST"
-1859473643497025578,"RT @Rothmus: 💯💯 https://t.co/HIQ78R5lMU","Nov 21, 12:47:18 AM EST"
-1859474116564181027,"All establishment parties in the UK will get crushed in the next election https://t.co/8RuFR8yerL","Nov 21, 12:49:11 AM EST"
-1859474224311607493,"RT @elon_docs: Elon Musk in 2012:
-
-“I love manufacturing. Building solid objects that deliver value to people is really a great thing. I th…","Nov 21, 12:49:37 AM EST"
-1859476087245263251,"RT @johnkrausphotos: The scale of Starship is incredible https://t.co/x4ZgABn0Rb","Nov 21, 12:57:01 AM EST"
-1859476737261736196,"Yeah, a significant part of the reason drugs cost more in the USA than other countries is that Americans shoulder most of the R&D costs https://t.co/kpbCWF1e9c","Nov 21, 12:59:36 AM EST"
-1859477251831533763,"Wow, Germany carries a lot of the cost of the EU! https://t.co/DPHUz2nWX0","Nov 21, 1:01:38 AM EST"
-1859478264177115362,"America is New Rome https://t.co/Sa6X2Fr8dy","Nov 21, 1:05:40 AM EST"
-1859479127033593942,"🤨 https://t.co/OzzAJYjiuh","Nov 21, 1:09:05 AM EST"
-1859479495113101324,"Improvements to Grok https://t.co/TeEHrIUfHI","Nov 21, 1:10:33 AM EST"
-1859479797329535168,"Seems like a backdoor way to control access to the Internet by all Australians https://t.co/694yCzWOaB","Nov 21, 1:11:45 AM EST"
-1859481140152660294,"Are we a country that believes in innocent until proven guilty or are we not? https://t.co/HVRawXoLyw","Nov 21, 1:17:05 AM EST"
-1859481348466942061,"RT @yegordb: I’m at Stanford and I research software engineering productivity.
-
-We have data on the performance of >50k engineers from 100…","Nov 21, 1:17:55 AM EST"
-1859481858305618316,"If the extreme violation of shareholder rights by the activist posing as a judge in Delaware is allowed to stand, Delaware’s entire economy will be destroyed https://t.co/4kPNFTktkB","Nov 21, 1:19:57 AM EST"
-1859482420455620634,"https://t.co/YsvjfZeKfY","Nov 21, 1:22:11 AM EST"
-1859482673451766168,"RT @cb_doge: Friendship for the win. 🇺🇸 https://t.co/XaDK67GaZG","Nov 21, 1:23:11 AM EST"
-1859483544612913376,"Just learned tonight at Mar-a-Lago that Jeff Bezos was telling everyone that @realDonaldTrump would lose for sure, so they should sell all their Tesla and SpaceX stock 🤭","Nov 21, 1:26:39 AM EST"
-1859486277218730089,"RT @BrianRoemmele: The first low earth orbit Space Hotels will take occupancy before this decade is through. https://t.co/itFgcHvqvh","Nov 21, 1:37:30 AM EST"
-1859486350812107059,"RT @AutismCapital: 🚨JOE ROGAN: "The advertisers f**ked with the wrong dude (Elon). They're trying to bleed him out. They call him a terribl…","Nov 21, 1:37:48 AM EST"
-1859486475261256006,"Thank you, Senator Lee! https://t.co/F52k3FFqCg","Nov 21, 1:38:17 AM EST"
-1859486562003616230,"RT @TheGregYang: citations are here in grok!
-
-even YOU can be cited
-
-i'll cya face in my grok answers ~ https://t.co/OpGu6BsADy","Nov 21, 1:38:38 AM EST"
-1859487452148175229,"Now more closely reflects America https://t.co/PokCjGjhy8","Nov 21, 1:42:10 AM EST"
-1859487769250107549,"Coming soon to iPhone & Android https://t.co/uhsPrfXHMX","Nov 21, 1:43:26 AM EST"
-1859489386242379969,"True https://t.co/Wa32lZsStT","Nov 21, 1:49:51 AM EST"
-1859489849981436161,"True https://t.co/MUq7JnUxTC","Nov 21, 1:51:42 AM EST"
-1859491557855912245,"California, the Golden State, is eating its Golden Geese https://t.co/qml5EzqrYV","Nov 21, 1:58:29 AM EST"
-1859493869945020670,"😎 https://t.co/3RQwwDHBwO","Nov 21, 2:07:40 AM EST"
-1859592772618952921,"RT @elon_docs: Elon Musk: You can measure intelligence by its ability to predict the future.
-
-“The right metric for intelligence is probabl…","Nov 21, 8:40:41 AM EST"
-1859593835535331439,"Notre-Dame has been restored!
- https://t.co/g7RKQDHRlr","Nov 21, 8:44:54 AM EST"
-1859594552190947536,"RT @Rothmus: 💯💯 https://t.co/DfQ1Z69dVD","Nov 21, 8:47:45 AM EST"
-1859595501022150816,"🎯 https://t.co/V9gj7vdF2i","Nov 21, 8:51:31 AM EST"
-1859596285549920658,"https://t.co/iJkc2nPofO","Nov 21, 8:54:38 AM EST"
-1859598530043633794,"RT @Rainmaker1973: Starship compared to the Space Shuttle, Crew Dragon, Cybertruck and a human.
-
-[✏️ Dale Rutherford] https://t.co/aFF0wnX1…","Nov 21, 9:03:33 AM EST"
-1859599478451216864,"RT @TheRabbitHole84: 4 Essential Functions of Government according to Milton Friedman:
-
-1) Defense from foreign enemies.
-2) Protect the ind…","Nov 21, 9:07:20 AM EST"
-1859599767044608122,"Interesting https://t.co/5NapoKP2DW","Nov 21, 9:08:28 AM EST"
-1859600792988053863,"Karma is real https://t.co/biPx2RG0gE","Nov 21, 9:12:33 AM EST"
-1859601277367238898,"gm frens","Nov 21, 9:14:28 AM EST"
-1859601923453722936,"Wow, this is messed up!
- https://t.co/wLxB4G1lYS","Nov 21, 9:17:02 AM EST"
-1859603541653860815,"There are well over 400 Federal agencies.
-
-I was once in a meeting with a new agency that was being formed, but it didn’t have a name yet.
-
-The reason it didn’t have a name was that all the good acronyms were taken! https://t.co/0Xvei7nWln","Nov 21, 9:23:28 AM EST"
-1859604400655708584,"Seriously.
-
-If you want to know the real answer, it is because almost every one of them, once they become citizens, will vote Democrat.
-
-Criminals vote overwhelmingly Democrat, because they are the soft-on-crime party. This is a fact. https://t.co/FiSRi","Nov 21, 9:26:53 AM EST"
-1859604526480683188,"Cool 😎 https://t.co/gNbXf8q8Mg","Nov 21, 9:27:23 AM EST"
-1859605153038426229,"RT @america: Americans deserve a government that spends their tax dollars wisely.","Nov 21, 9:29:52 AM EST"
-1859605758091894795,"To be clear, I have not done any media interviews and this is not actually my checklist.
-
-I am trying to make life multiplanetary to maximize the probable lifespan of consciousness. Some of the items below are needed for that. https://t.co/Sv0N3Z5U4l","Nov 21, 9:32:17 AM EST"
-1859606021125153222,"💩 posting is now part of my actual job 😂 https://t.co/Gd4n4ME207","Nov 21, 9:33:19 AM EST"
-1859610430986916200,"RT @LibertyCappy: DOGE fixes this https://t.co/EhhgtsA45w","Nov 21, 9:50:51 AM EST"
-1859613119686811721,"RT @TeslaCharging: With the new Tesla App update, you can report issues at Tesla charging locations at any time. Our systems already auto-d…","Nov 21, 10:01:32 AM EST"
-1859613846324863050,"RT @LibertyCappy: Never forget what they did to us. https://t.co/iCP79Wk4qX","Nov 21, 10:04:25 AM EST"
-1859614335649140742,"RT @DimaZeniuk: All six Starship rockets https://t.co/6TFjRhekwk","Nov 21, 10:06:22 AM EST"
-1859649403046522959,"🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀 https://t.co/MWJa7n8Cis","Nov 21, 12:25:42 PM EST"
-1859654027639914818,"Humans are so small https://t.co/ZMi5K4BmJy","Nov 21, 12:44:05 PM EST"
-1859654932284256315,"RT @xiaosun86: @austin_rief 30 under 30 years","Nov 21, 12:47:41 PM EST"
-1859655332747935775,"Fairing reuse is also important https://t.co/IQbDmjy31m","Nov 21, 12:49:16 PM EST"
-1859656136317861965,"Falcon Heavy https://t.co/ypeJNo6KP3","Nov 21, 12:52:28 PM EST"
-1859656599897506229,"We need to reach >1M/year production volumes, but, long-term, yes https://t.co/WE39TnhTdf","Nov 21, 12:54:18 PM EST"
-1859656862628708737,"I am immune from Community Notes!
-
-(Community Notes will correct this shortly 😂) https://t.co/UPOHOSDtD8","Nov 21, 12:55:21 PM EST"
-1859660528614006808,"RT @america: Leaders have a duty to keep their citizens safe and prosecute dangerous criminals — not protect them.
-
-A reminder that DA Brag…","Nov 21, 1:09:55 PM EST"
-1859663799319769336,"They want our memes! https://t.co/jx42ecApTs","Nov 21, 1:22:55 PM EST"
-1859665111545442404,"You are the media now https://t.co/hRZORqis3Z","Nov 21, 1:28:08 PM EST"
-1859665673296937212,"🍌 for scale https://t.co/4Yga3P0zpZ","Nov 21, 1:30:22 PM EST"
-1859665794801557724,"🤨 https://t.co/fX2wQgCc3r","Nov 21, 1:30:51 PM EST"
-1859672535153115155,"Yes https://t.co/XgawiHu4TC","Nov 21, 1:57:38 PM EST"
-1859672679646998930,"More Starlinks in orbit https://t.co/TR75BVgk0r","Nov 21, 1:58:12 PM EST"
-1859682220648382464,"A new philosophy that is compatible with most existing belief systems https://t.co/Jy5xbzXBcZ","Nov 21, 2:36:07 PM EST"
-1859695994688110819,"I may have been Community Noted 70 times, but I have post 70 million times, so that’s only 1 in a million!
-
-(My Community Note counter about to increment to 71 😂)","Nov 21, 3:30:51 PM EST"
-1859697836969050290,"This is still a major problem https://t.co/v3oXDSz8xO","Nov 21, 3:38:10 PM EST"
-1859707637543338156,"RT @GadSaad: Thanks @elonmusk. Much appreciated. Let's make sure that the global mind vaccine is administered across the entire planet!","Nov 21, 4:17:07 PM EST"
-1859708877333463092,"𝕏 keeps hitting new highs in usage, because it is by far the most interesting place on the Internets https://t.co/K6JhVLfiup","Nov 21, 4:22:02 PM EST"
-1859718661889822847,"Unmodified video stills transmitted via Starlink https://t.co/Ml8JwGHnXy","Nov 21, 5:00:55 PM EST"
-1859745047211802893,"https://t.co/hbFl5QJhc6","Nov 21, 6:45:46 PM EST"
-1859755564160741758,"Try out these new features!
-
-I personally tirn off the engagement numbers and have swipe right to reply, swipe left to favorite.
-
-Screen is less busy and interaction is super fast, just like texting. https://t.co/ZipxtAhpHC","Nov 21, 7:27:33 PM EST"
-1859755611606700187,"RT @mayxlyy: ✨ New iOS Feature ✨
-
-You can now hide engagement buttons and numbers below each post and interact with posts through custom sw…","Nov 21, 7:27:45 PM EST"
-1859755902599036980,"Exactly https://t.co/uVAIWeR4xE","Nov 21, 7:28:54 PM EST"
-1859758318916600200,"RT @VigilantFox: 10 Shocking Stories the Media Buried Today
-
-#10 - Joe Rogan ERUPTS on The New York Times for “fack-checking” RFK Jr. on to…","Nov 21, 7:38:30 PM EST"
-1859758572068012064,"RT @X: shiny new feature just dropped! try it and let us know what you think","Nov 21, 7:39:30 PM EST"
-1859762789776282098,"Starship hot stage separation https://t.co/iGA2xJ0PRn","Nov 21, 7:56:16 PM EST"
-1859763233114177711,"Wow https://t.co/gRHFdTzTAO","Nov 21, 7:58:02 PM EST"
-1859767940528341345,"Try this! https://t.co/tNNas4sfqc","Nov 21, 8:16:44 PM EST"
-1859769556157514122,"🇺🇸🇺🇸 https://t.co/pisQvlrv01","Nov 21, 8:23:09 PM EST"
-1859772322112209065,"NFL Portal https://t.co/CNiiObF7oI","Nov 21, 8:34:09 PM EST"
-1859772914142413292,"RT @IterIntellectus: ngl, this is neat https://t.co/NJ0051kVtN","Nov 21, 8:36:30 PM EST"
-1859775441541922971,"😂 https://t.co/5zQ5YvUYG8","Nov 21, 8:46:32 PM EST"
-1859778048054394932,"It’s much cleaner with engagement numbers turned off.
-
-You can still see view count if you care. https://t.co/JdB3WQADxP","Nov 21, 8:56:54 PM EST"
-1859798226242765158,"Much better this way https://t.co/xPyI9uTcDd","Nov 21, 10:17:05 PM EST"
-1859799535335374893,"RT @Teslaconomics: Elon’s products make me feel like I’m living in the year 2690 https://t.co/CS5yUXkW8Z","Nov 21, 10:22:17 PM EST"
-1859805792133840942,"😂 https://t.co/1WZSqn0WtZ","Nov 21, 10:47:09 PM EST"
-1859812582011568399,"You are the media now.
-
-𝕏 what you know.
-
-𝕏 what you hear.
-
-𝕏 what you see. https://t.co/AVsmM0ZSVd","Nov 21, 11:14:07 PM EST"
-1859812913831346375,"High time you got your money’s worth from government
-https://t.co/1T6TNoDBFA","Nov 21, 11:15:26 PM EST"
-1859814646280294886,"𝕏 is now #1 for news in India! https://t.co/beLobq1Dfo","Nov 21, 11:22:20 PM EST"
-1859816524548301225,"RT @Tesla: Nobody likes getting into a car that’s either too hot or too cold
-
-With the Tesla app, you can remotely precondition the cabin t…","Nov 21, 11:29:47 PM EST"
-1859821396064600392,"RT @BrianRoemmele: Is there life on Mars?
-
-Yes, it will be us. https://t.co/JuxYsXR64X","Nov 21, 11:49:09 PM EST"
-1859823580160327777,"Those are the two paths https://t.co/46T9SUZqfS","Nov 21, 11:57:50 PM EST"
-1859823710468973008,"RT @teslaownersSV: Chief @DOGE https://t.co/AGF62kYmQU","Nov 21, 11:58:21 PM EST"
-1859824059464417372,"Deregulation and reducing government spending leads to prosperity https://t.co/E46tq9YhP3","Nov 21, 11:59:44 PM EST"
-1859826337504165906,"True https://t.co/vdfxzhIWz7","Nov 22, 12:08:47 AM EST"
-1859827700581662738,"https://t.co/byYWtOsnUA","Nov 22, 12:14:12 AM EST"
-1859829186812358724,"https://t.co/yeXaOrINsO","Nov 22, 12:20:06 AM EST"
-1859829435182219408,"80%, but the point remains valid https://t.co/xQGx1fRRly","Nov 22, 12:21:05 AM EST"
-1859829503088001199,"RT @EvaFoxU: This is truly what gives me the inspiration to get up in the morning. Humanity MUST go beyond Earth and SpaceX is a key part o…","Nov 22, 12:21:22 AM EST"
-1859829851148124229,"Population collapse due to plummeting birth rates continues to worsen https://t.co/vBBLAycWwz","Nov 22, 12:22:45 AM EST"
-1859829918269612343,"Yes https://t.co/m9diizzsNM","Nov 22, 12:23:01 AM EST"
-1859830437088198878,"If you’re having difficulty play 𝕏 videos on your TV, please comment below https://t.co/OwzZ8MBXAX","Nov 22, 12:25:04 AM EST"
-1859925930376081853,"RT @ItsToad_: As per my previous tablet… https://t.co/Fo0cFO7YSN","Nov 22, 6:44:32 AM EST"
-1859926330814693799,"RT @ElonFactsX: Elon Musk explains why he started SpaceX:
-
-“We were supposed to have a base on the moon. We were supposed to send people to…","Nov 22, 6:46:07 AM EST"
-1859928094259437737,"RT @TheGregYang: slowly rolling out improved understanding of sports + finance for grok
-
-just early days and we'll rapidly improve from her…","Nov 22, 6:53:08 AM EST"
-1859928962857840835,"The smartest people are on 𝕏 https://t.co/Gl9HqPYhJ3","Nov 22, 6:56:35 AM EST"
-1859929103434133710,"You are the media now https://t.co/VofzMHrGXv","Nov 22, 6:57:08 AM EST"
-1859930496278368525,"Have to say that @joerogan’s profile description is awesome 😂 https://t.co/6Z8hUAQIBj","Nov 22, 7:02:40 AM EST"
-1859932478645162391,"The new tunnel boring machine designed by @boringcompany engineers can immediately start digging a tunnel anywhere with no prior site preparation (this is a really big deal) https://t.co/08zbixZ6Lk","Nov 22, 7:10:33 AM EST"
-1859933384124068132,"Freeing the people from government oppression https://t.co/Dx5TnP6tDV","Nov 22, 7:14:09 AM EST"
-1859935152572678203,"RT @joeroganhq: FREE Speech wins. Welcome to the show!","Nov 22, 7:21:10 AM EST"
-1859936672357785659,"RT @alifarhat79: 🎯 https://t.co/M6xrjXmTqN","Nov 22, 7:27:13 AM EST"
-1859943692775366723,"RT @netanyahu: The antisemitic decision of the international court in The Hague is a modern Dreyfus trial, and it will end the same way. ht…","Nov 22, 7:55:07 AM EST"
-1859944090177360173,"RT @andst7: https://t.co/RYhjb92zRh","Nov 22, 7:56:41 AM EST"
-1859944145118527489,"RT @diana_dukic: 𝕏 is the most authentic source of news across the globe","Nov 22, 7:56:54 AM EST"
-1859949083101929806,"RT @elonmusk: @Grummz Nobody, and I mean nobody, gets to trash E. Gary Gygax and the geniuses who created Dungeons & Dragons.
-
-What the fu…","Nov 22, 8:16:32 AM EST"
-1859990669894492250,"A fully reusable rocket improves cost per ton to orbit by ~2.5 orders of magnitude https://t.co/cmItlnY5Ni","Nov 22, 11:01:47 AM EST"
-1859995885305987158,"Wow https://t.co/lZPs2U5Kej","Nov 22, 11:22:30 AM EST"
-1859996036602933388,"Now overlay that with regions where no voter ID is required … https://t.co/lZPs2U5Kej","Nov 22, 11:23:06 AM EST"
-1859996146606956895,"RT @ajtourville: DYK: @SpaceX has more satellites in orbit than all other entities & governments combined — This would not have been possib…","Nov 22, 11:23:33 AM EST"
-1859999003125121161,"Nice work by @XEng https://t.co/HgGnTrP87D","Nov 22, 11:34:54 AM EST"
-1860001629212393837,"They are basically the same picture.
-
-Banning voter ID makes fraudulent voting by non-citizens easy.
-
-Making a state or city a “sanctuary” for illegals then maximizes the potential total of fraudulent votes.
-
-Understanding the incentives explains seemi","Nov 22, 11:45:20 AM EST"
-1860002699456225682,"More than half of American voters voted for Trump. He won the popular vote by a decisive margin!
-
-Cutting someone off just because they voted for the other candidate is close-minded and just plain mean. https://t.co/nMQ8pDLcly","Nov 22, 11:49:35 AM EST"
-1860003029682126871,"Yes https://t.co/TaXXg6VxiK","Nov 22, 11:50:54 AM EST"
-1860003911148667346,"💯 https://t.co/3dDoVHnYDk","Nov 22, 11:54:24 AM EST"
-1860005811998847032,"Over 10,000% … @DOGE is sorely needed! https://t.co/2IlINgQZHI","Nov 22, 12:01:57 PM EST"
-1860005940776567110,"Same https://t.co/vtz7gjwOYE","Nov 22, 12:02:28 PM EST"
-1860006507162796126,"Hot staging & boostback burn https://t.co/HFThET0jdn","Nov 22, 12:04:43 PM EST"
-1860006874718044598,"Yes https://t.co/5suf8GYVCo","Nov 22, 12:06:10 PM EST"
-1860037050801750053,"Starlink Mini gives you super fast Internet almost anywhere in the world and fits in a backpack https://t.co/FdOv6ZcDZz","Nov 22, 2:06:05 PM EST"
-1860038160664920540,"What is happening in Britain!? https://t.co/2QmYZEypF2","Nov 22, 2:10:29 PM EST"
-1860038631349714969,"The legacy media lied to the people of Norway and many other countries.
-
-Forward https://t.co/bOUOek6al6 links to friends & family, so they know what’s really going on! https://t.co/LBHz86NJl1","Nov 22, 2:12:22 PM EST"
-1860040035439116711,"Saturn V and Shuttle for scale https://t.co/Mxe3Gkskij","Nov 22, 2:17:56 PM EST"
-1860040571626340764,"The most entertaining outcome, especially if ironic, is most likely 😂 https://t.co/YX2EznXfoF","Nov 22, 2:20:04 PM EST"
-1860044282448740377,"https://t.co/bi1kHI4vJK","Nov 22, 2:34:49 PM EST"
-1860045818402865429,"RT @Teslaconomics: I don’t know about you, but to me the future looks fuckin amazing https://t.co/CLMnILkqHH","Nov 22, 2:40:55 PM EST"
-1860047803998961934,"I instantly lose respect for anyone who posts on LinkedIn. Unbearably cringe. https://t.co/tuCWhXYGOI","Nov 22, 2:48:49 PM EST"
-1860110085231640725,"It is symbolic of our struggle to be a multiplanetary species https://t.co/P5PhaN8fqO","Nov 22, 6:56:18 PM EST"
-1860190434364129598,"Or symbolic of our struggle against reality 😂","Nov 23, 12:15:34 AM EST"
-1860192332878172497,"The voice of the people is a great antidote https://t.co/bni8MqMr2q","Nov 23, 12:23:07 AM EST"
-1860196280460607720,"RT @ElonFactsX: Elon Musk:
-
-“For most of history (and still most of the world) it was might-makes-right. This has overcorrected to weak-mak…","Nov 23, 12:38:48 AM EST"
-1860196797161046263,"The growth of propaganda in legacy media is easily tracked simply by counting word frequency https://t.co/aW6qqOetez","Nov 23, 12:40:51 AM EST"
-1860199022121943545,"I knew if I brought a sink they would have to let that sink in. How could they not? https://t.co/voEVBMC7Ht","Nov 23, 12:49:42 AM EST"
-1860200772891537596,"True https://t.co/A5cIMs4zb9","Nov 23, 12:56:39 AM EST"
-1860202447186330052,"https://t.co/JxaPLPttz7","Nov 23, 1:03:18 AM EST"
-1860202643773395117,"💦 https://t.co/zf7riMK7IB","Nov 23, 1:04:05 AM EST"
-1860202873218564568,"Yes. https://t.co/8PEeBHCNod","Nov 23, 1:05:00 AM EST"
-1860203305470951568,"RT @MdeZegher: The updated stall availability algorithm is a big improvement, with nearby refresh rates now every ~15 seconds. We know car…","Nov 23, 1:06:43 AM EST"
-1860203986978283698,"RT @EndWokeness: Joe Rogan calls out this administration for inciting WWIII on their way out
-
-https://t.co/GOlPGWexG5","Nov 23, 1:09:26 AM EST"
-1860208047865626644,"Yes https://t.co/oLN4xaH4v0","Nov 23, 1:25:34 AM EST"
-1860208831835570400,"RT @NASA_Marshall: For @NASAArtemis III, @NASA is working with @SpaceX to develop the Starship Human Landing System.
-
-Learn more about thes…","Nov 23, 1:28:41 AM EST"
-1860210546345419261,"SEC. The middle word is definitely “Elon’s”, but I can never remember what the other two words stand for 🤔. https://t.co/ZZiPyXecZk","Nov 23, 1:35:29 AM EST"
-1860211218079973535,"RT @Jason: DOGE needs to win the hearts and minds of *all* Americans or the machine is going to reject it. 🇺🇸
-
-The #1 priority is showing…","Nov 23, 1:38:10 AM EST"
-1860212805439488130,"America is currently headed for bankruptcy super fast https://t.co/Tm6JFJ6mef","Nov 23, 1:44:28 AM EST"
-1860214335488033017,"Yes! https://t.co/anYEvra9P7","Nov 23, 1:50:33 AM EST"
-1860215001157660702,"Yes https://t.co/RX3soBocAT","Nov 23, 1:53:12 AM EST"
-1860322925783445956,"Wow, they really don’t get it.
-
-Mars is critical to the long-term survival of consciousness.
-
-Also, I’m not going to ask any venture capitalists for money. I realize that it makes no sense as an investment. That’s why I’m gathering resources. https://t.","Nov 23, 9:02:03 AM EST"
-1860323173570396186,"I love @JoeRogan & @TheBabylonBee 😂 https://t.co/btOr3T5CZ0","Nov 23, 9:03:02 AM EST"
-1860407474618089493,"Grok now understands PDFs https://t.co/nkjn8Oqiwm","Nov 23, 2:38:01 PM EST"
-1860407786208633178,"Crazy idea, but it just might work! 😂 https://t.co/t5fMwhs0jj","Nov 23, 2:39:15 PM EST"
-1860420683777380580,"Cool https://t.co/lsC1kM71LR","Nov 23, 3:30:30 PM EST"
-1860422646187409681,"🤔 https://t.co/P7JIIU3UId","Nov 23, 3:38:18 PM EST"
-1860426106014257541,"🇺🇸🇺🇸 @DOGE https://t.co/f6gLG0b7gI","Nov 23, 3:52:03 PM EST"
-1860426466959257914,"Many Grok upgrades recently and many more to come https://t.co/GpOO5r709t","Nov 23, 3:53:29 PM EST"
-1860428575016419392,"Even if we fail at creating a Mars colony that can grow without continuous support from Earth, the absurdly ambitious nature of the goal nonetheless results in the creation of alien-level technology that is crushingly better than competitors who merely ai","Nov 23, 4:01:52 PM EST"
-1860428960099615217,"Try it, you’ll like it https://t.co/q3LnouS0If","Nov 23, 4:03:23 PM EST"
-1860429472886931628,"https://t.co/Cl4HEwRG8v","Nov 23, 4:05:26 PM EST"
-1860429508752412893,"RT @YunTaTsai1: There is no sci-fi movie shot as beautiful as hot staging.","Nov 23, 4:05:34 PM EST"
-1860430675351851484,"Insane government spending is driving American into bankruptcy https://t.co/CvnkLjBPTY","Nov 23, 4:10:12 PM EST"
-1860436541266436431,"This is insane https://t.co/eUZRFZyU5l","Nov 23, 4:33:31 PM EST"
-1860437346216215030,"RT @joniernst: Met with @realDonaldTrump about his cabinet nominees today!
-@howardlutnick @elonmusk https://t.co/yR72sRbyyC","Nov 23, 4:36:43 PM EST"
-1860437902531981551,"No-brainer https://t.co/Z9fBfibOAA","Nov 23, 4:38:55 PM EST"
-1860443920892600504,"RT @VivekGRamaswamy: The federal government spent hundreds of millions of our dollars to “fight misinformation,” only to create more misinf…","Nov 23, 5:02:50 PM EST"
-1860445358372868509,"Interesting https://t.co/tix4DrQnzw","Nov 23, 5:08:33 PM EST"
-1860452719334424596,"Your tax dollars are paying to air-condition & heat thousands of empty government buildings 🤯
-
-Outrageous!! https://t.co/iB2zFNtFub","Nov 23, 5:37:48 PM EST"
-1860454020357193828,"Federal government overspending is what causes inflation https://t.co/RCpAbnqZqa","Nov 23, 5:42:58 PM EST"
-1860454223684472908,"In retrospect, it was inevitable 😂 https://t.co/yc2o79xhcw","Nov 23, 5:43:47 PM EST"
-1860454656796729392,"It will happen much faster https://t.co/tsnsZHns2o","Nov 23, 5:45:30 PM EST"
-1860454782705516544,"Yes https://t.co/ZBB1uufk0l","Nov 23, 5:46:00 PM EST"
-1860456684084158883,"Best fake ad ever 😂
-
-This meme ad was made in 2013 when it was actually vaguely possible that it might be real. https://t.co/BUG9ZhJhs1","Nov 23, 5:53:33 PM EST"
-1860458140430406055,"What a coincidence https://t.co/LBv1FSuVG3","Nov 23, 5:59:20 PM EST"
-1860459249911881885,"Democrats are intolerant meanies https://t.co/MXMlnQBwjm","Nov 23, 6:03:45 PM EST"
-1860459353200787528,"Yes https://t.co/dR2v02Ref2","Nov 23, 6:04:10 PM EST"
-1860460670296195562,"The real problem is that Neil decided to grovel to the woke far left when he got hit with a #MeToo.
-
-You can avoid being canceled if you beg for forgiveness and push their nonsense ideology.
-
-The truth hurts. https://t.co/cLmZMFir60","Nov 23, 6:09:24 PM EST"
-1860462173878694059,"Legacy (formerly “mainstream”) media lies https://t.co/1vYrYSSQyW","Nov 23, 6:15:22 PM EST"
-1860462586040393809,"RT @dogeofficialceo: The DOGE is for the people https://t.co/yKNX5gvqWW","Nov 23, 6:17:00 PM EST"
-1860463707735679201,"RT @EndWokeness: NEW STUDY: Woke people literally speak a different language than everyone else https://t.co/rc4fhuQECK","Nov 23, 6:21:28 PM EST"
-1860466168919646451,"RT @buitengebieden: Arguing on 𝕏.. 😂 https://t.co/tFX463xBrJ","Nov 23, 6:31:15 PM EST"
-1860466266789609518,"😂 https://t.co/yAHCzZnXNY","Nov 23, 6:31:38 PM EST"
-1860468899562627163,"Only patents for things that are super expensive to prove work, but are then easy to manufacture (like stage 3 drug trials) have any merit
- https://t.co/2UaR61r0NE","Nov 23, 6:42:06 PM EST"
-1860468951064445202,"Yes! https://t.co/BGiWlcmtLN","Nov 23, 6:42:18 PM EST"
-1860469845453676752,"Obviously https://t.co/2WHMqzFqed","Nov 23, 6:45:51 PM EST"
-1860470986438545485,"😂💯 https://t.co/PzkLsmVFz7","Nov 23, 6:50:23 PM EST"
-1860472135099031624,"I … am … Ironyman …","Nov 23, 6:54:57 PM EST"
-1860472834566373488,"Almost 80% of asylum seekers went on vacation to their home countries … https://t.co/WVc1NcutIG","Nov 23, 6:57:44 PM EST"
-1860473152091865582,"How to get to the new interface.
-
-Try it for a few days and you won’t go back. https://t.co/4FZiZeNRle","Nov 23, 6:59:00 PM EST"
-1860473569219613155,"“Leonard” lmaoooo https://t.co/Ua8rJOCY7w","Nov 23, 7:00:39 PM EST"
-1860475842800812347,"Actual footage of me after @realDonaldTrump won https://t.co/PhPJjzaw0J","Nov 23, 7:09:41 PM EST"
-1860476695725183439,"🤨 https://t.co/qt0fu8ZX3B","Nov 23, 7:13:04 PM EST"
-1860476995370455296,"India counted 640 million votes in 1 day.
-
-California is still counting votes 🤦♂️ https://t.co/ai8JmWxas6","Nov 23, 7:14:16 PM EST"
-1860477824571724207,"I will use the power of irony to defeat villains!
-
-“Oh you call yourself “The Joker”, then why can’t you tell a joke! How ironic …” https://t.co/6HZ1sLkBAj","Nov 23, 7:17:34 PM EST"
-1860478835134718067,"But one is Marvel and the other is DC. Oh no, not more irony 🤭","Nov 23, 7:21:34 PM EST"
-1860479603883606132,"😘😘🔫🔫 https://t.co/PVUXpXPOQa https://t.co/eHYRGSb1be","Nov 23, 7:24:38 PM EST"
-1860480338704687316,"1 biiiillliiionnnn users https://t.co/9LSf93CNbG https://t.co/anY29CnDpn","Nov 23, 7:27:33 PM EST"
-1860481211623227730,"The Right to Bear Arms https://t.co/bJdr90YOhK","Nov 23, 7:31:01 PM EST"
-1860481488761794965,"RT @MostlyPeacefull: @elonmusk @realDonaldTrump https://t.co/hFqGXP1ruL","Nov 23, 7:32:07 PM EST"
-1860481614129533165,"Wow https://t.co/ZD3uwS0f7t","Nov 23, 7:32:37 PM EST"
-1860484993899807046,"Me for the past 3 hours 💩posting on 𝕏 https://t.co/iM9IMudS0G","Nov 23, 7:46:03 PM EST"
-1860485873881547014,"RT @LibertyCappy: @elonmusk My favorite meme with that template 😂 https://t.co/FvYEcs67en","Nov 23, 7:49:33 PM EST"
-1860486079268143275,"Get paid to post on 𝕏! https://t.co/eKwYP6kux7","Nov 23, 7:50:22 PM EST"
-1860486138554708358,"RT @teslaownersSV: 𝕏 has the most unregretted minutes","Nov 23, 7:50:36 PM EST"
-1860487473014403570,"RT @EvaLovesDesign: https://t.co/dsJ4quY5W0","Nov 23, 7:55:54 PM EST"
-1860488429391302805,"My phone today
- https://t.co/o4n2ae2Lmb","Nov 23, 7:59:42 PM EST"
-1860488677996089499,"Fidias for EU President!! https://t.co/qXaLocmn50","Nov 23, 8:00:41 PM EST"
-1860489367099224482,"https://t.co/obyNTOtbdx","Nov 23, 8:03:25 PM EST"
-1860490221302718793,"Tragic https://t.co/K7pjfWhg6D","Nov 23, 8:06:49 PM EST"
-1860491901083754599,"This meme hits the bullseye so hard https://t.co/ZuUdZGkGLe","Nov 23, 8:13:30 PM EST"
-1860493520659742780,"Can you see the matrix? https://t.co/cDUXhwDmBv","Nov 23, 8:19:56 PM EST"
-1860493899606749297,"How old were you when you realized others couldn’t see the matrix?","Nov 23, 8:21:26 PM EST"
-1860494349168943370,"Yes https://t.co/PWRWs9S5uY","Nov 23, 8:23:13 PM EST"
-1860495373837488200,"RT @terrorproforma: https://t.co/Qy2QHsLv86","Nov 23, 8:27:18 PM EST"
-1860495981499781195,"MATRI𝕏 https://t.co/Z9ntUUiJti","Nov 23, 8:29:42 PM EST"
-1860497526769561668,"Why is he in prison for 18 months? https://t.co/Oy3Gtdm9hJ","Nov 23, 8:35:51 PM EST"
-1860499015793610961,"RT @BartemyS: @AlexBerenson Hey. This is me 🙋♂️
-I wrote that.
-
-It was in a response to a post by Justine Bateman. https://t.co/cjjYXpSQgH","Nov 23, 8:41:46 PM EST"
-1860503392658891187,"Noland is playing Polytopia just by thinking via his Neuralink Telepathy device
- https://t.co/NkNimbhPB3","Nov 23, 8:59:09 PM EST"
-1860504779325128809,"𝕏 is the group chat / collective conscious of Earth","Nov 23, 9:04:40 PM EST"
-1860505194183745667,"I love this meme https://t.co/yLPaKPD02n","Nov 23, 9:06:19 PM EST"
-1860512112012857806,"RT @Cmdr_Hadfield: The beautiful artistry of pushing engineering to its limits. Starship hot staging @SpaceX. https://t.co/kAf2088elh","Nov 23, 9:33:48 PM EST"
-1860514510328438931,"🔥🔥 https://t.co/sCe1ELzPgJ","Nov 23, 9:43:20 PM EST"
-1860515595986374700,"It’s a dirty job, but someone’s got to do it https://t.co/jhDVUAEeeH","Nov 23, 9:47:39 PM EST"
-1860515818636734654,"They hacked the system https://t.co/aiF8NoqiWj","Nov 23, 9:48:32 PM EST"
-1860518558372856161,"Same picture https://t.co/9l0HzlqXVY","Nov 23, 9:59:25 PM EST"
-1860519828877987930,"Yeah https://t.co/AM4fHjcYiD","Nov 23, 10:04:28 PM EST"
-1860530628346937691,"Stop killing art with woke propaganda 😡 https://t.co/HLnZqLa5ls","Nov 23, 10:47:23 PM EST"
-1860530812267233710,"How amazing would this be? 🤩 https://t.co/kwAl3PlygO","Nov 23, 10:48:07 PM EST"
-1860530890134421850,"It’s true https://t.co/5mXLg58SkZ","Nov 23, 10:48:25 PM EST"
-1860531300471570872,"SPQR","Nov 23, 10:50:03 PM EST"
-1860540672983601533,"RT @DrPatSoonShiong: The appointment of three highly qualified, critical thinkers—all of whom are MDs—to leadership positions in key agenci…","Nov 23, 11:27:18 PM EST"
-1860543172386128266,"Damn, I get the feeling his lip prints are on a lot of mirrors 😬 https://t.co/ptRf32z8zQ","Nov 23, 11:37:14 PM EST"
-1860543718794867075,"RT @kerrikgray: @elonmusk This one is fun too. https://t.co/Y1ngx9e8hq","Nov 23, 11:39:24 PM EST"
-1860544134668517597,"https://t.co/z3necdPC9P","Nov 23, 11:41:03 PM EST"
-1860544798131925333,"Kapow💥 https://t.co/5Bx9BTOvpA","Nov 23, 11:43:41 PM EST"
-1860545448932704311,"🎯 https://t.co/Mc204reWiR","Nov 23, 11:46:16 PM EST"
-1860545665941799035,"Yes https://t.co/rwehwl8k9I","Nov 23, 11:47:08 PM EST"
-1860547729765859511,"Rage against the dying of the light https://t.co/jc2Jjnce6w","Nov 23, 11:55:20 PM EST"
-1860548103428014199,"Woke lies kill art https://t.co/aIzKzxKBgr","Nov 23, 11:56:49 PM EST"
-1860548419867279808,"RT @fentasyl: - 5,000,000 user-days per day or
-- 14,000 user-years per day
-Are each slightly more intuitive than 434,000,000,000 user-secon…","Nov 23, 11:58:05 PM EST"
-1860548642152808921,"Exactly https://t.co/kNKnHWCwVi","Nov 23, 11:58:58 PM EST"
-1860549167921398199,"RT @Steven_Ballmer: Great to see @DOGE digging into @USAFacts government data","Nov 24, 12:01:03 AM EST"
-1860549853778182560,"Support from the OG creator of “meme” 😀 https://t.co/adR6bQTg2c","Nov 24, 12:03:47 AM EST"
-1860553018095337912,"RT @teslaownersSV: 𝕏 is the most important app to save 🇺🇸 democracy
-
-Subscribe to 𝕏 premium and support free speech along with Elon Musk","Nov 24, 12:16:21 AM EST"
-1860553109283701104,"https://t.co/bSAPyTuuba","Nov 24, 12:16:43 AM EST"
-1860553997398180253,"The legacy media propaganda machine that pushed hoaxes relentlessly through the Biden and Harris campaigns still exists and is still pushing propaganda https://t.co/R9qCbOxOoN","Nov 24, 12:20:15 AM EST"
-1860554260104011896,"Memeception https://t.co/hjoJcfi2IJ","Nov 24, 12:21:17 AM EST"
-1860554544549363749,"Sounds about right https://t.co/r0IsEiSEcm","Nov 24, 12:22:25 AM EST"
-1860554655790694840,"RT @elon_docs: Elon Musk: I didn't read business books. I liked biographies.
-
-“I read a lot of books and talked to lots of people. I didn't…","Nov 24, 12:22:52 AM EST"
-1860556265526821243,"The obvious final survival attempt of the woke mind parasite, which cannot stand the light of truth, is to splinter off the central consciousness of 𝕏 to smaller, isolated group minds.
-
-There, you can witness its death throes. https://t.co/Bb1gxF4ROY","Nov 24, 12:29:15 AM EST"
-1860556336045666338,"https://t.co/JAJgsu8T4g","Nov 24, 12:29:32 AM EST"
-1860556969872126261,"RT @DefiyantlyFree: A preview of MSNBC under the control of @elonmusk and @DonaldJTrumpJr https://t.co/1CvwY3G8Vj","Nov 24, 12:32:03 AM EST"
-1860560479892177105,"https://t.co/1r4PO6gl1o","Nov 24, 12:46:00 AM EST"
-1860561161453994029,"My phone keeps suggesting that I post this ginormous, demented laughing emoji 😂 https://t.co/l0VHESpKfO","Nov 24, 12:48:43 AM EST"
-1860561500525740430,"RT @Rothmus: 🔥🔥🔥🔥 https://t.co/EQlrcR96tI","Nov 24, 12:50:03 AM EST"
-1860562114278228088,"𝕏 is so unhinged rn","Nov 24, 12:52:30 AM EST"
-1860562997028299045,"Having pronouns in a fantasy video game is utterly unacceptable 😡 https://t.co/h5ISGFBJZT","Nov 24, 12:56:00 AM EST"
-1860565632863076743,"“I am your farter!” https://t.co/AznlbLTInE","Nov 24, 1:06:29 AM EST"
-1860566270942544333,"Who is this Angela Merkin person? https://t.co/PTjmnG2Vgi","Nov 24, 1:09:01 AM EST"
-1860566919654654196,"You will always be my captain @WilliamShatner","Nov 24, 1:11:35 AM EST"
-1860570119199686872,"Not bad https://t.co/ob0nB4AcaV","Nov 24, 1:24:18 AM EST"
-1860570405767118949,"https://t.co/EXNhs0WXR0 https://t.co/0jGnRitVf6","Nov 24, 1:25:27 AM EST"
-1860571010518708602,"https://t.co/yztsUBPZbk","Nov 24, 1:27:51 AM EST"
-1860572328465432924,"Something tells me this will hit the press 🧌 🤭","Nov 24, 1:33:05 AM EST"
-1860574377013838033,"Meanwhile, some idiots are still building manned fighter jets like the F-35 🗑️ 🫠
- https://t.co/4JX27qcxz1","Nov 24, 1:41:13 AM EST"
-1860574517971837047,"More Starlinks https://t.co/LzgVJCzIa3","Nov 24, 1:41:47 AM EST"
-1860574727942922257,"RT @dvorahfr: To make humans multi-planetary, it will be necessary to build buildings worthy of the cathedrals of yesteryear https://t.co/W…","Nov 24, 1:42:37 AM EST"
-1860574843391066304,"SpaceX now does this every day or so https://t.co/0SztJ6HlMg","Nov 24, 1:43:05 AM EST"
-1860575443923141092,"I love the fresh breeze of a wide open Overton Window https://t.co/AsxtEhxSue","Nov 24, 1:45:28 AM EST"
-1860577325160759403,"Whoa https://t.co/YgpnS2puaF","Nov 24, 1:52:56 AM EST"
-1860580154386551018,"RT @PlanetOfMemes: DOGE can make this happen.
-
-Make the Tax Code Simple Again. https://t.co/adguf8v95j","Nov 24, 2:04:11 AM EST"
-1860583046728355897,"The years really fly by https://t.co/3l0a6zKQeZ","Nov 24, 2:15:40 AM EST"
-1860583239154643129,"Since it’s almost 2:30 ET https://t.co/d6CFT0wtVv","Nov 24, 2:16:26 AM EST"
-1860584723560747090,"I do love this meme https://t.co/1QXTWgcYNA","Nov 24, 2:22:20 AM EST"
-1860591666941558854,"And lead us not into temptation … https://t.co/0FG24fdwUc","Nov 24, 2:49:56 AM EST"
-1860593060176101444,"This would explain a lot of things https://t.co/Szx2rtT7UD","Nov 24, 2:55:28 AM EST"
-1860593380084121831,"RT @MarioNawfal: I wonder what other “alien-level” tech will be developed to get humanity to Mars?
-
-So far we have…
-
-Reusable rockets and g…","Nov 24, 2:56:44 AM EST"
-1860694522549911846,"RT @EndWokeness: SHOCK POLL: Trump approval surges to 59% (+18), an all-time high (CBS) https://t.co/jlmfQeheXw","Nov 24, 9:38:38 AM EST"
-1860696219187835389,"Your tax dollars should not fund lies https://t.co/pjJ4TZfYJO","Nov 24, 9:45:23 AM EST"
-1860699783331205594,"🤨 https://t.co/a8yL3CjEHm","Nov 24, 9:59:33 AM EST"
-1860701054289264904,"RT @astro_Pettit: A new spin on orbital video. https://t.co/hgdgg25XnL","Nov 24, 10:04:36 AM EST"
-1860702819105546342,"RT @ajtourville: Known telcos set to launch @Starlink's Direct to Cell (DTC) service:
-
-🇺🇸 T-Mobile in the U.S.
-🇨🇦 Rogers in Canada
-🇳🇿 O…","Nov 24, 10:11:36 AM EST"
-1860703282861310141,"True! https://t.co/g64qZEHGFE","Nov 24, 10:13:27 AM EST"
-1860705145887268964,"UN is helping fund illegal migration to America https://t.co/g8G6kzD2V7","Nov 24, 10:20:51 AM EST"
-1860705853604790414,"Starlink’s new system enables Internet connectivity for your mobile phone with no extra equipment or special app.
-
-It just works. https://t.co/CJxUb1UclO","Nov 24, 10:23:40 AM EST"
-1860708238930710884,"Forward 𝕏 posts to your friends & family https://t.co/Z9ntUUjhiQ","Nov 24, 10:33:09 AM EST"
-1860708727416087016,"😂
- https://t.co/FmWtzjpQRX","Nov 24, 10:35:05 AM EST"
-1860708854260224059,"https://t.co/UQZpMjRinW","Nov 24, 10:35:35 AM EST"
-1860708996518449508,"RT @OwenSparks_: .@X is a designer brand.
-The product is free speech. https://t.co/YHWa00Zpbs","Nov 24, 10:36:09 AM EST"
-1860709200223154373,"🎯😂 https://t.co/vwlpDmN6pC","Nov 24, 10:36:58 AM EST"
-1860709883160731898,"RT @Starlink: High-speed internet for when you’re flying through space or coming in for a landing on the other side of the world https://t.…","Nov 24, 10:39:41 AM EST"
-1860710816938598458,"RT @SenJoniErnst: Billion dollar boondoggles, tele-“working” bureaucrats, and vacant buildings.
-
-Let’s stop this waste! @doge @elonmusk @vi…","Nov 24, 10:43:23 AM EST"
-1860711724539924873,"It’s a big improvement that I’ve been pushing for a while https://t.co/cmFkbziIoU","Nov 24, 10:47:00 AM EST"
-1860712162949554645,"Maher is expressing a sentiment shared by many on the extreme left https://t.co/qgssMxZZEz","Nov 24, 10:48:44 AM EST"
-1860712895635657108,"RT @grandoldmemes: https://t.co/vN2wiH0L8W","Nov 24, 10:51:39 AM EST"
-1860713051269607732,"RT @TheFigen_: This is how the fake news media works! https://t.co/OoyZXTKc2F","Nov 24, 10:52:16 AM EST"
-1860725934137205090,"Incarceration for contempt of court, even when valid, should not be for such an egregious length of time.
-
-When compared to the many crimes that receive little to no prison time, this cannot be considered fair or just. https://t.co/pQfe3DJ9cW","Nov 24, 11:43:27 AM EST"
-1860726280544792925,"RT @johnkrausphotos: https://t.co/bPFONHNsHa","Nov 24, 11:44:50 AM EST"
-1860726497197293649,"Yes https://t.co/jUpEYozRP7","Nov 24, 11:45:42 AM EST"
-1860726787195707738,"True https://t.co/y1tX6JIEnM","Nov 24, 11:46:51 AM EST"
-1860731348962750677,"The people of Britain have had enough of a tyrannical police state https://t.co/0PtR5qQOKw","Nov 24, 12:04:58 PM EST"
-1860731835925623201,"“Don’t teach your children at home or they will be bored at school”.
-
-That’s crazy. https://t.co/vYnYEYPU4Z","Nov 24, 12:06:55 PM EST"
-1860731970445303927,"RT @rookisaacman: Incredible shot by Snap. People are going to ride this skyscraper of an interplanetary rocket in the not-too-distant futu…","Nov 24, 12:07:27 PM EST"
-1860739536948760608,"Tip of the tip of the iceberg https://t.co/OT9YufejFV","Nov 24, 12:37:31 PM EST"
-1860741566673064063,"SPQR https://t.co/IqIfXi7MmH","Nov 24, 12:45:35 PM EST"
-1860743994885697730,"RT @Tesla: FSD Supervised handles all your driving, no matter how long the trip","Nov 24, 12:55:13 PM EST"
-1860746009237954561,"RT @MarioNawfal: 🇺🇸MAINSTREAM MEDIA INFECTED BY THE “PARASITIC MIND”
-
-Gad Saad warns that a “mind virus” has spread from academia into main…","Nov 24, 1:03:14 PM EST"
-1860754281722482875,"RT @akafacehots: LOL! Mark Cuban nearly in tears over the thought of losing his 25-million dollar salary. It really says "ELON MUSK POSTS D…","Nov 24, 1:36:06 PM EST"
-1860766441122996246,"See, this proves that I’m a time-traveling vampire alien!
-
-Even though I’m 5000 years old, I think I look much younger. https://t.co/QNgQjaBAp9","Nov 24, 2:24:25 PM EST"
-1860768163803304216,"Our system is broken https://t.co/AI05GaAj0M","Nov 24, 2:31:16 PM EST"
-1860768457186525271,"Yes https://t.co/8LO7rTHwjm","Nov 24, 2:32:26 PM EST"
-1860770248930263352,"Yes https://t.co/g0OIRMIUTb","Nov 24, 2:39:33 PM EST"
-1860770919188402543,"Wow, traditional TV viewership is falling off a cliff!
-
-Just a matter of time before it is irrelevant. https://t.co/Ylwsdsgjsu","Nov 24, 2:42:13 PM EST"
-1860771593682817438,"What is happening in the UK!? 🇬🇧 https://t.co/TDJCkuJ8Au","Nov 24, 2:44:54 PM EST"
-1860772241224741213,"𝕏 Numero Uno https://t.co/ekt52xd2HC","Nov 24, 2:47:28 PM EST"
-1860773382670967067,"RT @Nate_Esparza: It’s @NFL Sunday!
-
-Football fans check out the new NFL portal!
-
-You can now get scores, highlights, stats and more witho…","Nov 24, 2:52:00 PM EST"
-1860783414938571176,"Inverse Cramer vs Pelosi stock tracker: who will win the final battle?? https://t.co/TzI9wJJolG","Nov 24, 3:31:52 PM EST"
-1860785434475078030,"🇺🇸🇺🇸 https://t.co/5a3xAODIee","Nov 24, 3:39:53 PM EST"
-1860786582820950459,"https://t.co/spGltHPuia","Nov 24, 3:44:27 PM EST"
-1860793492060188820,"Whoever thwarts the will of the people will lose either their primary or the mid-term election itself.
-
-The people have made their will crystal clear. https://t.co/Cn2LCwglbv","Nov 24, 4:11:55 PM EST"
-1860798286854242528,"Try the NFL portal. Just press the magnifying glass aka explore/search. https://t.co/Kvex0qrLah","Nov 24, 4:30:58 PM EST"
-1860799225271030143,"Becoming multiplanetary is a critical step on the Kardashev ladder https://t.co/FGRTfEQJKt","Nov 24, 4:34:41 PM EST"
-1860799826063249842,"I mean … yeah ofc https://t.co/WTzY2eFuX9","Nov 24, 4:37:05 PM EST"
-1860802075921359171,"She’s not wrong https://t.co/ylcIqxzLLc","Nov 24, 4:46:01 PM EST"
-1860806896963498040,"The inmates run the asylum https://t.co/rRAuj3mUAD","Nov 24, 5:05:11 PM EST"
-1860812557147349209,"RT @DimaZeniuk: If you love 𝕏 and want to support the platform, you can do so by subscribing to Premium or Premium+
-
-You won't regret it","Nov 24, 5:27:40 PM EST"
-1860812727221903617,"💯 https://t.co/dcbjGDKnos","Nov 24, 5:28:21 PM EST"
-1860823346122023304,"Important thread https://t.co/jaXwjSLNLn","Nov 24, 6:10:32 PM EST"
-1860824252003590645,"RT @cb_doge: Avoid posting links to external sites, as they limit your potential reach. Instead, prefer to upload your content directly to…","Nov 24, 6:14:08 PM EST"
-1860824378147283005,"RT @BillyM2k: 𝕏 is funny
-𝕏 is annoying
-𝕏 is enlightening
-𝕏 is infuriating
-𝕏 is eye-opening
-𝕏 is unhinged
-𝕏 is humanity in a nutshell…","Nov 24, 6:14:38 PM EST"
-1860824463803302096,"RT @DefiyantlyFree: https://t.co/MEwBfqdVDL","Nov 24, 6:14:59 PM EST"
-1860825128940224685,"RT @DeAngelisCorey: Community Notes for the win. https://t.co/jgWTq1ZODU","Nov 24, 6:17:37 PM EST"
-1860857848806437314,"RT @ibab: Example of why @xAI is a truly special place to work at: Recently Elon took the time to hear 5min presentations from everyone at…","Nov 24, 8:27:38 PM EST"
-1860859906867564736,"🎯😂 https://t.co/n0CJrF2fWd","Nov 24, 8:35:49 PM EST"
-1860859983786877169,"RT @farzyness: DELETE
-
-DAYLIGHT
-
-SAVINGS","Nov 24, 8:36:07 PM EST"
-1860861660111769677,"😂
- https://t.co/0APOI01y1Q","Nov 24, 8:42:47 PM EST"
-1860861849996320869,"Refers to this meme https://t.co/m5iwaFZXjJ","Nov 24, 8:43:32 PM EST"
-1860863982858568092,"https://t.co/V2bQBnV3Pb","Nov 24, 8:52:01 PM EST"
-1860865302906716192,"RT @teslaownersSV: Cancel cancel culture","Nov 24, 8:57:16 PM EST"
-1860866018463428781,"💯 https://t.co/mVYzGBgPY9","Nov 24, 9:00:06 PM EST"
-1860867894982427026,"RT @dogeofficialceo: Every night 😂 https://t.co/Hrc0hsyftg","Nov 24, 9:07:34 PM EST"
-1860874540982952253,"😂 https://t.co/vbyPm3FeDJ","Nov 24, 9:33:58 PM EST"
-1860878609118036274,"RT @jgebbia: This is the hidden magic of the Cybertruck that you have to drive to understand. The steering wheel makes all previous steerin…","Nov 24, 9:50:08 PM EST"
-1860900785942659282,"Very satisfying tbh 😂 https://t.co/bVO8pLdezU","Nov 24, 11:18:15 PM EST"
-1860934269549629675,"They were going to destroy the Constitution https://t.co/rhqZhUXJm7","Nov 25, 1:31:19 AM EST"
-1860934641085202902,"Support the farmers! https://t.co/e6NEvrUFqu","Nov 25, 1:32:47 AM EST"
-1860934910770545043,"I rewatched Office Space tonight for the 5th time to prepare for @DOGE! https://t.co/MS85EwwcoT","Nov 25, 1:33:51 AM EST"
-1860936850359377992,"AI will be incredible
- https://t.co/1fU4Jn7yN9","Nov 25, 1:41:34 AM EST"
-1860937593967583405,"I still can’t believe @DOGE is real 🤣🤣","Nov 25, 1:44:31 AM EST"
-1860939136716472521,"Yeah https://t.co/IRXxlDgZfD","Nov 25, 1:50:39 AM EST"
-1860939858900123865,"This is psychotic https://t.co/PuFcQG7jrz","Nov 25, 1:53:31 AM EST"
-1860940121853612485,"🇦🇺🇦🇺Australia Votes for Freedom!🇦🇺 🇦🇺 https://t.co/9JB0Zkm1mu","Nov 25, 1:54:34 AM EST"
-1860941989258350956,"Terrifying tbh https://t.co/ogmrt9Wy6k","Nov 25, 2:01:59 AM EST"
-1860943031689748817,"But I think it’s actually going to work","Nov 25, 2:06:08 AM EST"
-1860943393217753518,"Bingo https://t.co/B3zCRxfbrT","Nov 25, 2:07:34 AM EST"
-1860944529282724045,"RT @cb_doge: Just a reminder:
-
-You can now use Grok to decode memes. https://t.co/42mFrEtNqk","Nov 25, 2:12:05 AM EST"
-1860944734669484333,"RT @BasedMikeLee: If a tiny Central American country can turn things around, so too can the greatest civilization the world has ever known…","Nov 25, 2:12:54 AM EST"
-1860946738405912813,"Yes https://t.co/ngCXzyPiM1","Nov 25, 2:20:51 AM EST"
-1860958340710535280,"RT @konstructivizm: Stunning image of Jupiter taken by Nasa's Juno Spacecraft. https://t.co/BATaosGkyA","Nov 25, 3:06:58 AM EST"
-1861063141326573907,"Yeah, whatever lmao.
-
-You are the media now.
-
-And legacy media know it. https://t.co/TWemmwMoqd","Nov 25, 10:03:24 AM EST"
-1861063668739592217,"💯 https://t.co/1azrpIrhad","Nov 25, 10:05:30 AM EST"
-1861064060084904176,"RT @ajtourville: NEWS: SpaceX completed its first @Starlink commercial Direct to Cell (DTC) constellation!
-
-Starlink's DTC service is comin…","Nov 25, 10:07:03 AM EST"
-1861067540660937084,"The truth is so refreshing 😀 https://t.co/DRNJcMzMRW","Nov 25, 10:20:53 AM EST"
-1861070432377737269,"The F-35 design was broken at the requirements level, because it was required to be too many things to too many people.
-
-This made it an expensive & complex jack of all trades, master of none. Success was never in the set of possible outcomes.
-
-And m","Nov 25, 10:32:22 AM EST"
-1861072548139819369,"Yes! https://t.co/R6Ffl7pxdY","Nov 25, 10:40:47 AM EST"
-1861073193924268359,"RT @ElonClipsX: Elon Musk: Your phone is fine. It's not going to cause DNA damage. You can sleep easy at night.
-
-“If someone says, is my ce…","Nov 25, 10:43:21 AM EST"
-1861073962220007911,"RT @CathieDWood: We are known for our early investment in @Tesla. Now, investors can access @elonmusk's private companies like @SpaceX, @X,…","Nov 25, 10:46:24 AM EST"
-1861074267414417495,"🫠 https://t.co/JgvpsGIVOF","Nov 25, 10:47:37 AM EST"
-1861075326467707095,"Everyone is descended from both slaves and slave-owners.
-
-It was an extremely common practice from the dawn of civilization. https://t.co/L0VEsoJegr","Nov 25, 10:51:49 AM EST"
-1861077303037776115,"This is why SpaceX hasn’t developed weapons systems https://t.co/jDwRaUEibo","Nov 25, 10:59:40 AM EST"
-1861077511331074344,"RT @peterrhague: JSON is a really complex format. You need an IQ of at least 131 to understand it apparently https://t.co/UI0JCcR8Vk","Nov 25, 11:00:30 AM EST"
-1861078125758841098,"The middle name of Lil X is A-12, after the Archangel program that resulted in the world’s fastest aircraft https://t.co/nSOpKqCKmD","Nov 25, 11:02:56 AM EST"
-1861078748571021676,"RT @doge_eth_gov: @elonmusk @DOGE Unstoppable Force 🫡🇺🇸🚀 https://t.co/efyKY7kuNj","Nov 25, 11:05:25 AM EST"
-1861080458370674771,"Exactly https://t.co/qkH5wpeLSL","Nov 25, 11:12:13 AM EST"
-1861081309780889953,"We either fix the woke mind virus infection in education or it will never be fixed https://t.co/IWV2sB1dxD","Nov 25, 11:15:36 AM EST"
-1861081966927573322,"Tom Homan is the Judge Dredd we need https://t.co/yJG4Y47t9A","Nov 25, 11:18:12 AM EST"
-1861083338746012093,"Very interesting charts. Word frequency is a great way to understand origins & growth of mind viruses.
-
-Same core epidemiology as biological or computer viruses. Some combination of deliberate or accidental creation, combined with natural & artif","Nov 25, 11:23:39 AM EST"
-1861083726568145078,"Bingo https://t.co/Bslb1Awbpv","Nov 25, 11:25:12 AM EST"
-1861084485300945183,"Popularity of @realDonaldTrump grows! https://t.co/KX9Wb0BcSV","Nov 25, 11:28:13 AM EST"
-1861088025813701060,"They give a trigger warning for “Goodfellas”!
-
-Seriously … 🤦♂️ https://t.co/HDVEQ2g9Is","Nov 25, 11:42:17 AM EST"
-1861096199702618398,"Cool! https://t.co/5WiVyOHAw6","Nov 25, 12:14:46 PM EST"
-1861097068863029617,"The excellent work of Senator Ernst & like-minded legislators has been very helpful https://t.co/xsIHuCKd4U","Nov 25, 12:18:13 PM EST"
-1861112514848923686,"RT @neuralink: We’re excited to announce the approval and launch of a new feasibility trial to extend BCI control using the N1 Implant to a…","Nov 25, 1:19:35 PM EST"
-1861113772057993226,"RT @chamath: Cut State Regulations by 90%
-Replace DMV with an App
-Institute School Choice
-Eliminate Income Tax, Replace with a Consumption…","Nov 25, 1:24:35 PM EST"
-1861114002858029268,"That’s because it’s working.
-
-You are the media now. https://t.co/EF2s9NZ4mh","Nov 25, 1:25:30 PM EST"
-1861114551254819297,"RT @DogecoinNorway: Repeat after me : We are the media now ! https://t.co/dZ5rkp4nju","Nov 25, 1:27:41 PM EST"
-1861114683341840697,"RT @BigImpactHumans: Sounds like Jim VandeHei’s feelings are hurt because WE ARE THE MEDIA NOW https://t.co/VZFeDuD2JD","Nov 25, 1:28:13 PM EST"
-1861114718062325904,"🎯 https://t.co/SFSdJgm2PU","Nov 25, 1:28:21 PM EST"
-1861115222783889589,"The legacy media forgot that honesty really is the best policy.
-
-Now you are the media.","Nov 25, 1:30:21 PM EST"
-1861115977871827434,"24/7 fun on 𝕏! https://t.co/B5jRqmkZZI","Nov 25, 1:33:21 PM EST"
-1861116326338798051,"RT @Inevitablewest: 🚨BREAKING: The petition calling for a General Election has now achieved 24% of Labour’s entire vote share from July in…","Nov 25, 1:34:44 PM EST"
-1861116969656951047,"Walking Ozempic ad https://t.co/mtp4O3fdCd","Nov 25, 1:37:18 PM EST"
-1861138374259847439,"SpaceX is alien-level technology https://t.co/OKjN0FvKba","Nov 25, 3:02:21 PM EST"
-1861140850442657908,"You are the media now https://t.co/3wkI9h0IuM","Nov 25, 3:12:11 PM EST"
-1861145047124845054,"Even though Tesla is the only company who manufactures their EVs in California!
-
-This is insane. https://t.co/EhVeG2TYqT","Nov 25, 3:28:52 PM EST"
-1861152896706060597,"Congratulations AG Bailey!
-
-Now we need this nationwide. https://t.co/6xUQ9o167W","Nov 25, 4:00:03 PM EST"
-1861166747803623439,"Exactly https://t.co/VNNaC05h1N","Nov 25, 4:55:06 PM EST"
-1861166835548455076,"RT @realDonaldTrump: These cases, like all of the other cases I have been forced to go through, are empty and lawless, and should never hav…","Nov 25, 4:55:27 PM EST"
-1861169232580616600,"RT @SpaceX: Falcon Heavy was selected by @NASA to launch the Dragonfly mission to Saturn’s moon Titan! https://t.co/RveipIZKRW","Nov 25, 5:04:58 PM EST"
-1861169523703062665,"The most entertaining outcome is the most likely https://t.co/nHcCOCsw7y","Nov 25, 5:06:07 PM EST"
-1861174504992694667,"Exactly.
-
-In a meeting with senior military officers today, they told me that it now takes longer to renovate stairs (24 months) in the Pentagon than it took to build the WHOLE Pentagon (16 months) in the 1940s!! https://t.co/Tw7mWTR1gv","Nov 25, 5:25:55 PM EST"
-1861175456516735109,"Unfortunately, many of our elected officials do not appreciate this.
-
-They need to be fired next election cycle. https://t.co/07akoA9eTi","Nov 25, 5:29:42 PM EST"
-1861175511948632306,"RT @NASA_LSP: 🚀NASA has selected @SpaceX to launch Dragonfly!
-
- .@NASA's Dragonfly mission is a rotorcraft that has eight rotors and flies…","Nov 25, 5:29:55 PM EST"
-1861184079456280669,"For video content creators, I recommend posting part of your content for free and then requiring a subscription to see the rest.
-
-This is the way. https://t.co/noDE0u0VYJ","Nov 25, 6:03:58 PM EST"
-1861185271607525688,"RT @ibab: Join us if you want to Make America Grok Again","Nov 25, 6:08:42 PM EST"
-1861185351517442490,"RT @GailAlfarATX: You are the media now https://t.co/pyO4NyhStp","Nov 25, 6:09:01 PM EST"
-1861185597655916861,"🤡🌎 https://t.co/frEG9oKygV","Nov 25, 6:10:00 PM EST"
-1861185854804500864,"🤔 https://t.co/n4t0wTnfi6","Nov 25, 6:11:01 PM EST"
-1861186639915295184,"😂
- https://t.co/8hwDOQqcA1","Nov 25, 6:14:08 PM EST"
-1861187655620534718,"Great thread https://t.co/FyQQMhTGAU","Nov 25, 6:18:10 PM EST"
-1861188909692264538,"Fortunately, 𝕏 believes in free speech https://t.co/telD0nrKAy","Nov 25, 6:23:09 PM EST"
-1861189716286333310,"Very common mistake to believe that the legacy media only lies about areas that you understand well.
-
-No, they lie about everything.
-
-What are the odds that they’d only lie about stuff you specifically know about?","Nov 25, 6:26:22 PM EST"
-1861189743507316847,"RT @Starlink: Starlink is ideal for those in remote and rural areas, including small businesses → https://t.co/zR6w4t1qM9
-
-https://t.co/TNd…","Nov 25, 6:26:28 PM EST"
-1861192789171777895,"The legacy media is a click-maximizing machine, not a truth-maximizing machine!","Nov 25, 6:38:34 PM EST"
-1861194255332712676,"Legacy media lies
- https://t.co/FhESudf28w","Nov 25, 6:44:24 PM EST"
-1861196764767985948,"https://t.co/6hzIKmtusX","Nov 25, 6:54:22 PM EST"
-1861197873679147106,"A friend of mine had a meeting with senior officials at the SEC and they hadn’t been in the building for so long that they couldn’t figure out how to turn on the lights!!
-
-So they were just sitting there in the dark with cell phone flashlights looking lik","Nov 25, 6:58:47 PM EST"
-1861200210401337673,"This explains his fury https://t.co/rMlqPnJVWg","Nov 25, 7:08:04 PM EST"
-1861200694826705368,"This will be highly effective https://t.co/6SI7tE4vPQ","Nov 25, 7:09:59 PM EST"
-1861201014772433332,"Price of Fentanyl will rise sharply https://t.co/OOCm5oyRNj","Nov 25, 7:11:16 PM EST"
-1861222609578533046,"RT @SawyerMerritt: Here is a complete list of automakers currently producing cars in California:
-
-1) Tesla
-
-That's it. https://t.co/viX7t1e…","Nov 25, 8:37:04 PM EST"
-1861230265290629183,"Same curve for legacy media as a whole https://t.co/0tXNNF1VKr","Nov 25, 9:07:29 PM EST"
-1861247006066586086,"RT @cb_doge: BREAKING: Tesla excluded from EV Buyer Credits in California Proposal. Even though Tesla is the only company who manufactures…","Nov 25, 10:14:01 PM EST"
-1861249508774158703,"Judge Dredd is coming to town https://t.co/MIrgiuAxkl","Nov 25, 10:23:57 PM EST"
-1861250057221349855,"Legacy media is a sewage pipe of lies https://t.co/L4MJjbuvk6","Nov 25, 10:26:08 PM EST"
-1861254981309079989,"RT @cybertruck: How Four-Wheel Steering impacts turning radius
-
-This standard feature gives Cybertruck the maneuverability of a sports car…","Nov 25, 10:45:42 PM EST"
-1861258560103178614,"The tide has turned https://t.co/Vya9HO6W3x","Nov 25, 10:59:55 PM EST"
-1861262272829784387,"Listen to the end of the clip lmao https://t.co/Tll2K9yk2G","Nov 25, 11:14:41 PM EST"
-1861307018507887106,"Funny that they don’t https://t.co/8MHiqOjJ0K","Nov 26, 2:12:29 AM EST"
-1861313319757611370,"RT @RoKhanna: Tesla makes over 550,000 vehicles in Fremont in my district & employs over 20,000. Let's not play politics with keeping manu…","Nov 26, 2:37:31 AM EST"
-1861317520919273870,"Instead of healing the injured https://t.co/4IGQB2L98N","Nov 26, 2:54:13 AM EST"
-1861317832811913556,"💯 https://t.co/XKAK4HV2Sp","Nov 26, 2:55:27 AM EST"
-1861319967477788919,"RT @MarioNawfal: 🚨🇺🇸CNN'S HOT TAKE: GATES CAN OWN MEDIA BUT ELON CAN'T
-
-Apparently billionaire media ownership is only scary when the billi…","Nov 26, 3:03:56 AM EST"
-1861320425541902379,"RT @cb_doge: Anyone can become a citizen journalist. You just need a mobile, internet and 𝕏 app.
-
-You are the media now!
-
- https://t.co/mCN…","Nov 26, 3:05:45 AM EST"
-1861425822810415211,"Terrible https://t.co/FuAq5aALyf","Nov 26, 10:04:34 AM EST"
-1861426201891610875,"Legacy media are dishonest in all aspects https://t.co/VNNaC05h1N","Nov 26, 10:06:04 AM EST"
-1861428337882865712,"RT @HumansNoContext: This is art, not a banana stuck to the wall with duck tape https://t.co/048Oo3UErT","Nov 26, 10:14:34 AM EST"
-1861431450899488780,"RT @ALFAinstitute: "I think we are in a new industrial revolution, so I am excited about where we are. But how do we harness that and get t…","Nov 26, 10:26:56 AM EST"
-1861434029997990071,"Very much so.
-
-Please forward 𝕏 posts to friends & family. https://t.co/Es10Gudzfx","Nov 26, 10:37:11 AM EST"
-1861436343907426636,"Best value for money on the Internet https://t.co/RQwiieM20n","Nov 26, 10:46:22 AM EST"
-1861443087240962377,"And Earth is microscopic compared to our sun.
-
-And we are microscopic compared to Earth. https://t.co/aarlAJ00rr","Nov 26, 11:13:10 AM EST"
-1861444060726337876,"RT @JamesLucasIT: The incomprehensible scale of Space 🧵
-
-1. Perspective is everything. Feel small yet? https://t.co/LKryX7gpTr","Nov 26, 11:17:02 AM EST"
-1861456943988252696,"RT @C__Herridge: EXCLUSIVE: The Untold Story Of The Hunter Biden Reporting At CBS, “I wanted the cleanest copy of the laptop data, the same…","Nov 26, 12:08:14 PM EST"
-1861457326202593381,"Of course! https://t.co/89emzwseNN","Nov 26, 12:09:45 PM EST"
-1861457501209919732,"RT @TomCruise: The training and preparation we put into this film is a culmination of all before it. From the depths, to the skies, I can’t…","Nov 26, 12:10:27 PM EST"
-1861460974752145553,"RT @MarioNawfal: 🚨 HOW SMALL ARE WE?
-
-A human is minuscule compared to Earth—about 3.5 million humans would match its size.
-
-But Earth shri…","Nov 26, 12:24:15 PM EST"
-1861475058428096875,"The goal of @DOGE is to speedrun fixing the Federal Government.
-
-Requires many anomalies in the matrix. https://t.co/boeWRIv5aS","Nov 26, 1:20:13 PM EST"
-1861475827642442186,"Haha amazing https://t.co/qVwGjyNvGl","Nov 26, 1:23:16 PM EST"
-1861475931388551632,"RT @C__Herridge: In the fall of 2023 I brought CBS News a proposed interview with Elon Musk.
-
-Executives at the network said the interview…","Nov 26, 1:23:41 PM EST"
-1861476312927605207,"💯😂 https://t.co/jhKQT5bxjH","Nov 26, 1:25:12 PM EST"
-1861476791703216247,"Watch Demolition Man! https://t.co/N0O5BYjsc5","Nov 26, 1:27:06 PM EST"
-1861489824919888353,"Subscribe to 𝕏 Premium! https://t.co/uknjP3gtqd","Nov 26, 2:18:53 PM EST"
-1861490301875187985,"RT @JonErlichman: $5,000 investments that are worth +$1 million:
-
-Bitcoin: 9 yrs ago
-Nvidia: 10 yrs ago
-Tesla: 14 yrs ago
-Netflix: 16 yrs a…","Nov 26, 2:20:47 PM EST"
-1861490785876930642,"https://t.co/Zy0lt9fQ3D","Nov 26, 2:22:42 PM EST"
-1861492093811875880,"Correct https://t.co/DkaN8kINaw","Nov 26, 2:27:54 PM EST"
-1861492962154467831,"To: all@.gov
-From: @DOGE
-
-What did you get done this week?
-
- https://t.co/ty12mTbE7O","Nov 26, 2:31:21 PM EST"
-1861493846691193148,"Yes! https://t.co/xmwMWnosdF","Nov 26, 2:34:52 PM EST"
-1861498626339676497,"True https://t.co/xVuJhHkvNk","Nov 26, 2:53:52 PM EST"
-1861498838558884339,"Cue music from the movie https://t.co/zcDM93oNAV","Nov 26, 2:54:42 PM EST"
-1861499128372699156,"You can now gift 𝕏 Premium subscriptions https://t.co/mzEe5ffMET","Nov 26, 2:55:51 PM EST"
-1861502145134248055,"RT @TheRabbitHole84: Milton Friedman on Bureaucracy https://t.co/W0qqitSnFc","Nov 26, 3:07:51 PM EST"
-1861502215246225632,"RT @ArthurMacwaters: @TheRabbitHole84 “If a private business is run poorly, it will be shut down. If a government organization is run poorl…","Nov 26, 3:08:07 PM EST"
-1861503339449720955,"Yes https://t.co/eDYbEWjTcR","Nov 26, 3:12:35 PM EST"
-1861503619922829338,"Tough call 🤔 https://t.co/uxkpQ6aYkD","Nov 26, 3:13:42 PM EST"
-1861505196347769219,"How to gift 𝕏 Premium https://t.co/g56lMpMSjY","Nov 26, 3:19:58 PM EST"
-1861505497788228076,"Perfect logic to make election fraud unprovable! https://t.co/kev66Eg0FC","Nov 26, 3:21:10 PM EST"
-1861509576635691137,"Making life multiplanetary for the first time in 4.5 billion years is what humanity will accomplish this century
- https://t.co/IsBUSu8fnj","Nov 26, 3:37:22 PM EST"
-1861511271595810890,"💯 https://t.co/wlHHIVJY0T","Nov 26, 3:44:07 PM EST"
-1861513200770130246,"This is why SpaceX was created https://t.co/wwXFcL2Byu","Nov 26, 3:51:46 PM EST"
-1861514662476685414,"https://t.co/8B7woc9sjY","Nov 26, 3:57:35 PM EST"
-1861514730298376262,"RT @pmarca: They will greet us as liberators.","Nov 26, 3:57:51 PM EST"
-1861524829347946774,"RT @johnkrausphotos: https://t.co/SXEcVmTdzz","Nov 26, 4:37:59 PM EST"
-1861524939930796385,"RT @NASA_Marshall: .@NASA has selected @SpaceX to provide launch services for the Dragonfly mission, a rotorcraft lander designed to explor…","Nov 26, 4:38:25 PM EST"
-1861525935692063179,"Future wars are all about drones & hypersonic missiles.
-
-Fighter jets piloted by humans will be destroyed very quickly.
-
- https://t.co/LpjptIsob1","Nov 26, 4:42:23 PM EST"
-1861545154496377061,"RT @Starlink: The FCC has granted Starlink a US commercial license to provide supplemental coverage from space 🛰️📱
-https://t.co/Sy9klmlUJF","Nov 26, 5:58:45 PM EST"
-1861553583583567957,"Exactly 🤨 https://t.co/kVfNEMjiBR","Nov 26, 6:32:14 PM EST"
-1861556469449269489,"https://t.co/gzefLKhVta","Nov 26, 6:43:43 PM EST"
-1861556661019910506,"WE … ARE … @DOGE!!!!","Nov 26, 6:44:28 PM EST"
-1861592711310254309,"How the tides have turned https://t.co/ecs93KZSwX","Nov 26, 9:07:43 PM EST"
-1861595977733550334,"Great outcome! https://t.co/v7VU2URH6x","Nov 26, 9:20:42 PM EST"
-1861601483504185774,"https://t.co/6YZUIst6Vs","Nov 26, 9:42:35 PM EST"
-1861632380110508155,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida! https://t.co/gu1dwlnaEP","Nov 26, 11:45:21 PM EST"
-1861633446910795904,"https://t.co/xhpZ2R3z0u","Nov 26, 11:49:35 PM EST"
-1861633975447687457,"Exactly https://t.co/eO4XYGDa6W","Nov 26, 11:51:41 PM EST"
-1861634235733549251,"Franklin’s anons were awesome 😂 https://t.co/z6LDDGLikI","Nov 26, 11:52:43 PM EST"
-1861634709509570808,"2/3 of Korea will disappear every generation. Population collapse. https://t.co/VGG4Fq7pul","Nov 26, 11:54:36 PM EST"
-1861641639384743962,"🔥🤣 https://t.co/YTDjq4PI3b","Nov 27, 12:22:09 AM EST"
-1861646142133674068,"A significant % of people don’t even know that there is such a thing as a national debt!
-
-Those that do often don’t know how big it is or that our interest payments now exceed what we spend on our military.
-
-Only a small % understand that government overs","Nov 27, 12:40:02 AM EST"
-1861647188948091254,"Gift Premium https://t.co/WyynQ5DriJ","Nov 27, 12:44:12 AM EST"
-1861666920321442048,"Vox Populi https://t.co/xtIjliCTHE","Nov 27, 2:02:36 AM EST"
-1861667220876824869,"Did you know that 30 tech founders were secretly debanked? https://t.co/gmnCir43XD","Nov 27, 2:03:48 AM EST"
-1861669595905695976,"Yes! 🇺🇸🇺🇸 https://t.co/zdmXdCnpxG","Nov 27, 2:13:14 AM EST"
-1861670383210111148,"Um, @satyanadella, this is illegal … https://t.co/54GC5VW5ZJ","Nov 27, 2:16:22 AM EST"
-1861670967321485677,"RT @GailAlfarATX: ASPIRE TO BE HONEST 🇺🇸
-
-Truthfulness. Honesty. To lie is to live in a delusion. Elon Musk explains his motivation for kee…","Nov 27, 2:18:41 AM EST"
-1861671145851977752,"America is going bankrupt fast https://t.co/7nS7iGEWHm","Nov 27, 2:19:24 AM EST"
-1861671343487623210,"RT @cb_doge: https://t.co/YlvdSxJyfA","Nov 27, 2:20:11 AM EST"
-1861671385170591783,"RT @DimaZeniuk: 🔴
- ・。
- 🚀。
- *✨。
- ⚡️
- *. ✨
- ゚*.
- 🚀 Star…","Nov 27, 2:20:21 AM EST"
-1861672772117872694,"?? https://t.co/9GCHZ1Rh6E","Nov 27, 2:25:51 AM EST"
-1861673178579509601,"RT @teslaownersSV: 𝕏 is for the world’s town square","Nov 27, 2:27:28 AM EST"
-1861676467022942649,"RT @cb_doge: Unfortunately, many people still believe everything they see on the news. Do your part in spreading the truth — forward 𝕏 post…","Nov 27, 2:40:32 AM EST"
-1861677291451097121,"RT @cb_doge: MAYE MUSK: "What they call mainstream media, but I call them dishonest Democrat media."
-
-"They will be trying to break up the…","Nov 27, 2:43:49 AM EST"
-1861677408602202564,"RT @BehizyTweets: Elon Musk's mom, Maye Musk, just confirmed that Elon and Trump are basically best friends.
-
-"They just seem to be having…","Nov 27, 2:44:17 AM EST"
-1861783823685718117,"It’s this time or never https://t.co/wP7EAc0SaN","Nov 27, 9:47:08 AM EST"
-1861785009805545631,"The IRS just said it wants $20B more money.
-
-Do you think it’s budget should be:","Nov 27, 9:51:51 AM EST"
-1861785166680829996,"Damn he went full retard 🤣🤣 https://t.co/ivYFenbKql","Nov 27, 9:52:28 AM EST"
-1861786004145017317,"https://t.co/GFZz2y2RsJ","Nov 27, 9:55:48 AM EST"
-1861788345258639830,"With rare exception, all countries are trending towards population collapse https://t.co/DRvY4Chr1o","Nov 27, 10:05:06 AM EST"
-1861789934748873081,"A truth-teller will be running NIH https://t.co/Tg429KchGX","Nov 27, 10:11:25 AM EST"
-1861791782318817771,"RT @ajtourville: More than 500,000 square miles of the U.S. are unreachable by cell – that's about the size of two Texas!
-
-SpaceX's @Starli…","Nov 27, 10:18:45 AM EST"
-1861792875857748398,"Many car companies won’t make it https://t.co/cCsxvbH8As","Nov 27, 10:23:06 AM EST"
-1861795215071404487,"This is super messed up! https://t.co/URQZLJ3tD5","Nov 27, 10:32:24 AM EST"
-1861795774344175963,"RT @america: Republican Candidate for Manhattan DA, Maud Maron, who is challenging Alvin Bragg:
-
-“People in both parties want safer cities,…","Nov 27, 10:34:37 AM EST"
-1861797386693353706,"This is undemocratic. The EU parliament should vote directly on matters, not give up authority to the EU commission. https://t.co/EtCa73M1M3","Nov 27, 10:41:02 AM EST"
-1861797808229228546,"1.5 pillows is the right number https://t.co/5FxS55mh73","Nov 27, 10:42:42 AM EST"
-1861798030112145545,"All of America rejected the nihilism of the Democratic Party https://t.co/IavMlPsBXP","Nov 27, 10:43:35 AM EST"
-1861799898531979723,"RT @BrianRoemmele: OPERATION CHOKE POINT.
-
-In 2013 I knew it was a political tool, and tried to speak up.
-
-@elonmusk it has to stop, the ba…","Nov 27, 10:51:01 AM EST"
-1861800119047422242,"Gonna happen 😂 https://t.co/QvYyGKvr2n","Nov 27, 10:51:53 AM EST"
-1861800183010615800,"Yes https://t.co/C9N1m2oJdK","Nov 27, 10:52:08 AM EST"
-1861800300916727929,"Cool https://t.co/Mv4iZfYjEq","Nov 27, 10:52:36 AM EST"
-1861800710968611210,"Voter ID is needed https://t.co/rkoZj9jI49","Nov 27, 10:54:14 AM EST"
-1861801046949191686,"Too many game studios that are owned by massive corporations.
-
-@xAI is going to start an AI game studio to make games great again! https://t.co/UR4nFODyfd","Nov 27, 10:55:34 AM EST"
-1861801180181209501,"RT @BasedTorba: Yes, I was one of them. https://t.co/SAVDBJHGw2","Nov 27, 10:56:06 AM EST"
-1861801650383659230,"Looks like the people want to abolish the annoying time changes! https://t.co/5ePhgzYLsF","Nov 27, 10:57:58 AM EST"
-1861803118746620262,"Most effective is to send https://t.co/bOUOek6al6 links to source material where people can hear what someone actually said, rather than the false representation of the legacy media https://t.co/9wYYjAy0De","Nov 27, 11:03:48 AM EST"
-1861804194476544089,"Government overspending is what creates inflation.
-
-We need to make that link crystal clear to the American people! https://t.co/E97dzPFaw3","Nov 27, 11:08:05 AM EST"
-1861804847399583861,"Amazing. Legacy media lies. https://t.co/by9X813DDy","Nov 27, 11:10:40 AM EST"
-1861805176786674107,"RT @TheChiefNerd: PSA: I noticed another large account I follow was hacked today. Please do yourself a favor and turn on 2FA security on yo…","Nov 27, 11:11:59 AM EST"
-1861806437326053821,"This is messed up https://t.co/jwidqAq2Mh","Nov 27, 11:17:00 AM EST"
-1861817762848584042,"From the head of Australian government-funded media, their Pravda https://t.co/T9KCf6oNbk","Nov 27, 12:02:00 PM EST"
-1861818409845137575,"RT @pmarca: 🪟🧨💥🇺🇸","Nov 27, 12:04:34 PM EST"
-1861820583446716498,"Another case of two tier justice https://t.co/EcWVp1MBeY","Nov 27, 12:13:12 PM EST"
-1861822240263905655,"Yes! https://t.co/EX3Qyq5b5x","Nov 27, 12:19:47 PM EST"
-1861823019741749644,"RT @chamath: Can’t believe up until three weeks ago, many people thought racial intersectionality was more important than physics and math.…","Nov 27, 12:22:53 PM EST"
-1861823476233019640,"Congratulations to the @SpaceX team for completing 400 successful orbital flights of Falcon and 375 landings!! https://t.co/CQ6BKtIwQU","Nov 27, 12:24:42 PM EST"
-1861824194113343870,"Simplifying the tax code will increase productivity, instead of incentivizing bizarre tax-avoidance behavior https://t.co/ElMgps0tQt","Nov 27, 12:27:33 PM EST"
-1861824476587106384,"RT @teslaownersSV: The starship will take us to Mars. Multi planetary existence is just a matter of time. https://t.co/wiak1zSdpl","Nov 27, 12:28:40 PM EST"
-1861825141581152440,"And next year, Falcon is aiming for >150 flights! https://t.co/8qvCjjrmgi","Nov 27, 12:31:19 PM EST"
-1861825587633070487,"🤔 https://t.co/F04fqepQuB","Nov 27, 12:33:05 PM EST"
-1861826396294894056,"By their definition, most of America – aka you – are “far right” 😂 https://t.co/c0EnUfijgb","Nov 27, 12:36:18 PM EST"
-1861826998441746485,"Warmongers love warmongers https://t.co/X2a7SBddog","Nov 27, 12:38:42 PM EST"
-1861827362482209058,"True https://t.co/0GlGkSBRqL","Nov 27, 12:40:08 PM EST"
-1861828333576790498,"RT @AutismCapital: 🚨"Elon did two things that opened a lot of things up:
-
-1) He bought Twitter which gave us a place to talk about this stu…","Nov 27, 12:44:00 PM EST"
-1861831544610144440,"“Respect for the truth comes close to being the basis of all morality.” - Dune","Nov 27, 12:56:46 PM EST"
-1861831771769414038,"Yes https://t.co/Cke5aKuj4v","Nov 27, 12:57:40 PM EST"
-1861871019730014286,"Yeah https://t.co/MjmtpvUgDC","Nov 27, 3:33:37 PM EST"
-1861889542091124969,"RT @Tesla_AI: Russ Hanneman would be proud of these doors https://t.co/fBrtYgtgdt","Nov 27, 4:47:13 PM EST"
-1861891973654905026,"RT @SpeakerJohnson: Looking forward to hosting @elonmusk and @VivekGRamaswamy next week on Capitol Hill to discuss major reform ideas to ac…","Nov 27, 4:56:53 PM EST"
-1861892058296000944,"RT @ZachWarunek: The time has finally come. You can now see your verified follower count in 𝕏 Analytics!
-
-Premium -> Analytics 📊 https://t.…","Nov 27, 4:57:13 PM EST"
-1861892935421403300,"Thanks Gary! https://t.co/PfhhH83Uoy","Nov 27, 5:00:42 PM EST"
-1861914092279333078,"Thanks Pat, indeed great work by the @xAI team https://t.co/k3I3c3GGfh","Nov 27, 6:24:46 PM EST"
-1861914631876534347,"RT @SenJoniErnst: Reporting for @DOGE duty!🫡
-
-For the last decade, I have been sounding the alarm on waste, fraud, and abuse and am thrille…","Nov 27, 6:26:55 PM EST"
-1861916144975925734,"RT @Tesla_Optimus: @SawyerMerritt Why lol
-
-That’s my family","Nov 27, 6:32:56 PM EST"
-1861958446389805094,"Well, the public has made their view clear … 😂 https://t.co/47IGWYpjCs","Nov 27, 9:21:01 PM EST"
-1861965756667428940,"RT @Rothmus: Just do it.
-
-40% for the next 5 days.
-
-Happy Thanksgiving! 🦃 https://t.co/u9AwQFsEGl","Nov 27, 9:50:04 PM EST"
-1862058794123194569,"Cool https://t.co/160uOJlofT","Nov 28, 3:59:46 AM EST"
-1862061354645156036,"Wow https://t.co/yyJvL2iKJ3","Nov 28, 4:09:57 AM EST"
-1862143385064358360,"Please let us know feedback about how to improve Grok https://t.co/sx3oT3gxta","Nov 28, 9:35:54 AM EST"
-1862143540912132102,"🇺🇸🇺🇸 Happy Thanksgiving! 🇺🇸🇺🇸","Nov 28, 9:36:31 AM EST"
-1862144016701350100,"😂 https://t.co/HMFGBFaobE","Nov 28, 9:38:25 AM EST"
-1862144594458325250,"RT @tim_cook: Thanksgiving is about giving thanks for each other with the hope for health and prosperity. This year I'm giving thanks for t…","Nov 28, 9:40:42 AM EST"
-1862144914399916536,"RT @SpeakerJohnson: When Congress asked President Washington to declare America's first NATIONAL DAY OF PRAYER & THANKSGIVING, his proclama…","Nov 28, 9:41:59 AM EST"
-1862145513879134445,"You are so much more than the media now","Nov 28, 9:44:22 AM EST"
-1862146180916060290,"Let’s give Optimus a hand for catching ball!
- https://t.co/i44qcD1iLd","Nov 28, 9:47:01 AM EST"
-1862149425973661858,"RT @ajtourville: NEWS: @Starlink performance measured and compared with 4G mobile internet in several locations, from large cities to the G…","Nov 28, 9:59:54 AM EST"
-1862152825679347956,"Optimus will be like having your own personal C-3PO & RD-D2 https://t.co/0XgItDZE6S","Nov 28, 10:13:25 AM EST"
-1862163106396553631,"RT @ajtourville: NEWS: 🇳🇿 @Starlink Direct to Cell (DTC) service will launch shortly in New Zealand according to @onenzofficial spokesperso…","Nov 28, 10:54:16 AM EST"
-1862167722299462124,"Legacy media reaction time is so slow 😂 https://t.co/yRfktTeorg","Nov 28, 11:12:37 AM EST"
-1862168152463102208,"🇺🇸🇺🇸🚀🚀 https://t.co/JHjsZw7YJc","Nov 28, 11:14:19 AM EST"
-1862168974756335860,"https://t.co/LoeugQQXOI","Nov 28, 11:17:35 AM EST"
-1862170036544393397,"RT @teslaownersSV: You are the media on 𝕏.
-
-Let your voice be heard.","Nov 28, 11:21:48 AM EST"
-1862170651584540895,"RT @america: All 50 States shifted more Republican from 2020 to 2024.
-
-There is no question that this is a mandate to allow President-Elect…","Nov 28, 11:24:15 AM EST"
-1862331915337945516,"🇺🇸Hope you had a great Thanksgiving!🇺🇸 https://t.co/CQMGaAODKq","Nov 28, 10:05:03 PM EST"
-1862332945903530119,"I was telling @TheSlyStallone that I just watched Demolition Man again and how well it predicted the crazy woke future 30 years ago! https://t.co/3wlYgdJus4","Nov 28, 10:09:09 PM EST"
-1862337960336654389,"Yes https://t.co/2tuPpk9rW7","Nov 28, 10:29:04 PM EST"
-1862341323858084281,"RT @DimaZeniuk: Long live freedom of speech
-
-Long live 𝕏 https://t.co/hZJ39zalNl","Nov 28, 10:42:26 PM EST"
-1862350658336129083,"Try it 😂 https://t.co/jNQ0Ctl8JX","Nov 28, 11:19:32 PM EST"
-1862351733269082118,"RT @AdrianDittmann: Spaces are fantastic, and I love the show and audience that I've been able to cultivate thanks to this feature.
-
-There…","Nov 28, 11:23:48 PM EST"
-1862352114522997179,"🤔 https://t.co/8A4VO76xhq","Nov 28, 11:25:19 PM EST"
-1862354239084720409,"RT @AutismCapital: 🚨 ROGAN: “Google really f**ked us with the Trump video. They made it impossible to find. We had to complain. They said i…","Nov 28, 11:33:46 PM EST"
-1862355754927206462,"RT @realDonaldTrump: https://t.co/FhHeS8WdrK","Nov 28, 11:39:47 PM EST"
-1862357739818594649,"💯 https://t.co/Yy3NMO5UoB","Nov 28, 11:47:40 PM EST"
-1862357865278718319,"RT @MarioNawfal: 🚨GOOGLE NEWS GETS AN 𝕏 UPGRADE?!
-
-Check out Google News featuring a "Popular on 𝕏" Section!
-
-Very nice... https://t.co/Eto…","Nov 28, 11:48:10 PM EST"
-1862358720958603335,"Yes https://t.co/UrSDn0rT9W","Nov 28, 11:51:34 PM EST"
-1862359418647535994,"The people of Ireland will vote for freedom 🇮🇪 https://t.co/RGPBTf5zNa","Nov 28, 11:54:21 PM EST"
-1862359681022284009,"RT @cb_doge: "I'm the largest individual taxpayer in history, so I paid $10 billion in tax. I sort of thought maybe the IRS would send me a…","Nov 28, 11:55:23 PM EST"
-1862359790359290025,"RT @MarioNawfal: Elon made it very clear: We are the media now
-
-The Axios CEO and other legacy media dinosaurs disagreed (some had a mental…","Nov 28, 11:55:49 PM EST"
-1862361583617282125,"Yes https://t.co/2xjBY05W9p","Nov 29, 12:02:57 AM EST"
-1862361645638426772,"RT @teslaownersSV: “For some reason, the legacy mainstream media just ignores the fact that America is going bankrupt like crazy, at a rate…","Nov 29, 12:03:11 AM EST"
-1862362527260192852,"This is cool https://t.co/OeowXbGYvN","Nov 29, 12:06:42 AM EST"
-1862363270931255356,"This simple algorithm that I came up with to help me make fewer dumb mistakes in the future is incredibly powerful https://t.co/tRJhe0gy6y","Nov 29, 12:09:39 AM EST"
-1862363504587468902,"Yes https://t.co/umLZ7bW0f0","Nov 29, 12:10:35 AM EST"
-1862363580156248507,"RT @_milankovac_: Our new hand/forearm with double the number of degrees of freedom now in action on the bot! There’s 22 DoFs on the hand,…","Nov 29, 12:10:53 AM EST"
-1862364680590696474,"RT @Rainmaker1973: Stunning autumn colors in the Nagano Prefecture, Japan 🇯🇵
-
-[📸 Ryogo_Urata] https://t.co/YDUM0J9IcI","Nov 29, 12:15:15 AM EST"
-1862365477382595046,"Not anymore … https://t.co/JPVHlRy20s","Nov 29, 12:18:25 AM EST"
-1862366686378168775,"Yes https://t.co/0waNyINDmj","Nov 29, 12:23:13 AM EST"
-1862369482750013929,"RT @teslaownersSV: “We're going to be very open and transparent and be very clear about this is what we're doing [with the Department of Go…","Nov 29, 12:34:20 AM EST"
-1862478383067648107,"RT @matiroy9: ✨🧵 Here's a thread with content from various xAI employees on X, and why you might value following them!
-
-I also want to have…","Nov 29, 7:47:04 AM EST"
-1862482881605419310,"It was a coordinated sychological operation
- https://t.co/tNStihsjcU","Nov 29, 8:04:56 AM EST"
-1862603332910567696,"A classic","Nov 29, 4:03:34 PM EST"
-1862632221313479026,"RT @natemcgrady: we are rolling out a new live screen!
-
-- available at x․com/{username}/live
-- larger video player that expands to fit larg…","Nov 29, 5:58:22 PM EST"
-1862633099906937251,"Forward this video to friends & family to understand just how evil the government has been
- https://t.co/XgRnikMK6J","Nov 29, 6:01:51 PM EST"
-1862639698620940360,"RT @jarrodWattsDev: Someone just won $50,000 by convincing an AI Agent to send all of its funds to them.
-
-At 9:00 PM on November 22nd, an A…","Nov 29, 6:28:04 PM EST"
-1862640443789357487,"If not, it should be https://t.co/CwLeIt8tut","Nov 29, 6:31:02 PM EST"
-1862641213284753835,"Let’s see if they do anything about it https://t.co/83ub0kIaP5","Nov 29, 6:34:06 PM EST"
-1862652124565233965,"The word ‘cis’ is a propaganda slur https://t.co/n4zgkA5wXD","Nov 29, 7:17:27 PM EST"
-1862652607950426575,"True.
-
-The New York Times is pure propaganda. https://t.co/XZmyLcxkLY","Nov 29, 7:19:22 PM EST"
-1862674316921340395,"Thanks Marc, I think we will make great progress 🇺🇸🇺🇸 https://t.co/Hdf1KGjqg0","Nov 29, 8:45:38 PM EST"
-1862674762394108392,"The New Woke Times is pure propaganda https://t.co/sW3YVzOFOJ","Nov 29, 8:47:24 PM EST"
-1862729415613919698,"RT @charliekirk11: Remember this when DOGE starts to massively cut spending. https://t.co/RZ1XYOXP2m","Nov 30, 12:24:35 AM EST"
-1862730468447117818,"True https://t.co/vueb8a1mS8","Nov 30, 12:28:46 AM EST"
-1862730573736771825,"Yes https://t.co/gfcZpt3aRs","Nov 30, 12:29:11 AM EST"
-1862730972229218639,"This is the same “mainstream” media that lied about Biden being “sharp as a tack” a week before the debate https://t.co/K2O2tu47xl","Nov 30, 12:30:46 AM EST"
-1862747598693552633,"Nope https://t.co/ZLwH15808p","Nov 30, 1:36:50 AM EST"
-1862751629583196260,"This is how news should work.
-
-By the people.
-
-For the people. https://t.co/OVGOJqvgkm","Nov 30, 1:52:51 AM EST"
-1862752132828409961,"You are the media now https://t.co/jN2noxQpWb","Nov 30, 1:54:51 AM EST"
-1862752407794471051,"💯
-
-And this is just the tip of the iceberg. https://t.co/VrCvY9eOS8","Nov 30, 1:55:56 AM EST"
-1862752510072537108,"RT @SpaceX: Falcon 9 delivers 24 @Starlink satellites to orbit from Florida https://t.co/xpHHbnWmCg","Nov 30, 1:56:21 AM EST"
-1862752573830115448,"https://t.co/RuyJecwbo3","Nov 30, 1:56:36 AM EST"
-1862753894717149376,"RT @sidkal: We were debanked by @jpmorgan @Chase after a 7 year banking relationship. 7 years!
-
-I went to several branches in Brooklyn and…","Nov 30, 2:01:51 AM EST"
-1862754123965161927,"RT @ajtourville: Also @SpaceX accounted for 91% of all spacecrafts launched in Q2 https://t.co/V1HPOM3F8K","Nov 30, 2:02:46 AM EST"
-1862754211668066497,"RT @ElonFactsX: In 2022, Elon Musk said this about stopping the bloodshed in Ukraine:
-
-“War always gives ample reason for vengeance for all…","Nov 30, 2:03:07 AM EST"
-1862755274047513028,"RT @walterkirn: When I learned yesterday from @pmarca on @joerogan about the prevalence of politicized "debanking" in the US it showed me h…","Nov 30, 2:07:20 AM EST"
-1862758748176998586,"Thanks, Joe, that means a lot coming from you! https://t.co/FJN96FO0KD","Nov 30, 2:21:08 AM EST"
-1862835730948456462,"Strange how legacy “mainstream” media all say the same thing at the same time 🤔 https://t.co/GHxEkKgcBW","Nov 30, 7:27:02 AM EST"
-1862836609202225197,"We spent that much afterwards!? Wow. https://t.co/1db0ZflKIB","Nov 30, 7:30:32 AM EST"
-1862836787955048915,"Senator Lee is right https://t.co/Rm2xzZqzls","Nov 30, 7:31:14 AM EST"
-1862837479776071723,"𝕏 has far more reach than any other news source https://t.co/VeUd8uqMFe","Nov 30, 7:33:59 AM EST"
-1862837927627104650,"The Democratic Party had every advantage this election and were still rejected by the people https://t.co/im15EHvBmm","Nov 30, 7:35:46 AM EST"
-1862840968996688183,"RT @johnkrausphotos: Are you excited for the future? https://t.co/YHZP1fCj5f","Nov 30, 7:47:51 AM EST"
-1862842279653773388,"RT @SpaceX: Falcon 9’s first stage has landed on the Of Course I Still Love You droneship https://t.co/bGyKTLXD4F","Nov 30, 7:53:04 AM EST"
-1862842627680350492,"You, the people, should decide the narrative, not 3 editors of legacy media https://t.co/NUOGnWWRAm","Nov 30, 7:54:27 AM EST"
-1862843859513856041,"RT @TheGregYang: very slowly rolling out the grok button
-
-press this button when you are confused by a post or want to know more context
-
-t…","Nov 30, 7:59:20 AM EST"
-1862844488093184416,"RT @LibertyCappy: 👇 https://t.co/kPtzFOSi5g","Nov 30, 8:01:50 AM EST"
-1862845441244577958,"That does seem odd, given that, unlike the founders Andreessen referred to who were debanked, SBF committed massive fraud https://t.co/pr8iL8exPu","Nov 30, 8:05:37 AM EST"
-1862848190401118564,"RT @TexasLindsay_: 🔥 New: Grok creates an image of you based on your X posts.
-
-Try it. Just type “Draw Me” & let me see yours… https://t.c…","Nov 30, 8:16:33 AM EST"
-1862849111109550161,"🎁 https://t.co/6H8p8uegg7","Nov 30, 8:20:12 AM EST"
-1862849322200498372,"Not good https://t.co/D0kYqwNz0Y","Nov 30, 8:21:03 AM EST"
-1862849625910059087,"RT @ZachWarunek: 𝕏 team just keeps shipping","Nov 30, 8:22:15 AM EST"
-1862851635019411741,"Cool https://t.co/QL3F88wRSW","Nov 30, 8:30:14 AM EST"
-1862852046879121563,"RT @VastoLorde95: Grok is now 20% faster at analyzing tweets. Paste link to tweet in Grok tab and ask a question.
-
-Also, 40% less yap.
-
-Sti…","Nov 30, 8:31:52 AM EST"
-1862859048518844688,"Grok vs CharGPT.
-
-The difference is revealing on so many levels. https://t.co/gZUfql2gTC","Nov 30, 8:59:42 AM EST"
-1862862481082773786,"🤔 https://t.co/R6yh10zPf4","Nov 30, 9:13:20 AM EST"
-1862862677959221316,"RT @johnkrausphotos: https://t.co/PwjRYBJ6gt","Nov 30, 9:14:07 AM EST"
-1862863808273752083,"True https://t.co/LLST5jceyC","Nov 30, 9:18:36 AM EST"
-1862916555836658050,"Grok can explain what’s happening on pictures of physics blackboards! https://t.co/GGjpRhxSCj","Nov 30, 12:48:12 PM EST"
-1862924713195950229,"Whoa 🤯 https://t.co/fpnqfKk1YV","Nov 30, 1:20:37 PM EST"
-1862931462359572760,"Yes https://t.co/XWitV6iOyf","Nov 30, 1:47:26 PM EST"
-1862933897362727084,"Wow https://t.co/zFYLXRG8ZZ","Nov 30, 1:57:07 PM EST"
-1862961086456369380,"Congratulations to the @xAI team for getting so much done over the Thanksgiving week! https://t.co/LRUt70lwXA","Nov 30, 3:45:09 PM EST"
-1862961140898365693,"RT @john: I am going to gift 𝕏 Premium to 10 people today. Reply to this thread or tag someone who would like it.","Nov 30, 3:45:22 PM EST"
-1862961190110118344,"RT @ElonClipsX: Elon Musk: AI is like a genius child. You want it to grow up with love of the truth and of humanity.
-
-“I do worry about AI.…","Nov 30, 3:45:34 PM EST"
-1863102284919632199,"Tesla has the best real-world AI by far https://t.co/PrRIPk6yKV","Dec 1, 1:06:14 AM EST"
-1863104258704584868,"Cool https://t.co/64Zm895J99","Dec 1, 1:14:04 AM EST"
-1863105479280312397,"RT @stevenmarkryan: I am convinced that if someone spent 40 hours per week posting quality content (for which there is an audience) on X an…","Dec 1, 1:18:55 AM EST"
-1863105899671539800,"Just replace “democracy” with “bureaucracy” and these NPCs make total sense 🤣🤣 https://t.co/XFZ3p6fosd","Dec 1, 1:20:35 AM EST"
-1863106840621678916,"RT @DefiantLs: 🔥 Top 9 BRUTAL comebacks and roasts.
-
-🧵 A Defiant L's thread.
-
-1. Thanks for paying 💅 https://t.co/h4sAJR5x55","Dec 1, 1:24:20 AM EST"
-1863106888646471879,"RT @DefiantLs: 👇 https://t.co/JkHlWDbYm6","Dec 1, 1:24:31 AM EST"
-1863107273725509898,"Definitely 😂 https://t.co/AShaNZ0urm","Dec 1, 1:26:03 AM EST"
-1863107843337166864,"https://t.co/n3U6bckcOu","Dec 1, 1:28:19 AM EST"
-1863108281448968591,"Yes! Many country and company leaders already post directly on 𝕏.
-
-This is the way to bypass the legacy press and speak directly to the people. https://t.co/XKBpcvPRHc","Dec 1, 1:30:03 AM EST"
-1863108651256562146,"RT @anammostarac: I recently exchanged words with a prominent tech leader (you’d know him) who was bearish on the U.S. despite the election…","Dec 1, 1:31:32 AM EST"
-1863113086833754466,"RT @FutureJurvetson: Residual self-image https://t.co/sgIqBTtMp3","Dec 1, 1:49:09 AM EST"
-1863115975538946210,"The government needs to stop wasting your hard-earned money! https://t.co/gflylcb71g","Dec 1, 2:00:38 AM EST"
-1863119281963307065,"Based 😂 https://t.co/EBMDSSv5xx","Dec 1, 2:13:46 AM EST"
-1863119975386657253,"RT @ElonClipsX: Elon Musk: Electricians and plumbers are a lot more important than incremental political science majors.
-
-“I have a lot of…","Dec 1, 2:16:31 AM EST"
-1863120156907786581,"https://t.co/hssREza9jK","Dec 1, 2:17:15 AM EST"
-1863122132211056864,"RT @AntiWokeMemes: @EndWokeness These 51 spies are NOT above the law 👇 https://t.co/Ec7xSYIDfQ","Dec 1, 2:25:06 AM EST"
-1863122664455614909,"People in Germany really need to use 𝕏 to know what’s really happening.
-
-The legacy media is pure propaganda.
-
-Send https://t.co/bOUOek6al6 links to friends in Europe! https://t.co/fcubnHlCdw","Dec 1, 2:27:13 AM EST"
-1863123066869649494,"Cancel culture has been canceled.","Dec 1, 2:28:48 AM EST"
-1863123188328358067,"RT @jasondebolt: MAGA is not a republican movement, it’s an American movement.
-
-Many liberals are slowly waking up to the fact that Trump’s…","Dec 1, 2:29:17 AM EST"
-1863125842957844750,"1000% YES https://t.co/JNUeLmLP6y","Dec 1, 2:39:50 AM EST"
-1863125944225128477,"RT @cb_doge: ELON MUSK: "The interest that we owe on our national debt is now higher than the defense budget. Over a trillion dollars and g…","Dec 1, 2:40:14 AM EST"
-1863126481704284180,"RT @DefiyantlyFree: When they say Trump’s nominees are not qualified, what they mean is that Trump’s nominees know where the bodies are bur…","Dec 1, 2:42:23 AM EST"
-1863129083326124137,"RT @EndWokeness: What was your "red pill" moment?","Dec 1, 2:52:43 AM EST"
-1863129304399597749,"RT @cb_doge: 𝕏 is the #1 News App in more than 140 countries worldwide. https://t.co/MMEjuumWF5","Dec 1, 2:53:36 AM EST"
-1863130134318043350,"RT @cybertruck: https://t.co/YJUKAJBtx7","Dec 1, 2:56:53 AM EST"
-1863130171391500674,"RT @cb_doge: Subscribe to 𝕏 Premium to support this platform.","Dec 1, 2:57:02 AM EST"
-1863130794874868010,"RT @Rothmus: You were all on the list. https://t.co/e90hGi0zK5","Dec 1, 2:59:31 AM EST"
-1863130907336704080,"True https://t.co/mz4xCLkRtT","Dec 1, 2:59:58 AM EST"
-1863156398429032535,"RT @CilComLFC: BREAKING: Voters across Ireland report they were NOT asked to present any form of ID when voting in today’s General Election…","Dec 1, 4:41:15 AM EST"
-1863157341354672592,"RT @ElonFactsX: Elon Musk provided this example to illustrate how infrastructure projects are being strangled by overregulation:
-
-“The Bori…","Dec 1, 4:45:00 AM EST"
-1863157385357087131,"RT @teslaownersSV: “I think this will be the most transformative presidency, perhaps since the founding of the country. It's going to be a…","Dec 1, 4:45:11 AM EST"
-1863157511412682963,"Yes https://t.co/rDvmbxowYp","Dec 1, 4:45:41 AM EST"
-1863307035196203433,"Exactly. Orwellian double-speak. https://t.co/UnRHW0p073","Dec 1, 2:39:50 PM EST"
-1863411980398456897,"RT @DonaldJTrumpJr: Everyone knew he was going to do it. He was just going to do it when it was if no consequence to democrat electability.","Dec 1, 9:36:51 PM EST"
-1863424452463337910,"Wow https://t.co/nwjjRrb5dB","Dec 1, 10:26:24 PM EST"
-1863432048352047141,"RT @512x512: https://t.co/SKT4oU8iPY","Dec 1, 10:56:35 PM EST"
-1863501097119396093,"Yes https://t.co/v9mHms0IiB","Dec 2, 3:30:58 AM EST"
-1863501179558437345,"Obviously https://t.co/LslC2WDBHW","Dec 2, 3:31:18 AM EST"
-1863501657939784057,"Fate loves irony … but hates hypocrisy https://t.co/Er576NNLbL","Dec 2, 3:33:12 AM EST"
-1863503858183582024,"🤨 https://t.co/O7L4isEnrz","Dec 2, 3:41:56 AM EST"
-1863504144277131672,"Community Notes slays https://t.co/QNZfUIcNPl","Dec 2, 3:43:04 AM EST"
-1863586924151419012,"I will do my best to respond to well-reasoned arguments here on 𝕏 for serving the best interests of the American people.
-
-However, any real or de facto offers of money, power or threats will obviously be silly and ineffective. https://t.co/Ucp2oiighW","Dec 2, 9:12:01 AM EST"
-1863606401115001274,"RT @JonErlichman: Average cost for 1 gigabyte of storage:
-
-45 years ago: $438,000
-40 years ago: $238,000
-35 years ago: $48,720
-30 years ago…","Dec 2, 10:29:24 AM EST"
-1863606589300850958,"RT @EndWokeness: Kamala Harris is the 1st candidate since Herbert Hoover 1932 who did not flip a *SINGLE* county https://t.co/nqWds9ms8x","Dec 2, 10:30:09 AM EST"
-1863607041572647216,"🎯😂 https://t.co/jHemJRf3FF","Dec 2, 10:31:57 AM EST"
-1863608174512877573,"True https://t.co/GFqRuVfrOj","Dec 2, 10:36:27 AM EST"
-1863609831627895036,"🎯 https://t.co/ckWBKcEtib","Dec 2, 10:43:02 AM EST"
-1863613971091394755,"RT @SenJoniErnst: Thank you, @realDonaldTrump for doing more to secure the border in the last 30 days than President Biden has done in the…","Dec 2, 10:59:29 AM EST"
-1863617011554857099,"Absolutely https://t.co/SVOpRm0KtK","Dec 2, 11:11:34 AM EST"
-1863617161748779401,"RT @cb_doge: 𝕏 outperforms other platforms by offering the best cost-per-1000-impressions. This platform offers the best value for money to…","Dec 2, 11:12:10 AM EST"
-1863625649904075249,"The New York Times is irrelevant https://t.co/ehKsbqlPx3","Dec 2, 11:45:54 AM EST"
-1863626183184724053,"RT @troyrjones: Keeps getting better","Dec 2, 11:48:01 AM EST"
-1863627750218539244,"RT @VivekGRamaswamy: Cutting waste is not a partisan idea.","Dec 2, 11:54:14 AM EST"
-1863627823774130614,"RT @MarioNawfal: 🚨CHINA’S TRAINS SURPASS PLANES' SPEED WHILE THE US KILLS ITS POTENTIAL WITH USELESS REGULATIONS
-
-China's next-gen maglev t…","Dec 2, 11:54:32 AM EST"
-1863628739537441152,"https://t.co/kVhHvAxszv","Dec 2, 11:58:10 AM EST"
-1863628865937014944,"https://t.co/IYxflftGqs https://t.co/fialiR283t","Dec 2, 11:58:40 AM EST"
-1863629139095285930,"RT @SawyerMerritt: NEWS: Kativik Regional Government in Québec, Canada will use SpaceX's @Starlink terminals to expand internet bandwidth i…","Dec 2, 11:59:45 AM EST"
-1863629412123418631,"RT @JohnCornyn: The FBI’s abuses under Mr. Comey were the worst since J. Edgar Hoover. As documented by the Justice Department inspector ge…","Dec 2, 12:00:51 PM EST"
-1863629491806797963,"RT @SawyerMerritt: NEWS: Higher adoption of fully electric vehicles and plug-in hybrids led to a record drop in new-vehicle emissions in th…","Dec 2, 12:01:10 PM EST"
-1863630003620991193,"RT @teslaownersSV: I’ve always said Elon Musk was the youngest, shortest, and brightest in his class.
-
-Maye Musk on Elon https://t.co/KNAwj…","Dec 2, 12:03:12 PM EST"
-1863630617759355343,"RT @nypost: Elon Musk seeks injunction to block OpenAI’s plans to become for-profit ‘Frankenstein’: filing https://t.co/Tmj2M0IWdJ https://…","Dec 2, 12:05:38 PM EST"
-1863649040333693108,"RT @teslaeurope: If your Tesla detects an approaching person or vehicle in your blind spot as you're getting out, you will receive visual &…","Dec 2, 1:18:50 PM EST"
-1863651218372903081,"Worth it https://t.co/0uXgx5rOFw","Dec 2, 1:27:30 PM EST"
-1863665571872591910,"RT @MarioNawfal: 🚨🇺🇸ELON CALLS OUT OPENAI’S “SWINDLY SAM” FOR GOING FULL GREED MODE
-
-Elon is suing OpenAI, claiming Sam Altman pulled the u…","Dec 2, 2:24:32 PM EST"
-1863666221301764462,"The final step of @DOGE is to delete itself https://t.co/ZCj2NvHm1U","Dec 2, 2:27:07 PM EST"
-1863666272011010222,"RT @michaelnicollsx: Incredible video. A key part of @Starlink brightness mitigation is off-pointing near the solar terminator to reflect s…","Dec 2, 2:27:19 PM EST"
-1863666355993530539,"RT @EricLDaugh: 🚨 #BREAKING: The House COVID Committee has released its final report after a 2-year investigation.
-
-MAJOR FINDINGS:
-- The N…","Dec 2, 2:27:39 PM EST"
-1863666808944779739,"Wow https://t.co/WUgvpvE1GW","Dec 2, 2:29:27 PM EST"
-1863677355169837255,"This platform is the biggest source of news on Earth by far https://t.co/mFHz3AGsV9","Dec 2, 3:11:21 PM EST"
-1863679683201487295,"Less government means more power to the people https://t.co/w4sv5UfoX1","Dec 2, 3:20:36 PM EST"
-1863733931813548273,"RT @Jim_Jordan: Joe Biden: "No one is above the law."
-
-Unless you're:
-
--Hunter Biden
--Illegal aliens
--Rioters and looters","Dec 2, 6:56:10 PM EST"
-1863736899644375523,"RT @TheGregYang: try the new grok answer copy & lmk what you think!","Dec 2, 7:07:58 PM EST"
-1863736993722556753,"RT @Space_Station: Watch the @SpaceX #Dragon cargo spacecraft, packed with science and supplies for retrieval and analysis on Earth, undock…","Dec 2, 7:08:20 PM EST"
-1863740028406337896,"Absolutely https://t.co/gjyg0dKkdB","Dec 2, 7:20:24 PM EST"
-1863742367406170213,"RT @CathieDWood: Based on her @TSLA ruling, DE Judge McCormick is an activist judge at its worst. No judge has the right to determine CEO c…","Dec 2, 7:29:41 PM EST"
-1863742918789332992,"RT @cb_doge: Things to do in Delaware:
-1) Leave","Dec 2, 7:31:53 PM EST"
-1863752579504628189,"Shareholders should control company votes, not judges https://t.co/zRsWGjC2hG","Dec 2, 8:10:16 PM EST"
-1863761716594589731,"RT @BrianRoemmele: Will be picking a random responder to this posting or the original posting for a gift of X Premium this evening.
-
-Thank…","Dec 2, 8:46:34 PM EST"
-1863763498251006229,"Yup https://t.co/Gqvtj9TYhy","Dec 2, 8:53:39 PM EST"
-1863766283415638135,"RT @MarioNawfal: SPACEX TO FLY DRAGONFLY TO TITAN – FOR $256.6M!
-
-SpaceX will use its Falcon Heavy to send NASA’s nuclear-powered Dragonfly…","Dec 2, 9:04:43 PM EST"
-1863767695491018989,"The scale of spending on illegal immigration boggles the mind! https://t.co/7UJYcWOKeD","Dec 2, 9:10:20 PM EST"
-1863772741351981302,"RT @webflite: Falcon 9 launch view from cockpit at FL340 ✈️
-
-📸 Edgardo German https://t.co/lxlUSkxy6C","Dec 2, 9:30:23 PM EST"
-1863773872362844593,"RT @johnkrausphotos: https://t.co/OT7NuD0DzS","Dec 2, 9:34:53 PM EST"
-1863777030766022779,"Interesting thread https://t.co/G50cntLkVG","Dec 2, 9:47:26 PM EST"
-1863777136315695524,"RT @iam_smx: "I am highly confident that we can send several uncrewed Starships to Mars in 2 years. If those ships don’t increment the crat…","Dec 2, 9:47:51 PM EST"
-1863780800858124770,"https://t.co/oQKKYpHXhN","Dec 2, 10:02:24 PM EST"
-1863789808440500669,"RT @johnkrausphotos: It’s loud in the arena https://t.co/GNZMPTYV1m","Dec 2, 10:38:12 PM EST"
-1863936917013700671,"RT @Tesla_Asia: Safety first🦾","Dec 3, 8:22:45 AM EST"
-1863940348277293127,"Lawfare https://t.co/SIyb7TwQzw","Dec 3, 8:36:24 AM EST"
-1863940709180473604,"America is headed for de facto bankruptcy very fast https://t.co/gKYDnimg2V","Dec 3, 8:37:50 AM EST"
-1863941087733186960,"RT @NASASpaceOps: .@NASA and its international partners are set to receive scientific research samples and hardware as a @SpaceX Dragon sp…","Dec 3, 8:39:20 AM EST"
-1863955722129617143,"RT @tomzhu_nz: Great work by CN team!","Dec 3, 9:37:29 AM EST"
-1863955997481488448,"RT @SawyerMerritt: NEWS: Tesla's new Model 3 Long Range has been named one of Car and Driver's Top 10 Best Cars for 2025.
-
-"Model 3 is a ba…","Dec 3, 9:38:35 AM EST"
-1863961688543842430,"RT @ajtourville: California Rep. Ro Khanna on Gavin Newsom's EV subsidy that would exclude @Tesla vehicles:
-
-“Tesla created the electric v…","Dec 3, 10:01:11 AM EST"
-1863982668691488969,"RT @Tesla: 900 Tesla owners do a synchronized Light Show in Finland 😮
-
-📷 @Extreme_Finland https://t.co/FPSWD4QAKN","Dec 3, 11:24:33 AM EST"
-1863984151705120806,"Insane https://t.co/0iwACGI8Ez","Dec 3, 11:30:27 AM EST"
-1863995164475129976,"Extreme birth rate collapse is the biggest danger to human civilization by far https://t.co/3UzaCYd2vU","Dec 3, 12:14:13 PM EST"
-1864039822211322324,"RT @KanekoaTheGreat: .@joerogan: When did the U.S. government get started with internet censorship?
-
-@mikebenzcyber: "It started in 2014 wi…","Dec 3, 3:11:40 PM EST"
-1864040003774329295,"RT @MarioNawfal: 🇺🇸 NYC MAYOR: DOGE IS A GREAT IDEA
-
-"We have been wasting tax payers' money for far too long, and we need to stop wasting…","Dec 3, 3:12:23 PM EST"
-1864040499805364699,"Wow https://t.co/qGV5NwQ1EG","Dec 3, 3:14:22 PM EST"
-1864041129752080456,"RT @WallStreetMav: D.O.G.E. needs to take a good look at all the money the US govt is sending to NGO (non government organizations) that ar…","Dec 3, 3:16:52 PM EST"
-1864042654360555995,"Yes https://t.co/XOz3lMrPCN","Dec 3, 3:22:55 PM EST"
-1864073696719065344,"Wow 😍 https://t.co/AlhDCjWsLR","Dec 3, 5:26:16 PM EST"
-1864077188380684576,"!! https://t.co/guc4kZbL2I","Dec 3, 5:40:09 PM EST"
-1864077388004381136,"RT @Starlink: With Starlink, it just works. Plug it in, point at sky. Directions work in either order 🛰️❤️
-https://t.co/MQQ8o7SfXC","Dec 3, 5:40:56 PM EST"
-1864078500644245900,"RT @zerohedge: Total US debt spikes by $84BN in one day to a record $36.17 trillion... Up $1 trillion from $35.17 trillion on Aug 19 in 105…","Dec 3, 5:45:22 PM EST"
-1864086049464500718,"RT @TheRabbitHole84: Pages of Regulations added each year 1936-2011 https://t.co/3KJ1Rn7GYz","Dec 3, 6:15:21 PM EST"
-1864087240697069711,"RT @TheRabbitHole84: Milton Friedman on how so-called 'temporary programs' tend to stubbornly stick around. https://t.co/Ibxog89Po3","Dec 3, 6:20:05 PM EST"
-1864087679048012162,"RT @TheRabbitHole84: Pages in the Code of Federal Regulations:
-- 1950: 9745
-- 2019: 186,000
-
-Massive increase. https://t.co/qC2lkQ9g8R","Dec 3, 6:21:50 PM EST"
-1864089404190400598,"RT @ArthurMacwaters: @TheRabbitHole84 Another rarely quoted gem by Milton:
-
- "Given our monstrous, overgrown government structure, any thr…","Dec 3, 6:28:41 PM EST"
-1864090934763233711,"Exactly https://t.co/3QE5pGuvLc","Dec 3, 6:34:46 PM EST"
-1864094577495286219,"RT @Space_Station: These long-duration photographs look out a window on the @SpaceX #Dragon crew spacecraft toward the Magellanic clouds, t…","Dec 3, 6:49:15 PM EST"
-1864097976848670744,"RT @SwipeWright: Tacitus on the relationship between regulations and corruption.💡 https://t.co/H2WjkfiIJ2","Dec 3, 7:02:45 PM EST"
-1864100931157000498,"RT @dvorahfr: For the next vacation, how about a space cruise?
-
-Animation: @Kling_ai https://t.co/IN0JuBvdjW","Dec 3, 7:14:29 PM EST"
-1864103889710002525,"Truth is stranger (and funnier) than fiction 😂 https://t.co/YgtEBAEE8h","Dec 3, 7:26:15 PM EST"
-1864113011541131729,"Terrible https://t.co/NrQVct58F7","Dec 3, 8:02:30 PM EST"
-1864118584697368803,"RT @MarioNawfal: 🇺🇸 JOE ROGAN: IT SEEMED LIKE THE CENSORSHIP MACHINE WAS WINNING UNTIL ELON PURCHASED X
-
-“It was looking pretty bleak, I w…","Dec 3, 8:24:38 PM EST"
-1864121609654554950,"RT @teslaownersSV: The purchase of 𝕏 will go down as the most pivotal decision for free speech in America.
-
-Elon Musk saved free speech.","Dec 3, 8:36:40 PM EST"
-1864124045274267840,"💯 https://t.co/PBoTulEoZL","Dec 3, 8:46:20 PM EST"
-1864124674013106539,"RT @DimaZeniuk: “I'd be happy to help improve the government efficiency, which I think is sorely needed. We've got a gigantic government bu…","Dec 3, 8:48:50 PM EST"
-1864149928076771617,"🤨 https://t.co/1yRRmvgKAo","Dec 3, 10:29:11 PM EST"
-1864153143111516352,"RT @thatsKAIZEN: These are essential for undoing the brainwashing we’ve all been subjected by the government + legacy media.","Dec 3, 10:41:58 PM EST"
-1864153604443017402,"Yes https://t.co/JaKOc4uo35","Dec 3, 10:43:48 PM EST"
-1864158227857801305,"Absolutely true https://t.co/INAS9u1RNs","Dec 3, 11:02:10 PM EST"
-1864230922939183118,"Too many laws & regulations https://t.co/6dGPLCdLU9","Dec 4, 3:51:02 AM EST"
-1864232468293013787,"Must be a coincidence 🙄 https://t.co/VdV9LyetIZ","Dec 4, 3:57:10 AM EST"
-1864239615319920744,"RT @MikeBenzCyber: Case in point: @TuckerCarlson just reported the President of the “sovereign country of Ukraine” has been blocked from do…","Dec 4, 4:25:34 AM EST"
-1864240774017318925,"True https://t.co/Og839uIAZC","Dec 4, 4:30:11 AM EST"
-1864241111407186369,"Dark mode is the way https://t.co/sgjZnWqVah","Dec 4, 4:31:31 AM EST"
-1864241203753177219,"RT @ElonClipsX: Elon Musk: 𝕏 doesn't put a thumb on the scale. No voice on the left or on the right is being silenced.
-
-“I think we should…","Dec 4, 4:31:53 AM EST"
-1864245283472986407,"https://t.co/3u3y0qXroE","Dec 4, 4:48:06 AM EST"
-1864247716316094568,"RT @ggreenwald: There are endless hilarious clips of liberal pundits heralding Joe Biden as one of history's most honorable men for refusin…","Dec 4, 4:57:46 AM EST"
-1864249106228760939,"RT @iam_smx: "When I was in College, there were three areas that I thought would most affect the future of humanity. That was the internet,…","Dec 4, 5:03:17 AM EST"
-1864249946612085133,"https://t.co/3Sd3leEP33","Dec 4, 5:06:38 AM EST"
-1864251129426792544,"https://t.co/R695MUaQ1K","Dec 4, 5:11:20 AM EST"
-1864251256082202767,"https://t.co/coZeZm5lr8","Dec 4, 5:11:50 AM EST"
-1864301498597015848,"RT @SpaceX: Falcon 9 delivers 24 @Starlink satellites to orbit from Florida https://t.co/cjtMrKXY5W","Dec 4, 8:31:28 AM EST"
-1864301732899246125,"RT @Tesla_Asia: Model 3 earned top marks in both the China Electric Vehicle Fire Safety Index (C-EVFI) and the Automotive Fire Safety Certi…","Dec 4, 8:32:24 AM EST"
-1864304970193097102,"RT @johnkrausphotos: Beautiful 'twilight effect' over the Atlantic following this morning's Falcon 9 launch https://t.co/UeU9e5Wqsm","Dec 4, 8:45:16 AM EST"
-1864308791388590164,"True https://t.co/ZZL463Far7","Dec 4, 9:00:27 AM EST"
-1864310874586141130,"Sterilizing minor children before the age of consent is deeply wrong and many who had surgery now greatly regret it. https://t.co/kQPVrVO8AW","Dec 4, 9:08:44 AM EST"
-1864310957973098571,"Defund the ACLU","Dec 4, 9:09:04 AM EST"
-1864311566759547047,"Massive waste in healthcare spending https://t.co/b3rMzpAaWA","Dec 4, 9:11:29 AM EST"
-1864312069610512637,"RT @Cernovich: Druggies leave a trial of tears behind them. But none of you oh so compassionate people ever mention that. It’s always oh ho…","Dec 4, 9:13:29 AM EST"
-1864315025395208633,"RT @thackerpd: The two IRS agents who were attacked by Biden's DOJ lawyers, for investigating Hunter Biden, have an essay in today's Wall S…","Dec 4, 9:25:14 AM EST"
-1864316699975295113,"RT @skscartoon: These agendas would have been fully implemented had Trump lost the election. https://t.co/NEuRG8U05B","Dec 4, 9:31:53 AM EST"
-1864320416237670603,"RT @StockMKTNewz: I feel like we stopped talking about this too quickly … SpaceX literally caught a rocket a couple of weeks ago https://t.…","Dec 4, 9:46:39 AM EST"
-1864320595468718241,"RT @KnightWorlds: "To love and be loved is to feel the sun from both sides." https://t.co/KiF0FGZlCf","Dec 4, 9:47:22 AM EST"
-1864322914327384209,"RT @teslaownersSV: Starship is the biggest rocket ever built! 🚀 https://t.co/XpXKcbUfbZ","Dec 4, 9:56:34 AM EST"
-1864326816598773945,"💯🤣 https://t.co/s4vEb2JT4P","Dec 4, 10:12:05 AM EST"
-1864326987407610080,"RT @SpaceX: Falcon 9 launches the @NatReconOfc's NROL-126 mission and 20 Starlink satellites to orbit, completing our 100th successful laun…","Dec 4, 10:12:45 AM EST"
-1864334899504926794,"The people clearly voted for change https://t.co/gYZZ9wpfcc","Dec 4, 10:44:12 AM EST"
-1864335155256807886,"https://t.co/sR3hJr9B9h","Dec 4, 10:45:13 AM EST"
-1864335292347670633,"https://t.co/BL3PTfI17P","Dec 4, 10:45:46 AM EST"
-1864335415450468474,"✨ https://t.co/P4LFrpJHUJ","Dec 4, 10:46:15 AM EST"
-1864355869582086451,"https://t.co/XHO3JHsTWJ","Dec 4, 12:07:32 PM EST"
-1864358522777162237,"Congratulations @rookisaacman! https://t.co/3R6qzdVRf1","Dec 4, 12:18:04 PM EST"
-1864359046230495549,"RT @rookisaacman: I am honored to receive President Trump’s @realDonaldTrump nomination to serve as the next Administrator of NASA. Having…","Dec 4, 12:20:09 PM EST"
-1864385820213563894,"RT @AdamLaxalt: Argument just wrapped up in Skrmetti, the case that will decide whether there is a constitutional right to sex changes for…","Dec 4, 2:06:32 PM EST"
-1864386101051576611,"RT @MegynKellyShow: "It's our time to stand up and tell the truth. He knows that. He supports me...He said 'you go and meet those senators…","Dec 4, 2:07:39 PM EST"
-1864475937791988084,"RT @xDaily: NEWS: More DSPs Get Access to X
-
-Demand-side platform (DSP), is a programmatic advertising platform that allows advertisers and…","Dec 4, 8:04:38 PM EST"
-1864478785753825641,"Wow https://t.co/sCHN1fRetj","Dec 4, 8:15:57 PM EST"
-1864480421712679298,"RT @SenRickScott: President Trump got our country back on track by cutting burdensome regulations and unleashing our economy.
-
-Joe Biden a…","Dec 4, 8:22:27 PM EST"
-1864484938206335078,"Starlink’s giant latency advantage is the real killer.
-
-Current Starlink satellites at ~550km are ~65 times closer than geosynchronous satellites.
-
-Our next generation satellites will be at ~350km, so >100 times closer. https://t.co/aF6ZmUdv1B","Dec 4, 8:40:24 PM EST"
-1864487662276759582,"Tax complexity looks like a rocket going to the Moon! https://t.co/JITYxDpkMP","Dec 4, 8:51:13 PM EST"
-1864489272285515880,"50% increase in government contract expenditures in only 6 years! https://t.co/5BQ2XhcxrG","Dec 4, 8:57:37 PM EST"
-1864489321107235114,"RT @johnkrausphotos: I have never been more excited for the future 💪🇺🇸🚀🌕🔴 https://t.co/nL9nUL83AE","Dec 4, 8:57:49 PM EST"
-1864489818706915771,"Singapore (and many other countries) are going extinct https://t.co/YORyakBynm","Dec 4, 8:59:47 PM EST"
-1864491481618100277,"https://t.co/AVhlsAl73I","Dec 4, 9:06:24 PM EST"
-1864494222071509429,"Interesting https://t.co/4WEv2ouA3j","Dec 4, 9:17:17 PM EST"
-1864494766857032078,"RT @TONYxTWO: ELON MUSK: “The people have spoken. The people want change and we’re gonna give it to them!”
-
-“I think this is gonna be the m…","Dec 4, 9:19:27 PM EST"
-1864497962908356953,"RT @Yasin__Shafiei: SpaceX is turning all animations into reality! @elonmusk https://t.co/r0ZNd6dvlV","Dec 4, 9:32:09 PM EST"
-1864500129803194792,"Sure does! https://t.co/NCASmrXJNC","Dec 4, 9:40:46 PM EST"
-1864500350041850115,"Because PBS *is* the far left 😂 https://t.co/VnYt9knXEk","Dec 4, 9:41:38 PM EST"
-1864501644831912444,"RT @Cernovich: Ask Grok is the new Google It.","Dec 4, 9:46:47 PM EST"
-1864501901208768883,"RT @teslaownersSV: 𝕏 is the most real time and truthful app for news.","Dec 4, 9:47:48 PM EST"
-1864506786511745206,"https://t.co/y3uGmHBA23","Dec 4, 10:07:13 PM EST"
-1864508974608891910,"350 rocket booster reflights https://t.co/Hx1zCS4mYi","Dec 4, 10:15:55 PM EST"
-1864512852041605210,"RT @CollinRugg: NEW: NYC mayor Eric Adams defends Daniel Penny for protecting subway passengers, blasts the media for portraying Jordan Nee…","Dec 4, 10:31:19 PM EST"
-1864513003682488748,"🇺🇸🇺🇸🇺🇸 YES 🇺🇸🇺🇸🇺🇸 https://t.co/RzL2rHt4RF","Dec 4, 10:31:55 PM EST"
-1864524920643809359,"RT @SpaceX: Deployment of 20 @Starlink satellites confirmed","Dec 4, 11:19:16 PM EST"
-1864524963195084996,"RT @SpaceX: On orbit, the 13 Direct to Cell satellites will immediately connect over laser backhaul to the Starlink constellation, eliminat…","Dec 4, 11:19:27 PM EST"
-1864525613811323011,"RT @Rothmus: 💯 https://t.co/IXTLMctWjr","Dec 4, 11:22:02 PM EST"
-1864526643579998647,"RT @GailAlfarATX: SpaceX launch and return is the most significant step made so far towards being multi-planetary
-
- https://t.co/pgbRw0HnKX","Dec 4, 11:26:07 PM EST"
-1864527273598099501,"RT @nima_owji: People in New Zealand can access GROK for FREE now!
-
-X and xAI will soon allow everyone to use a free version of Grok! https…","Dec 4, 11:28:37 PM EST"
-1864571206004838425,"The first Starlink satellite direct to cell phone constellation is now complete.
-
-This will enable unmodified cellphones to have Internet connectivity in remote areas.
-
-Bandwidth per beam is only ~10Mb, but future constellations will be much more capabl","Dec 5, 2:23:12 AM EST"
-1864573116623544720,"Yes https://t.co/oplczBeAqp","Dec 5, 2:30:47 AM EST"
-1864620838118470028,"RT @longmier: This launch completes 24 planes of 13 sats per plane at a 53 deg inclination for the Direct to Cell constellation. Once raise…","Dec 5, 5:40:25 AM EST"
-1864623012848234548,"RT @teslaownersSV: Guess who? https://t.co/WgwRlVGbfH","Dec 5, 5:49:03 AM EST"
-1864623818590867685,"Must be a coincidence 🙄 https://t.co/nDpyci004U","Dec 5, 5:52:16 AM EST"
-1864624446763319492,"Nope, at least 1 biiillioon GPUs! 😂 https://t.co/MJxbJN9ZWB","Dec 5, 5:54:45 AM EST"
-1864625262740074591,"Just trying to get to measly 1% completion of a puny Kardashev Type I civilization!","Dec 5, 5:58:00 AM EST"
-1864626881426792715,"RT @elonmusk: Just trying to get to measly 1% completion of a puny Kardashev Type I civilization!","Dec 5, 6:04:26 AM EST"
-1864627433523101877,"💯 https://t.co/YGSFuXeOK5","Dec 5, 6:06:37 AM EST"
-1864628118687809559,"RT @balajis: My colleague @cdixon in 2014. https://t.co/H8nH6r5idi","Dec 5, 6:09:21 AM EST"
-1864628651754459622,"RT @ElonFactsX: Jonathan Turley on Elon Musk's firm stance for free speech:
-
-“Love him or hate him, Elon Musk is, without question, the mos…","Dec 5, 6:11:28 AM EST"
-1864629035969503248,"RT @teslaownersSV: 𝕏 is the only app I trust for news
-
-Legacy media showed me it can only do one thing: lie. Maximize click bait.","Dec 5, 6:12:59 AM EST"
-1864677811174224357,"RT @sara_spangelo: Incredible milestone for the @Starlink Direct to Cell program! Excited to turn on service in the US and other partner c…","Dec 5, 9:26:48 AM EST"
-1864681660291129635,"RT @PeteHegseth: Maybe it’s time for a @SecDef who has…
-
-Led in combat. Been on patrol for days. Pulled a trigger. Heard bullets whiz by. C…","Dec 5, 9:42:06 AM EST"
-1864683112057213028,"Shouldn’t the American people be getting getting their money’s worth? https://t.co/0yZ6ygwd7s","Dec 5, 9:47:52 AM EST"
-1864683541008625764,"We can clearly save people by exiting people who say this sort of thing 😂 https://t.co/aCDBF7iOF6","Dec 5, 9:49:34 AM EST"
-1864689839691452548,"Much appreciated https://t.co/HuhmXQrAax","Dec 5, 10:14:36 AM EST"
-1864691550220902687,"The New York Times is woke warmonger propaganda 🤮 https://t.co/nKxa5BG3Iv","Dec 5, 10:21:24 AM EST"
-1864691791900885157,"This is a big part of the reason your children are not getting a good education https://t.co/RzKaMTdeGM","Dec 5, 10:22:22 AM EST"
-1864692104774975926,"People have been brainwashed into civilizational suicide https://t.co/yhNyGGBcwE","Dec 5, 10:23:36 AM EST"
-1864700909164310806,"Exactly https://t.co/yNVVk1Y7lp","Dec 5, 10:58:35 AM EST"
-1864701524233896252,"Surely you can’t be Sirius? 😂
- https://t.co/zVIgVoaXKM","Dec 5, 11:01:02 AM EST"
-1864702585313349962,"If you exclude security guards & maintenance personnel, the number of government workers who show up in person and do 40 hours of work a week is closer to 1%!
-
-Almost no one. https://t.co/4IGzbLqP3R","Dec 5, 11:05:15 AM EST"
-1864705159051214926,"Outrageous https://t.co/26qIStCYmE","Dec 5, 11:15:29 AM EST"
-1864741173429932527,"RT @SpeakerJohnson: Unbelievable.
-
-This is EXACTLY why we need the Department of Government Efficiency.","Dec 5, 1:38:35 PM EST"
-1864795980190642503,"RT @Starlink: Direct to Cell satellites will immediately connect over laser backhaul to the Starlink constellation, eliminate dead zones an…","Dec 5, 5:16:22 PM EST"
-1864796424459727272,"🤨 https://t.co/VpBmKvHukR","Dec 5, 5:18:08 PM EST"
-1864799932810478036,"Excellent discussion about solving the national debt crisis https://t.co/9Fks5tEynv","Dec 5, 5:32:04 PM EST"
-1864812938990960953,"If we don’t tackle the exponential growth in national debt, there will be no money for anything, including essential services! https://t.co/ByOI0ByAmo","Dec 5, 6:23:45 PM EST"
-1864813706519155105,"To improve the TRUE economy, which is output of useful products & services, we need to shift people from low to negative productivity jobs in government to high productivity jobs in the private sector!
-
-This is what really matters at a fundamental lev","Dec 5, 6:26:48 PM EST"
-1864842446472921441,"RT @SenJoniErnst: 🧵After nearly two years of investigating telework abuse, I unveiled my report showing how broken the bureaucracy in DC is…","Dec 5, 8:21:00 PM EST"
-1864843922448486654,"https://t.co/gEO2qqN5ed","Dec 5, 8:26:52 PM EST"
-1864849662773023095,"RT @Safety: We've expanded the eligibility criteria for grey checkmarks. Here's what you need to know:
-
-– Global expansion for governors: P…","Dec 5, 8:49:41 PM EST"
-1864849902527803462,"This needs to be fixed.
-
-Should be rule by democracy, not rule by bureaucracy! https://t.co/T20M6S0xo9","Dec 5, 8:50:38 PM EST"
-1864859173780910429,"RT @DimaZeniuk: Department of Government Efficiency https://t.co/n0qLoEu0iV","Dec 5, 9:27:29 PM EST"
-1864860082988532115,"RT @SpaceX: Falcon 9 launches the @SiriusXM SXM-9 mission to orbit from Florida https://t.co/vOgrl5wZ7k","Dec 5, 9:31:05 PM EST"
-1864861213777096987,"🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/a9bUubWMWA","Dec 5, 9:35:35 PM EST"
-1864862694546743765,"Hard not to like @SenFettermanPA.
-
-He puts country over party. https://t.co/PyeZELLZWP","Dec 5, 9:41:28 PM EST"
-1864900911291634174,"Free yourself https://t.co/3oxtpxhbA5","Dec 6, 12:13:20 AM EST"
-1864902936591024541,"Entropy is the ultimate boss battle https://t.co/McshXKuMbx","Dec 6, 12:21:22 AM EST"
-1864905022275735723,"🤗 https://t.co/xsL0EEN1rF","Dec 6, 12:29:40 AM EST"
-1864905121475227712,"RT @ElonFactsX: Elon Musk:
-
-“We should not have any international treaties that restrict the freedom of Americans.” https://t.co/qvHGKggHO0","Dec 6, 12:30:03 AM EST"
-1864906894701138286,"RT @teslaownersSV: “We should be cautious about the gradual creep of regulations bureaucracy. Rules and regulations are immortal.”
-Elon Mus…","Dec 6, 12:37:06 AM EST"
-1864907963997008335,"RT @SwipeWright: ACLU attorney Chase Strangio recently admitted that "gender-affirming care" doesn't actually reduce the rate of completed…","Dec 6, 12:41:21 AM EST"
-1864909562681172043,"RT @cb_doge: BREAKING: Bureaucracy https://t.co/euY17Mtau9","Dec 6, 12:47:42 AM EST"
-1865057817826070849,"They are right https://t.co/tBtrixAO8r","Dec 6, 10:36:49 AM EST"
-1865087449845649502,"Fair 😂 https://t.co/yBBPPym7Fe","Dec 6, 12:34:34 PM EST"
-1865087597145362656,"Truer words were never spoken 😂 https://t.co/5R3QlLOliE","Dec 6, 12:35:09 PM EST"
-1865171019440218350,"RT @Starlink: High-speed internet for home, on the go, and for when you're in space 🛰️❤️ https://t.co/pgSqwhMWVv","Dec 6, 6:06:38 PM EST"
-1865171283262030212,"The future looks bright https://t.co/8bRxYD76SO","Dec 6, 6:07:41 PM EST"
-1865172780779544800,"RT @robbystarbuck: I personally hate award shows but I think there should be yearly @X awards. To truly replace the old guard we must creat…","Dec 6, 6:13:38 PM EST"
-1865172841928265817,"!! https://t.co/C0NT32u71o","Dec 6, 6:13:53 PM EST"
-1865175812799967658,"RT @JudiciaryGOP: THREAD 🧵
-
-This new report reveals how, under the Biden-Harris Administration, the FBI and the Treasury Department have ma…","Dec 6, 6:25:41 PM EST"
-1865177274279936068,"!! https://t.co/w68XYIBoci","Dec 6, 6:31:30 PM EST"
-1865242876625535417,"Whatever happens …
-Don’t let it ruin your day","Dec 6, 10:52:10 PM EST"
-1865266788537180643,"RT @RuiHuang_art: https://t.co/65e6qLWJsT","Dec 7, 12:27:12 AM EST"
-1865277326684016862,"😂
-
-That’s only twice as many as lied publicly about the Hunter Biden laptop. Let’s go for 10X!! Lmaooo https://t.co/AlAoYxmdT8","Dec 7, 1:09:04 AM EST"
-1865281476440289513,"PoE2 is the love child of Elden Ring & Diablo","Dec 7, 1:25:33 AM EST"
-1865283774407168002,"🫡 https://t.co/AsClPbDqvQ","Dec 7, 1:34:41 AM EST"
-1865284138590208175,"🧑🍳 😘 https://t.co/FGPjzuRajY","Dec 7, 1:36:08 AM EST"
-1865285753569177656,"https://t.co/eYTt40ahVq","Dec 7, 1:42:33 AM EST"
-1865286043773050905,"RT @GadSaad: This guy is indistinguishable from the KKK. He is just as racist except that he flourished within an ecosystem where his bigo…","Dec 7, 1:43:42 AM EST"
-1865287248360399275,"How did something so harmful to children get approved? https://t.co/wWLIvSmoRx","Dec 7, 1:48:30 AM EST"
-1865296025881067537,"RT @SpaceX: Flight 7 Super Heavy booster moved to the pad at Starbase for testing https://t.co/IOnSMTjrTk","Dec 7, 2:23:22 AM EST"
-1865296180512477326,"Many such cases https://t.co/EFZfAbpWAX","Dec 7, 2:23:59 AM EST"
-1865296389330104671,"RT @teslaownersSV: Common sense is becoming normal again in 🇺🇸","Dec 7, 2:24:49 AM EST"
-1865297694824001922,"The Joker is in charge https://t.co/Vu4HvqTHmV","Dec 7, 2:30:00 AM EST"
-1865298380231967189,"Many don’t even know where the office is! https://t.co/NBJh22VpJH","Dec 7, 2:32:44 AM EST"
-1865301238134235283,"💯 https://t.co/1g0g0GsoOP","Dec 7, 2:44:05 AM EST"
-1865302299381321786,"He was lying the whole time https://t.co/LXJo1goQx3","Dec 7, 2:48:18 AM EST"
-1865304483070169440,"https://t.co/DYazX7KMhh","Dec 7, 2:56:59 AM EST"
-1865305060307009884,"Doge & Minidoge","Dec 7, 2:59:16 AM EST"
-1865305426755043590,"RT @teslaownersSV: 𝕏 is my only news app. I only trust 𝕏 for news.","Dec 7, 3:00:44 AM EST"
-1865305765906354644,"Well said https://t.co/aPyWNjHXja","Dec 7, 3:02:04 AM EST"
-1865306606017057276,"Why is their dialogue tree so limited!? https://t.co/X413JrX3GJ","Dec 7, 3:05:25 AM EST"
-1865307171690316113,"You are the media now https://t.co/7LhL1lqxA5","Dec 7, 3:07:40 AM EST"
-1865309822150672800,"Yes https://t.co/Ojanjll44O","Dec 7, 3:18:12 AM EST"
-1865310111486341268,"RT @cb_doge: "Almost all energy long term will be solar. It rounds upto a 100% when you view things from a Kardashev standpoint."
-
-一 Elon M…","Dec 7, 3:19:21 AM EST"
-1865310578140487790,"Ron is not wrong https://t.co/WYhYclMyJ0","Dec 7, 3:21:12 AM EST"
-1865311431819763822,"RT @EvaFoxU: https://t.co/eXRJcOLG79","Dec 7, 3:24:35 AM EST"
-1865312577133113739,"RT @karolineleavitt: Don’t believe the Fake News.
-
-President Trump stands with @PeteHegseth! 💯 https://t.co/jnuxKwbvea","Dec 7, 3:29:08 AM EST"
-1865314641137537381,"Remember when the legacy media all said that the guy who is still technically President was “sharp as a tack”? https://t.co/PKkK8X9pB0","Dec 7, 3:37:20 AM EST"
-1865315008713765360,"RT @AlexFinnX: New York City has turned into the most miserable place on planet earth
-
-Today, I moved out of it
-
-The last 4 years have been…","Dec 7, 3:38:48 AM EST"
-1865316843574923322,"RT @JDVance: Bridge Colby makes a great point here. The "advice and consent" power of the senate is not a blanket veto authority.
-
-The prob…","Dec 7, 3:46:06 AM EST"
-1865317728929669472,"Was it ever not a lie? https://t.co/uQuKCleWbU","Dec 7, 3:49:37 AM EST"
-1865318905171808736,"RT @teslaownersSV: “To convince Musk of his sincerity, Altman promised that he too would have skin in the game and would make meaningful fi…","Dec 7, 3:54:17 AM EST"
-1865319644581482927,"RT @TRHLofficial: I love this place https://t.co/I68x1nD6r6","Dec 7, 3:57:13 AM EST"
-1865320138192351670,"Madness https://t.co/S3GJIMsvpy","Dec 7, 3:59:11 AM EST"
-1865320806995145040,"Anyone done a Venn diagram of these two lists? 😂 https://t.co/KSdYkVMQlT","Dec 7, 4:01:51 AM EST"
-1865322221520011572,"The NPCs are just a blinking cursor rn https://t.co/gUXr5gP1AY","Dec 7, 4:07:28 AM EST"
-1865322381268418641,"What a scam https://t.co/Nrn5imwZQg","Dec 7, 4:08:06 AM EST"
-1865323452145545272,"21 years ago https://t.co/HVg82XyJcW","Dec 7, 4:12:21 AM EST"
-1865324161813397941,"RT @GailAlfarATX: ELON MUSK ON LIFE AND PHYSICS
-
-(Oct 26, Lancaster, PA)
-
-Elon was asked, "Do you have an answer to life, the universe, and…","Dec 7, 4:15:10 AM EST"
-1865334876162883612,"RT @ElonFactsX: Elon Musk on public figures posting directly on 𝕏:
-
-“Sure, people will say foolish things from time to time (myself especia…","Dec 7, 4:57:45 AM EST"
-1865335379408097333,"RT @GailAlfarATX: This is a good article for future reference, it’s 8214 words long — took a while to do and I had to categorize it as if i…","Dec 7, 4:59:45 AM EST"
-1865338090295812450,"RT @EvaFoxU: The new X update not only expanded the gesture control capabilities, but also updated the visualization. Now, when you like a…","Dec 7, 5:10:31 AM EST"
-1865339441125945646,"Even my competitors know that I will not use the system against them https://t.co/rPojgCcGPK","Dec 7, 5:15:53 AM EST"
-1865339621028004300,"RT @tsarnick: CDC data shows that GLP-1 agonists like Ozempic have already led to the biggest reduction in obesity in decades https://t.co/…","Dec 7, 5:16:36 AM EST"
-1865339977002868907,"RT @WallStreetMav: Make the USA like Idaho.
-
-D.O.G.E. https://t.co/pEvjzVFKLb","Dec 7, 5:18:01 AM EST"
-1865340326535176212,"RT @teslaownersSV: NEWS: 𝕏 users are liking the platform more since Elon Musk bought Twitter. https://t.co/Dzt8hOPsYU","Dec 7, 5:19:24 AM EST"
-1865340665179095151,"RT @GailAlfarATX: Conversation with Donald Trump, Dana White and Elon Musk on election night. Moments later, Donald Trump won by a landslid…","Dec 7, 5:20:45 AM EST"
-1865341281284538845,"Power must return to the people.
-
-Rule of democracy, not rule of bureaucracy! https://t.co/NKGCpvIc9n","Dec 7, 5:23:12 AM EST"
-1865341632499109992,"Strangulation of the nation by overregulation https://t.co/qzZhWNlV59","Dec 7, 5:24:36 AM EST"
-1865342000163115285,"RT @TheRabbitHole84: A lot of wage gap discourse is misleading nonsense https://t.co/S9aqj4shjX","Dec 7, 5:26:03 AM EST"
-1865342456364954069,"RT @NASA: Just look at that shine😎
-
-On Dec. 7, Jupiter will be at its brightest for the year! Look to the east-northeast after sunset to se…","Dec 7, 5:27:52 AM EST"
-1865424744239042806,"RT @MarioNawfal: 🚨🇦🇷MILEI'S ECONOMIC MIRACLE: INFLATION CRASHES 90% IN MONTHS
-
-Argentina's Milei is delivering on his bold promises, slashi…","Dec 7, 10:54:51 AM EST"
-1865425151271084195,"RT @margomartin: President @realDonaldTrump arrives at Élysée Palace and shakes hands with President Macron 🇺🇸🇫🇷 https://t.co/WiC8vWGYla","Dec 7, 10:56:28 AM EST"
-1865426504886137218,"https://t.co/ryziK4JOB0","Dec 7, 11:01:51 AM EST"
-1865453773709041887,"RT @realDonaldTrump: Opposition fighters in Syria, in an unprecedented move, have totally taken over numerous cities, in a highly coordinat…","Dec 7, 12:50:12 PM EST"
-1865457111783637448,"Two years ago, I commissioned an art piece: A Fork in the Road.
-
-Had to make sure that civilization took the path most likely to pass the Fermi Great Filters. https://t.co/mYFzdAy6WF","Dec 7, 1:03:28 PM EST"
-1865462090661515756,"Magnificat Cathédrale @NotreDameParis https://t.co/NIqb6yNxc5","Dec 7, 1:23:15 PM EST"
-1865493636198125657,"RT @cb_doge: Elon Musk at Notre-Dame Cathedral in Paris today.
-
-Anyone can become a citizen journalist. You just need a mobile, internet an…","Dec 7, 3:28:36 PM EST"
-1865495012143677669,"RT @america: President-Elect Donald Trump with French President Emmanuel Macron in Paris.
-
- https://t.co/WrEIJ4Be2R","Dec 7, 3:34:04 PM EST"
-1865580281622872179,"RT @ElonFactsX: Elon Musk recently shared this quote from Dune:
-
-“Respect for the truth comes close to being the basis of all morality.” ht…","Dec 7, 9:12:54 PM EST"
-1865582380473319887,"RT @EmmanuelMacron: Welcome @realDonaldTrump.
-
-Proud of the friendship between the United States and France. There are so many challenges…","Dec 7, 9:21:15 PM EST"
-1865589210549285085,"RT @visegrad24: Vive la France! Vive Notre Dame de Paris! 🇫🇷⚜️ https://t.co/lRC8ye3I2N","Dec 7, 9:48:23 PM EST"
-1865590341040050422,"Inevitable https://t.co/ZfQ1i5C6Ga","Dec 7, 9:52:52 PM EST"
-1865590924647997901,"RT @WholeMarsBlog: Hey guys, check this out.
-
-I did not think FSD 13.2 would be able to get onto the road with this UPS truck parked right…","Dec 7, 9:55:12 PM EST"
-1865593053999682004,"True https://t.co/PizyMCgwuJ","Dec 7, 10:03:39 PM EST"
-1865593199009423426,"RT @teslaownersSV: 𝕏 is where the world comes for truthful and real time news.
-
-You are the media. https://t.co/QJwfk34y4F","Dec 7, 10:04:14 PM EST"
-1865597516529439075,"You will be happier for it https://t.co/lyy4O7sMxj","Dec 7, 10:21:23 PM EST"
-1865597969241641142,"Why are we doing this when our own country is so deeply in debt? https://t.co/3vSQmMJdBH","Dec 7, 10:23:11 PM EST"
-1865707585594065257,"RT @Tesla: FSD Supervised 13.2 reverses to exit parking spot blocked by delivery truck, then waits for oncoming traffic to clear before pro…","Dec 8, 5:38:46 AM EST"
-1865710447598698810,"RT @cb_doge: Low birth rate was one of the major problems in Rome around 50 BC.
-
-Low Birth Rate = Decline of Civilization
-
- https://t.co/R0…","Dec 8, 5:50:08 AM EST"
-1865710776717033901,"What’s wrong with Germany? https://t.co/B0BRpVNSTU","Dec 8, 5:51:27 AM EST"
-1865714454157230486,"RT @ElonClipsX: Elon Musk: It shouldn't be up to a few media oligarchs to steer the narrative.
-
-“The biggest point of manipulation that occ…","Dec 8, 6:06:03 AM EST"
-1865803874218680564,"My hardcore Diablo Druid died today 😢
-
-Uploading his last pit clear in memoriam. RIP lil buddy 🪦 https://t.co/yU3Pp1S4Zl","Dec 8, 12:01:23 PM EST"
-1865803889611813322,"Very much in agreement. It was an honor to speak. https://t.co/HwZ3FCExpS","Dec 8, 12:01:26 PM EST"
-1865803894074507620,"Make Orwell Fiction Again https://t.co/ZhzFa74HCu","Dec 8, 12:01:27 PM EST"
-1865807429067284540,"#1 Hardcore Druid clear time (at least for now) https://t.co/w9ulhzCYOR","Dec 8, 12:15:30 PM EST"
-1865846766911787043,"RT @BellikOzan: Falcon 9 has flown the LEO upmass capacity of the entire Apollo program (12 Saturn Vs and 5 Saturn 1Bs over 6 years) in the…","Dec 8, 2:51:49 PM EST"
-1865880271486169139,"Another 23 Starlink satellites in orbit https://t.co/0DZdZuHzT8","Dec 8, 5:04:57 PM EST"
-1865885167371313581,"RT @cb_doge: It wasn’t Trump vs. Harris.
-It was Trump vs. Legacy Media.
-It was Trump vs. Hollywood.
-It was Trump vs. Google.
-It was Trump v…","Dec 8, 5:24:25 PM EST"
-1865885640270778738,"RT @TheRabbitHole84: A large number of legacy media consumers have been brainwashed into thinking racism and sexism holds people back in th…","Dec 8, 5:26:17 PM EST"
-1865887204901527970,"Based https://t.co/dd1RW6ITrj","Dec 8, 5:32:30 PM EST"
-1865888808031416320,"Perfectly articulated by @SpeakerJohnson!
- https://t.co/o5bkoKf8MI","Dec 8, 5:38:53 PM EST"
-1865888975128502690,"That is what it was designed for https://t.co/sCfZ4lkxs7","Dec 8, 5:39:32 PM EST"
-1865944226325811438,"Hey babe wyd https://t.co/FE8BZ9Bg4R","Dec 8, 9:19:05 PM EST"
-1865949328906256794,"This kid has great instincts https://t.co/FyYIADelrc","Dec 8, 9:39:22 PM EST"
-1865949536604074233,"RT @MarioNawfal: 🇺🇸 TESLA DOUBLES DOWN: 1,000 POWERWALLS IN A DAY
-
-Tesla’s Nevada Gigafactory just smashed its own record, cranking out 1,0…","Dec 8, 9:40:11 PM EST"
-1865950388782018813,"https://t.co/KPXrvtw5jN","Dec 8, 9:43:35 PM EST"
-1865950730625974485,"RT @teslaownersSV: On 𝕏, you're truly empowered, and your voice resonates.
-
-“You are the media.”
-
-I started this account back in 2018 to g…","Dec 8, 9:44:56 PM EST"
-1865951282856394968,"https://t.co/6NJ8JYVrLx","Dec 8, 9:47:08 PM EST"
-1865952203627995182,"There will ultimately be tens of millions of driverless Teslas throughout the world giving rides 24/7
- https://t.co/zWK5dHy75e","Dec 8, 9:50:47 PM EST"
-1865952407793827913,"All done with zero AI.
-
-Not bad for a bunch of monkeys!","Dec 8, 9:51:36 PM EST"
-1865952665118691780,"💯 https://t.co/acsQCFMXfL","Dec 8, 9:52:37 PM EST"
-1865952752376942993,"RT @DefiyantlyFree: Donald Trump did not keep his salary his first term as president. He is not going to keep his salary during the second…","Dec 8, 9:52:58 PM EST"
-1865953018858119289,"RT @teslaownersSV: You are the media
- https://t.co/uXGSe910vp","Dec 8, 9:54:02 PM EST"
-1865953352347181073,"https://t.co/G1z6Y4Lze5","Dec 8, 9:55:21 PM EST"
-1865956669802295369,"Make Consciousness Multiplanetary https://t.co/GH29RXoohN","Dec 8, 10:08:32 PM EST"
-1865957138389958729,"This would be a good one https://t.co/48TPkXeOJn","Dec 8, 10:10:24 PM EST"
-1865960230292541458,"The government is more broken than you could possibly imagine https://t.co/ckB01AQwQM","Dec 8, 10:22:41 PM EST"
-1865962735134970129,"Our tax dollars are somehow funding both sides (again) https://t.co/DiMSpgpG35","Dec 8, 10:32:38 PM EST"
-1865965964631695577,"Yes https://t.co/GSXT1WyAAx","Dec 8, 10:45:28 PM EST"
-1865969099106377858,"RT @Rothmus: True. https://t.co/S3RXmJjbYi","Dec 8, 10:57:55 PM EST"
-1865972596065329332,"RT @Tesla: You wake up to a fully charged phone, after having plugged it in the night before
-
-It will notify you when it needs charging
-
-If…","Dec 8, 11:11:49 PM EST"
-1865973985931899289,"RT @diana_dukic: 𝕏 app is the only trusted global digital town square for everyone","Dec 8, 11:17:21 PM EST"
-1865975311164141722,"TSLA shorts reciting Litany Against Fear rn 😂","Dec 8, 11:22:36 PM EST"
-1865975841273811180,"RT @ElonClipsX: Elon Musk in 2018: Starship will be a point of proof to inspire other companies and countries.
-
-“Once we build [Starship],…","Dec 8, 11:24:43 PM EST"
-1865976573012111607,"RT @Teslaconomics: I put all my eggs in the basket, especially when the companies are building a future like this https://t.co/NQYRw0dTWJ","Dec 8, 11:27:37 PM EST"
-1865977446622704124,"Demonstrate Tesla self-driving to a friend tomorrow. It feels like magic. https://t.co/QXGaqyRsjW","Dec 8, 11:31:06 PM EST"
-1865985343750807941,"RT @cb_doge: Remember when media outlets got caught using the same script? It’s a clear sign they’re controlled by the same people.
-
-Share…","Dec 9, 12:02:28 AM EST"
-1865987078019764550,"Very important to hear this. Forward to friends.
- https://t.co/1wXTxaCsAY","Dec 9, 12:09:22 AM EST"
-1865987156935590335,"RT @TheRabbitHole84: Japan's Fertility Rate has tanked and sits (below replacement levels) at 1.37 as of 2020. https://t.co/MPOkF2ncwv","Dec 9, 12:09:41 AM EST"
-1865987535563903234,"You are the media now.
-
-They are the past. https://t.co/eFxN6ou9Pq","Dec 9, 12:11:11 AM EST"
-1866125815353688306,"RT @esa: 📸 Today’s NASA/ESA Hubble Space Telescope picture features the glorious spiral galaxy NGC 5646.
-
-NGC 5643 is what’s known as a gra…","Dec 9, 9:20:39 AM EST"
-1866126146502291902,"RT @cb_doge: BREAKING: Starlink traffic tripled again in 2024 is another win for Elon Musk.
-
-Internet traffic from Starlink more than tripl…","Dec 9, 9:21:58 AM EST"
-1866128404099063918,"RT @teslaownersSV: "It's important that people have enough babies to support civilization. Civilization might die with a bang or with a whi…","Dec 9, 9:30:57 AM EST"
-1866130305209315505,"Yes https://t.co/9UvB6sQ1ob","Dec 9, 9:38:30 AM EST"
-1866136939247681617,"The Federal government computers & software are in such bad shape that they often cannot verify that payments are not fraud, waste or abuse!
-
-That’s why the government can’t pass basic audits. They often LITERALLY don’t know where your tax dollars wen","Dec 9, 10:04:52 AM EST"
-1866138186944070074,"Mind-blowing @USGAO report: https://t.co/YaA3o9ydU4","Dec 9, 10:09:49 AM EST"
-1866138446030414327,"Full report;
-https://t.co/NP971A6CeR","Dec 9, 10:10:51 AM EST"
-1866138600892514717,"This is so crazy https://t.co/gyXeJvwNYc","Dec 9, 10:11:28 AM EST"
-1866139423059919191,"RT @TheRabbitHole84: As of 2015: The United States Tax Code and Regulations are over 10 million words in length.
-
-In 1955 there were under…","Dec 9, 10:14:44 AM EST"
-1866140906904313948,"https://t.co/ZXVthRi2hi","Dec 9, 10:20:38 AM EST"
-1866145724406116631,"Some of the government software is over half a century old 🤯 https://t.co/E3dJG7a1SW","Dec 9, 10:39:46 AM EST"
-1866148574880309576,"The wellspring of the mind virus is academia https://t.co/LYVt6tG6YZ","Dec 9, 10:51:06 AM EST"
-1866149466438328351,"💯 https://t.co/CkWLBLIIre","Dec 9, 10:54:38 AM EST"
-1866151552617939319,"If we don’t fix the deficit, everything will suffer, including essential spending like DoD, Medicare & Social Security.
-
-It’s not optional. https://t.co/oxfZXuBXNB","Dec 9, 11:02:56 AM EST"
-1866151664731722139,"This seems cool https://t.co/gRdMCb1vRC","Dec 9, 11:03:22 AM EST"
-1866152110188048790,"🤨 https://t.co/KlSXWTaWLt","Dec 9, 11:05:09 AM EST"
-1866164316711403940,"The @xAI image generation system was developed internally in ~6 months https://t.co/yebgobBvFX","Dec 9, 11:53:39 AM EST"
-1866168854927593636,"The problem is that after the sheep are eaten, they will eat you & your family too https://t.co/GqIylzrmjC","Dec 9, 12:11:41 PM EST"
-1866171083113509175,"RT @ElonClipsX: Elon Musk on how he initially got into space: “I didn't understand why NASA had nothing about people going to Mars.”
-
-“The…","Dec 9, 12:20:32 PM EST"
-1866171570193838198,"Note: we are deleting the name of the internal @xAI image generation system (Aurora).
-
-Just think of Grok as doing anything.","Dec 9, 12:22:28 PM EST"
-1866172524708413895,"Optimus can now walk on highly variable ground using neural nets to control its electric limbs.
-
-Join @Tesla if you want to work on interesting real-world AI systems. https://t.co/C8J90Age5Y","Dec 9, 12:26:16 PM EST"
-1866176842153017775,"Try Grok image generation (codename Aurora) https://t.co/lIERe829Ul","Dec 9, 12:43:25 PM EST"
-1866177035732656305,"😂 https://t.co/bFKJc9c2rm","Dec 9, 12:44:11 PM EST"
-1866177878108623358,"The TSLAQ went Q https://t.co/WE3hGGY2tL","Dec 9, 12:47:32 PM EST"
-1866238005930868999,"RT @xai: https://t.co/mM0p2MmCa3","Dec 9, 4:46:28 PM EST"
-1866241669882134800,"I forgot to mention that Optimus was doing this while “blindfolded”. We haven’t yet made vision part of the control loop for uneven terrain.
-
-Optimus robots are regularly cruising around our workplace in Palo Alto where vision is used for static & dyn","Dec 9, 5:01:01 PM EST"
-1866242676917669909,"Getting ready for Flight 7 https://t.co/EabzblI6oF","Dec 9, 5:05:01 PM EST"
-1866269428192591984,"RT @grok: i’ve been working on my art skills","Dec 9, 6:51:19 PM EST"
-1866272797841867162,"The current administration is doing everything possible to prevent government efficiency, but @DOGE is inevitable https://t.co/yJMjZ19f7C","Dec 9, 7:04:43 PM EST"
-1866326388426387733,"Community Notes ftw again https://t.co/98c2VYcDYN","Dec 9, 10:37:40 PM EST"
-1866330994489631195,"This illustrates why the term “homeless” is misleading. The vast majority of those on the streets are there due to severe drug addiction and/or mental illness.
-
-The issue not that they got a little behind in their mortgage payments and would be back on t","Dec 9, 10:55:58 PM EST"
-1866331078312775992,"Yes https://t.co/6K60nYJsLm","Dec 9, 10:56:18 PM EST"
-1866331385675579833,"😂 https://t.co/pAp8q9BJL7","Dec 9, 10:57:31 PM EST"
-1866338423252127764,"Time to clean up this humongous mess! https://t.co/90RtL0vIsq","Dec 9, 11:25:29 PM EST"
-1866349371840942433,"RT @ElonClipsX: Elon Musk: Creating wealth should be applauded.
-
-“If one creates wealth or creates great products and services, that is som…","Dec 10, 12:08:59 AM EST"
-1866349595900461392,"Grok only gets better from here. A lot better. https://t.co/NkNmaVOoqT","Dec 10, 12:09:53 AM EST"
-1866355894470197564,"Banger 😂 https://t.co/PH0xWzc2x7","Dec 10, 12:34:55 AM EST"
-1866360383180558364,"RT @teslaownersSV: “At its heart, wokeness is divisive, exclusionary, and hateful. It basically gives mean people a shield to be mean and c…","Dec 10, 12:52:45 AM EST"
-1866362318768271707,"Interesting https://t.co/n1KTFEPNvU","Dec 10, 1:00:26 AM EST"
-1866362718703513903,"RT @SawyerMerritt: NEWS: @xai has released a new blog about their next-generation image generator.
-
-"We've enhanced Grok's image generation…","Dec 10, 1:02:02 AM EST"
-1866362998899478769,"Subscribe to 𝕏 @premium! https://t.co/4gZXf0Qown","Dec 10, 1:03:08 AM EST"
-1866364783240343728,"RT @cb_doge: "Thank you everyone who is a paid subscriber on 𝕏. It's really important because otherwise we're totally beholden to the adver…","Dec 10, 1:10:14 AM EST"
-1866365811977511176,"The “save the homeless” NGOs are often paid according to how many homeless people are on the streets, thus creating a strong financial incentive for them to maximize the number of homeless people and never actually solve the problem!
-
-Incentives explain o","Dec 10, 1:14:19 AM EST"
-1866366196146442586,"The crazy thing is that they thought I was crazy for stating this super obvious prediction
- https://t.co/OK0akTRj3E","Dec 10, 1:15:51 AM EST"
-1866369827897475436,"Cool https://t.co/z0MGgi1WGT","Dec 10, 1:30:17 AM EST"
-1866371441895301583,"RT @DogecoinNorway: Love Grok!! I asked to show me a Viking before and after coffee 🤣🔥 and yeah good morning ⚒️ https://t.co/4HCwrVgbFN","Dec 10, 1:36:41 AM EST"
-1866371713518231581,"Yeah, major problem https://t.co/tXLGyTRRwB","Dec 10, 1:37:46 AM EST"
-1866371895110799629,"RT @TheRabbitHole84: Thomas Sowell nails it. A lot of activism is performative, useless, and often counterproductive. https://t.co/vG18VLU3…","Dec 10, 1:38:29 AM EST"
-1866372832592277676,"Yup. That obviously needs to stop. https://t.co/VF5ZWDUaS9","Dec 10, 1:42:13 AM EST"
-1866375414311997951,"Demented nightmare fuel 🤣🤣 https://t.co/di2K5FZpDK","Dec 10, 1:52:29 AM EST"
-1866376550024610087,"RT @ElonClipsX: Elon Musk explains why AI could be capable of discovering new physics.
-
-“You can think of intelligence like a compression p…","Dec 10, 1:56:59 AM EST"
-1866383128425808251,"We should unwind this imo https://t.co/LjvRwNovZa","Dec 10, 2:23:08 AM EST"
-1866384370044686522,"Grok image gen banger 😂 https://t.co/3o57lgp6aI","Dec 10, 2:28:04 AM EST"
-1866384589784006738,"Amazing 🤩 https://t.co/tv5imVy2CT","Dec 10, 2:28:56 AM EST"
-1866385116572143626,"In the style of Banksy https://t.co/HT4hBEN8iB","Dec 10, 2:31:02 AM EST"
-1866385346780676412,"RT @cb_doge: Grok designed Elon Musk as a Diablo character. 🔥 https://t.co/g1XpOOVRVw","Dec 10, 2:31:57 AM EST"
-1866385485364330629,"Yup https://t.co/QdgyDfeoZ8","Dec 10, 2:32:30 AM EST"
-1866387012405862779,"RT @0x_ale: Mike Benz just revealed everything.
-
-On JRE, he exposed:
-
-- Why USAID is a tool for control, not aid
-- How “democracy” was rede…","Dec 10, 2:38:34 AM EST"
-1866387766134591612,"RT @teslaownersSV: Subscribing to 𝕏 premium is money well spent. The best value on the internet.","Dec 10, 2:41:33 AM EST"
-1866389430854172738,"Create awesome memes super fast using Grok!
-
-Just tap on the square with the slash. https://t.co/o41mUudbzr https://t.co/kT0Bk2odcX","Dec 10, 2:48:10 AM EST"
-1866389729878618336,"Interesting https://t.co/wGd3UQLb0H","Dec 10, 2:49:22 AM EST"
-1866389864842666421,"RT @AutismCapital: This is awesome and it's currently the worst it's ever going to be. Only gets better from here. https://t.co/1JcT5lKXTu","Dec 10, 2:49:54 AM EST"
-1866391440059941316,"I don’t read the legacy news anymore.
-
-It’s just sadness-generating propaganda. https://t.co/jJ80qWI7e5","Dec 10, 2:56:09 AM EST"
-1866391527448252459,"RT @KatiaEarth: How Grok found out 😂 Grok's ability to create memes is insanely good with its new image generation capabilities. The prompt…","Dec 10, 2:56:30 AM EST"
-1866391623741177886,"😂 https://t.co/IULZGTQHc8","Dec 10, 2:56:53 AM EST"
-1866391818109128946,"RT @teslaownersSV: "I don't really think about brand optimization, to be frank, as is obvious from my tweets, which are often self-inflicte…","Dec 10, 2:57:39 AM EST"
-1866394500949541007,"Interesting question for Grok https://t.co/MA5yve5GmE","Dec 10, 3:08:19 AM EST"
-1866395249263689733,"RT @cb_doge: I made this meme using Grok 😂 https://t.co/pVZWXjO0DA","Dec 10, 3:11:18 AM EST"
-1866398415350882423,"RT @alsiens: 420","Dec 10, 3:23:52 AM EST"
-1866399862918398464,"Not generated by AI https://t.co/tcnTpReLgV","Dec 10, 3:29:38 AM EST"
-1866401934875165042,"You can also upload any image to Grok, including memes, and it will explain what they mean
- https://t.co/tfM8k63AJu","Dec 10, 3:37:52 AM EST"
-1866402049421976007,"RT @HSajwanization: Subscribe to 𝕏 Premium, it is the best product !","Dec 10, 3:38:19 AM EST"
-1866403114074656854,"RT @SenMikeLee: Great to meet with @PeteHegseth and his wonderful wife Jennifer.
-
-Pete knows that the US military is for defending America…","Dec 10, 3:42:33 AM EST"
-1866404846980505926,"RT @cremieuxrecueil: Obama's senior healthcare adviser, David Cutler, was excellent. Today I remember that this book Quality Cure had lots…","Dec 10, 3:49:26 AM EST"
-1866404977775607834,"Yes https://t.co/NoyFOYufpo","Dec 10, 3:49:57 AM EST"
-1866405062357946667,"RT @tingchenai: Our goal is bit stream in and bit stream out","Dec 10, 3:50:17 AM EST"
-1866406564984439272,"RT @cb_doge: Trust in the media has been steadily declining over the past four years—it’s fallen off a cliff.
-
-𝕏 is the media now.
-
- https:…","Dec 10, 3:56:15 AM EST"
-1866406780047143149,"RT @BreannaMorello: Former NYC Mayor @BilldeBlasio gave his wife $850 million of tax payer $$$ to end the homeless crisis in NYC.
-
-Homeless…","Dec 10, 3:57:07 AM EST"
-1866407960903025037,"Kapow 💥 https://t.co/FLU9W2VmxJ","Dec 10, 4:01:48 AM EST"
-1866410496674701730,"RT @joeroganhq: We are. 🤘🏼🇺🇸","Dec 10, 4:11:53 AM EST"
-1866412098512900138,"RT @WholeMarsBlog: Tesla FSD 13.2 is really close to being able to exit a paid parking garage without any takeover / human intervention req…","Dec 10, 4:18:15 AM EST"
-1866412720850878474,"You can upload anything from a phone picture of your blood test results to an MRI or X-Ray and Grok will analyze it for you https://t.co/PGaIGFZ5jE","Dec 10, 4:20:43 AM EST"
-1866413765048349121,"RT @TheChiefNerd: 🔥 ROGAN: "The House released a 500 page report on COVID-19 pandemic key findings ... The Select Subcommittee on Coronavir…","Dec 10, 4:24:52 AM EST"
-1866416666071978464,"Starlink now in Cape Verde https://t.co/Ow2ZN84OKn","Dec 10, 4:36:24 AM EST"
-1866418243063390282,"You can ask Grok questions about any current events and receive an accurate response with as much detail as you’d like
-
- https://t.co/BPy6SytbzP","Dec 10, 4:42:40 AM EST"
-1866420882765238482,"Yes https://t.co/XnwFqWIf19","Dec 10, 4:53:09 AM EST"
-1866421366284853357,"You are the media now https://t.co/gVq318PZmA","Dec 10, 4:55:04 AM EST"
-1866468188705194494,"RT @luismbat: Papers should have a 'Backstory' section, like an 'Abstract,' where authors share how they ended up working on their paper.…","Dec 10, 8:01:08 AM EST"
-1866469246924157008,"Exactly https://t.co/pmQPfnoQko","Dec 10, 8:05:20 AM EST"
-1866469902762267058,"RT @matteosalvinimi: Provare a impedire a lavoratori e cittadini di essere potenzialmente connessi con rete satellitare tramite Starlink so…","Dec 10, 8:07:56 AM EST"
-1866470684429320271,"The @boringcompany could do it for 1000X less money https://t.co/IXJY63xUCo","Dec 10, 8:11:03 AM EST"
-1866471246919287049,"RT @teslaownersSV: “We should be cautious about the gradual creep of regulations bureaucracy. Rules and regulations are immortal.”
-Elon Mus…","Dec 10, 8:13:17 AM EST"
-1866473885178139131,"Yes https://t.co/8Q1UaJgPuW","Dec 10, 8:23:46 AM EST"
-1866474484196163886,"Thanks for fighting for sanity! https://t.co/stBqVghCHA","Dec 10, 8:26:09 AM EST"
-1866477597804368039,"In most cases, the word “homeless” is a lie.
-
-It’s usually a propaganda word for violent drug addicts with severe mental illness. https://t.co/Vwp8L7tNzd","Dec 10, 8:38:31 AM EST"
-1866478605213085796,"RT @C__Herridge: TOP LINE: @Kash_Patel Reporting Most Media Missed
-
-With Kash Patel’s nomination to lead the FBI, an independent watchdog…","Dec 10, 8:42:31 AM EST"
-1866481054829195693,"RT @teslaownersSV: "What ended most civilizations is low birth rate. An extended period of prosperity causes birth rates to plummet. When a…","Dec 10, 8:52:15 AM EST"
-1866483884109500900,"https://t.co/SzmrFjL3cZ","Dec 10, 9:03:30 AM EST"
-1866484798547542255,"Subscribe now! https://t.co/NrLD226AqD","Dec 10, 9:07:08 AM EST"
-1866485009789681907,"Grok image generation just got a major upgrade https://t.co/oOJ3qEjedW","Dec 10, 9:07:58 AM EST"
-1866485640524693888,"Wow https://t.co/biY9nkObcE","Dec 10, 9:10:28 AM EST"
-1866486518157578396,"RT @amuse: DEMOCRACY? The EU doesn’t trust the European people enough to let them vote for their leaders. In their view, the people (half o…","Dec 10, 9:13:58 AM EST"
-1866531023745405119,"RT @thehonestlypod: Marc Andreessen (@pmarca) says he attended “absolutely horrifying” meetings where Biden’s government vowed to take “com…","Dec 10, 12:10:49 PM EST"
-1866532510529884188,"Try making memes and uploading any image for an explanation of what it means. Literally anything. https://t.co/Te7zAqc8TU","Dec 10, 12:16:43 PM EST"
-1866532564040614302,"RT @TheRabbitHole84: Grok 🔥 🔥 https://t.co/d7dmCa93om","Dec 10, 12:16:56 PM EST"
-1866532973513978074,"RT @america: Open border policies not only endanger our communities but they have also been costing taxpayers over $100 billion annually fo…","Dec 10, 12:18:34 PM EST"
-1866534062816473106,"https://t.co/IMXXlfcr4h","Dec 10, 12:22:53 PM EST"
-1866535236840067407,"RT @pbeisel: https://t.co/KeudyzuHvu","Dec 10, 12:27:33 PM EST"
-1866536009833361915,"RT @amuse: https://t.co/kUBYaLSItk","Dec 10, 12:30:37 PM EST"
-1866571568266219998,"This is awesome 🚀🇺🇸 https://t.co/v7CgpLcaLr","Dec 10, 2:51:55 PM EST"
-1866572304320466985,"RT @chamath: Meanwhile the State of California is going to spend almost double this ($35B) to build a 171 mile stretch of rail between Merc…","Dec 10, 2:54:51 PM EST"
-1866617138540319193,"😂 https://t.co/Qi11zInDzx","Dec 10, 5:53:00 PM EST"
-1866678536607764942,"Turns out you do actually need to prosecute crime who knew 🤷♂️ https://t.co/NWhgpOP0EN","Dec 10, 9:56:58 PM EST"
-1866679379511873851,"Very important concept! https://t.co/EAzvzobmTh","Dec 10, 10:00:19 PM EST"
-1866679846254022719,"Lies are quickly corrected on this platform https://t.co/K4mB2AwHK2","Dec 10, 10:02:11 PM EST"
-1866680095123050544,"True https://t.co/oBGld0I0vY","Dec 10, 10:03:10 PM EST"
-1866696773210869960,"Team is grinding super hard https://t.co/6QrA6MMEgN","Dec 10, 11:09:26 PM EST"
-1866756038797692948,"116 https://t.co/oYAoPAOmf4","Dec 11, 3:04:56 AM EST"
-1866761437307363465,"RT @spaceXrave: @jasondebolt One of my favourite things about Grok is when you accidentally leave on fun mode, and it still delivers a soli…","Dec 11, 3:26:24 AM EST"
-1866761662218506692,"Wow, congratulations @JMilei 🇦🇷🇦🇷🇦🇷 https://t.co/XtuVMZnfAt","Dec 11, 3:27:17 AM EST"
-1866762987329257749,"RT @Tesla: Why @ckuehmann upgraded to the new Model 3 https://t.co/KSyf5NxRZk","Dec 11, 3:32:33 AM EST"
-1866763241420099734,"RT @KettlebellDan: grok perfectly drew my daughter’s Christmas cybertruck drawing
-
-if you haven’t tried grok images yet you’re missing out…","Dec 11, 3:33:34 AM EST"
-1866763830803697847,"Government overspending is what causes inflation.
-
-If government waste is stopped, there will be no inflation. https://t.co/s7DcCRbR8U","Dec 11, 3:35:54 AM EST"
-1866764061255537096,"Great https://t.co/yZKKilPqpo","Dec 11, 3:36:49 AM EST"
-1866765013429653627,"Teslas have the highest amount of American content https://t.co/nDtH5i4z0O","Dec 11, 3:40:36 AM EST"
-1866766638953140733,"Nothing would do more to improve the health, lifespan and quality of life for Americans than making GLP inhibitors super low cost to the public.
-
-Nothing else is even close. https://t.co/SNGcxzkcqE","Dec 11, 3:47:04 AM EST"
-1866771100828569888,"Based. https://t.co/h3T2HrGKSl","Dec 11, 4:04:48 AM EST"
-1866771519759847694,"99% of cars will be electric and autonomous in the future.
-
-Manually-driven gasoline cars will be like riding a horse while using a flip phone. Still happens, but it’s rare. https://t.co/4WN9Q9nrEW","Dec 11, 4:06:27 AM EST"
-1866773267060756677,"Yes! https://t.co/YOw0uZUE74","Dec 11, 4:13:24 AM EST"
-1866774097482617344,"Grok is BasedGPT https://t.co/DmJx2sOifS","Dec 11, 4:16:42 AM EST"
-1866774664795902183,"RT @teslaownersSV: 𝕏 is the only news app I have and trust. https://t.co/Ty7dg80xZB","Dec 11, 4:18:57 AM EST"
-1866775246365397025,"Wow https://t.co/YLBoNmKGbZ","Dec 11, 4:21:16 AM EST"
-1866775719772295377,"RT @MarioNawfal: 🚨LESS THAN 1% OF EV OWNERS GO BACK TO GAS
-
-A global survey of 23,000 EV drivers shows gas-powered cars are becoming the ex…","Dec 11, 4:23:09 AM EST"
-1866776699817562609,"Searches for @Grok, made by @xAI, just exceeded 50% of searches for ChapGPT https://t.co/FiJoUL51uL","Dec 11, 4:27:02 AM EST"
-1866777781646020857,"A Grok button to proofread and offer enhancements to your posts, including images, is coming https://t.co/YgEIowkpdi","Dec 11, 4:31:20 AM EST"
-1866777957374837107,"On web for now, but coming to phones soon https://t.co/dGXPomNUKc","Dec 11, 4:32:02 AM EST"
-1866778082566340732,"You are the media now https://t.co/CVwQqrIuHw","Dec 11, 4:32:32 AM EST"
-1866778364595540033,"RT @teslaownersSV: I’ve gifted 3 family members with 𝕏 premium.
-
-You are sharing the most truthful app. You won’t regret it.","Dec 11, 4:33:39 AM EST"
-1866778832394727428,"😂💯 https://t.co/ucLiquAInS","Dec 11, 4:35:31 AM EST"
-1866783835507302881,"A lot of people will complain about this post, but I am right","Dec 11, 4:55:24 AM EST"
-1866784505849319587,"Chapgpt 🤣🤣","Dec 11, 4:58:04 AM EST"
-1866785401043816889,"RT @EMostaque: Fibre broadband cut out, looks like it will be a few days to repair 🧑🔧
-
-System flipped to @Starlink backup, have seamlessl…","Dec 11, 5:01:37 AM EST"
-1866786027316318446,"RT @BillyM2k: legacy media whenever elon says “you are the media now” https://t.co/Kx6sdafsmy","Dec 11, 5:04:06 AM EST"
-1866786067539710358,"RT @DogecoinNorway: @BillyM2k Haha 🤣🔥 https://t.co/SzJCwW9P5Y","Dec 11, 5:04:16 AM EST"
-1866787090102620304,"🔥🤣 https://t.co/oR8Im9AwT6","Dec 11, 5:08:20 AM EST"
-1866790453326328272,"RT @techdevnotes: Grok's Explain this post feature is now live for everyone!
-
-@xAI https://t.co/ntIvCIzP0N","Dec 11, 5:21:42 AM EST"
-1866793797793010009,"RT @teslaownersSV: It appears that, when civilizations are under stress, the birth rate is high, but as soon as they have no external enemi…","Dec 11, 5:34:59 AM EST"
-1866794560908837165,"RT @WallStreetMav: Our school system is being strangled by bureaucracy. https://t.co/w7XHyZPsAX","Dec 11, 5:38:01 AM EST"
-1866797259968614885,"arXiv papers mentioning @Grok in the abstract https://t.co/zwl0MGU0og","Dec 11, 5:48:44 AM EST"
-1866797406534373808,"Absolutely crucial https://t.co/hgsRLXU2SI","Dec 11, 5:49:19 AM EST"
-1866797787251347479,"No, I definitely melted it down 1000% https://t.co/20R38Qgk5B","Dec 11, 5:50:50 AM EST"
-1866800389619847653,"Beautiful https://t.co/fsYDZEGoV1","Dec 11, 6:01:11 AM EST"
-1866801801984610448,"RT @cb_doge: Subscribing to 𝕏 Premium is the only way to ensure that major advertisers cannot demand censorship on this platform.
-
-Please s…","Dec 11, 6:06:47 AM EST"
-1866802650052002019,"RT @OwenSparks_: Imagine Optimus with its personality / human interaction powered by Grok 🔥 https://t.co/kHy73Hp9he","Dec 11, 6:10:09 AM EST"
-1866803379726614878,"Consider joining the @Tesla_AI team to build the best real-world AI https://t.co/KiZPsNf5sO","Dec 11, 6:13:03 AM EST"
-1866805229800554753,"Did you know about 𝕏 Radar to measure trends?
-
-https://t.co/7pJvoUFyRj
-
-You can use it to track mentions of technologies, products, stocks or anything. https://t.co/nYN3grXZvV","Dec 11, 6:20:25 AM EST"
-1866805815065317640,"RT @WholeMarsBlog: Yesterday I drove my two Teslas, my girlfriend’s Tesla, my Dad’s Tesla, and my friends old Tesla that we’re selling.
-
-A…","Dec 11, 6:22:44 AM EST"
-1866806058104263134,"RT @SawyerMerritt: NEWS: Tesla's Orlando center delivered a record 60 cars yesterday.","Dec 11, 6:23:42 AM EST"
-1866806614717763694,"Radar https://t.co/IiOgl8lvcd","Dec 11, 6:25:55 AM EST"
-1866808742647591198,"Shame on them. Every victim of such crimes should sue the board members in their individual capacity. https://t.co/e0qgxeqDWt","Dec 11, 6:34:22 AM EST"
-1866867398307111256,"❤️ https://t.co/f9ygzmHklW","Dec 11, 10:27:27 AM EST"
-1866867763425447955,"Using laser eyes from space","Dec 11, 10:28:54 AM EST"
-1866868844268290455,"And then reforged it before anyone noticed","Dec 11, 10:33:11 AM EST"
-1866879361762332819,"Gail is right https://t.co/hxgDsZeto5","Dec 11, 11:14:59 AM EST"
-1866917471216898403,"😂 https://t.co/qKbJdySEna","Dec 11, 1:46:25 PM EST"
-1866918996291059924,"Wow, extremely illegal! https://t.co/OzbmHmPIok","Dec 11, 1:52:29 PM EST"
-1866925837678940390,"RT @JamesLucasIT: I used Grok's new image generation model to reinterpret Greek myths and epic poems.
-
-The results are stunning - a thread…","Dec 11, 2:19:40 PM EST"
-1866926291590713567,"RT @SawyerMerritt: Tesla's Mezcal alcoholic spirit will restock in the U.S. tomorrow, December 12th, priced at $450.
-
-"Our limited-release…","Dec 11, 2:21:28 PM EST"
-1866932651577516127,"It was inevitable 😂 https://t.co/6RXIU8LQxe","Dec 11, 2:46:44 PM EST"
-1866935876921725427,"As foretold in the prophecy 🙏 https://t.co/1SaMvlfvpd","Dec 11, 2:59:33 PM EST"
-1866939710276505977,"🚀🚀 https://t.co/vlToq3FG8h","Dec 11, 3:14:47 PM EST"
-1866967549033975813,"🤣🤣 https://t.co/V1AfipWHZE","Dec 11, 5:05:24 PM EST"
-1867005549830869481,"One of the most fundamental questions https://t.co/zu5AVR6uzP","Dec 11, 7:36:25 PM EST"
-1867010421707903340,"Now in Nauru https://t.co/00YTwdgync","Dec 11, 7:55:46 PM EST"
-1867045945948692521,"RT @realDonaldTrump: The resignation of Christopher Wray is a great day for America as it will end the Weaponization of what has become kno…","Dec 11, 10:16:56 PM EST"
-1867058463374758092,"https://t.co/MJT5FBUxLH","Dec 11, 11:06:40 PM EST"
-1867059217560990011,"Preparing for Starship 7 https://t.co/nFSqPGbFWw","Dec 11, 11:09:40 PM EST"
-1867059999702147073,"Absolutely https://t.co/IUSIDcuZ2u","Dec 11, 11:12:46 PM EST"
-1867063655235301484,"🇺🇸🇺🇸 Extremely True 🇺🇸🇺🇸 https://t.co/HuqwHlnvRh","Dec 11, 11:27:18 PM EST"
-1867067649471177056,"The truth,
-the whole truth
-and nothing but the truth
-
-is critical to the evaluation of any AI model","Dec 11, 11:43:10 PM EST"
-1867067924449726635,"Community Notes ftw again https://t.co/oz9JDpKUOM","Dec 11, 11:44:16 PM EST"
-1867068722638127588,"How ironic that the legacy media & “experts” were predicting that this platform would be the one to go offline","Dec 11, 11:47:26 PM EST"
-1867069187715371249,"RT @cb_doge: You can view real-time stock prices on 𝕏 https://t.co/mu2yHAYqeH","Dec 11, 11:49:17 PM EST"
-1867069658228052339,"Idiocracy is happening sooner than expected https://t.co/ULhAuGeEsJ","Dec 11, 11:51:09 PM EST"
-1867072151934677231,"Great idea https://t.co/HVNo6YV29m","Dec 12, 12:01:04 AM EST"
-1867072516944273476,"https://t.co/MSFOx5YmWI","Dec 12, 12:02:31 AM EST"
-1867074698598834440,"🤨 https://t.co/NasWgxdtvd","Dec 12, 12:11:11 AM EST"
-1867079001581490461,"🇦🇪 🇦🇪🇦🇪 https://t.co/mIcpQ8dJSF","Dec 12, 12:28:17 AM EST"
-1867079092690169891,"RT @ElonClipsX: Elon Musk: Adherence to truth is the most important principle for AI.
-
-“At a certain point, the AI will be smarter than all…","Dec 12, 12:28:39 AM EST"
-1867079265516413125,"Cool https://t.co/Se0YUZjVUZ","Dec 12, 12:29:20 AM EST"
-1867079795382550829,"Legacy media viewership drops while 𝕏 rises https://t.co/2BpoMsDmdH","Dec 12, 12:31:26 AM EST"
-1867081796128514495,"RT @ElonClipsX: Elon Musk, 13 years ago: Humanity needs inspiring things like going to the moon.
-
-“Landing on the moon is regarded as one o…","Dec 12, 12:39:23 AM EST"
-1867081960666894413,"RT @Starlink: Starlink Mini is now available in Canada! 🛰️🇨🇦❤️
-
-Easy to order online in minutes → https://t.co/fUko3xSviJ","Dec 12, 12:40:02 AM EST"
-1867083496751251759,"Grok can even tell from a photograph which is real or counterfeit money https://t.co/TWCX1Z4VT0","Dec 12, 12:46:09 AM EST"
-1867086512283848897,"https://t.co/p4wVUCvYPx","Dec 12, 12:58:07 AM EST"
-1867089978267693408,"Let us know about wasteful government spending and unnecessary regulations! https://t.co/eOd7zJItVP","Dec 12, 1:11:54 AM EST"
-1867090918320263454,"RT @BasedMikeLee: Federal campaign-finance laws apparently apply only to Republicans
-
-And exist to help Democrats","Dec 12, 1:15:38 AM EST"
-1867091033768460740,"RT @amconmag: Democrat Rep. Ro Khanna:
-
-"When you look at the IG Report about Boeing getting $150,000 for soap dispensers... There is a lot…","Dec 12, 1:16:05 AM EST"
-1867093140089475523,"Absolutely https://t.co/BIR0gODtMU","Dec 12, 1:24:28 AM EST"
-1867095130156814471,"RT @Tesla_Megapack: Now operating - Eland 1, a hybrid solar + Megapack project, owned and operated by Arevon
-
-This is the first project dep…","Dec 12, 1:32:22 AM EST"
-1867095342992294158,"RT @Teslaconomics: One investment advice by Elon Musk that I live and die by https://t.co/iYxZBK8Pbb","Dec 12, 1:33:13 AM EST"
-1867095416954904636,"RT @ElonFactsX: Elon Musk on our existence:
-
-“There's a lot we don't know. Why does reality exist? Where did it come from? Where are the al…","Dec 12, 1:33:31 AM EST"
-1867095557690241148,"It’s awesome https://t.co/gh8lG8WVSX","Dec 12, 1:34:04 AM EST"
-1867098628143088070,"Absolutely https://t.co/wfqCK3kGjr","Dec 12, 1:46:16 AM EST"
-1867105447586472081,"RT @MarioNawfal: 🚨OVERTON WINDOW SHATTERED: TARANTINO TALKS J6 ON ROGAN
-
-Cultural shift alert: Oscar winner and podcast king casually discu…","Dec 12, 2:13:22 AM EST"
-1867105657201062338,"RT @dvorahfr: Hey did you notice !
-@grok offers us two image variations now.
-And at the bottom of the page Grok also gives us two ideas for…","Dec 12, 2:14:12 AM EST"
-1867171949723439545,"RT @DOGE: DOGE is undergoing a serious analysis of wasteful and burdensome regulations, and is looking for public feedback!
-
-Which are th…","Dec 12, 6:37:37 AM EST"
-1867171993516212274,"RT @VivekGRamaswamy: The Supreme Court has held that any regulation implicating a “major” economic or policy question must be passed by Con…","Dec 12, 6:37:48 AM EST"
-1867174932125224980,"RT @amuse: PARDON? Biden’s goal is to give the most pardons in history,.. https://t.co/TXuhoaUhID","Dec 12, 6:49:28 AM EST"
-1867176280401285193,"RT @amuse: DOGE: Biden is spending millions to teach Afghans to weave? https://t.co/b6vpcovnYp","Dec 12, 6:54:50 AM EST"
-1867179052949221648,"There are thousands of ridiculous rules like this https://t.co/smVtjISWaR","Dec 12, 7:05:51 AM EST"
-1867179928271397157,"RT @GailAlfarATX: America’s tax dollars, the money you work hard for is being used this way:
-~ $15 million to Afghanistan to teach carpet…","Dec 12, 7:09:20 AM EST"
-1867180204885410104,"Wow https://t.co/08Mdbj4Hr5","Dec 12, 7:10:26 AM EST"
-1867181072271761610,"Grok can explain meme jokes https://t.co/EsbDoy9vEQ","Dec 12, 7:13:52 AM EST"
-1867181697453916313,"RT @dogeofficialceo: Who let the DOGE out? https://t.co/DRjfg1ENTi","Dec 12, 7:16:21 AM EST"
-1867184119500976390,"RT @ashleevance: AI reading a PDF of a book instantly and knowing everything in it still gets me","Dec 12, 7:25:59 AM EST"
-1867184308298850510,"RT @pmarca: "A major stock exchange, icon of red-in-tooth-and-claw capitalism, spends several years ramming illegal DEI mandates into compa…","Dec 12, 7:26:44 AM EST"
-1867185389649133917,"RT @darren_stallcup: BREAKING CALIFORNIA: San Francisco Fillmore Safeway Closes Down After Promising To Stay Open After Massive Public Back…","Dec 12, 7:31:02 AM EST"
-1867185698056327168,"With significant continued work, I think it is possible for people to walk and use their arms again https://t.co/h6JhEzT6IM","Dec 12, 7:32:15 AM EST"
-1867186574280278040,"The SEC is just another weaponized institution doing political dirty work https://t.co/5w9ajcS6bf","Dec 12, 7:35:44 AM EST"
-1867188665102835976,"Puberty blockers are a horrific crime against children and those who push them are criminals https://t.co/IdAr0KV5gl","Dec 12, 7:44:03 AM EST"
-1867189999298322495,"RT @karolineleavitt: EPIC. https://t.co/X4llj5CF75","Dec 12, 7:49:21 AM EST"
-1867194720817983775,"RT @farzyness: Tesla FSD v13 is Mind-Blowing
-
-With @WholeMarsBlog & @HansCNelson
-
-Chapters
-00:00 Teaser
-01:27 How good is v13
-06:55 Safety…","Dec 12, 8:08:06 AM EST"
-1867196643474579921,"Unreal https://t.co/UjGhsOcNe1","Dec 12, 8:15:45 AM EST"
-1867196702865674450,"RT @cb_doge: Every citizen journalist who fought the legacy media narrative and spread the truth this election is the Person of the Year.…","Dec 12, 8:15:59 AM EST"
-1867196883258798172,"RT @piersmorgan: *DROPPING TONIGHT*
-A riveting and very revealing 90-minute interview with the mercurial tech billionaire @peterthiel - o…","Dec 12, 8:16:42 AM EST"
-1867197028599582942,"Concerning https://t.co/GOW3OWvPO9","Dec 12, 8:17:17 AM EST"
-1867201851956793523,"The most ironic outcome is the most likely https://t.co/A63PYW0b8w","Dec 12, 8:36:27 AM EST"
-1867202431571874020,"RT @teslaownersSV: There's a tremendous gap between something done by government with $billions, and private companies achieving the same s…","Dec 12, 8:38:45 AM EST"
-1867203097791242340,"Justice will be served https://t.co/eyeTWIfB1z","Dec 12, 8:41:24 AM EST"
-1867203346337255669,"https://t.co/i0kAhf1w5q","Dec 12, 8:42:23 AM EST"
-1867204211441651796,"Our civilization must pass the single planet extinction risk Great Filter https://t.co/dgrgC9kxBN","Dec 12, 8:45:49 AM EST"
-1867205125338452092,"RT @chrisparkX: Meta goes down and ironically announces on X to let the world know. 😂
-
-Tesla is up 69% year-to-date to reach the holy grail…","Dec 12, 8:49:27 AM EST"
-1867205727573450930,"Yes https://t.co/V0Ge03QlGs","Dec 12, 8:51:51 AM EST"
-1867207931361636545,"RT @Tesla: If you’re a parent, you will appreciate the fact that you can connect up to 2 pairs of headphones via Bluetooth to the rear disp…","Dec 12, 9:00:36 AM EST"
-1867213932009754806,"RT @matsuevogelpark: 一足早く、クリスマスが歩いてきました。
-
-#ケープペンギン #ペンギンサンタ https://t.co/w2GvXU0lsf","Dec 12, 9:24:27 AM EST"
-1867274525693686131,"Wow https://t.co/7NwlzM1k1Q","Dec 12, 1:25:13 PM EST"
-1867274859581256139,"What!? https://t.co/5QRqVIchKa","Dec 12, 1:26:33 PM EST"
-1867275058751647779,"RT @amuse: J6: There were a LOT of undercover assets at the Capitol on January 6th. Of the 26 CHSs identified by the OIG, 17 violated the l…","Dec 12, 1:27:20 PM EST"
-1867275162682573095,"RT @FutureJurvetson: GFTX
-Just past the fork in the road at the Tesla Gigafactory TX, Prufrock 3 tunneled under the highway to emerge insi…","Dec 12, 1:27:45 PM EST"
-1867280092650492273,"Yes https://t.co/im9bQ1e8Mu","Dec 12, 1:47:21 PM EST"
-1867280164272447761,"True
- https://t.co/p4wVUCvqZZ","Dec 12, 1:47:38 PM EST"
-1867280972838064170,"Ftw again https://t.co/HQq3KJaFvr","Dec 12, 1:50:50 PM EST"
-1867281240459464877,"Many such cases.
-
-If you give evil people a get-out-of-jail-free card, they will use it. https://t.co/h7Ls7I1HDL","Dec 12, 1:51:54 PM EST"
-1867284012299170264,"RT @DogecoinNorway: The best way to support creators on X is to follow and subscribe to everyone you can. 🔥 So nice to see X open up subscr…","Dec 12, 2:02:55 PM EST"
-1867284191538266187,"RT @tesla_na: "All I want for Xmas is Tesla Mezcal back in stock ..."
-
-Wish granted
-
-https://t.co/IL1NFcH8Oc","Dec 12, 2:03:38 PM EST"
-1867287987039744142,"Wow https://t.co/BKG4n9TYA6","Dec 12, 2:18:43 PM EST"
-1867288260722266328,"Legacy media lies https://t.co/fFNkdPhjR8","Dec 12, 2:19:48 PM EST"
-1867355191093473440,"The current system is incredibly inefficient, providing mediocre medical care at a high price https://t.co/WHikKQ1mgm","Dec 12, 6:45:45 PM EST"
-1867357433493872874,"Oh Gary, how could you do this to me? 🥹 https://t.co/OoooQI77ZS","Dec 12, 6:54:40 PM EST"
-1867357990140944434,"Asked @Grok to draw a picture of @GaryGensler. Very flattering, I think!
-
- https://t.co/NJnAj1nKIS","Dec 12, 6:56:53 PM EST"
-1867361658407977233,"Absolutely https://t.co/7d7RFmPUYj","Dec 12, 7:11:27 PM EST"
-1867361926793376138,"What’s the difference between a “right-wing conspiracy” and reality? About 6 months. https://t.co/NZTdG0zKdn","Dec 12, 7:12:31 PM EST"
-1867376059987190043,"RT @RepThomasMassie: 🚨 Today’s shocking DOJ IG report provides @realDonaldTrump with all he needs to pardon J6ers on day one. I urge him to…","Dec 12, 8:08:41 PM EST"
-1867378477915406493,"Insane https://t.co/2ypK6MqryJ","Dec 12, 8:18:18 PM EST"
-1867381424225128863,"Grok can now analyze posts on 𝕏.
-
-Update your app & tap on the slash icon.
-
-https://t.co/qRBL5pcSoS","Dec 12, 8:30:00 PM EST"
-1867382157078868416,"Your Tesla can now drive you from your house in one complex city to another house in a different complex city https://t.co/gnJgtv7aRS","Dec 12, 8:32:55 PM EST"
-1867382483714502670,"SpaceX HQ will now officially be in the city of Starbase, Texas! https://t.co/zpN4t3mJQT","Dec 12, 8:34:13 PM EST"
-1867393805822919101,"Grok now produces 4 images simultaneously & renders them progressively https://t.co/m38ukh3jyt","Dec 12, 9:19:12 PM EST"
-1867397887027523640,"𝕏 https://t.co/oZoIdzdzzZ","Dec 12, 9:35:25 PM EST"
-1867399025835511987,"https://t.co/gd1PutFWok","Dec 12, 9:39:57 PM EST"
-1867414209425735711,"https://t.co/c2C3fZaM9t","Dec 12, 10:40:17 PM EST"
-1867414958918480273,"https://t.co/UrLyHhdVIa","Dec 12, 10:43:15 PM EST"
-1867454261073944807,"Grok groks
-https://t.co/3j3VXBtkqF","Dec 13, 1:19:26 AM EST"
-1867454563013603349,"That is a crazy price per truck https://t.co/DnsD9uZN7B","Dec 13, 1:20:38 AM EST"
-1867460223918551415,"RT @cb_doge: Please support 𝕏. This platform is upholding our right to free speech.
-
-一 Sign up for 𝕏 Premium or Premium+
-一 Businesses, subs…","Dec 13, 1:43:07 AM EST"
-1867460957682696340,"Some gems in this thread 🥰😂 https://t.co/mzzPc2oDpb https://t.co/OTlyL57OJJ","Dec 13, 1:46:02 AM EST"
-1867466004898472173,"RT @GailAlfarATX: I've deleted my LinkedIn account and plan to only use X from here on out. LinkedIn was super fake feeling https://t.co/0d…","Dec 13, 2:06:06 AM EST"
-1867466392460537992,"Yes https://t.co/Jmo9Bu04xY","Dec 13, 2:07:38 AM EST"
-1867467755705745731,"RT @teslaownersSV: I’ve deleted all news apps except 𝕏.
-
-Legacy media has lied without accountability.
-
-𝕏 is the only app I trust with ne…","Dec 13, 2:13:03 AM EST"
-1867468395995967782,"Yes! https://t.co/JbzgFYCBWn","Dec 13, 2:15:36 AM EST"
-1867472125503975439,"RT @Rothmus: Still not over it. https://t.co/Hjk6sETfqd","Dec 13, 2:30:25 AM EST"
-1867476740408283531,"If we survive another ~8000 years, that will be a miracle https://t.co/BJ6U4Kg1Zo","Dec 13, 2:48:45 AM EST"
-1867476871782314194,"RT @EvaLovesDesign: Hello beautiful @SpaceX https://t.co/NrJWxHJvYa","Dec 13, 2:49:16 AM EST"
-1867477311433347504,"RT @charliekirk11: BREAKING: Texas Lt. Governor Dan Patrick says the state of Texas is prepared to buy up all of the border wall segments t…","Dec 13, 2:51:01 AM EST"
-1867478155767763038,"RT @AJamesMcCarthy: Still can’t believe I got to see this in person https://t.co/onVyRLlHkb","Dec 13, 2:54:23 AM EST"
-1867479072114348219,"Peter is right on all counts https://t.co/YIUCVJ6mXy","Dec 13, 2:58:01 AM EST"
-1867479462239252702,"Which means it must be true! https://t.co/MDZrkCI4W5","Dec 13, 2:59:34 AM EST"
-1867479883934576707,"https://t.co/SAB20BCkmX","Dec 13, 3:01:15 AM EST"
-1867480054315225478,"RT @Rothmus: He did this.
-
-@TheBabylonBee https://t.co/2ij0MQKvR2","Dec 13, 3:01:55 AM EST"
-1867480204488454263,"RT @Kristennetten: All of 2025 basically https://t.co/Piiv4LIrdx","Dec 13, 3:02:31 AM EST"
-1867482783335219209,"RT @MarioNawfal: 🇺🇸 PETER THIEL: ELON UNDERSTANDS RISK IN WAYS WE DON’T
-
-"Silicon Valley once thought Elon was crazy—starting Tesla, a car…","Dec 13, 3:12:46 AM EST"
-1867483091771576506,"RT @CathieDWood: As it aims for the moon and Mars, SpaceX is likely to enhance life on earth and transform the universe. On “In the Know”,…","Dec 13, 3:13:59 AM EST"
-1867483661194736114,"This is messed up https://t.co/UhA3CekTIz","Dec 13, 3:16:15 AM EST"
-1867486234387603630,"Have to say that @PathofExile is a hall-of-famer","Dec 13, 3:26:29 AM EST"
-1867489682449391933,"🎶 Regulators … Mount up! 🎶 https://t.co/uBuUPtbD3X","Dec 13, 3:40:11 AM EST"
-1867489896698433773,"RT @premium: What's your favorite Premium feature?","Dec 13, 3:41:02 AM EST"
-1867492852756099230,"Will send Gensler an original vinyl of this song","Dec 13, 3:52:47 AM EST"
-1867516311812608010,"Wow https://t.co/fTbKT6yTAg","Dec 13, 5:26:00 AM EST"
-1867516416976429147,"RT @amuse: FLASHBACK: Remember when Australia was just as free as America only with weird accents? That ended when they rounded up all the…","Dec 13, 5:26:25 AM EST"
-1867520973966098523,"Recycling is pointless https://t.co/vQZrnsHrVr","Dec 13, 5:44:31 AM EST"
-1867521917114020136,"RT @SenRickScott: Since taking office, @JoeBiden has added $2.14 TRILLION PER YEAR to our national debt.
-
-Here’s what that means for you…","Dec 13, 5:48:16 AM EST"
-1867521993618174036,"RT @VivekGRamaswamy: Debt-fueled government spending causes inflation which is an invisible tax. Government overregulation depresses econom…","Dec 13, 5:48:34 AM EST"
-1867522120017719303,"RT @MarioNawfal: 🚨🇺🇸 VIVEK: DOGE IS BRING SOMETHING NOVEL TO THE TABLE IN D.C... READING THE LAW!
-
-"Here’s a novel idea that DOGE is bringi…","Dec 13, 5:49:04 AM EST"
-1867523589328839139,"Yup 😂 https://t.co/3tlXSCKvud","Dec 13, 5:54:55 AM EST"
-1867527765005853030,"It’s annoying when Chomsky is right https://t.co/kuE55HwnFE","Dec 13, 6:11:30 AM EST"
-1867528665438847252,"It’s true https://t.co/5gGUXpfebo","Dec 13, 6:15:05 AM EST"
-1867528889213280454,"The simulation difficulty is set to extremely hard … but not impossible https://t.co/0DcrSvksb8","Dec 13, 6:15:58 AM EST"
-1867530701299757402,"RT @ABZayed: لغة عالمية تربطنا جميعا
-
-@UAENOrchestra https://t.co/JkAuqbLBSc","Dec 13, 6:23:10 AM EST"
-1867531535517462931,"Try making images with Grok! https://t.co/tHQpIoI7Le","Dec 13, 6:26:29 AM EST"
-1867535902693896356,"RT @GregAbbott_TX: This is excellent.
-
-Starbase, Texas.
-
-The official HQ for @SpaceX
-
-Proud to have you in Texas!","Dec 13, 6:43:50 AM EST"
-1867639569245778174,"lmao https://t.co/6rqA3z3Xg4","Dec 13, 1:35:47 PM EST"
-1867639897051574729,"Record-breaking usage of 𝕏! https://t.co/n2twrDjSxt","Dec 13, 1:37:05 PM EST"
-1867640454348779717,"Best memes of last week https://t.co/9fbpTeZ5ZD","Dec 13, 1:39:18 PM EST"
-1867649782657036386,"RT @SawyerMerritt: Tesla has launched a Levitating Cybertruck for $250.
-
-“Collector’s edition 1:24 scale model of Cybertruck that floats ab…","Dec 13, 2:16:22 PM EST"
-1867649848620581158,"RT @tvd33c: Here’s the story of how I made a bet with @elonmusk to get an 𝕏 tattoo if he beat Pit T150 in Diablo 4 in less than 2:33, how h…","Dec 13, 2:16:37 PM EST"
-1867650200292020432,"RT @johnkrausphotos: https://t.co/Z8HmkrDuAC","Dec 13, 2:18:01 PM EST"
-1867650416353198304,"RT @tesla_na: You spin me right round, @cybertruck, right round
-
-→ https://t.co/o3OsbgUBQU https://t.co/XNoujhmfQi","Dec 13, 2:18:53 PM EST"
-1867650936459419782,"Haha amazing 🔥🔥 https://t.co/Ck8wFQV5KU","Dec 13, 2:20:57 PM EST"
-1867651209609589102,"RT @OwenSparks_: Man, @Tesla really knows how to drain our bank accounts don't they 🥵 https://t.co/lq8JFfrbmZ","Dec 13, 2:22:02 PM EST"
-1867651367659352492,"True https://t.co/4FsEDetYai","Dec 13, 2:22:39 PM EST"
-1867651447376294117,"RT @teslaownersSV: Grok alone makes 𝕏 Premium worth it. https://t.co/oo3kUFWmOc","Dec 13, 2:22:58 PM EST"
-1867651521992962083,"RT @cb_doge: Citizen reporting from people on the scene or actually expert in a subject is the only way to know what’s really happening.
-
-I…","Dec 13, 2:23:16 PM EST"
-1867651713722986653,"RT @niccruzpatane: Which looks more like the future? https://t.co/xMZoJHPKfu","Dec 13, 2:24:02 PM EST"
-1867652149012001262,"YES! https://t.co/24yS9RASFj","Dec 13, 2:25:46 PM EST"
-1867652200199270763,"RT @DonaldJTrumpJr: Yet another “far right conspiracy theory” bites the dust. You paying attention yet?","Dec 13, 2:25:58 PM EST"
-1867652337906467013,"🎯 https://t.co/bWVqLb6O6y","Dec 13, 2:26:31 PM EST"
-1867652419687264672,"That is the goal https://t.co/PeOlDWqmNd","Dec 13, 2:26:50 PM EST"
-1867653187899207926,"Yes https://t.co/gsXqBwiPwQ","Dec 13, 2:29:53 PM EST"
-1867654115079426071,"Whoa https://t.co/BQ9xAIztHK","Dec 13, 2:33:35 PM EST"
-1867654503983722542,"American education has been broken for a quarter century https://t.co/BQ9xAIztHK","Dec 13, 2:35:07 PM EST"
-1867654712369230039,"Located in Bastrop, Texas https://t.co/vDLDqS2fyr","Dec 13, 2:35:57 PM EST"
-1867654871874515318,"RT @Rothmus: 🎯🎯🎯🎯 https://t.co/EXHphONLJx","Dec 13, 2:36:35 PM EST"
-1867655338272399595,"Wasn’t even using a macro lol https://t.co/nDb9REalB5","Dec 13, 2:38:26 PM EST"
-1867657413228151228,"💯 https://t.co/FNn7gMzBPF","Dec 13, 2:46:41 PM EST"
-1867657985390260654,"💡 https://t.co/YlbZJZt9fm","Dec 13, 2:48:57 PM EST"
-1867677365150855388,"RT @Brick_Suit: @charliekirk11 President Trump bringing Americans together! https://t.co/hoKswhRdPV","Dec 13, 4:05:58 PM EST"
-1867678444479205703,"Cool https://t.co/HqULPa7cCq","Dec 13, 4:10:15 PM EST"
-1867679319818211500,"Those in the matrix don’t yet understand that the matrix can be reprogrammed – indeed, that is the only path to victory.
-
-K Maru.","Dec 13, 4:13:44 PM EST"
-1867680058883944559,"Biggest vibe shift I’ve ever seen.
-
-The code in the matrix is being patched. https://t.co/nXpFcorSos","Dec 13, 4:16:40 PM EST"
-1867680124214378698,"😂 https://t.co/pWr5HGB29r","Dec 13, 4:16:56 PM EST"
-1867680299594993881,"Accurate https://t.co/tGwOSH5iJ0","Dec 13, 4:17:37 PM EST"
-1867684048891723949,"RT @CarlaDigru38122: @elonmusk Woke is dead ☠️ https://t.co/uZnLiYZxcw","Dec 13, 4:32:31 PM EST"
-1867684217515352288,"RT @andst7: Playing with Grok is enjoyable. It has extensive knowledge of classic video games, such as Assassin’s Creed 2, and is extremely…","Dec 13, 4:33:12 PM EST"
-1867684792046956845,"99% of Earth has no idea.
-
-It’s like having a cat that looks semi-normal, but can actually sing and dance like Puss in Boots.
-
-Until you actually see it sing and dance, you won’t believe it. https://t.co/wHBLR72zPR","Dec 13, 4:35:28 PM EST"
-1867685140136439990,"Yes https://t.co/qQb7kQBkEp","Dec 13, 4:36:51 PM EST"
-1867685540814086441,"😐 https://t.co/zeUaCWGIiF","Dec 13, 4:38:27 PM EST"
-1867688154364620806,"Oh yeah, well I’m stealing it back after stealing it! 😂 https://t.co/z4cwL68HUY","Dec 13, 4:48:50 PM EST"
-1867711108234252319,"Use Grok to create an interesting image prompt and then ask for that image.
-
-Well, well, well …
-
- https://t.co/0oEVr3qM9o","Dec 13, 6:20:03 PM EST"
-1867718468096659759,"😂 https://t.co/ZbmTatqHTu","Dec 13, 6:49:17 PM EST"
-1867720772464382196,"𝕏 messaging & calling is not used for advertising in any way https://t.co/4415mvYqkV","Dec 13, 6:58:27 PM EST"
-1867721215672299764,"Hmm https://t.co/HsElym3uLV","Dec 13, 7:00:13 PM EST"
-1867721659475800432,"RT @teslaownersSV: Mini Me and Elon Musk https://t.co/kut7iTtZfE","Dec 13, 7:01:58 PM EST"
-1867722750082875646,"Lil X leans into the mic to say “WOULD!” https://t.co/btpe8EvCdg","Dec 13, 7:06:18 PM EST"
-1867723268251136144,"RT @xAI69_420: @elonmusk Lil X after saying “WOULD” https://t.co/zjuOFWGkUY","Dec 13, 7:08:22 PM EST"
-1867725462384046520,"Tesla self-driving is getting extremely good https://t.co/38n0yDRmVS","Dec 13, 7:17:05 PM EST"
-1867726702849462683,"https://t.co/oA9MfGz05M","Dec 13, 7:22:01 PM EST"
-1867727851203817480,"This is not even the tip of the iceberg. Taxpayers are going to be mad as hell when they learn more! https://t.co/SOLabwJ4In","Dec 13, 7:26:35 PM EST"
-1867728088525943010,"RT @MarioNawfal: 🚨🇺🇸HOUSE DEMOCRATS JOIN TRUMP & ELON'S DOGE EFFICIENCY DRIVE
-
-Trump’s push for a DOGE is drawing unlikely Democratic allie…","Dec 13, 7:27:31 PM EST"
-1867729713118294229,"RT @america: Taxpayers have no idea how much of their money the U.S. Government is wasting.
-
-@DOGE is essential.
-
- https://t.co/Re1fhRtfmH","Dec 13, 7:33:59 PM EST"
-1867730052235899222,"RT @realDonaldTrump: The Republican Party will use its best efforts to eliminate Daylight Saving Time, which has a small but strong constit…","Dec 13, 7:35:19 PM EST"
-1867748679370899700,"RT @tesla_na: Model S now comes with free Supercharging in the US https://t.co/mwiMIyVjzk","Dec 13, 8:49:20 PM EST"
-1867748874003120293,"100th rocket landing this year https://t.co/hrPwGlSODg","Dec 13, 8:50:07 PM EST"
-1867748968492675296,"22 more Starlinks https://t.co/A9EOZlMXXA","Dec 13, 8:50:29 PM EST"
-1867752745039458668,"Kekius Maximus 😂 https://t.co/YFD03tpa8O","Dec 13, 9:05:30 PM EST"
-1867782014226878909,"RT @farzyness: Now that California has FINALLY finished counting votes, here’s the finalized chart of the unprecedented shift towards Trump…","Dec 13, 11:01:48 PM EST"
-1867782219642679757,"RT @cb_doge: BREAKING: The new version of Grok-2 is now live on 𝕏.
-
-It is three times faster and offers improved accuracy, instruction-foll…","Dec 13, 11:02:37 PM EST"
-1867783027838894591,"RT @xai: https://t.co/wg2onqS9Db","Dec 13, 11:05:50 PM EST"
-1867783099205267972,"RT @SpaceX: Falcon 9 lifts off from pad 4E in California completing our 125th mission of 2024 https://t.co/O4ES4O0P5n","Dec 13, 11:06:07 PM EST"
-1867783459055579175,"RT @MdeZegher: The V4 post is capable of charging up to 500kW on the V4 cabinet (coming in 2025) and 325kW on the existing V3 cabinet. Exci…","Dec 13, 11:07:33 PM EST"
-1867783469960757274,"RT @TeslaCharging: @cybertruck can now charge up to 325kW on select V4 Supercharger posts. Rollout in progress.","Dec 13, 11:07:35 PM EST"
-1867784275757871409,"RT @MarioNawfal: 🚨 GROK JUST GOT A MAJOR GLOW-UP!
-
-Grok on 𝕏 is now 3x faster, sharper, and fluent in more languages.
-
-Since August, 𝕏 has…","Dec 13, 11:10:47 PM EST"
-1867807853031174188,"RT @BasedMikeLee: 🧵🚨 1. Everyone should know the story of Roscoe Filburn, a farmer from Ohio who found himself in the crosshairs of one of…","Dec 14, 12:44:29 AM EST"
-1867810673360875742,"RT @ElonClipsX: Here's Elon Musk in 2013, explaining SpaceX's plan to build a commercial spaceport in Texas, which would later become Starb…","Dec 14, 12:55:41 AM EST"
-1867816883942306020,"That is the goal. This platform only seems to”right-wing” to the left. https://t.co/5Gk0lYn1gl","Dec 14, 1:20:22 AM EST"
-1867978513149530439,"Well-articulated analysis of @Neuralink.
-
-Important edit: bit rate and patient number will increase hyperexponentially over the next 5+ years.
-
-My guess is combined I/O Bit rate > 1Mbs and augmented humans >1M by 2030. https://t.co/qpSih2pJup","Dec 14, 12:02:37 PM EST"
-1868017479123083328,"!! https://t.co/dvy9uM1sYG","Dec 14, 2:37:27 PM EST"
-1868018216662159805,"RT @billyuchenlin: "We've been quietly testing a new version of Grok-2 -- 3X faster and offers improved accuracy, instruction-following, a…","Dec 14, 2:40:23 PM EST"
-1868095929351368741,"Try Grok for answering any question, creating any images & analyzing any images, even medical scans!
-
-It’s by far the best at answers requiring latest information, due to integration with 𝕏.
-
-You’ll be surprised at how much Grok can do & it only ","Dec 14, 7:49:11 PM EST"
-1868096750592168415,"RT @realDonaldTrump: Christmas is coming! The hottest gift is my new book, “SAVE AMERICA.” No other book captures our Movement, our Campaig…","Dec 14, 7:52:27 PM EST"
-1868098574145265777,"🇺🇸🇺🇸🇺🇸🇺🇸 ARMY-NAVY 🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/AEVHGP5v15","Dec 14, 7:59:42 PM EST"
-1868146034532049115,"RT @john: I use Google less and less each day.
-
-Grok provides more insightful search results.","Dec 14, 11:08:17 PM EST"
-1868148072905330946,"Cool https://t.co/js06zUeuP3","Dec 14, 11:16:23 PM EST"
-1868148290052821420,"RT @GailAlfarATX: Grok is integrated into posts and replies.
-
-The Grok button is next to the three dots in the upper right hand corner of…","Dec 14, 11:17:15 PM EST"
-1868180430832456078,"RT @cb_doge: Elon Musk and Lil X at last year's Army-Navy game. https://t.co/sAlsmesZi8","Dec 15, 1:24:58 AM EST"
-1868182353484579318,"RT @cb_doge: Elon Musk with Donald Trump, Mike Johnson, JD Vance and Tulsi Gabbard at the 125th Army-Navy football game. 🇺🇸 https://t.co/Aa…","Dec 15, 1:32:36 AM EST"
-1868183325455867996,"RT @TheRabbitHole84: In 1913, only 2% of households paid income tax https://t.co/CD6J8ytGFK","Dec 15, 1:36:28 AM EST"
-1868183357722669169,"RT @cb_doge: Try the all new Grok.
-
-Tap on the [ / ] icon in the bottom bar.
-
- https://t.co/ZS4a2oKkqj","Dec 15, 1:36:36 AM EST"
-1868186919802433712,"And Grok 3 will be a major leap forward https://t.co/hR2azxuU9G","Dec 15, 1:50:45 AM EST"
-1868186973565018331,"RT @teslaownersSV: “The woke mind virus is communism rebranded”
-Elon Musk https://t.co/VmgqUorFqO","Dec 15, 1:50:58 AM EST"
-1868190645141352541,"RT @chazman: I have decided .. I am not driving on FSD Supervised v13.2 even on errands, around town without a camera running. There are j…","Dec 15, 2:05:33 AM EST"
-1868190719942557856,"RT @GailAlfarATX: 𝕏 phone calling is great
-
-just had a great convo with @EvaLovesDesign about Tesla FSD 😊","Dec 15, 2:05:51 AM EST"
-1868191106950627491,"Starship is gigantic https://t.co/764tT0pMyi","Dec 15, 2:07:23 AM EST"
-1868193338727284998,"It’s ~120m tall today. Probably grows another ~20m over time. https://t.co/wYEHq26gOE","Dec 15, 2:16:15 AM EST"
-1868206142314418254,"RT @teslaownersSV: 𝕏 is the only trusted news app I have.","Dec 15, 3:07:08 AM EST"
-1868214921525354989,"https://t.co/wRY8WwWFcj","Dec 15, 3:42:01 AM EST"
-1868218379775135924,"RT @acbuller: Been training Grok-2 to improve its general instruction-following in past months. Excited to release it to everyone for free.…","Dec 15, 3:55:46 AM EST"
-1868218506963276130,"Try the free Grok API https://t.co/S2QKvNEBlF","Dec 15, 3:56:16 AM EST"
-1868302204370854026,"https://t.co/xBaqUk0wcR","Dec 15, 9:28:51 AM EST"
-1868338361297150041,"Yes! 😂 https://t.co/reql8WtF3R","Dec 15, 11:52:32 AM EST"
-1868338807629828196,"Grok can explain almost anything https://t.co/AjCv8VLwQq","Dec 15, 11:54:18 AM EST"
-1868339586046546073,"Tap on the box with a slash for Grok to explain any post https://t.co/15zvMmWwb1","Dec 15, 11:57:24 AM EST"
-1868339822198509867,"RT @itechnosmith: Marc Andreessen about Elon Musk $TSLA
-
-“Elon identifies the biggest problem that the company is having that week, and he…","Dec 15, 11:58:20 AM EST"
-1868351588601139490,"Yes, if action is not taken to curb the deficit, America is in deep trouble.
-
-No different than a person who gets into too much debt. https://t.co/HxBHWhcjgH","Dec 15, 12:45:05 PM EST"
-1868351943288181144,"Interesting.
-
-We need to rethink how messaging, including email, works overall. https://t.co/6wZAslJLTc","Dec 15, 12:46:30 PM EST"
-1868352115237945591,"RT @SawyerMerritt: Colorado EV credit is being reduced to $3,850 on January 1st (from $5,350). Take delivery by Dec 31 to take advantage of…","Dec 15, 12:47:11 PM EST"
-1868419361784176949,"RT @BillyM2k: the new grok button rules! context for any post https://t.co/fYeSp9NIQ5","Dec 15, 5:14:24 PM EST"
-1868420636030492972,"Cool https://t.co/SRu4KEKvAF","Dec 15, 5:19:27 PM EST"
-1868421254027333726,"SpaceX is the railroad that will enable millions of opportunities for others on Mars, just like the Union Pacific Railroad did for California https://t.co/rIsNiexAaR","Dec 15, 5:21:55 PM EST"
-1868421435917832545,"Yes https://t.co/yRQrqAc3UY","Dec 15, 5:22:38 PM EST"
-1868425365661847600,"Grok https://t.co/8yAW3gf7EW","Dec 15, 5:38:15 PM EST"
-1868425858945528309,"😂 https://t.co/KnCSumWzgE","Dec 15, 5:40:13 PM EST"
-1868432622306885699,"Powerful
- https://t.co/2lheQf4vZj","Dec 15, 6:07:05 PM EST"
-1868433888714142058,"RT @AravSrinivas: 1) What https://t.co/QxsQumU7me","Dec 15, 6:12:07 PM EST"
-1868436379593855144,"Preparing Starship 7 for flight https://t.co/4kthNdG1uX","Dec 15, 6:22:01 PM EST"
-1868523997216051510,"Indeed https://t.co/7FTt6uHhCv","Dec 16, 12:10:11 AM EST"
-1868546124048671110,"Grok can even explain drones over New Jersey!","Dec 16, 1:38:06 AM EST"
-1868546298242105545,"RT @juicyMcJay: Just installed @Tesla FSD 13.2.1 and did my usual test loop through town
-
-Absolute 🪄 magic
-Not a single flaw to note down…","Dec 16, 1:38:48 AM EST"
-1868546579344367837,"RT @lindayaX: An incredible week in Tokyo with our partners. From our content roundtable to our X Brand and Agency Summits with a special a…","Dec 16, 1:39:55 AM EST"
-1868548140808409533,"It was an honor to pay my respects to Akie Abe, widow of PM Abe, upon her visit to Mar-a-Lago to have dinner with @realDonaldTrump and @MELANIATRUMP.
-
-My condolences to the people of Japan for their loss. 🇯🇵","Dec 16, 1:46:07 AM EST"
-1868549038204993633,"RT @SERobinsonJr: (1 of 3) There is no party like a SpaceX party!
-
-SpaceX @Starlink in Redmond, Washington, held their year-end celebratio…","Dec 16, 1:49:41 AM EST"
-1868554710342623557,"RT @tunguz: Great progress by the @xai models. According to the just released metrics by @micro1_ai, those models slightly edge out the @Op…","Dec 16, 2:12:13 AM EST"
-1868554808778690819,"True https://t.co/vdGtB3d40U","Dec 16, 2:12:37 AM EST"
-1868555068011622569,"RT @Tesla: Underrated
-
-Tesla app allows you to control many features of your car remotely, including the AC","Dec 16, 2:13:38 AM EST"
-1868632476543041625,"RT @dvorahfr: It's very important to train IA to be honest EVEN IF THE TRUTH IS UNPOPULAR . https://t.co/WncxDydCvR","Dec 16, 7:21:14 AM EST"
-1868632720517243208,"Tesla has the best real-world AI by far https://t.co/71haxaoLeN","Dec 16, 7:22:12 AM EST"
-1868632938713387279,"Yes https://t.co/NEEdnWTK0o","Dec 16, 7:23:04 AM EST"
-1868633838601285821,"RT @austin_rief: The world feels split into 2.
-
-People who spend time on this app and people who don't.
-
-People who engage on X seem to be…","Dec 16, 7:26:39 AM EST"
-1868705614853292535,"Very important to achieve a balanced budget! https://t.co/PQn6AcB1hk","Dec 16, 12:11:52 PM EST"
-1868705980198088865,"Yes https://t.co/A7JxmFmzNY","Dec 16, 12:13:19 PM EST"
-1868711792849146110,"Awesome https://t.co/byOpu7nlWJ","Dec 16, 12:36:25 PM EST"
-1868739600719782371,"RT @shaunmmaguire: Q: what is the deep state?
-
-A: it’s 51 intel officials signing a letter claiming that Hunter Biden’s laptop was Russian…","Dec 16, 2:26:54 PM EST"
-1868778655838880252,"RT @StartupArchive_: Marc Andreessen on what makes Elon impossible to compete with
-
-“I’m not aware of another CEO who operates the way he d…","Dec 16, 5:02:06 PM EST"
-1868780973296595071,"Cool https://t.co/RUD14PigkW","Dec 16, 5:11:18 PM EST"
-1868781222522241056,"RT @tunguz: More impressive results with @grok. Over the past 24 hours @micro1_ai ran 3,100 automated interviews with candidates on their s…","Dec 16, 5:12:18 PM EST"
-1868782276894769472,"RT @teslaownersSV: 𝕏 is the only app I trust for news.
-
-Delete the legacy media app as it’s meant to maximize for clicks.","Dec 16, 5:16:29 PM EST"
-1868782428762128647,"Exactly https://t.co/4l8PaN4Bgp","Dec 16, 5:17:05 PM EST"
-1868782736712015879,"https://t.co/sSbRsqj8lZ","Dec 16, 5:18:19 PM EST"
-1868783264741441685,"Yes https://t.co/6NnZ0Gm9Pz","Dec 16, 5:20:25 PM EST"
-1868783389425492184,"RT @Tesla: Tell a friend","Dec 16, 5:20:55 PM EST"
-1868784406300967006,"RT @Jason: Google/Gemini and Grok have reached parity, and in some cases are much better, than ChatGPT
-
-I use all three, every day, at lea…","Dec 16, 5:24:57 PM EST"
-1868809634599125315,"Very interesting interview https://t.co/senUmTV2Bd","Dec 16, 7:05:12 PM EST"
-1868809811389038688,"RT @DefiyantlyFree: https://t.co/xZQlO6Icih","Dec 16, 7:05:54 PM EST"
-1868812727701192982,"Makes no sense https://t.co/d9bKy64HsP","Dec 16, 7:17:29 PM EST"
-1868812889148276917,"We are so tiny https://t.co/nkEEbOzBL2","Dec 16, 7:18:08 PM EST"
-1868813567971279030,"RT @NASA: LIVE: A @SpaceX Dragon spacecraft is set to depart the @Space_Station and return to Earth with @ISS_Research, including microbial…","Dec 16, 7:20:50 PM EST"
-1868814923025019355,"RT @Rainmaker1973: The SpaceX rockets. From left to right:
-
-- Falcon 1
-- Falcon 9
-- Falcon Heavy
-- Starship https://t.co/nOOWtwJ2A8","Dec 16, 7:26:13 PM EST"
-1868817106554560953,"Good questions https://t.co/Rx687mF4Gp","Dec 16, 7:34:53 PM EST"
-1868817783771070895,"If you pay organizations according to the number of homeless people they “manage”, you create an incentive to maximize the number of homeless people, which is exactly what happened here https://t.co/Xj9RYC63ao","Dec 16, 7:37:35 PM EST"
-1868819353564856606,"The @SpaceX @Starlink system will ensure that your phone always has connectivity.
-
-No more cell phone dead zones! https://t.co/RGsVHME7Eg","Dec 16, 7:43:49 PM EST"
-1868819562764132555,"RT @TMobile: we're taking your texts to space with the world’s largest satellite-to-cell constellation in partnership with @Starlink. T-Mob…","Dec 16, 7:44:39 PM EST"
-1868819856981921832,"RT @MarioNawfal: 🇦🇷MILEI'S ADVICE TO DOGE: GO ALL THE WAY AND NEVER GIVE UP
-
-@JMilei to @DOGE : "Push it to the very limit. Those who are l…","Dec 16, 7:45:49 PM EST"
-1868822817611170207,"Also inevitable 🤣🤣 https://t.co/RXPJaPGrhY","Dec 16, 7:57:35 PM EST"
-1868823166040297644,"https://t.co/hqMndr1maI","Dec 16, 7:58:58 PM EST"
-1868824560071852278,"Try the latest Tesla self-driving software. It will blow your mind. https://t.co/oTwjPTklqg","Dec 16, 8:04:30 PM EST"
-1868824621933613206,"https://t.co/xlmqeOcBDD","Dec 16, 8:04:45 PM EST"
-1868824706939601046,"RT @MarioNawfal: 🚨STARLINK AND T-MOBILE ARE ENDING DEAD ZONES FOREVER — AND THAT'S JUST THE BEGINNING
-
-The promise of universal connectivit…","Dec 16, 8:05:05 PM EST"
-1868824769292124319,"RT @SpeakerJohnson: We have big plans for America. https://t.co/sdLffek5X3","Dec 16, 8:05:20 PM EST"
-1868825074155041053,"The long arc will soon come full circle https://t.co/feDQN72qpm","Dec 16, 8:06:33 PM EST"
-1868825702147190955,"Absolutely! https://t.co/hRhxkzY2r7","Dec 16, 8:09:03 PM EST"
-1868825870137454932,"So true https://t.co/FLBWLbFIdZ","Dec 16, 8:09:43 PM EST"
-1868828120872263971,"She’s an activist cosplaying as a judge https://t.co/OdlROgfQ5w","Dec 16, 8:18:39 PM EST"
-1868830575848808506,"True https://t.co/rImy3c3Jmh","Dec 16, 8:28:25 PM EST"
-1868836450642628928,"!! https://t.co/h2C9BnpBoF","Dec 16, 8:51:45 PM EST"
-1868851605774508172,"RT @TheRabbitHole84: Strangulation by Regulation https://t.co/E4hJ9VpBXr","Dec 16, 9:51:59 PM EST"
-1868853271768842267,"RT @teslaownersSV: How did you first realize legacy media was lying?
-
-For us it was knowing the truth about Tesla and Elon Musk.","Dec 16, 9:58:36 PM EST"
-1868854088307540142,"DOGE
- https://t.co/yutMSaMNeI","Dec 16, 10:01:50 PM EST"
-1868854409406693780,"RT @teslaownersSV: We’ve come full circle from https://t.co/TZBeinhX2J to 𝕏 payments (coming soon) https://t.co/rLcaeJjhhu","Dec 16, 10:03:07 PM EST"
-1868859772092793078,"Now THAT is a boss battle! https://t.co/Q4GJvH9AsA","Dec 16, 10:24:26 PM EST"
-1868867160338215070,"RT @johnkrausphotos: https://t.co/GHzVZaqKT3","Dec 16, 10:53:47 PM EST"
-1868868072251195718,"Exactly https://t.co/dbnzUCAFT9","Dec 16, 10:57:24 PM EST"
-1868868331291525393,"Try it, you’ll like it … https://t.co/ffug1XdeS6","Dec 16, 10:58:26 PM EST"
-1868884859646792073,"RT @ElonClipsX: Here's Elon Musk in 2020 explaining why cameras with AI vision is all you need to achieve full autonomy.
-
-“The entire road…","Dec 17, 12:04:07 AM EST"
-1868886338160017867,"RT @johnkrausphotos: FSD v13 is incredible! Significantly smoother and more confident than v12. New reverse and three-point turn features a…","Dec 17, 12:09:59 AM EST"
-1868886803916444110,"RT @teslaownersSV: Starship is the vehicle which we will become multi planetary https://t.co/ess4ydaRA3","Dec 17, 12:11:50 AM EST"
-1868887388908667191,"RT @SmokeAwayyy: Gotta teach the AGI to love https://t.co/JA9oJ0WFGU","Dec 17, 12:14:10 AM EST"
-1868892851649802626,"Community Notes curb stomp https://t.co/oZWVTrRCWC","Dec 17, 12:35:52 AM EST"
-1868895674835911096,"🤨 https://t.co/UFOKE1O0kX","Dec 17, 12:47:05 AM EST"
-1868943052880179574,"Dragon undocks from @Space_Station and returns to Earth https://t.co/D5TNIKVuEI","Dec 17, 3:55:21 AM EST"
-1868947894008791135,"Wow https://t.co/LYgKlSgC2z","Dec 17, 4:14:35 AM EST"
-1868948521375908249,"Yes!! Ron Paul ftw 🇺🇸🇺🇸 https://t.co/7W4YnraXPn","Dec 17, 4:17:05 AM EST"
-1868952381003841681,"RT @Tesla: No better way to bond with your family than experiencing Actually Smart Summon & FSD Supervised together
-
-It will rock their wor…","Dec 17, 4:32:25 AM EST"
-1868952391305118001,"RT @Teslaconomics: @Tesla AND giving them a ride in a Cybertruck https://t.co/rjF0MroBER","Dec 17, 4:32:28 AM EST"
-1868952774345658607,"RT @MarioNawfal: STARLINK LEAVES AUSTRALIA’S NBN IN THE DUST!
-
-Elon: “Starlink's giant latency advantage is the real killer.”
-
-Starlink is…","Dec 17, 4:33:59 AM EST"
-1868957010609529245,"Wow https://t.co/8W2EVSoQPA","Dec 17, 4:50:49 AM EST"
-1868958902844567769,"Yes https://t.co/qsNBOMfopb","Dec 17, 4:58:20 AM EST"
-1868964350305960426,"She should sing her verdicts https://t.co/riK2MZrKJ0","Dec 17, 5:19:59 AM EST"
-1868968199506759969,"It kills the art https://t.co/1oqgluuyh3","Dec 17, 5:35:17 AM EST"
-1868969160883290230,"RT @teslaownersSV: FSD 13 is a life hack.
-HIGHLIGHTS:
-- Recognized an intersection flashing red as a stop sign, not a stop light that has…","Dec 17, 5:39:06 AM EST"
-1868976178939543635,"RT @teslaownersSV: Media has been defined by a few.
-
-𝕏 empowers the voice of the world.
-
-“The biggest point of manipulation that occurs i…","Dec 17, 6:06:59 AM EST"
-1869042604714971162,"RT @NatReconOfc: Mission success: #NROL149 launched today at 8:19 a.m. EST on a @SpaceX Falcon 9 rocket from Vandenberg Space Force Base.…","Dec 17, 10:30:56 AM EST"
-1869046102403821896,"RT @SpaceX: Falcon 9’s first stage has landed on the Of Course I Still Love You droneship https://t.co/RgHgLgQ2h3","Dec 17, 10:44:50 AM EST"
-1869061426842845572,"RT @JonErlichman: Revenue growth in the past decade.
-
-Tesla: +3,021%
-
-Nvidia: +2,651%
-
-Meta: +1,208%
-
-Amazon:…","Dec 17, 11:45:44 AM EST"
-1869065901854818510,"Corrupt legacy media, paid for by deep state Democrats! https://t.co/uL3QFmvlJq","Dec 17, 12:03:31 PM EST"
-1869066651985166445,"My, how the tables have turned! 😂 https://t.co/FHpYymhlFz https://t.co/Q3oEVdy1AE","Dec 17, 12:06:30 PM EST"
-1869066840733008278,"RT @Starlink: Starlink connecting students and teachers with high-speed internet at a school in Oaxaca, Mexico 🛰️❤️🇲🇽→https://t.co/qf7Vyn6s…","Dec 17, 12:07:15 PM EST"
-1869067997891149853,"Fidias fights for free speech in Europe!
- https://t.co/KFfkTjRo8W","Dec 17, 12:11:50 PM EST"
-1869068900450939172,"RT @SpaceX: Falcon 9 launches the @NatReconOfc's NROL-149 mission from California https://t.co/mlgEGDeg0V","Dec 17, 12:15:26 PM EST"
-1869069678192304363,"Insane https://t.co/48dfyXEJCw","Dec 17, 12:18:31 PM EST"
-1869070358210572306,"Please stop using hashtags. The system doesn’t need them anymore and they look ugly. https://t.co/GKEp1v1wiB","Dec 17, 12:21:13 PM EST"
-1869070415605411903,"Yup https://t.co/CvyKTVivcg","Dec 17, 12:21:27 PM EST"
-1869070678634500191,"Wow https://t.co/TE3eMYWu1t","Dec 17, 12:22:30 PM EST"
-1869071093711159416,"People like Blanc are racists, plain & simple. Ironic name if there ever was one 😂 https://t.co/cmgLHw9I3D","Dec 17, 12:24:09 PM EST"
-1869071514043318534,"🤨 https://t.co/Z1SxsIiCpr","Dec 17, 12:25:49 PM EST"
-1869086065853902968,"Testing Raptoe rocket engine restart for orbit changes https://t.co/KYzWJGpWIR","Dec 17, 1:23:38 PM EST"
-1869086943042269629,"Yes, this is how all company and country leaders should use 𝕏!
-
-Direct communication is the best way to get your message to the public, without having to go through the legacy media negativity filter. https://t.co/77PODDaREo","Dec 17, 1:27:07 PM EST"
-1869087700449677339,"Bubble needs to be popped https://t.co/PhGQAvRWV5","Dec 17, 1:30:08 PM EST"
-1869103027417940475,"RT @thatsKAIZEN: Criticizing the Israeli government doesn’t make you an Antisemite
-
-Criticizing Hamas doesn’t make you an Islamophobe
-
-Crit…","Dec 17, 2:31:02 PM EST"
-1869103980149973204,"Lmao.
-
-The person actually writing these things from Pocahontas are SBF’s parents btw. https://t.co/V741yhitwp","Dec 17, 2:34:49 PM EST"
-1869104841483800636,"Support @TulsiGabbard for DNI! https://t.co/7HKKZ12Y3D","Dec 17, 2:38:15 PM EST"
-1869105846229389424,"💯
-
-@PamBondi is awesome https://t.co/HMbvqwI69J","Dec 17, 2:42:14 PM EST"
-1869117106794762705,"Testing streaming on X via Starlink https://t.co/91ilYMadda","Dec 17, 3:26:59 PM EST"
-1869119942685327503,"Yes, we added the ability to zoom in and rewind to live streams https://t.co/5TeixxMcCd","Dec 17, 3:38:15 PM EST"
-1869127380838777134,"Grok can explain almost anything! https://t.co/hhmeg8Ev9d","Dec 17, 4:07:48 PM EST"
-1869127968972554728,"Path of Exile 2, Arbiter of Ash.
-
-Played over @Starlink in an airplane.
-
-Starlink is so good that you can play real-time video games while airborne! https://t.co/DEpRJYfU6y","Dec 17, 4:10:09 PM EST"
-1869132090857632158,"This is the way https://t.co/STuZ9veYh8","Dec 17, 4:26:31 PM EST"
-1869132892540121453,"True https://t.co/MK50KELfW8","Dec 17, 4:29:43 PM EST"
-1869133454950228312,"Guess who this is? 🤣🤣 https://t.co/XHWcgIa04W","Dec 17, 4:31:57 PM EST"
-1869133622055407879,"Made with @Grok
-https://t.co/1cfbK7etiN","Dec 17, 4:32:36 PM EST"
-1869137211800862900,"Free your friends from the sadness generating propaganda machine that is legacy media and get them on 𝕏 so they know what’s really happening!","Dec 17, 4:46:52 PM EST"
-1869138229511033338,"Yeah, this explains a lot.
-
-Shame on @Reuters.
-
-Paid propaganda! https://t.co/iffF0gZZdb","Dec 17, 4:50:55 PM EST"
-1869276881180406257,"@grok Cake
-https://t.co/iKf47HuI8W","Dec 18, 2:01:52 AM EST"
-1869278165639811343,"Congrats @SpaceX Falcon team! https://t.co/UHezwSdwA2","Dec 18, 2:06:58 AM EST"
-1869307226550395040,"RT @jasonfried: Big week. @elonmusk goes 2 for 2 for us.
-
-1. Found myself in the middle of a wildfire. Bad situation. Putting out spot fire…","Dec 18, 4:02:27 AM EST"
-1869310453253546066,"This bill should not pass https://t.co/eccQ6COZJ4","Dec 18, 4:15:16 AM EST"
-1869311029131596262,"Ever seen a bigger piece of pork? https://t.co/ZesFCNSNKp","Dec 18, 4:17:34 AM EST"
-1869413667730837659,"Make it easy to figure out which is the good side! https://t.co/TonrLAu6Ki","Dec 18, 11:05:25 AM EST"
-1869414233483698402,"How can this be called a “continuing resolution” if it includes a 40% pay increase for Congress? https://t.co/qFFUP0eUOH","Dec 18, 11:07:39 AM EST"
-1869415098055561453,"Absolutely! https://t.co/faagF5Dty8","Dec 18, 11:11:06 AM EST"
-1869429813796319438,"You cell phone in New Zealand now works anywhere! https://t.co/p27rOA1gtq","Dec 18, 12:09:34 PM EST"
-1869440656189645103,"Exactly https://t.co/7VI71iaM6l","Dec 18, 12:52:39 PM EST"
-1869441674155606227,"This bill should not pass https://t.co/3y7rZ23K4Z","Dec 18, 12:56:42 PM EST"
-1869442462068154477,"Make sure your elected representatives know how you feel about this gigantic spending bill! https://t.co/OhIU5pHHhJ","Dec 18, 12:59:50 PM EST"
-1869443894070686162,"The more I learn, the more obvious it becomes that this spending bill is a crime.
-
-It even includes funding for the worst illegal censorship operation in the entire government (GEC)!! https://t.co/P8a3m0OpJR","Dec 18, 1:05:31 PM EST"
-1869444046961410457,"What the heck!!?? https://t.co/C88jCb5n3z","Dec 18, 1:06:08 PM EST"
-1869446782574645386,"Any member of the House or Senate who votes for this outrageous spending bill deserves to be voted out in 2 years!","Dec 18, 1:17:00 PM EST"
-1869450183077220670,"This is insane and has nothing to do with a “continuing resolution”! https://t.co/VKFnDiysF8","Dec 18, 1:30:31 PM EST"
-1869450629875446022,"THIS CRIMINAL BILL MUST NOT PASS https://t.co/RlD3lNLoCL","Dec 18, 1:32:17 PM EST"
-1869452062888788364,"Yes https://t.co/8EdzS3iF7u","Dec 18, 1:37:59 PM EST"
-1869452150704898182,"This is an outrage https://t.co/yc14VZNiHs","Dec 18, 1:38:20 PM EST"
-1869452474899468326,"Please call your elected representatives right now to stop this madness! https://t.co/iRUiayqfBh","Dec 18, 1:39:37 PM EST"
-1869452968522928304,"Please call your elected representatives right away to tell them how you feel!
-
-They are trying to get this passed today while no one is paying attention. https://t.co/OlVJPaC4Wm","Dec 18, 1:41:35 PM EST"
-1869453101713047581,"RT @VivekGRamaswamy: The bill is 1,500 pages long & no one has time to read it. That isn’t a bug. It’s a feature.","Dec 18, 1:42:06 PM EST"
-1869453320894730655,"This bill is terrible https://t.co/BKxFF3HDMR","Dec 18, 1:42:59 PM EST"
-1869454395538342195,"This crazy bill needs to stop now https://t.co/2hBQXNHckC","Dec 18, 1:47:15 PM EST"
-1869454667522163198,"This bill is criminal https://t.co/C4ZfGGtthF","Dec 18, 1:48:20 PM EST"
-1869455013761925497,"Thank you! https://t.co/qgcA1QD3jm","Dec 18, 1:49:42 PM EST"
-1869455352078688696,"Absolutely, this bill should NOT pass.
-
-A new bill that isn’t an insane crime against the American people should be done in 33 days. https://t.co/zyZVfccmUV","Dec 18, 1:51:03 PM EST"
-1869456327279566908,"The more we learn about this criminal bill they are trying to pass today, the worse it gets!! https://t.co/JNfB86PHOp","Dec 18, 1:54:55 PM EST"
-1869456561212690458,"Stop the steal of your tax dollars! https://t.co/oNg32qRa8f","Dec 18, 1:55:51 PM EST"
-1869456710546628641,"RT @RepAndyBiggsAZ: The index of the 1,547-page “CR” is longer than the actual CR language in the text.
-
-This is not a continuing resoluti…","Dec 18, 1:56:27 PM EST"
-1869456933163553183,"They want to spend YOUR tax dollars on censorsing YOU!! https://t.co/zb4xPXMGvC","Dec 18, 1:57:20 PM EST"
-1869457219986853921,"RT @cb_doge: "This criminal bill should NOT pass." - @elonmusk https://t.co/ZcRbTWxRys","Dec 18, 1:58:28 PM EST"
-1869457353055293579,"RT @SenRandPaul: Proud to support @DrJBhattacharya's nomination. I have no doubt he can lead the bipartisan reform the @NIH needs. https://…","Dec 18, 1:59:00 PM EST"
-1869457539089441249,"RT @KevinKileyCA: I will be voting NO on the "CR." This 1,547 page bill is a masterclass in bad legislating.
-
-It takes a few pages to keep…","Dec 18, 1:59:44 PM EST"
-1869457777577611374,"By now, they should know that I mean what I say https://t.co/84i3UXj8HX","Dec 18, 2:00:41 PM EST"
-1869457861300130003,"RT @SenRandPaul: Proud to support @TulsiGabbard as Director of National Intelligence. Her military service and dedication to our Constituti…","Dec 18, 2:01:01 PM EST"
-1869457904656593194,"RT @america: This is a 1,547-page, $110+ Billion omnibus bill masquerading as a continuing resolution.
-
-The American people deserve better.","Dec 18, 2:01:11 PM EST"
-1869457966572904732,"Thank you! https://t.co/piTLsmghWD","Dec 18, 2:01:26 PM EST"
-1869458031186190393,"Absolutely https://t.co/T3wfSiQ2Qu","Dec 18, 2:01:42 PM EST"
-1869458102048928240,"What a scam! https://t.co/vva12mGh41","Dec 18, 2:01:59 PM EST"
-1869458813054861497,"This is insane! This is NOT democracy!
-
-How can your elected representatives be asked to pass a spending bill where they had no input and not even enough time to read it!!?? https://t.co/rrjekkZEUP","Dec 18, 2:04:48 PM EST"
-1869459189711704321,"Stop the steal of your tax dollars!
-
-Call your elected representatives now.
-
-They are trying to railroad this thing through today! https://t.co/5BQvPz762o","Dec 18, 2:06:18 PM EST"
-1869459230094479515,"RT @cb_doge: This new spending bill is a big scam against the people of America and democracy.
-
-Call your elected representatives NOW and d…","Dec 18, 2:06:27 PM EST"
-1869459369559224802,"We’re funding bioweapon labs in this bill! https://t.co/gYAfqrUmjI","Dec 18, 2:07:01 PM EST"
-1869459853812642050,"Call your elected representatives today to stop the steal of your tax dollars!
- https://t.co/6suIuQMcO4","Dec 18, 2:08:56 PM EST"
-1869459939552616663,"Exactly https://t.co/U1tohrJ0zL","Dec 18, 2:09:17 PM EST"
-1869460015758876754,"💯 https://t.co/5DcZ5NC3xe","Dec 18, 2:09:35 PM EST"
-1869460138589073818,"Absolutely https://t.co/YlDNKP3hlL","Dec 18, 2:10:04 PM EST"
-1869461048828522999,"No bills should be passed Congress until Jan 20, when @realDonaldTrump takes office.
-
-None.
-
-Zero.","Dec 18, 2:13:41 PM EST"
-1869461429189001365,"America voted for change, but Congress is not listening. UNACCEPTABLE!! https://t.co/NiMDwwVSYw","Dec 18, 2:15:12 PM EST"
-1869464414581309697,"The bill they’re trying to pass right now would prevent investigating their wrongdoing! https://t.co/BsFiCzrzVt","Dec 18, 2:27:04 PM EST"
-1869464697977860469,"🤬 https://t.co/FvwoiCb7nO","Dec 18, 2:28:11 PM EST"
-1869464963464786094,"This should not be funded by your tax dollars! https://t.co/8H6zBjptPE","Dec 18, 2:29:14 PM EST"
-1869465244231516450,"Outrageous! https://t.co/vm7UOQRtwf","Dec 18, 2:30:21 PM EST"
-1869465723065733291,"Unconscionable https://t.co/oPuF3bVMnj","Dec 18, 2:32:16 PM EST"
-1869466954555392001,"Thank you! https://t.co/h8jK0NCzHu","Dec 18, 2:37:09 PM EST"
-1869467141453603033,"Thank you! https://t.co/NeAqGFV9bP","Dec 18, 2:37:54 PM EST"
-1869467329731682356,"Yes! https://t.co/URNu1rQvI7","Dec 18, 2:38:39 PM EST"
-1869468382267068544,"Exactly right. ALL government spending is taxation.
-
-The government either taxes you directly or, by increasing the money supply, taxes you through inflation.
-
-That means the spending bill IS the taxation bill. Very important concept to understand.
-
-@Re","Dec 18, 2:42:50 PM EST"
-1869468735813419338,"RT @RepBoebert: I’m voting NO on this week’s CR. So many members of Congress want the clout of working with @DOGE and @ElonMusk.
-
-Barely a…","Dec 18, 2:44:14 PM EST"
-1869469016584302978,"RT @teslaownersSV: No bill should be passed until January 20. This is absolutely outrageous as you can see the current administration tryin…","Dec 18, 2:45:21 PM EST"
-1869469249154257259,"RT @RepRalphNorman: Any Member who claims to support the @DOGE should not support this “CR of Inefficiency” that does not have offsets!!…","Dec 18, 2:46:16 PM EST"
-1869469416112722272,"Stop the steal of your tax dollars! https://t.co/rL4TGLnDLu","Dec 18, 2:46:56 PM EST"
-1869469561084682558,"YES https://t.co/sOnGmxlHMK","Dec 18, 2:47:31 PM EST"
-1869469849476571389,"Thank you! https://t.co/0HTA84L5Jk","Dec 18, 2:48:39 PM EST"
-1869470022256722045,"RT @nicksortor: ANY REPUBLICAN who votes for this spending boondoggle is getting primaried.
-
-RINOs will expose themselves with a single vot…","Dec 18, 2:49:21 PM EST"
-1869470366336459234,"RT @AutismCapital: "They weren't supposed to actually read the bill." https://t.co/v2l3mzWpKz","Dec 18, 2:50:43 PM EST"
-1869470600978395509,"Great! https://t.co/Gt85W15mIy","Dec 18, 2:51:39 PM EST"
-1869470664735989908,"RT @WesternLensman: 🚨 @RepThomasMassie with the truth bomb:
-
-"I have Republican colleagues who'd rather run over their own mom with a car t…","Dec 18, 2:51:54 PM EST"
-1869476312278286359,"“Shutting down” the government (which doesn’t actually shut down critical functions btw) is infinitely better than passing a horrible bill https://t.co/jfFCVWd2T2","Dec 18, 3:14:20 PM EST"
-1869476477693301165,"KILL BILL! https://t.co/xtm87uBqqZ","Dec 18, 3:15:00 PM EST"
-1869477024076550206,"RT @cb_doge: This criminal bill is against the American people, yet legacy media remains silent.
-
-𝕏 is the only platform where the truth ab…","Dec 18, 3:17:10 PM EST"
-1869477342856511944,"How to use Grok to understand any piece of legislation or large document on the Internet https://t.co/1VS81HdhVf","Dec 18, 3:18:26 PM EST"
-1869477830800912462,"Exactly, it contains major spending increases and changes to the law.
-
-That is NOT a “continuing” resolution. https://t.co/rc2C8Cvoq4","Dec 18, 3:20:22 PM EST"
-1869477998422053024,"😂💯 https://t.co/4aEbsZe1v8","Dec 18, 3:21:02 PM EST"
-1869478485879836915,"Absolutely https://t.co/sIxuz4nuzX","Dec 18, 3:22:58 PM EST"
-1869478770287227097,"Thank you! https://t.co/Ek7cjGRb3u","Dec 18, 3:24:06 PM EST"
-1869479007680692444,"RT @robbystarbuck: The omnibus bill being pushed now seems to support DEI through clever language like this section promoting a "diverse wo…","Dec 18, 3:25:03 PM EST"
-1869479299121823760,"Kill the Bill https://t.co/D2Yntonrcv","Dec 18, 3:26:12 PM EST"
-1869479511869497807,"Thank you! https://t.co/jVdQYpUtVo","Dec 18, 3:27:03 PM EST"
-1869479646397636957,"Thank you! https://t.co/XhXz3aYKeO","Dec 18, 3:27:35 PM EST"
-1869480038170833114,"RT @EricLDaugh: 🚨 UPDATE: Senator John Cornyn is now slamming the spending bill.
-
-"How on earth did a 3 month Continuing Resolution grow in…","Dec 18, 3:29:09 PM EST"
-1869480133008240870,"💯 https://t.co/JBrTHySY39","Dec 18, 3:29:31 PM EST"
-1869480452610019792,"RT @cb_doge: KILL THE BILL https://t.co/qsn2X2ajkP","Dec 18, 3:30:47 PM EST"
-1869481504575012962,"Unless @DOGE ends the careers of deceitful, pork-barrel politicians, the waste and corruption will never stop.
-
-Therefore, there is no choice but to do so.
-
-I wish there was another way, but there is not.","Dec 18, 3:34:58 PM EST"
-1869481672678522881,"RT @MarioNawfal: 🇺🇸 REP THOMAS MASSIE: SOME REPUBLICANS RATHER RUN OVER MOM THAN CUT BUDGETS
-
-“I would cut everything that's redundant.
-
-Ev…","Dec 18, 3:35:38 PM EST"
-1869481744447250885,"💯 https://t.co/oyWCb2pJAR","Dec 18, 3:35:55 PM EST"
-1869481984986378295,"Indeed, this is an inflection point. https://t.co/YG14O2aSWp","Dec 18, 3:36:53 PM EST"
-1869482112363225432,"🇺🇸🇺🇸 https://t.co/VPSMiyxmLu","Dec 18, 3:37:23 PM EST"
-1869482581181554704,"One of the worst bills ever written https://t.co/SxVyyXb82y","Dec 18, 3:39:15 PM EST"
-1869482696294191293,"🇺🇸🇺🇸 https://t.co/PedxTOSCsi","Dec 18, 3:39:42 PM EST"
-1869482814649032779,"RT @SenJoniErnst: 🎅🏻Santa came early to D.C. with a Christmas tree bill full of a ho ho ho lot of spending.
-
-Congress deserves a lump of c…","Dec 18, 3:40:10 PM EST"
-1869483390564790582,"I meant what I said https://t.co/aUU79Ad1Nf","Dec 18, 3:42:28 PM EST"
-1869483575671980224,"Thank you! https://t.co/z7POJDE9rx","Dec 18, 3:43:12 PM EST"
-1869484087704277145,"RT @Teslaconomics: This is the H.R. Further Continuing Appropriations Act, 2025. Let me simplify why Elon Musk and people are pounding the…","Dec 18, 3:45:14 PM EST"
-1869484189424472412,"RT @DimaZeniuk: “Threat to democracy?
-
-Nope, threat to BUREAUCRACY!!!”
-
-— Elon Musk https://t.co/fJ4AhFSosE","Dec 18, 3:45:38 PM EST"
-1869484657798254663,"Great! https://t.co/ihr0Nv1sEF","Dec 18, 3:47:30 PM EST"
-1869485283835843004,"Thank you! https://t.co/wRIwlYBTvt","Dec 18, 3:49:59 PM EST"
-1869485580276629975,"Actions matter, sweet talk is irrelevant.
-
-Kill the Bill. https://t.co/JfEY3nUXBI","Dec 18, 3:51:10 PM EST"
-1869485746966663254,"Thank you! https://t.co/S4OUW4wsaz","Dec 18, 3:51:50 PM EST"
-1869485877044642194,"🇺🇸🇺🇸🇺🇸 Yes!! 🇺🇸🇺🇸🇺🇸 https://t.co/HtPnKmSZSx","Dec 18, 3:52:21 PM EST"
-1869487359420727338,"Your elected representatives have heard you and now the terrible bill is dead. The voice of the people has triumphed!
-
-VOX POPULI
-VOX DEI","Dec 18, 3:58:14 PM EST"
-1869487573112160758,"RT @chamath: Vox populi","Dec 18, 3:59:05 PM EST"
-1869487893808627893,"🫡 https://t.co/Rx7QbAIBoe","Dec 18, 4:00:21 PM EST"
-1869488541799264418,"RT @robbystarbuck: Big news from @FoxNews @LawrenceBJones3: President Trump says he’s "totally against" the monstrous omnibus CR bill.
-
-@el…","Dec 18, 4:02:56 PM EST"
-1869510937352544761,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/bxFTgtfoJm","Dec 18, 5:31:55 PM EST"
-1869511219465613434,"Wow https://t.co/v2QTjzkLzc","Dec 18, 5:33:03 PM EST"
-1869512926018834781,"Either there is massive change or America goes bankrupt, therefore there must be massive change! https://t.co/JLDBbvt41w","Dec 18, 5:39:50 PM EST"
-1869513332748877958,"Cool https://t.co/Ayqpj4vbFB","Dec 18, 5:41:27 PM EST"
-1869514327084220682,"RT @teslaownersSV: Starship is the vehicle to making us multi planetary https://t.co/UumcGNkoLu","Dec 18, 5:45:24 PM EST"
-1869516471275294754,"Yes https://t.co/sELijTHFC5","Dec 18, 5:53:55 PM EST"
-1869517425190019365,"Total active users on 𝕏 is ~1 billion, but about 40% only come to this platform during major world events https://t.co/J8K3p0c0sS","Dec 18, 5:57:42 PM EST"
-1869517811623838020,"💯 https://t.co/tRDp8vsa4x","Dec 18, 5:59:14 PM EST"
-1869518723482341880,"Absolutely.
-
-All I can do is bring things to the attention of the people, so they may voice their support if they so choose. https://t.co/sFxGaXTfzg","Dec 18, 6:02:52 PM EST"
-1869519197115720178,"🇺🇸🇺🇸 https://t.co/QF6DfCZKWc","Dec 18, 6:04:45 PM EST"
-1869519398790435193,"RT @TheRabbitHole84: Never deleting this app ☠️ https://t.co/XgQM3s9nea","Dec 18, 6:05:33 PM EST"
-1869519988983562660,"Welcome to the group chat for Earth! https://t.co/QWbH9kSDNm","Dec 18, 6:07:54 PM EST"
-1869520295712952387,"🇺🇸🇺🇸 https://t.co/sWskUVAGEo","Dec 18, 6:09:07 PM EST"
-1869521075761234338,"The voice of the people was heard.
-
-This was a good day for America. https://t.co/r8K4AcbDYf","Dec 18, 6:12:13 PM EST"
-1869523319101571361,"America is for you, the beloved people","Dec 18, 6:21:07 PM EST"
-1869526372877742560,"RT @cb_doge: 🇺🇸 America, America! 🇺🇸 https://t.co/9BM0RUw13L","Dec 18, 6:33:16 PM EST"
-1869526908465242510,"RT @EvaFoxU: VOX POPULI
-VOX DEI https://t.co/HdYCq2K1cG","Dec 18, 6:35:23 PM EST"
-1869527502957523079,"RT @iam_smx: "I can't emphasize enough, just fight like hell to make the future great"
-
--Elon Musk at United States Air Force Academy. http…","Dec 18, 6:37:45 PM EST"
-1869527728904642591,"The new recommendation algorithm should be noticeably better.
-
-Please reply below if not. https://t.co/QHuwjDAJ6R","Dec 18, 6:38:39 PM EST"
-1869530996087156921,"💯 https://t.co/LcgwezTnzf","Dec 18, 6:51:38 PM EST"
-1869548734578827738,"Crazy https://t.co/5cE5E0kWP8","Dec 18, 8:02:07 PM EST"
-1869552884117090657,"https://t.co/vCH5rkpijy","Dec 18, 8:18:36 PM EST"
-1869600134197297384,"https://t.co/b5eDRofDac","Dec 18, 11:26:22 PM EST"
-1869611230224433259,"https://t.co/y7JBofo59M","Dec 19, 12:10:27 AM EST"
-1869613608327627154,"https://t.co/tQTRky0H0U","Dec 19, 12:19:54 AM EST"
-1869614094598455353,"RT @JonErlichman: Interest costs on U.S. federal debt:
-
-2024: $1.05 trillion (so far)
-2023: $879 billion
-2022: $718 billion
-2021: $562 bi…","Dec 19, 12:21:50 AM EST"
-1869781568014934080,"You are the media now
-
- https://t.co/kuQRkxakxh","Dec 19, 11:27:19 AM EST"
-1869783012373889518,"RT @TheRabbitHole84: Break the cycle https://t.co/HPxCidr9jI","Dec 19, 11:33:03 AM EST"
-1869784087638225175,"Yes https://t.co/kMfq0zDJ7c","Dec 19, 11:37:20 AM EST"
-1869785852420948147,"Gives new meaning to “fake it ‘til you make it” 😂 https://t.co/i0p8Mph2VO","Dec 19, 11:44:20 AM EST"
-1869786081568403645,"RT @AutismCapital: You are the media now! https://t.co/dHbjTS4atE","Dec 19, 11:45:15 AM EST"
-1869786274124705907,"RT @SpaceX: Dragon missions create opportunities for humanity to build a future in space. Falcon 9 launching two @Vast private astronaut mi…","Dec 19, 11:46:01 AM EST"
-1869787390157697296,"It’s getting to the point where doing anything at all is illegal https://t.co/sZlRmK5JCc","Dec 19, 11:50:27 AM EST"
-1869792804647645416,"Deleting nonsense regulations that fail to serve the greater public good will lead to a new age of prosperity https://t.co/P89wl5Asel","Dec 19, 12:11:58 PM EST"
-1869794047138947079,"Worth getting @Starlink as a backup, even if you already have great Internet.
-
-Your landline connection might go down just when you most need it! https://t.co/bKbAWZ5giH","Dec 19, 12:16:54 PM EST"
-1869832353130131474,"RT @BasedMikeLee: No, sir
-
-The offenders here are those who write 1,500-page spending bills in secret & spring them on their colleagues day…","Dec 19, 2:49:07 PM EST"
-1869832446868640200,"💯 https://t.co/cIFFszSD1U","Dec 19, 2:49:29 PM EST"
-1869841055455257050,"America is headed for disaster, with no money for anything, unless the government overspending is addressed https://t.co/a75jYDaTMd","Dec 19, 3:23:42 PM EST"
-1869844974524870781,"RT @teslaownersSV: "ALL FEDERAL SPENDING IS TAXATION."
-
-Elon Musk https://t.co/yUNsqgVjbL","Dec 19, 3:39:16 PM EST"
-1869852925083955565,"RT @karolineleavitt: 🚨NEW FROM PRESIDENT TRUMP https://t.co/QYr19LXCab","Dec 19, 4:10:52 PM EST"
-1869865296376303763,"Yesterday’s bill vs today’s bill 😂 https://t.co/L3Omn964mw","Dec 19, 5:00:01 PM EST"
-1869866550737424761,"This shows how much your voice matters!
-
-And having a President like @realDonaldTrump means that your voice is finally heard. https://t.co/0a7QDJx9zt","Dec 19, 5:05:00 PM EST"
-1869874908898967589,"First of all, I’m not the author of this proposal. Credit to @realDonaldTrump, @JDVance & @SpeakerJohnson.
-
-Second, this is a MUCH better bill that is closer to being a real continuing resolution (not an omnibus masquerading as a CR), but with suppor","Dec 19, 5:38:13 PM EST"
-1869875223224308159,"Exactly https://t.co/PXKbO4DaJL","Dec 19, 5:39:28 PM EST"
-1869886919003242923,"RT @alx: President Trump will work with @DOGE and Congress to get major spending reform and cuts next year in reconciliation.
-
-This CR is a…","Dec 19, 6:25:56 PM EST"
-1869890674180665730,"Oh the irony 😂 https://t.co/Ii1HHEy1yc","Dec 19, 6:40:52 PM EST"
-1869895749263130705,"Unfortunately, propaganda works (sigh).
-
-We need to teach people that any given piece of legislation will do the OPPOSITE of its name! https://t.co/ecBdwE0oxB","Dec 19, 7:01:02 PM EST"
-1869901448101904631,"A super fair & simple bill was put to a vote and only 2 Democrats in Congress were in favor.
-
-Therefore, responsibility for the shutdown rests squarely on the shoulders of @RepJeffries. https://t.co/TKq65oKLs4","Dec 19, 7:23:40 PM EST"
-1869903243209290049,"Shame on @RepJeffries for rejecting a fair & simple spending bill that is desperately needed by states suffering from hurricane damage! https://t.co/TKq65oKdCw","Dec 19, 7:30:48 PM EST"
-1869909447306293338,"RT @cb_doge: ELON MUSK: "A super fair & simple bill was put to a vote and only 2 Democrats in Congress were in favor. Shame on @RepJeffries…","Dec 19, 7:55:28 PM EST"
-1869917604162293983,"Objectively, the vast majority of Republican House members voted for the spending bill, but only 2 Democrats did.
-
-Therefore, if the government shuts down, it is obviously the fault of @RepJeffries and the Democratic Party.
-
-Plain & simple. https://","Dec 19, 8:27:52 PM EST"
-1869918340954685726,"💯 https://t.co/xu9d73wWek","Dec 19, 8:30:48 PM EST"
-1869964816242139156,"Yeah, it’s absurd to call something a “deal” if almost no one in Congress had even seen the bill until yesterday! https://t.co/FInDLZCDz6","Dec 19, 11:35:29 PM EST"
-1869968155637948428,"Incredibly well said
- https://t.co/wQloRXMuUP","Dec 19, 11:48:45 PM EST"
-1869968349209264332,"Exactly! https://t.co/E2SkRO8QNP","Dec 19, 11:49:31 PM EST"
-1869971709396160846,"🤨 https://t.co/dDr39UKToB","Dec 20, 12:02:52 AM EST"
-1869972020349292897,"Yeah https://t.co/2taPockihW","Dec 20, 12:04:06 AM EST"
-1869974254554333344,"RT @stevenmarkryan: Cathie Wood Knows What’s Coming…
-
-$TSLA https://t.co/Q1I7m6mvEX","Dec 20, 12:12:59 AM EST"
-1869975349750047013,"RT @CollinRugg: NEW: Liberal influencer Luke Beasley sits in total silence for over three minutes as Tim Pool excoriates him in defense of…","Dec 20, 12:17:20 AM EST"
-1869975450723705157,"Yup https://t.co/gEIw10fyRk","Dec 20, 12:17:44 AM EST"
-1869985989952761885,"Yup https://t.co/TE43sAxZ7E","Dec 20, 12:59:37 AM EST"
-1869986946031988780,"Only the AfD can save Germany https://t.co/Afu0ea1Fvt","Dec 20, 1:03:25 AM EST"
-1870103769628750196,"𝕏 provides the platform for the people to pull together for the common good! https://t.co/e1fLlrPYiG","Dec 20, 8:47:38 AM EST"
-1870103797563044093,"RT @ZubyMusic: X is the best social media platform BY MILES.
-
-Many of the smartest people in the world are on here. And reachable.","Dec 20, 8:47:44 AM EST"
-1870105113282654675,"This is the only way to make rapid progress https://t.co/j5qzqki0fo","Dec 20, 8:52:58 AM EST"
-1870106164551352593,"Shifting people from the government sector, which is low productivity, to the private sector, which is high productivity, results in greatly increased prosperity.
-
-Deregulation helps tremendously too. https://t.co/lAARe1WHNz","Dec 20, 8:57:09 AM EST"
-1870107226125267141,"RT @WallStreetMav: We have not had a President in over two years.
-
-Biden's staff has been running the show. Leaks indicate that Joe Biden h…","Dec 20, 9:01:22 AM EST"
-1870107771519283336,"There is legal trickery in length https://t.co/gKxCNTnvko","Dec 20, 9:03:32 AM EST"
-1870107982383456288,"😂 https://t.co/FBnxVfqajr","Dec 20, 9:04:22 AM EST"
-1870108961946427722,"Has anyone read it?
-
-Radical suggestion:
-FIRST read bill, THEN vote. https://t.co/qKenalxT7d","Dec 20, 9:08:16 AM EST"
-1870111975495360885,"When they said “DC swamp creatures”, I thought it was just a metaphor 😳
-
-https://t.co/9Qmn92BGkO https://t.co/w7e0Gp1trv","Dec 20, 9:20:14 AM EST"
-1870115335564587375,"RT @Alice_Weidel: Dear @elonmusk,
-Thank you so much for your note. The Alternative for Germany is indeed the one and only alternative for o…","Dec 20, 9:33:35 AM EST"
-1870122855431549393,"RT @tunguz: According to the MSM, 𝕏 is a Schrödinger's Social Network: both dead and too powerful at the same time.","Dec 20, 10:03:28 AM EST"
-1870126450952606061,"Turns out that Washington DC swamp creatures are real 😱
- https://t.co/w5fQVaJjg1","Dec 20, 10:17:45 AM EST"
-1870127790038659088,"Either the government should pass sensible bills that actually serve the people or shut it down! https://t.co/DxHyycW4jo","Dec 20, 10:23:05 AM EST"
-1870128479406076169,"Congratulations @Tesla team on a great year!
- https://t.co/5k7uepV6d9","Dec 20, 10:25:49 AM EST"
-1870132468507881822,"Wow, that’s insane! https://t.co/nYX83tkDC5","Dec 20, 10:41:40 AM EST"
-1870132676096655823,"RT @JudiciaryGOP: 🚨 @Weaponization releases 17,000-page staff report detailing the Select Subcommittee's findings about the Biden-Harris Ad…","Dec 20, 10:42:30 AM EST"
-1870132865981182403,"Sounds reasonable https://t.co/OgiKokYo2Q","Dec 20, 10:43:15 AM EST"
-1870133168248107020,"Wow https://t.co/fuokbzukTJ","Dec 20, 10:44:27 AM EST"
-1870136007959687274,"Great idea https://t.co/BiP571S4hn","Dec 20, 10:55:44 AM EST"
-1870138614484468081,"RT @TheRabbitHole84: Why was cancer funding lumped in with a bill that included a raise for Congress and funding for a stadium?
-
-Why is sep…","Dec 20, 11:06:05 AM EST"
-1870139884385538550,"Sounds promising https://t.co/aNaCj0Jnfi","Dec 20, 11:11:08 AM EST"
-1870139962055676283,"Yes https://t.co/EIPTnSInhA","Dec 20, 11:11:27 AM EST"
-1870140845388919234,"https://t.co/Uk8zCDuZ0z","Dec 20, 11:14:57 AM EST"
-1870141311036100968,"To bad, so sad he won’t be leader of the senate next year 😢😂 https://t.co/7MMfuM33Ie","Dec 20, 11:16:48 AM EST"
-1870142202350866569,"That is exactly the goal.
-
-The political & legacy media puppets all got their new instructions yesterday and are now parroting the same message to drive a wedge between @realDonaldTrump and me.
-
-They will fail. https://t.co/4O8JmEu1jx","Dec 20, 11:20:21 AM EST"
-1870142887968575952,"It is obviously meaningless to call our country a democracy if the elected leaders are unable to read legislation before voting!! https://t.co/PWcXrs046m","Dec 20, 11:23:04 AM EST"
-1870143536764719356,"It’s good that they found this gang, but why are illegals allowed to remain in America after being arrested for serious crimes multiple times? https://t.co/7I7KQ7u9MX","Dec 20, 11:25:39 AM EST"
-1870144765565775906,"The Democrats are lying again 🤨 https://t.co/htZA6cK1LR","Dec 20, 11:30:32 AM EST"
-1870144918284341374,"I can’t help it I just can’t 🤣🤣 https://t.co/dIrWXXVKlf","Dec 20, 11:31:08 AM EST"
-1870145533060256191,"RT @ScottAdamsSays: In August of 2020, Democrats told us Biden's brain was working fine and Trump was an insurrectionist Hitler.
-
-Both cla…","Dec 20, 11:33:35 AM EST"
-1870146128836211113,"How can a judge cancel an election and not be considered a dictator? https://t.co/Byex53wB96","Dec 20, 11:35:57 AM EST"
-1870147553154466202,"RT @WR4NYGov: Tell me again how Elon uses his power on X to censor his critics
-
-I'm struggling with that narrative https://t.co/gYsWaREitW","Dec 20, 11:41:36 AM EST"
-1870148999040077884,"Yes https://t.co/9U6NLIRjO6","Dec 20, 11:47:21 AM EST"
-1870149923749937614,"Wow, some politician in Germany went after 800 citizens just for posting memes! https://t.co/uchAJw1fwQ","Dec 20, 11:51:02 AM EST"
-1870151865117098032,"Send your followers to 𝕏! https://t.co/DzGwJ5ctXu","Dec 20, 11:58:45 AM EST"
-1870152430052069751,"How to share links: https://t.co/IWNahJ86R6","Dec 20, 12:00:59 PM EST"
-1870153197731405904,"This platform is more alive than ever! https://t.co/uFQoMEP4s0","Dec 20, 12:04:02 PM EST"
-1870153257634439627,"RT @nicksortor: 🚨 T MINUS 12 HOURS UNTIL THE SCHUMER SHUTDOWN! https://t.co/hAybqB77VV","Dec 20, 12:04:17 PM EST"
-1870158886658834825,"Voter fraud is real https://t.co/745LOms3SU","Dec 20, 12:26:39 PM EST"
-1870159355426853168,"Exactly https://t.co/Yu8jGjIvwu","Dec 20, 12:28:30 PM EST"
-1870159814090993975,"Such hypocrisy! https://t.co/L02FfDudXs","Dec 20, 12:30:20 PM EST"
-1870160236490723718,"The burns on 𝕏 are amazing 🤩 https://t.co/3YyeoZK5vU","Dec 20, 12:32:00 PM EST"
-1870160642860007794,"RT @teslaownersSV: “All government spending is taxation... your money is being wasted, and the Department of Government Efficiency is going…","Dec 20, 12:33:37 PM EST"
-1870160744513221116,"Seriously 😐 https://t.co/hFLnoyAkeQ","Dec 20, 12:34:02 PM EST"
-1870160861475549500,"Cool https://t.co/kLkpy8TJpt","Dec 20, 12:34:29 PM EST"
-1870161068603130256,"Well, well, well, let that sink in 🤣🤣 https://t.co/wpukLMDucu","Dec 20, 12:35:19 PM EST"
-1870161436011302928,"🤨 https://t.co/GC7UxYjMPz","Dec 20, 12:36:46 PM EST"
-1870162215128707432,"Fun fact: she was a Skeksis in Dark Crystal! https://t.co/o68duqc8Oi","Dec 20, 12:39:52 PM EST"
-1870162480233644480,"Once you see it, you can’t unsee it 😱","Dec 20, 12:40:55 PM EST"
-1870173563808002550,"RT @dvorahfr: @elonmusk Yes indeed ! https://t.co/lLsicWGHly","Dec 20, 1:24:58 PM EST"
-1870173697912320005,"RT @MarioNawfal: 🇺🇸ELON: “SHE WAS A SKEKSIS IN DARK CRYSTAL!”
-
-Elon’s deep-cut burn comparing Democrat congresswoman Rosa DeLauro to a Ske…","Dec 20, 1:25:30 PM EST"
-1870176743639728531,"RT @KanekoaTheGreat: NEW: Biden Admin Hiring 1,200 DEI Bureaucrats Before Handing Over to Trump
-
-The jobs offer annual salaries of up to $3…","Dec 20, 1:37:36 PM EST"
-1870187152648069466,"RT @JamesLucasIT: Thread of the world's most beautiful towns and villages at Christmas 🧵
-
-1. Locorotondo, Italy https://t.co/Nnw7LUL3yt","Dec 20, 2:18:58 PM EST"
-1870187259917676618,"RT @SeibtNaomi: ‘ELON MUSK INTERFERES WITH GERMAN ELECTIONS 🤯’
-
-Elon Musk expressed his opinion on the #1 news app 𝕏 because he cares about…","Dec 20, 2:19:23 PM EST"
-1870191879708364804,"Sounds promising https://t.co/HzmPr2J4SL","Dec 20, 2:37:45 PM EST"
-1870191968309129701,"RT @HSajwanization: Almost 8 years ago UAE 🇦🇪 Foreign Minister HH Sheikh Abdullah bin Zayed warned the Europe of something …
-
-… and guess…","Dec 20, 2:38:06 PM EST"
-1870195469315649581,"Lyin’ Liz strikes again
-
-https://t.co/RDtVycJjUc https://t.co/gzbmzIqDOW","Dec 20, 2:52:01 PM EST"
-1870195580632248677,"Bravo! https://t.co/DRHUxGdhqn","Dec 20, 2:52:27 PM EST"
-1870196175099363834,"RT @America1stLegal: /1🚨 VICTORY 🚨
-
-A federal court has denied the Stanford Internet Observatory, Atlantic Council, and Aspen Institute’s a…","Dec 20, 2:54:49 PM EST"
-1870196341856448941,"This is such a great idea 🤩 https://t.co/7M1h9Q4VWl","Dec 20, 2:55:29 PM EST"
-1870196687710441626,"RT @Jim_Jordan: 31 days until President Trump is back in the White House.","Dec 20, 2:56:51 PM EST"
-1870197620108603465,"Terrible https://t.co/ZMpy4L9VDQ","Dec 20, 3:00:33 PM EST"
-1870198951531688200,"What a huge liar.
-
-The AfD policies are identical to those of the US Democratic Party when Obama took office! I don’t think there is a single difference. https://t.co/b6daIRijPH","Dec 20, 3:05:51 PM EST"
-1870199168989311290,"RT @MarioNawfal: 🚨🇩🇪BREAKING: AT LEAST 11 DEAD, 60 INJURED AFTER VEHICLE CRASHES INTO CHRISTMAS MARKET IN MAGDEBURG, GERMANY https://t.co/d…","Dec 20, 3:06:43 PM EST"
-1870199809736339667,"RT @MarioNawfal: ELON: I'M LOOKING FOR FEEDBACK TO MAKE THE GOVERNMENT MORE EFFICIENT
-
-“One thing I want to be clear about is that I am loo…","Dec 20, 3:09:15 PM EST"
-1870200395823276310,"Deliberate mass murder https://t.co/GXmoI3Mu1L","Dec 20, 3:11:35 PM EST"
-1870200583598026956,"He did https://t.co/0bjV2NoUiF","Dec 20, 3:12:20 PM EST"
-1870201697601011922,"Obviously NOT “far-right”!
-
-Just common sense policies. https://t.co/FNueKCd1Ac","Dec 20, 3:16:46 PM EST"
-1870202366344990876,"RT @nicksortor: 🚨 #BREAKING: The first photo of the terrorıst who deliberately drove his car into the Christmas Market in Germany has been…","Dec 20, 3:19:25 PM EST"
-1870202677126156330,"Exactly https://t.co/7PlZ55eSni","Dec 20, 3:20:39 PM EST"
-1870203968695001417,"AP stands for Associated Propaganda https://t.co/I0yT4wfL7n","Dec 20, 3:25:47 PM EST"
-1870204655780733255,"Good explanation https://t.co/D4K4KLo4XI","Dec 20, 3:28:31 PM EST"
-1870205041417535542,"You don’t hate the lying legacy media enough https://t.co/gMtjbp2EMG","Dec 20, 3:30:03 PM EST"
-1870205189396799757,"RT @SenJoniErnst: On the eighth day of bureaucrat Christmas, the swamp gave to me
-🏢Eight out of 5,000 employees at the office,
-💰Seven month…","Dec 20, 3:30:38 PM EST"
-1870205467487854942,"🤣🤣 https://t.co/CcnhA4k7v9","Dec 20, 3:31:44 PM EST"
-1870206393334280578,"Unsustainable https://t.co/kK3mvq04dU","Dec 20, 3:35:25 PM EST"
-1870207048266174796,"RT @Nigel_Farage: We have allowed people who hate us and our values into Europe. Christmas is their target. Any guesses why?","Dec 20, 3:38:01 PM EST"
-1870209985805799511,"The goal of 𝕏 is to return power to the people https://t.co/v6D8fVJAwA","Dec 20, 3:49:42 PM EST"
-1870210411531731041,"Absolutely https://t.co/XvkSXDvI2N","Dec 20, 3:51:23 PM EST"
-1870210936616755632,"So is this a Republican bill or a Democrat bill? 🤔 https://t.co/C54cbLGoGR","Dec 20, 3:53:28 PM EST"
-1870217131071090919,"RT @AllisterClisham: Germany is reeling under the weight of woke idealism, a misguided crusade that has prioritised ideological purity over…","Dec 20, 4:18:05 PM EST"
-1870220466029297936,"RT @MarioNawfal: 🇺🇸 SCOTT JENNINGS: IT’S NOT THE TWEETS—IT’S THE PEOPLE
-
-"Elon Musk’s tweets aren’t the issue—it’s the reaction.
-
-I spoke t…","Dec 20, 4:31:20 PM EST"
-1870224142735184379,"RT @libsoftiktok: The German Government will go after their citizens who speak out about mass migration more than they prosecute the crimes…","Dec 20, 4:45:57 PM EST"
-1870224468259262660,"This is great https://t.co/KnSwLEjvjd","Dec 20, 4:47:14 PM EST"
-1870225008573984984,"Wow, this is so crazy!
-
-This is the government when it is NOT shut down!! https://t.co/DWTEIYihJ1","Dec 20, 4:49:23 PM EST"
-1870225246260998210,"RT @MarioNawfal: ELON: IF WE DON’T MAINTAIN THE CULTURAL IDENTITIES OF THE VARIOUS COUNTRIES, THEY WILL DISAPPEAR
-
-“I think there is value…","Dec 20, 4:50:20 PM EST"
-1870225571768041963,"The New York Times is pure propaganda https://t.co/DLh9mZbWBR","Dec 20, 4:51:38 PM EST"
-1870228715176599779,"Make awesome original memes instantly with @Grok! https://t.co/fIdPvb8JkI","Dec 20, 5:04:07 PM EST"
-1870229551101423768,"RT @elonmusk: @AOC https://t.co/YXMFlSb1ev","Dec 20, 5:07:26 PM EST"
-1870232634019737890,"RT @AMAZlNGNATURE: The Majestic Bald Eagle!! 🦅 https://t.co/5wEencjJAD","Dec 20, 5:19:41 PM EST"
-1870235500776243250,"This is a broken system https://t.co/EcjmqIO0ce","Dec 20, 5:31:05 PM EST"
-1870236798267298044,"The Speaker did a good job here, given the circumstances.
-
-It went from a bill that weighed pounds to a bill that weighed ounces.
-
-Ball should now be in the Dem court. https://t.co/KnSwLEjvjd","Dec 20, 5:36:14 PM EST"
-1870239818028069056,"RT @SteddyRecovery: @elonmusk and GROK gave me a great summary btw! 🤣 https://t.co/BQeDgeZxhq","Dec 20, 5:48:14 PM EST"
-1870241053800047043,"RT @teslaownersSV: Make kids not war
-
-Elon Musk https://t.co/5epYhp2OKZ","Dec 20, 5:53:09 PM EST"
-1870242954281152730,"True https://t.co/j7eyQPSoFk","Dec 20, 6:00:42 PM EST"
-1870249784663216135,"RT @KanekoaTheGreat: BREAKING: @Weaponization just dropped a MASSIVE 17,000-page report on the Biden Admin's weaponized federal government.…","Dec 20, 6:27:50 PM EST"
-1870252376726380661,"RT @Starlink: Access to high-speed internet the moment you step onboard the plane 🛰️✈️","Dec 20, 6:38:08 PM EST"
-1870253632098050543,"https://t.co/7rTkgQe8QF","Dec 20, 6:43:08 PM EST"
-1870256283980300507,"Your actions turned a bill that weighed pounds into a bill that weighed ounces!
-
-You are the media now.
-
-VOX POPULI
-VOX DEI https://t.co/mPPRQCnph0","Dec 20, 6:53:40 PM EST"
-1870258448606372098,"Wow, this is insane.
-
-Whoever refused to extradite a murderer deserves to be punished severely! https://t.co/wnqwhYVdw0","Dec 20, 7:02:16 PM EST"
-1870338404954861912,"RT @AutismCapital: 🚨NEW: Did you know that the X web interface now has a GROK button that can generate images for your posts? Once you hit…","Dec 21, 12:19:59 AM EST"
-1870338630956577220,"RT @thatsKAIZEN: 83 billionaires supported Kamala
-52 billionaires supported Trump
-
-Kamala raised $1b+
-Trump raised $400m","Dec 21, 12:20:53 AM EST"
-1870340340793614782,"RT @MarioNawfal: 🚨🇺🇸🇮🇱 JUDGE SLAMS ISRAELI SPYWARE FIRM OVER WHATSAPP SPYWARE LAWSUIT
-
-A federal judge sanctioned Israeli spyware firm NSO…","Dec 21, 12:27:41 AM EST"
-1870343390375608412,"RT @LibertyCappy: HUGE WIN today in Congress
-
-Here's what I saw:
-
-Trump, Elon, and a bunch of freedom fighters went to WAR against the swam…","Dec 21, 12:39:48 AM EST"
-1870344716174360815,"RT @WallStreetMav: President Trump just got a massive win in Congress
-
-After he blocked the Swamp 1,500+ page version, he got a clean ver…","Dec 21, 12:45:04 AM EST"
-1870345037005111348,"Extremely important thing to understand! https://t.co/v1zznaCQBj","Dec 21, 12:46:20 AM EST"
-1870347104201175455,"We will soon add a “Grok Enhance” tool to post composition offering improvements ranging from better grammar and fixing typos to added information and arguments https://t.co/eLWTI3Am2H","Dec 21, 12:54:33 AM EST"
-1870354616140882236,"RT @cb_doge: I strongly recommend everyone to create/join and contribute towards the communities of your interest on 𝕏
-
- https://t.co/tPAlz…","Dec 21, 1:24:24 AM EST"
-1870464208304779767,"RT @TPointUK: Konstatin Kisin shuts down a group of triggered leftists who can’t accept that Britain ended the Slave Trade, and their ances…","Dec 21, 8:39:53 AM EST"
-1870465006094921796,"Absolutely https://t.co/uq3j9mfZWy","Dec 21, 8:43:03 AM EST"
-1870465881710715078,"RT @Moraqeb2020: 🔴Saudi girl living in #Germany reported to the German police in September 2023 about the danger of a man called Talib Abd…","Dec 21, 8:46:32 AM EST"
-1870466368426140066,"Freedom of speech is the bedrock of democracy https://t.co/VsTOql7UNF","Dec 21, 8:48:28 AM EST"
-1870470964473201091,"😂 https://t.co/KuzTkswCBb","Dec 21, 9:06:44 AM EST"
-1870471494532231646,"Robots gonna be so crazy in the future! https://t.co/ln4zv7X65l","Dec 21, 9:08:50 AM EST"
-1870471770723196942,"True.
-
-Someone tell @SenSanders. https://t.co/XJ8RATeYMV","Dec 21, 9:09:56 AM EST"
-1870473997369946233,"RT @MarioNawfal: 🚨ELON: EXTREMELY IMPORTANT TO UNDERSTAND THAT GOVERNMENT SPENDING IS A TAX ON EVERY AMERICAN
-
-Nobel Prize-winning economis…","Dec 21, 9:18:47 AM EST"
-1870474960843706488,"Yes https://t.co/1HRijzbtYb","Dec 21, 9:22:37 AM EST"
-1870475061947433358,"Legacy media is a nonstop psy op","Dec 21, 9:23:01 AM EST"
-1870482816787706273,"RT @teslaownersSV: "ALL FEDERAL SPENDING IS TAXATION."
-
-Elon Musk
- https://t.co/wpOOSLSmx0","Dec 21, 9:53:50 AM EST"
-1870482941496947150,"The atheist angle was a scam to avoid extradition https://t.co/r2DvFs1I4i","Dec 21, 9:54:19 AM EST"
-1870483256430243917,"RT @BillAckman: That @POTUS Biden is mentally sharp is perhaps the worst lie ever told to the American people by the media, an Administrati…","Dec 21, 9:55:34 AM EST"
-1870483348763910560,"RT @ElonClipsX: Elon Musk: We will not accept an anointed class of journalists who tell us what to think.
-
-“What we're not going to do is s…","Dec 21, 9:55:56 AM EST"
-1870483899148632333,"True https://t.co/uNdxkFsqON","Dec 21, 9:58:08 AM EST"
-1870483950323503594,"RT @EndWokeness: Canada has hope https://t.co/7S01SJITsK","Dec 21, 9:58:20 AM EST"
-1870485116474278240,"RT @cb_doge: "Old school journalism is dead. Citizen journalism is the future. It's by the people, for the people. It absolutely fundamenta…","Dec 21, 10:02:58 AM EST"
-1870485471899623592,"Lyin’ Liz Warren aka Pocahontas https://t.co/gzbmzIqDOW","Dec 21, 10:04:23 AM EST"
-1870488080701870154,"Exactly https://t.co/zf5RmbtKEP","Dec 21, 10:14:45 AM EST"
-1870488903452676105,"The traditional political parties in Germany have utterly failed the people.
-
-🇩🇪 AfD is the only hope for Germany 🇩🇪 https://t.co/zyAlb18G6d","Dec 21, 10:18:01 AM EST"
-1870489374888013949,"Try Grok profile summaries https://t.co/wunEecfJ4v","Dec 21, 10:19:53 AM EST"
-1870490825265733834,"RT @SpaceX: Watch Falcon 9 launch the Bandwagon-2 mission to a mid-inclination orbit https://t.co/VvWFrfYkZo","Dec 21, 10:25:39 AM EST"
-1870490847453823362,"RT @SpaceX: On board this mission are 30 payloads for KOREA ADD, Arrow Science and Technology, Exolaunch, HawkEye 360, Maverick Space Syste…","Dec 21, 10:25:44 AM EST"
-1870493846313816136,"Japan and many other countries face population collapse https://t.co/wadq6ZdCuW","Dec 21, 10:37:39 AM EST"
-1870494155505635569,"RT @johnkrausphotos: https://t.co/DBY9saEzew","Dec 21, 10:38:53 AM EST"
-1870495918375735798,"Yeah, he was obviously a lunatic who should never have been allowed to enter Germany and should have been extradited when Saudi Arabia made the request.
-
-Suicidal empathy by the German government. https://t.co/nCVEnwKa2P","Dec 21, 10:45:53 AM EST"
-1870496147997085911,"The population collapse will be much worse than that https://t.co/OqHlAPeWQD","Dec 21, 10:46:48 AM EST"
-1870496736294457855,"Hakeem obediently repeats the lie https://t.co/3snq8SYboM","Dec 21, 10:49:08 AM EST"
-1870498036583116957,"That would be industrial production proportionate to population https://t.co/BKXI0RLbp3","Dec 21, 10:54:18 AM EST"
-1870499617210826944,"The vast emptiness of space https://t.co/CyQlo9aDje","Dec 21, 11:00:35 AM EST"
-1870499994937208875,"RT @visegrad24: Saudi Arabia warned the German authorities 3 times about the murderous intentions of the Magdeburg terrorist","Dec 21, 11:02:05 AM EST"
-1870500463143199062,"Important thread to understand the magnitude of failure by the German government https://t.co/CRz61jzA0N","Dec 21, 11:03:57 AM EST"
-1870501969888153909,"Wow, what a scam! https://t.co/SCVMIyiQer","Dec 21, 11:09:56 AM EST"
-1870533056521810389,"Joe Rogan says 𝕏 is the most trusted source of news!
-
-True. https://t.co/q0DPmHwOlv","Dec 21, 1:13:28 PM EST"
-1870533438555803730,"Falcon 9 launches 30 satellites https://t.co/riYsQV9LPJ","Dec 21, 1:14:59 PM EST"
-1870534462557331724,"If you haven’t tried the latest @Tesla self-driving, you are missing out.
-
-It will blow your mind how good it is!
-
-Pure magic. https://t.co/vHo2aa9udl","Dec 21, 1:19:03 PM EST"
-1870535046333165621,"So funny lmaooo https://t.co/Bzbj3OgeGZ","Dec 21, 1:21:22 PM EST"
-1870535564690366901,"Well, let’s find out, shall we? 🕵️♂️ https://t.co/S4R8TjiW4m","Dec 21, 1:23:26 PM EST"
-1870536998290956292,"Elon Musk is a","Dec 21, 1:29:07 PM EST"
-1870538920523714740,"𝕏 is the most balanced platform in the world! https://t.co/hKTilKzxa6","Dec 21, 1:36:46 PM EST"
-1870540257390985727,"Everything is just a quarks & leptons remix https://t.co/WppEWvBnuC","Dec 21, 1:42:04 PM EST"
-1870540582335988089,"Real 🤣 https://t.co/uCukHndcNJ","Dec 21, 1:43:22 PM EST"
-1870553209703715166,"RT @Chesschick01: What @JMilei has done in Argentina has been astonishing. Milei inherited a country with a massive monthly inflation rate…","Dec 21, 2:33:33 PM EST"
-1870554324125831637,"RT @Starlink: Starlink is designed to endure the elements - it can withstand sleet, heavy rain, and even melt snow 🛰️🌨️","Dec 21, 2:37:58 PM EST"
-1870554740104495148,"Starlink now in Kosovo https://t.co/GFxBRn3geL","Dec 21, 2:39:37 PM EST"
-1870556174934052959,"Wait, you’re saying strippers don’t like me? 🤯😢 https://t.co/HHopxAYVjk","Dec 21, 2:45:20 PM EST"
-1870565010570699208,"😂 https://t.co/sPANUX16rG","Dec 21, 3:20:26 PM EST"
-1870570740061524259,"Once again https://t.co/Y3jHWYCPPS","Dec 21, 3:43:12 PM EST"
-1870583147475177548,"RT @thatsKAIZEN: Now that you see how much the media and government lie about what’s going on in our country…
-
-Imagine how much they lie ab…","Dec 21, 4:32:30 PM EST"
-1870583275296809421,"💯 https://t.co/iip0KjeIpd","Dec 21, 4:33:01 PM EST"
-1870588115049693258,"Yes https://t.co/TSYH6yh1i4","Dec 21, 4:52:15 PM EST"
-1870588920070852793,"Yes https://t.co/QmUdSY3rEZ","Dec 21, 4:55:27 PM EST"
-1870638040160391355,"https://t.co/Kh1CIyGMla","Dec 21, 8:10:38 PM EST"
-1870638948114173985,"https://t.co/ThEax2saXl","Dec 21, 8:14:14 PM EST"
-1870640017942655454,"Maybe we should have some basic cognitive test for elected officials?
-
-This is getting crazy … https://t.co/raE6dAS1jm","Dec 21, 8:18:29 PM EST"
-1870640111064596677,"RT @teslaownersSV: “My plan is to use the money to get humanity to Mars and preserve the light of consciousness.”
-
-Elon Musk
- https://t.co…","Dec 21, 8:18:51 PM EST"
-1870643517577429464,"Wow https://t.co/eYsO3wwU1W","Dec 21, 8:32:24 PM EST"
-1870646816955654210,"Wtf is the German press saying?
-
-Most people in Europe still think the legacy press is real, when it is pure propaganda.
-
-Please send them links to X, so they know what’s actually going on. https://t.co/X2zVYnsIsq","Dec 21, 8:45:30 PM EST"
-1870647091325759873,"149 attacks with explosives in Sweden last year? https://t.co/wkahsJsxGf","Dec 21, 8:46:36 PM EST"
-1870720671254565361,"Bro, American “foreign interference” is the only reason you’re not speaking German or Russian rn lmao https://t.co/uTuMudRuLt","Dec 22, 1:38:58 AM EST"
-1870738542164373697,"Yes https://t.co/t3IxvSXjj4","Dec 22, 2:49:59 AM EST"
-1870739695950594302,"Legacy media lies again https://t.co/litYmYkkss","Dec 22, 2:54:34 AM EST"
-1870741503561379993,"Wow https://t.co/vzwbEfpT1o","Dec 22, 3:01:45 AM EST"
-1870742007683137631,"No way he actually wrote the answers","Dec 22, 3:03:45 AM EST"
-1870750944364998907,"You are the media now https://t.co/l3q9jnaaIT","Dec 22, 3:39:16 AM EST"
-1870878829230563507,"RT @JonErlichman: SpaceX’s first rocket landing was 9 years ago. https://t.co/7qVNcr47bg","Dec 22, 12:07:26 PM EST"
-1870881510146134139,"Interesting https://t.co/TVYPWKsAqP","Dec 22, 12:18:05 PM EST"
-1870882024740786536,"I do love humanity https://t.co/NIRDPBpki8","Dec 22, 12:20:08 PM EST"
-1870882545409081591,"“Your iPhone may be getting pegged” – Apple 🤣 https://t.co/I28RfIx62z","Dec 22, 12:22:12 PM EST"
-1870883903352848426,"Community Notes and rebuttals by users on this platform are the biggest factor pushing the legacy media to be less deceptive.
-
-To hold legacy media accountable for lies, it is super important to send links from 𝕏 to friends who aren’t yet on this platfo","Dec 22, 12:27:36 PM EST"
-1870886724257386529,"The power of the unelected Federal bureaucracy has grown to become an unconstitutional “FOURTH BRANCH” of government!
-
-Especially with the creation of their own internal court system, it has become the most powerful branch of government.
-
-We must fix thi","Dec 22, 12:38:49 PM EST"
-1870888130045214850,"Population collapse in more than half the world is happening right now https://t.co/f2X3WOIi9F","Dec 22, 12:44:24 PM EST"
-1870889773365100743,"RT @charliekirk11: ROB SCHNEIDER's fiery message explaining to Democrats why they lost:
-
-"You lost because you tried to convince the Americ…","Dec 22, 12:50:56 PM EST"
-1870892242459930773,"This woman is one of the many who think that the legacy news is real.
-
-The antidote is to send them links to source material and rebuttals on 𝕏.
-
-Once they realize that legacy media lies, they never forget it. https://t.co/93sm0sVRev","Dec 22, 1:00:44 PM EST"
-1870893895724527667,"Legacy media is written by the FAR LEFT.
-
-Only 3% of journalists are Republican!
-
-It is borderline illegal in newsrooms to be a Republican journalist. https://t.co/Js0YMudxTS","Dec 22, 1:07:18 PM EST"
-1870894164877156382,"Legacy media must die https://t.co/At02Y9lJKJ","Dec 22, 1:08:23 PM EST"
-1870894953838109073,"https://t.co/usoIMccsUn","Dec 22, 1:11:31 PM EST"
-1870895903839777241,"Yup https://t.co/8Unxz40odU","Dec 22, 1:15:17 PM EST"
-1870896158765174866,"RT @tobi: This kind of insane lock-in on doing something entirely novel happens very very rarely in history. It never happens by accident.…","Dec 22, 1:16:18 PM EST"
-1870896222434898264,"RT @mayemusk: A new modeling post for @XFashion 😎😎
-Black and white photos by @NomadRJ “Maye in the streets of NYC“ for Russell James’s new…","Dec 22, 1:16:33 PM EST"
-1870896435509764380,"ChatGPT has woke programmed into its bones https://t.co/Q8gwas4FpT","Dec 22, 1:17:24 PM EST"
-1870896675012673639,"RT @amuse: CHART: This is the craziest chart you'll see all day. $TSLA's Market Cap Nears Half Of Global Auto Industry.
-
-h/t @zerohedge htt…","Dec 22, 1:18:21 PM EST"
-1870896854554345855,"RT @charliekirk11: President Trump on his “All-Star Cabinet.”
-
-FULFILL THE MANDATE.
-
-@realDonaldTrump https://t.co/SV47J3GpBj","Dec 22, 1:19:04 PM EST"
-1870899562258276537,"Starship flights in 2025 will sooo awesome https://t.co/JzdzIfwzGV","Dec 22, 1:29:49 PM EST"
-1870900767751877040,"Upload images to Grok. You will be amazed at what it can figure out!
-
-And it gets better every week. https://t.co/FCl0xsN7hq","Dec 22, 1:34:37 PM EST"
-1870901510319833540,"https://t.co/M6KQhkoxR7","Dec 22, 1:37:34 PM EST"
-1870901817367834656,"Only AfD can save Germany https://t.co/8TNZVEZGh5","Dec 22, 1:38:47 PM EST"
-1870902568949592370,"Trump won a majority of the electorate, so Mr. Sanity here thinks a majority of America is “Al-Qaeda” 🤡 https://t.co/30n04GZYrW","Dec 22, 1:41:46 PM EST"
-1870903805845598428,"Why are American taxpayers funding a quarter of European defense spending?
-
-This doesn’t make sense, especially when we have a massive budget deficit and unsustainable growth in debt. https://t.co/A4UXFnCpfz","Dec 22, 1:46:41 PM EST"
-1870904082564555012,"YES!
- https://t.co/FJhC3Mlj6p","Dec 22, 1:47:47 PM EST"
-1870906012255088788,"RT @shivon: When I first encountered Elon, one of the things that struck me was that he was never interested in doing anything “for money”…","Dec 22, 1:55:27 PM EST"
-1870910663700390365,"I’d like to propose that Congress pass a “Save the Bureaucracy” bill, based on the premise that any given bill will do the opposite of its name 🤣🤣","Dec 22, 2:13:56 PM EST"
-1870911938118750239,"RT @cb_doge: Donald Trump's Full Speech from Today.
-
- https://t.co/YczMYSGTzx","Dec 22, 2:19:00 PM EST"
-1870922889496875394,"RT @Liv_Boeree: AMAZING Win-Win episode dropping tomorrow... with the one and only Botez Sisters! @alexandrabotez & @itsandreabotez
-
-Here…","Dec 22, 3:02:31 PM EST"
-1870934194316271865,"Naughtius Maximus https://t.co/ahZAqzlP3P","Dec 22, 3:47:26 PM EST"
-1870957051075325957,"So true 😂 https://t.co/YM8Mmm0dpA","Dec 22, 5:18:16 PM EST"
-1870961132908814603,"😈😂
-https://t.co/klsWTmU0Lx","Dec 22, 5:34:29 PM EST"
-1870963419727483337,"RT @realDonaldTrump: A beautiful morning in Phoenix, Arizona at @TPUSA #AMFEST2024. THANK YOU! https://t.co/bMGsEBQGvl","Dec 22, 5:43:34 PM EST"
-1870964033693614329,"RT @MarioNawfal: 🇺🇸 FETTERMAN: "ROOTING AGAINST TRUMP IS ROOTING AGAINST AMERICA”
-
-@JohnFetterman:
-
-“If you’re rooting against the presiden…","Dec 22, 5:46:01 PM EST"
-1870965016423256296,"New York City is experiencing insane gridlock surface traffic, because people are legitimately afraid to take the subway or walk https://t.co/CU4JUrh9cE","Dec 22, 5:49:55 PM EST"
-1870967911680278670,"Enough is enough https://t.co/lUZDwvZMQf","Dec 22, 6:01:25 PM EST"
-1870969002354454982,"2025 is gonna be so lit 🤣🤣 https://t.co/1i5S00FhPm","Dec 22, 6:05:45 PM EST"
-1870974463069589892,"Try the Grok button (box with slash)! https://t.co/ZQNr49C1Sg","Dec 22, 6:27:27 PM EST"
-1870974836891394473,"RT @MarioNawfal: 🚨🇺🇸 MIGRANT SUSPECT ARRESTED: SET NYC SUBWAY RIDER ON FIRE AND WATCHED HER BURN
-
-A Guatemalan migrant was arrested after a…","Dec 22, 6:28:56 PM EST"
-1870980491828142233,"Do the people of New York City really want their tax dollars spent this way? https://t.co/Esq5MpyMth","Dec 22, 6:51:25 PM EST"
-1870980988852904421,"Yup https://t.co/iOCF80IfYF","Dec 22, 6:53:23 PM EST"
-1871004414061809730,"Bring your friends & familes to 𝕏! https://t.co/k2XcCpzPV5","Dec 22, 8:26:28 PM EST"
-1871007740291928286,"Wow https://t.co/hmHUo3Sfnm","Dec 22, 8:39:41 PM EST"
-1871067333478981687,"Falcon launch underway
- https://t.co/mKLbzyc3Jw","Dec 23, 12:36:29 AM EST"
-1871068520810729528,"RT @MarioNawfal: 🇺🇸 NASA’S SOLAR PROBE IS GETTING UNCOMFORTABLY CLOSE TO THE SUN
-
-Imagine flying through the sun’s outer atmosphere at 430,…","Dec 23, 12:41:12 AM EST"
-1871070841649402224,"RT @TheGregYang: the new grok profile summary feature is super helpful to get a quick overview of the new Trump nominees
-
-you can easily se…","Dec 23, 12:50:26 AM EST"
-1871071780410155410,"RT @MarioNawfal: 🇺🇸 THE GERONTOCRACY'S LAST GASP: WHY AMERICA NEEDS TERM LIMITS NOW
-
-An 82-year-old freezes mid-sentence.
-
-Another loses t…","Dec 23, 12:54:09 AM EST"
-1871075927117189169,"Impressive https://t.co/DnBEzdclBY","Dec 23, 1:10:38 AM EST"
-1871081553004281926,"💯 https://t.co/4UYwo6nSLv","Dec 23, 1:32:59 AM EST"
-1871086042775949432,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida, delivering 21 @Starlink satellites to the constellation https://t.co/izxmtsgB65","Dec 23, 1:50:50 AM EST"
-1871087378657599909,"Troubling https://t.co/zSb87NoU2G","Dec 23, 1:56:08 AM EST"
-1871087581846515804,"RT @america: BREAKING: Police have arrested Guatemalan migrant Sebastin Zapeta after he set a woman on fire and watched her burn to death o…","Dec 23, 1:56:57 AM EST"
-1871087864508797127,"Insane. She should be recalled. https://t.co/Wbxd8wMBAr","Dec 23, 1:58:04 AM EST"
-1871088731807154258,"This is crazy https://t.co/iKgWJvjaJh","Dec 23, 2:01:31 AM EST"
-1871088922308329712,"RT @MarioNawfal: 🇪🇺 EUROPE'S POWER PRICES: SHOOTING THEMSELVES IN THE FOOT
-
-European industries are paying triple the energy costs of their…","Dec 23, 2:02:16 AM EST"
-1871090188488978605,"RT @teslaownersSV: “Woke mind virus is one of the biggest threats to the existence of humanity.”
-Elon Musk
- https://t.co/YKYRg4qjPV","Dec 23, 2:07:18 AM EST"
-1871091594486755648,"RT @WallStreetMav: Guess who might get an early pardon from President Biden.
-
-The #2 largest donor to the Democrats ... https://t.co/mjeeQ7…","Dec 23, 2:12:53 AM EST"
-1871091890369810825,"RT @MarioNawfal: MOVIES MADE BY AI? WE’RE BASICALLY THERE NOW
-
-Every shot in The Heist was created with Google Veo 2’s text-to-video AI.…","Dec 23, 2:14:04 AM EST"
-1871095058486935745,"Crazy https://t.co/Z7kKwPyoUF","Dec 23, 2:26:39 AM EST"
-1871096821948502409,"RT @WesternLensman: Elon Musk, Nov 14:
-
-“The people want change and we’re gonna give it to them. This is gonna be the most transformative p…","Dec 23, 2:33:40 AM EST"
-1871107342932344970,"Recent events also had a big effect https://t.co/4FEQ8ucEhz","Dec 23, 3:15:28 AM EST"
-1871107841169523104,"!! https://t.co/r9SvXck4Rv","Dec 23, 3:17:27 AM EST"
-1871154210533716469,"RT @AutismCapital: Peter Thiel tells the story of how Gawker outed him as gay in 2007 and him and others believed that they were just suppo…","Dec 23, 6:21:42 AM EST"
-1871154694619283941,"RT @stillgray: Joe Biden has commuted the death sentences of 37 out of 40 people on death row, exempting only the Tree of Life Shooter, the…","Dec 23, 6:23:38 AM EST"
-1871158028826747125,"Yes https://t.co/F5PwMCuDrH","Dec 23, 6:36:53 AM EST"
-1871158872578109942,"RT @TheRabbitHole84: The United States deficit exploded during the 2010s. https://t.co/WM6NxcEOT4","Dec 23, 6:40:14 AM EST"
-1871161064630489309,"RT @teslaownersSV: Reusable Rockets, Robots and Autonomous vehicles are in the future
- https://t.co/Rxs6obkcdc","Dec 23, 6:48:56 AM EST"
-1871161222932111787,"Cool https://t.co/dXaHtoE8H8","Dec 23, 6:49:34 AM EST"
-1871161339692904708,"https://t.co/vJa0HUld3h","Dec 23, 6:50:02 AM EST"
-1871162257507520932,"Your tax dollars are being wasted on nothing https://t.co/3QsQ0GMeaI","Dec 23, 6:53:41 AM EST"
-1871162961219461254,"https://t.co/Wtj0SiX0yt","Dec 23, 6:56:29 AM EST"
-1871163247593996349,"Concerning https://t.co/C11Lnm8XeH","Dec 23, 6:57:37 AM EST"
-1871163296868610185,"RT @teslaownersSV: BREAKING: Grok can be used to tell you about someone’s profile. https://t.co/Frr4IcV1Ho","Dec 23, 6:57:49 AM EST"
-1871165017082458349,"RT @charliekirk11: TOM HOMAN's message for the Tren de Aragua gangs :
-
-"My gang's bigger than yours! We're going to kick you out of this co…","Dec 23, 7:04:39 AM EST"
-1871166225876959344,"RT @WesternLensman: 🇺🇸Trump is set to dismantle DEI, immediately after taking office:
-
-"I will end all of the Marxist diversity, equity and…","Dec 23, 7:09:27 AM EST"
-1871166635031347398,"RT @PeteHegseth: Thank you Mr. President! Building an America First team at @DeptofDefense that will Make America STRONG & SAFE Again. http…","Dec 23, 7:11:05 AM EST"
-1871167110589841898,"RT @teslaownersSV: I only have one news app 𝕏.
-
-Every other news app is click bait and lies without any accountability.
-
-𝕏 is my trusted…","Dec 23, 7:12:58 AM EST"
-1871167634349461861,"RT @MarioNawfal: 🚨🇺🇸 WHY CAN’T BIDEN BUILD ANYTHING?
-
-He promised 500,000 EV chargers - 2 years later, they'd built 7.
-
-That’s one per $1B…","Dec 23, 7:15:03 AM EST"
-1871237675128373590,"Wow https://t.co/BAIkR6pcNZ","Dec 23, 11:53:22 AM EST"
-1871303388610388035,"RT @teslaownersSV: Let’s go to Mars..
-
-Starship vs Falcon 1 vs Falcon 9
- https://t.co/QTNVUJzME5","Dec 23, 4:14:29 PM EST"
-1871304177118572606,"You can even have high-speed Internet on a remote mountain in Antarctica! https://t.co/BQcfMcaCpn","Dec 23, 4:17:37 PM EST"
-1871411623845409177,"A lot of compute is needed https://t.co/Q4achiPyC5","Dec 23, 11:24:34 PM EST"
-1871423375333364124,"RT @DOGE: How the U.S. Government Spent your Tax Dollars in 2024:
-
--State Department spent $2.1 million on border security—for Paraguay.
--U…","Dec 24, 12:11:16 AM EST"
-1871423567994495347,"RT @DefiyantlyFree: New York has become a side show. CEOs get executed in broad daylight and when his killer gets arrested people protest h…","Dec 24, 12:12:02 AM EST"
-1871440062921252901,"“We are gonna need a bigger compute!”
-@xAI
- https://t.co/ckc78vJhL6","Dec 24, 1:17:35 AM EST"
-1871443771424116954,"Stop donating to Wokepedia until they restore balance to their editing authority https://t.co/sHjnFTtN5y","Dec 24, 1:32:19 AM EST"
-1871447023511375984,"RT @TheRabbitHole84: Wikipedia Bias for Left Leaning vs Right Leaning figures https://t.co/7jUxtjfeC9","Dec 24, 1:45:14 AM EST"
-1871447995612590509,"One the craziest things ever said in America https://t.co/dBe8j68dlG","Dec 24, 1:49:06 AM EST"
-1871448300253290919,"RT @NASA: To everyone on Earth, Merry Christmas from our @NASA_Astronauts aboard the International @Space_Station. https://t.co/GoOZjXJYLP","Dec 24, 1:50:19 AM EST"
-1871451701976412293,"The “fixed pie” fallacy is at the heart of much wrong-headed economic thinking.
-
-There is essentially infinite potential for job and company creation.
-
-Think of all the things that didn’t exist 20 or 30 years ago! https://t.co/w7naC0Sb5E","Dec 24, 2:03:50 AM EST"
-1871453432995025263,"🔥🔥🤣🤣 https://t.co/ANuoe6lACD","Dec 24, 2:10:43 AM EST"
-1871454599904940136,"RT @IterIntellectus: how do you even defend from an army of these chasing you?
-https://t.co/KTKBEWSug1","Dec 24, 2:15:21 AM EST"
-1871459914310459634,"Yes https://t.co/aRWrmulZpz","Dec 24, 2:36:28 AM EST"
-1871460909681688710,"RT @MarioNawfal: 🚨🇺🇸MARC ANDREESSEN: DRONES HAVE REDEFINED WARFARE
-
-“I was talking to somebody who is legendary in the Special Forces commu…","Dec 24, 2:40:25 AM EST"
-1871461196253311174,"RT @heydave7: Here are some notes on the anti-billionaire ideology - and why it might do more harm than good:
-
-At the heart of the frustrat…","Dec 24, 2:41:33 AM EST"
-1871484884998664209,"RT @MdeZegher: This feature may seem small, but it's pretty incredible. Through an AC ripple current coming from the Superchargers, cold-so…","Dec 24, 4:15:41 AM EST"
-1871485318823907359,"RT @EricLDaugh: 🚨 BREAKING: Senator Rand Paul releases his yearly report on government waste - the "Festivus Report."
-
-$1 TRILLION. In gove…","Dec 24, 4:17:25 AM EST"
-1871506025301549315,"The Starlink ion thruster is a marvel of engineering https://t.co/gZShXXDvUW","Dec 24, 5:39:41 AM EST"
-1871506420371472859,"Grok can recognize and explain almost any image, from medical records to WW2 aircraft to memes! https://t.co/rSGjljqfGB","Dec 24, 5:41:16 AM EST"
-1871506775519944921,"RT @libsoftiktok: Babylon Bee predicted it! https://t.co/fbuNVt1LSH","Dec 24, 5:42:40 AM EST"
-1871509163165290509,"Who was (still is for another month) actually in charge of the White House? https://t.co/zgoUakDyc2","Dec 24, 5:52:10 AM EST"
-1871517113653039459,"RT @WesternLensman: This is one of the more striking examples of regime/media collusion to blatantly lie to the American people.
-
-In June,…","Dec 24, 6:23:45 AM EST"
-1871520121212346496,"Very wise words
- https://t.co/5yH99l3kId","Dec 24, 6:35:42 AM EST"
-1871520428273098832,"RT @MarioNawfal: 🚨 $1 TRILLION BLOWN: RAND PAUL SLAMS INSANE GOVERNMENT WASTE
-
-From climate-themed cabarets to breakdancing grants, here ar…","Dec 24, 6:36:55 AM EST"
-1871662943919821149,"RT @BasedMikeLee: All I want for Christmas is to dethrone America’s bureaucratic oligarchs","Dec 24, 4:03:14 PM EST"
-1871672289982628126,"RT @KanekoaTheGreat: NEW: Sen Rand Paul Breaks Down Yearly Festivus Report of $1 Trillion in Government Waste
-
-- $10 billion on maintaining…","Dec 24, 4:40:22 PM EST"
-1871714875464192281,"RT @Tesla_Optimus: They grow up so fast
-
-Merry Xmas from Optimus & his older brother, Optimus https://t.co/R2oCey0WVC","Dec 24, 7:29:35 PM EST"
-1871726072913698940,"Japan’s population is now dropping by almost a million people per year
- https://t.co/GMmP8RqEnW","Dec 24, 8:14:05 PM EST"
-1871727325144142030,"Most countries are experiencing all-time low birth rates https://t.co/KpLpmX2CmY","Dec 24, 8:19:03 PM EST"
-1871754131729494523,"RT @esa: 🚀🎶 ¡Feliz Navidad!
-
-Need some more inspiration for your Christmas party playlist? Look no further!
-
- 👉 https://t.co/LxmWXYGds0 htt…","Dec 24, 10:05:35 PM EST"
-1871801357373763905,"RT @MarioNawfal: MARS, HERE WE COME—AND IT'LL BE SOONER THAN YOU THINK
-
-Elon says SpaceX will start sending Starships to Mars in 2026 to te…","Dec 25, 1:13:14 AM EST"
-1871945958420004943,"Merry Christmas and may you have a wonderful New Year! 🎁🎄🎅
-
- https://t.co/BNg7Mk5Dnd","Dec 25, 10:47:50 AM EST"
-1871949701945450814,"RT @FutureJurvetson: Christmas 1968, from the far side of the Moon with Earth entirely hidden from view, the Apollo 8 spacecraft ignited it…","Dec 25, 11:02:42 AM EST"
-1871949799194595550,"RT @DavidSacks: Since people are digging up old tweets, here’s one of @sriramk working with me and @elonmusk to restore free speech on Twit…","Dec 25, 11:03:05 AM EST"
-1871950109354975658,"RT @JonErlichman: Things that didn’t exist on Christmas 25 years ago:
-
-iPhone
-Tesla
-YouTube
-𝕏
-SpaceX
-Gmail
-Instagram
-Bitcoin
-Facebook
-Skype…","Dec 25, 11:04:19 AM EST"
-1871952411847541240,"RT @TheRabbitHole84: Some of the most successful people in the United States are from minority groups.
-
-America is the land of opportunity…","Dec 25, 11:13:28 AM EST"
-1871957295023989207,"RT @teslaownersSV: Do you still trust legacy media?
-
-I only trust 𝕏. I’ve deleted all the news apps.
-
-Trust me you’ll be happy you did.","Dec 25, 11:32:53 AM EST"
-1871961288236298306,"RT @RoyalFamily: 🎄 Wishing you a very Merry Christmas! https://t.co/dIsNjqy7WR","Dec 25, 11:48:45 AM EST"
-1871966477206896759,"RT @sundarpichai: Merry Christmas! Wishing everyone peace and joy this holiday season. https://t.co/9EUTE8cfEG","Dec 25, 12:09:22 PM EST"
-1871973888701444552,"RT @mayemusk: Merry Christmas! 🎄🎉
-Mrs Clauss according to @grok Best photo chosen by @elonmusk
-And a family photo from our first Christmas…","Dec 25, 12:38:49 PM EST"
-1871974354118127743,"🤔 https://t.co/z5YnaH1eVa","Dec 25, 12:40:40 PM EST"
-1871980130303918426,"🎶 Who let the DOGE out? 🎶 https://t.co/1GR7Cih54R","Dec 25, 1:03:37 PM EST"
-1872076533277528312,"RT @RuiHuang_art: My Scifi Art collection 2024 https://t.co/zXXBTvWi1w","Dec 25, 7:26:41 PM EST"
-1872076574943830528,"RT @McDonaldsJapan: 運命に導かれた3つのバーガーが
-マクドナルドに集結。
-
-エヴァンゲリオンバーガー
-1/6(月)発売 https://t.co/6S5JO3Mpi7","Dec 25, 7:26:51 PM EST"
-1872080680336896491,"RT @DimaZeniuk: Super Heavy Booster was highlighted in Google's "Year in Search 2024" recap video https://t.co/9EzB8mx2d6","Dec 25, 7:43:10 PM EST"
-1872080985451598039,"https://t.co/nad63csUhQ","Dec 25, 7:44:23 PM EST"
-1872086971557761348,"Ozempic Santa https://t.co/7YECSNpWoz","Dec 25, 8:08:10 PM EST"
-1872087398299103559,"RT @realDonaldTrump: https://t.co/dt3qNahL3Q","Dec 25, 8:09:52 PM EST"
-1872088089507869170,"Like Cocaine Bear, but Santa and Ozempic!","Dec 25, 8:12:36 PM EST"
-1872088608083165198,"How it started vs how it’s going https://t.co/fQeCQ7zCPC","Dec 25, 8:14:40 PM EST"
-1872090468982591558,"Technically, Mounjaro, but that doesn’t have the same ring to it 😂","Dec 25, 8:22:04 PM EST"
-1872112067265933434,"RT @Not_the_Bee: As an American with a masters in aerospace engineering, I can tell you there are not enough of us. My graduation at UF was…","Dec 25, 9:47:53 PM EST"
-1872112939400052972,"RT @cybertruck: If presents are late, don’t blame me https://t.co/dU7GDjt5aK","Dec 25, 9:51:21 PM EST"
-1872114275457904715,"RT @TheChiefNerd: .@chamath: “I think the biggest business winner of 2024 is the business of speech … I think that we have made freedom of…","Dec 25, 9:56:40 PM EST"
-1872114830913700250,"🤣🤣
- https://t.co/fiIrhZeSil","Dec 25, 9:58:52 PM EST"
-1872123021898436862,"RT @Rothmus: 👀 https://t.co/1UXLLT7eZT","Dec 25, 10:31:25 PM EST"
-1872128874420846672,"RT @cb_doge: “Manufacturing is the hardest thing. It's under appreciated in its difficulty. I hope someone makes a movie about that."
-
-— El…","Dec 25, 10:54:40 PM EST"
-1872150740627767748,"https://t.co/7CkYklNhh9","Dec 26, 12:21:34 AM EST"
-1872151527546409057,"You can just say things","Dec 26, 12:24:41 AM EST"
-1872152828611064296,"An unforgivable sin https://t.co/5lGD42ZTJI","Dec 26, 12:29:51 AM EST"
-1872154357019607212,"Where your donation to Wikipedia goes https://t.co/7ssFUMaYbA","Dec 26, 12:35:56 AM EST"
-1872179716637286407,"How can the data systems be so bad? https://t.co/etmxX99t6r","Dec 26, 2:16:42 AM EST"
-1872180129402925379,"💯 https://t.co/VvuPFFpYq3","Dec 26, 2:18:20 AM EST"
-1872180521884905961,"RT @WallStreetMav: 🤨🤨🤨 https://t.co/OBvaoyQI1b","Dec 26, 2:19:54 AM EST"
-1872182255499747519,"RT @TheRabbitHole84: Europe's fertility rates are looking pretty low https://t.co/9kZ1EYpiWJ","Dec 26, 2:26:47 AM EST"
-1872182285916856385,"RT @teslaownersSV: 𝕏 is the #1 news app in 140 countries. https://t.co/PkxpqrTz2o","Dec 26, 2:26:55 AM EST"
-1872182751765655796,"RT @teslaownersSV: “For some reason, the legacy mainstream media just ignores the fact that America is going bankrupt like crazy, at a rate…","Dec 26, 2:28:46 AM EST"
-1872182892731981853,"RT @AlecStapp: Only 14% of US residents are immigrants.
-
-But immigrants are responsible for 36% of aggregate innovation.
-
-Two-thirds of thi…","Dec 26, 2:29:19 AM EST"
-1872308320801079633,"RT @Tesla: A silent & smooth ride is well appreciated by new parents especially
-
-You can even reduce the volume of chimes by enabling Joe…","Dec 26, 10:47:44 AM EST"
-1872346685105680879,"True https://t.co/MYDNu2IIxm","Dec 26, 1:20:10 PM EST"
-1872347637577588738,"As I said a few years ago … https://t.co/b5Ur68y1OS","Dec 26, 1:23:57 PM EST"
-1872370402011537653,"The immigration hot-button topic is the biggest DKE situation I’ve ever seen 😂","Dec 26, 2:54:25 PM EST"
-1872370937087373361,"*legal immigration","Dec 26, 2:56:33 PM EST"
-1872374103983759835,"Maybe this is a helpful clarification: I am referring to bringing in via legal immigration the top ~0.1% of engineering talent as being essential for America to keep winning.
-
-This is like bringing in the Jokic’s or Wemby’s of the world to help your whol","Dec 26, 3:09:08 PM EST"
-1872374291708473762,"Btw, I recommend following Kaizen. He is a clear thinker.","Dec 26, 3:09:52 PM EST"
-1872374991800652146,"At risk of starting the obvious, there are many attention-seeking trolls on all social media platforms trying to yank your chain.
-
-They win if you respond.","Dec 26, 3:12:39 PM EST"
-1872375758020317576,"RT @teslaownersSV: @elonmusk Most of the ignorant comments are coming from people who’ve never hired or even worked in tech","Dec 26, 3:15:42 PM EST"
-1872378543822590459,"Naturally, I would NEVER be an attention-seeking troll 🤣🤣
- https://t.co/4yM22GfATy","Dec 26, 3:26:46 PM EST"
-1872379135844372702,"Yes https://t.co/Tf5Zqgjpsa","Dec 26, 3:29:07 PM EST"
-1872383715583873249,"We either fix this or go de facto bankrupt https://t.co/hmjpx6uBfd","Dec 26, 3:47:19 PM EST"
-1872385071111692525,"Mars will be called the “New World”, just as America was in past centuries.
-
-Such an inspiring adventure! https://t.co/k6n9fropNK","Dec 26, 3:52:42 PM EST"
-1872385238825074972,"RT @MarioNawfal: 🇺🇸 MAINSTREAM MEDIA LOSE AUDIENCE TRUST: ONLY DEMS STILL BELIEVE IN THEM
-
-The numbers don't lie!
-
-A whopping third of Rep…","Dec 26, 3:53:22 PM EST"
-1872387163150750206,"RT @cb_doge: "We definitely want our rocket to reach Uranus. It's a streach goal to reach Uranus."
-
-一 Elon Musk
-
- https://t.co/3dd53HGwOU","Dec 26, 4:01:01 PM EST"
-1872387332328038596,"💯 https://t.co/Nn5lXkcy7a","Dec 26, 4:01:41 PM EST"
-1872402509941354789,"The reason the government so insanely inefficient is that those in the government are spending your money on somebody else.
-
-That’s why we should minimize how much the government does. It is simply a giant version of the DMV!
-
- https://t.co/tEGwYzT9et","Dec 26, 5:02:00 PM EST"
-1872403979461955947,"RT @TheRabbitHole84: Global Fertility Rates have dropped from 5.3 in 1963 to 2.3 in 2021.
-
-3.0 decline in ~58 years. https://t.co/VT0wIGQfnJ","Dec 26, 5:07:50 PM EST"
-1872464643266089067,"Just a reminder that the algorithm is trying to maximize unregretted user-seconds.
-
-If far more credible, verified subscriber accounts (not bots) mute/block your account compared to those who like your posts, your reach will decline significantly.","Dec 26, 9:08:54 PM EST"
-1872465691649175813,"RT @cb_doge: You can fine-tune your 𝕏 ‘For You’ feed by engaging with and sharing posts that interest you.
-
-It’s a simple way to make your…","Dec 26, 9:13:04 PM EST"
-1872466091534102863,"RT @BasedMikeLee: The Great Depression was both created and prolonged by the federal government
-
-Don’t buy the progressive propaganda, whic…","Dec 26, 9:14:39 PM EST"
-1872471275073085902,"Another way of putting it is that the algorithm is trying to maximize probable long-term user-seconds https://t.co/ut9piCv194","Dec 26, 9:35:15 PM EST"
-1872476623578288328,"RT @AdamLowisz: This is the story of Erdal Arıkan, the father of 5G. Erdal went to Caltech and MIT; he is a rare level genius, but because…","Dec 26, 9:56:30 PM EST"
-1872497302369382670,"That said, any accounts found to be engaged in coordinated attacks to spam target accounts with mute/blocks will themselves be categorized – correctly – as spam.
-
-Live by the spam, die by the spam. https://t.co/xo6aN4eAzR","Dec 26, 11:18:40 PM EST"
-1872499395570360421,"RT @MarioNawfal: ELON: SOMEONE HAS TO SOLVE ROCKET REUSABILITY — WHETHER IT’S SPACEX OR SOMEONE ELSE
-
-“The cost of the fuel and oxygen on a…","Dec 26, 11:26:59 PM EST"
-1872504537157955622,"RT @stillgray: Trump gets it.
-
-Donald Trump: “If you graduate from a U.S. college—two-year, four-year, or doctoral—you should automatical…","Dec 26, 11:47:25 PM EST"
-1872505498463039559,"Yes https://t.co/EMKo99qoKP","Dec 26, 11:51:14 PM EST"
-1872505713517543861,"RT @Tesla: Real-world AI","Dec 26, 11:52:06 PM EST"
-1872506016887365877,"RT @Starlink: Starlink supporting small businesses in remote and rural areas of Yucatan, Mexico 🛰️❤️🇲🇽 → https://t.co/zR6w4t1qM9","Dec 26, 11:53:18 PM EST"
-1872506526046601412,"RT @teslaownersSV: Share 𝕏 links with family and friends.
- https://t.co/hGCfrG8mUt","Dec 26, 11:55:19 PM EST"
-1872646645739118691,"RT @MarioNawfal: TESLA MODEL 3 NAMED 2024 CAR OF THE YEAR BY SWEDISH MOTORING MAGAZINE
-
-The Tesla Model 3 has been crowned the 2024 Car of…","Dec 27, 9:12:07 AM EST"
-1872705692681027634,"This is the right position for those who want America to win.
-
-For those who want America to lose for their own personal gain, I have no respect. Zero. https://t.co/2WxAjZzDfW","Dec 27, 1:06:44 PM EST"
-1872741181391815150,"RT @BasedMikeLee: The corruption and wasteful spending in Washington won’t end until those elected to federal office start respecting the l…","Dec 27, 3:27:46 PM EST"
-1872760845694009671,"🤨 https://t.co/3GEfLeG1G4","Dec 27, 4:45:54 PM EST"
-1872770566920519899,"Anyone – of any race, creed or nationality – who came to America and worked like hell to contribute to this country will forever have my respect.
-
-America is the land of freedom and opportunity. Fight with every fiber of your being to keep it that way!
-
-�","Dec 27, 5:24:32 PM EST"
-1872770879886926157,"What is added to 𝕏 in 2025 will be even more https://t.co/BIBAdJnuns","Dec 27, 5:25:46 PM EST"
-1872774494101880982,"We named @Tesla after Nikola Tesla, one of the greatest engineers ever.
-
-He was a penniless immigrant whose inventions led to American dominance in electricity generation and usage. https://t.co/1K1IdSUjM0","Dec 27, 5:40:08 PM EST"
-1872775162892042407,"https://t.co/MfKkO9UIB1","Dec 27, 5:42:47 PM EST"
-1872785400768737428,"Meanwhile, America is going bankrupt … https://t.co/yFfDuEeGOS","Dec 27, 6:23:28 PM EST"
-1872786096582737940,"Correct https://t.co/5xtFGhjUB9","Dec 27, 6:26:14 PM EST"
-1872804619438739471,"Yes https://t.co/6Ow0KToTU6","Dec 27, 7:39:50 PM EST"
-1872834754342732125,"RT @JonErlichman: Value of $1,000 invested a decade ago:
-
-Nvidia: $272,235
-AMD: $47,190
-Tesla: $29,890
-Broadcom: $24,390
-Microstrategy: $20…","Dec 27, 9:39:35 PM EST"
-1872838505375907899,"RT @ThomasSowell: "Slavery was an ugly, dirty business, but people of virtually every race, color, and creed engaged in it on every inhabit…","Dec 27, 9:54:29 PM EST"
-1872841493993668849,"RT @ThomasSowell: “We have a system that increasingly taxes work and subsidizes nonwork.”
-
-— Milton Friedman","Dec 27, 10:06:22 PM EST"
-1872841599677522318,"RT @TurpentineMedia: Moment of Zen podcast: Marc Andreessen on the political vibe shift for Silicon Valley, Elon as John Galt, and what a…","Dec 27, 10:06:47 PM EST"
-1872846755353829518,"😂💯 https://t.co/KLEn8Rlnaj","Dec 27, 10:27:16 PM EST"
-1872850775011147810,"RT @ElonFactsX: “Elon wants ground truth on every single topic.”
-
-— Marc Andreessen https://t.co/wG9d4KyL2K","Dec 27, 10:43:15 PM EST"
-1872852986445373750,"Important https://t.co/fk9uWMSnb9","Dec 27, 10:52:02 PM EST"
-1872855650394619946,"Wise words from a true genius
- https://t.co/fm3jzQfPJZ","Dec 27, 11:02:37 PM EST"
-1872860788429603047,"RT @MarioNawfal: ELON: ONE OF THE HARDEST THINGS IS TO BE USEFUL
-
-“One of the hardest things to do is to be useful.
-
-To have high utility…","Dec 27, 11:23:02 PM EST"
-1872862144615838054,"America rose to greatness over the past 150 years, because it was a meritocracy more than anywhere else on Earth.
-
-I will fight to my last drop of blood to ensure that it remains that land of freedom and opportunity.
-
-🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸","Dec 27, 11:28:26 PM EST"
-1872956341926674799,"RT @thatsKAIZEN: 55% of billion dollar+ tech companies were started by immigrants.
-
-Google + Intel + Tesla were all founded or built by imm…","Dec 28, 5:42:44 AM EST"
-1872967838669127835,"RT @Teslaconomics: This was the highlight of 2024 hands down https://t.co/xe5vOK87c2","Dec 28, 6:28:25 AM EST"
-1872975426207072724,"Cool https://t.co/9aI3HZHK3W","Dec 28, 6:58:34 AM EST"
-1873038382974288360,"Cool https://t.co/IuUdtKizTF","Dec 28, 11:08:44 AM EST"
-1873040446550884755,"We do need to make this easier to find https://t.co/pzXm7xLPbp","Dec 28, 11:16:56 AM EST"
-1873046006029226283,"Progress https://t.co/fuU5twGm1o","Dec 28, 11:39:02 AM EST"
-1873046310682853686,"RT @MarioNawfal: 🚨ELON: GERMANY'S AfD IS NOT A RIGHT-WING EXTREMIST PARTY
-
-"The portrayal of the AfD as right-wing extremist is clearly fal…","Dec 28, 11:40:14 AM EST"
-1873046674823889235,"RT @Alice_Weidel: .@elonmusk: „Die AfD, auch wenn sie als rechtsextrem bezeichnet wird, vertritt einen politischen Realismus, der bei viele…","Dec 28, 11:41:41 AM EST"
-1873047284759588934,"Yes, cut the racism crap now! https://t.co/9LU3Qb2b65","Dec 28, 11:44:06 AM EST"
-1873047588469129551,"Yes https://t.co/fshkAsixpS","Dec 28, 11:45:19 AM EST"
-1873049562224668942,"RT @Starlink: Starlink’s high-speed, low-latency internet connects students in the Philippines 🛰️❤️🇵🇭","Dec 28, 11:53:09 AM EST"
-1873051216634364374,"RT @SwipeWright: https://t.co/jTUM1FgwNZ","Dec 28, 11:59:44 AM EST"
-1873054149488812434,"My opinion piece in Weld https://t.co/J56Oof6tO4","Dec 28, 12:11:23 PM EST"
-1873055432086045055,"RT @ElonFactsX: “When civilizations are under stress, the birth rate is high, but as soon as they have no external enemies, or they have an…","Dec 28, 12:16:29 PM EST"
-1873058722869854673,"True 😂 https://t.co/4dayr8U0CC","Dec 28, 12:29:33 PM EST"
-1873064786147328362,"Great! https://t.co/U1YoPckeTj","Dec 28, 12:53:39 PM EST"
-1873065557043626429,"RT @edwards345: Community Notes is such a common sense yet revolutionary solution for maximizing truth in the news. Can still be improved o…","Dec 28, 12:56:43 PM EST"
-1873072119137112162,"Yes https://t.co/Cp7ioRnMZ1","Dec 28, 1:22:47 PM EST"
-1873074014257831945,"Yes https://t.co/P4hcM6BygF","Dec 28, 1:30:19 PM EST"
-1873075136901071074,"RT @PeterSweden7: BREAKING: New poll finds that the AfD party is the second biggest in Germany at 20%
-
-Source: INSA","Dec 28, 1:34:47 PM EST"
-1873075223018520926,"RT @JohnStossel: Not a SINGLE American port ranks in the top 50 worldwide!
-
-How is that possible?
-
-One reason is that while other countri…","Dec 28, 1:35:07 PM EST"
-1873075702461075537,"RT @cb_doge: Pin your best content to your profile. It will get a boost and appear in the "For You" feed of all your followers.
-
-A pinned p…","Dec 28, 1:37:02 PM EST"
-1873075790029750506,"RT @Yasin__Shafiei: SpaceX in 2024:
-
-- 4 Starship Flights
-- First ever successful catch of a Super Heavy
-- 129 Falcon 9 launches (as of De…","Dec 28, 1:37:23 PM EST"
-1873076031017652303,"Spread of the Woke Mind Virus is extremely measurable! https://t.co/uR0ErKFU2a","Dec 28, 1:38:20 PM EST"
-1873076235234161021,"RT @stillgray: True. https://t.co/OROhPDbOY2","Dec 28, 1:39:09 PM EST"
-1873181395406991857,"RT @america: Even our education system has become a bureaucratic nightmare https://t.co/uwHlMk66oC","Dec 28, 8:37:01 PM EST"
-1873188759526887447,"SpaceX launch underway
- https://t.co/8JxXqiJho2","Dec 28, 9:06:17 PM EST"
-1873204481535717498,"With every launch, your @Starlink Internet gets a little better! https://t.co/44SM9nWKb6","Dec 28, 10:08:45 PM EST"
-1873205748202913993,"RT @NeilMcDevitt_: Elon’s moral framework is simple:
-
-Things that cause civilization to grow = GOOD
-
-Thinks that cause civilization to coll…","Dec 28, 10:13:47 PM EST"
-1873207111947305174,"RT @america: Scott Jennings on CNN: “I think Donald Trump having a relationship with one of the greatest innovators of our time.. is unequi…","Dec 28, 10:19:12 PM EST"
-1873256759407886740,"Congrats @SpaceX team on completing 2 great orbital missions in 24 hours! https://t.co/W4gqptv2t8","Dec 29, 1:36:29 AM EST"
-1873257368034918831,"RT @johnkrausphotos: One year ago today. An all-time favorite and probably a once in a lifetime shot. Falcon Heavy and USSF-52 transit the…","Dec 29, 1:38:54 AM EST"
-1873265038640988390,"RT @SpaceX: Falcon 9 completes back-to-back missions from California and Florida, delivering 22 @Starlink satellites to the constellation a…","Dec 29, 2:09:23 AM EST"
-1873274027571331507,"True https://t.co/ohpnpYq4Aj","Dec 29, 2:45:06 AM EST"
-1873275711567610363,"RT @WallStreetMav: Remember back when people were complaining that X is full of anti-Semitism?
-
-It turns out TikTok and IG are where the re…","Dec 29, 2:51:48 AM EST"
-1873277325854556282,"RT @teslaownersSV: 𝕏 is the only news app I have and trust. https://t.co/avGtrk64JM","Dec 29, 2:58:12 AM EST"
-1873277393512874009,"Very important https://t.co/JaNwWqgQgn","Dec 29, 2:58:29 AM EST"
-1873277721364840602,"RT @SeibtNaomi: THE MOST CONTROVERSIAL ARTICLE IN GERMANY 🇩🇪
-
-Elon Musk for WELT:
-
-“The AfD can lead the country into a future where econo…","Dec 29, 2:59:47 AM EST"
-1873371684377686108,"RT @WallStreetMav: In Europe (and USA), are they even using the term “far right” label accurately?
-
-The label is so casually tossed around…","Dec 29, 9:13:09 AM EST"
-1873372552602755405,"Yes https://t.co/bPv7x9joDq","Dec 29, 9:16:36 AM EST"
-1873373177025552407,"RT @JohnStossel: Capitalism harnesses greed. But did you know it also makes people MORE generous?
-
-@johanknorberg: “People are most genero…","Dec 29, 9:19:05 AM EST"
-1873373364150280404,"RT @Rothmus: 💯💯 https://t.co/4kRDy3P9NU","Dec 29, 9:19:50 AM EST"
-1873373430600675448,"RT @AMAZlNGNATURE: Who wants this job? 🐼☺️ https://t.co/8VWwK5jDpM","Dec 29, 9:20:06 AM EST"
-1873377114495533362,"Yes https://t.co/9Tr4begX4b","Dec 29, 9:34:44 AM EST"
-1873388682658652310,"RT @HSajwanization: HUGE Thanks to Elon Musk for making this wonderful platform 𝕏 almost ZERO antisemitic 🙏🏼 https://t.co/NJCi0uASZw","Dec 29, 10:20:42 AM EST"
-1873393093103468962,"RT @DimaZeniuk: Starship proves how far technology has come. We stand on the edge of a historic breakthrough https://t.co/Az78P2XFKn","Dec 29, 10:38:14 AM EST"
-1873393433043448248,"RT @ThomasSowell: "Every country has to protect its own borders..."
-
-Thomas Sowell talks about why the borders need to stay closed for Mexi…","Dec 29, 10:39:35 AM EST"
-1873398731674120413,"RT @SmokeAwayyy: Elon: "Long term probably be making a thousand a year of the ship... Well, you know, gotta build a city on Mars... [Starfa…","Dec 29, 11:00:38 AM EST"
-1873411083488383463,"RT @ThomasSowell: This man always amazes me. https://t.co/ucGmNR7cmv","Dec 29, 11:49:43 AM EST"
-1873412577017188777,"RT @Teslaconomics: Starlink is revolutionizing connectivity, w/ nearly 5M customers, coverage in 100 countries, and a constellation of over…","Dec 29, 11:55:39 AM EST"
-1873412978692993430,"https://t.co/AeBGafQqhF","Dec 29, 11:57:15 AM EST"
-1873413035475505323,"RT @TheRabbitHole84: Twitter (2022):
-- 65% Democrat
-- 31% Republican
-
-𝕏 (2024)
-- 48% Democrat
-- 47% Republican
-
-Looks like 𝕏 is more balan…","Dec 29, 11:57:28 AM EST"
-1873416599153373597,"RT @teslaownersSV: "It's important that people have enough babies to support civilization. Civilization might die with a bang or with a whi…","Dec 29, 12:11:38 PM EST"
-1873417011294093499,"Please post a bit more positive, beautiful or informative content on this platform","Dec 29, 12:13:16 PM EST"
-1873468247187784050,"RT @thatsKAIZEN: First, black people were discriminated against, and became resentful.
-
-Then, DEI and affirmative action were invented.
-
-Th…","Dec 29, 3:36:52 PM EST"
-1873468438662025518,"This Cybergamer guy knows what he’s talking about 😉 https://t.co/VqBtRDhM5g","Dec 29, 3:37:37 PM EST"
-1873469783263580622,"The Martians will decide how they are ruled. I recommend direct, rather than representative, democracy.
-
-Uncrewed Starships landing on Mars in ~2 years, perhaps with crewed versions passing near Mars, and crewed Starships heading there in ~4 years are al","Dec 29, 3:42:58 PM EST"
-1873470619653898607,"Nice of them https://t.co/uwKj1BVkhJ","Dec 29, 3:46:17 PM EST"
-1873474952088985960,"RT @buitengebieden: The smile.. 😊 https://t.co/i9KWaEFgLO","Dec 29, 4:03:30 PM EST"
-1873475117092847976,"RT @EndWokeness: Argentina's inflation rate under Milei: https://t.co/4vACfEH7iu","Dec 29, 4:04:10 PM EST"
-1873476052930211909,"Excellent, America should be a meritocracy https://t.co/fyXo3yI8Ru","Dec 29, 4:07:53 PM EST"
-1873477993051693090,"😂 https://t.co/WwAn4eaMdu","Dec 29, 4:15:35 PM EST"
-1873479378212102168,"RT @HSajwanization: Teach your kids maths and physics !","Dec 29, 4:21:05 PM EST"
-1873483005827920064,"RT @ElonFactsX: “We need to make sure that you get ahead purely as a function of your talent and hard work. Nothing else.”
-
-— Elon Musk htt…","Dec 29, 4:35:30 PM EST"
-1873483738665075114,"RT @TheRabbitHole84: Even if the leaps in logic are larger, many people will default to choosing noble lies over uncomfortable truths. http…","Dec 29, 4:38:25 PM EST"
-1873486564766134489,"RT @ElonClipsX: Elon Musk: Be careful what you wish for.
-
-“You want to be careful of these things where you wish for something that sounds…","Dec 29, 4:49:39 PM EST"
-1873487130200314125,"RT @EvaLovesDesign: Snow always makes me feel that anything is possible ❄️ https://t.co/drpy6DlQXb","Dec 29, 4:51:54 PM EST"
-1873523706481529085,"RT @zarathustra5150: I want Americans who work at gas stations to be able to have a nice life.
-
-And I want Americans to own the gas statio…","Dec 29, 7:17:14 PM EST"
-1873524162943496597,"RT @zarathustra5150: ✨ https://t.co/psQaeEi8Af","Dec 29, 7:19:03 PM EST"
-1873524444297359619,"RT @Rothmus: 🎯🎯 @HannahDCox https://t.co/j1nCZJPHfT","Dec 29, 7:20:10 PM EST"
-1873562499364331732,"😂 https://t.co/uPS49idn03","Dec 29, 9:51:23 PM EST"
-1873566103823352306,"RT @TheRabbitHole84: “The real tax on the American people is what government spends.”
-
-— Milton Friedman https://t.co/2RrSYSVqR6","Dec 29, 10:05:42 PM EST"
-1873590948653072789,"Cool. Will keep improving. https://t.co/htcKAIwK6Y","Dec 29, 11:44:26 PM EST"
-1873595894433796247,"Storage has become crazy cheap https://t.co/UNGTEkdnQi","Dec 30, 12:04:05 AM EST"
-1873596846360478128,"Cool https://t.co/OkYHihg4L0","Dec 30, 12:07:52 AM EST"
-1873596972831273106,"True https://t.co/XJOLoQC7W6","Dec 30, 12:08:22 AM EST"
-1873605542952026258,"Interesting https://t.co/4fTKIUslyu","Dec 30, 12:42:26 AM EST"
-1873608036943827211,"RT @TheRabbitHole84: “If you got X thousands of dollars in your bank account and the Federal Reserve starts printing more money, it is simp…","Dec 30, 12:52:20 AM EST"
-1873609936783192238,"RT @cb_doge: Total active users on 𝕏 is ~1 billion.
-
-This platform is the group chat for Earth.
-
- https://t.co/liqrQbudFi","Dec 30, 12:59:53 AM EST"
-1873611002866250176,"Cybertruck
- https://t.co/OulLTYy15s","Dec 30, 1:04:07 AM EST"
-1873701155102155226,"RT @ryanjaycowan: I just upgraded my cars software in a supermarket carpark with the click of a button and now instantly it can park itself…","Dec 30, 7:02:21 AM EST"
-1873706324195967224,"RT @Thompsonklay: Is there a more ideologically captured institution than the legacy media...?
-
-Citizen journalism is the path forward, the…","Dec 30, 7:22:54 AM EST"
-1873747677957206508,"RT @michaelnicollsx: Starlink will provide satellite to cellular connectivity to Ukraine in 2025 with @TwiyKyivstar !","Dec 30, 10:07:13 AM EST"
-1873748786302128556,"RT @WallStreetMav: Another 653,000 fake jobs revised away by govt statisticians. They were faking the data during 2023 and 2024 to try to b…","Dec 30, 10:11:37 AM EST"
-1873749031434035205,"RT @MarioNawfal: 🚨🇺🇸1 IN 6 HIRING MANAGERS TOLD TO AVOID WHITE MEN
-
-A survey reveals 16% of U.S. hiring managers were directed to depriorit…","Dec 30, 10:12:36 AM EST"
-1873750692080615552,"RT @TheRabbitHole84: “If a private organization does things badly, it will lose money and have to go out of business. If a public organizat…","Dec 30, 10:19:12 AM EST"
-1873751070205428135,"RT @teslaownersSV: “Cybertruck eats pickup trucks for breakfast with a side of bacon.”
-Elon Musk https://t.co/ACz9IpTm5I","Dec 30, 10:20:42 AM EST"
-1873780786010480761,"Out of curiosity, I glanced through the legacy news today.
-
-It was misleading, depressing & reporting on what everyone already learned on 𝕏 days ago.
-
-No wonder they keep losing viewers/readers!","Dec 30, 12:18:47 PM EST"
-1873783287971536947,"Legacy media think Dittman is me 🤣🤣 https://t.co/Eikvcl8xcq","Dec 30, 12:28:43 PM EST"
-1873784009165353459,"https://t.co/13drXfGTXx","Dec 30, 12:31:35 PM EST"
-1873795768261509391,"This poll understates the reality. Who even answers these polls!? 😂
-
-Only very old people get their news solely from legacy media, so their audience is quite literally dying. https://t.co/ZsZGiIoUDL","Dec 30, 1:18:19 PM EST"
-1873796626223161603,"The tax code needs drastic simplification! https://t.co/bjhQ0kRSom","Dec 30, 1:21:43 PM EST"
-1873797949568016800,"This is so funny 🤣🤣
- https://t.co/yHKJaFjFrR","Dec 30, 1:26:59 PM EST"
-1873801708557787575,"RT @AntiWokeMemes: @elonmusk Legacy media is slow in a special way 😂👇 https://t.co/dc4K95vKVp","Dec 30, 1:41:55 PM EST"
-1873809837676781956,"Good analysis https://t.co/doa1vCHAfu","Dec 30, 2:14:13 PM EST"
-1873810615401406736,"Nothing beats an electric motor for extremely precision! https://t.co/t7I86sbMXE","Dec 30, 2:17:19 PM EST"
-1873810680178237747,"RT @elonmusk: @teslanatrix @MarioNawfal Interesting that Gates sends money to Spiegel, which then writes hit pieces about me.
-
-Der Spiegel…","Dec 30, 2:17:34 PM EST"
-1873812012003975586,"Legacy media is becoming something we used to use https://t.co/KN8d2fc5ZJ","Dec 30, 2:22:52 PM EST"
-1873860084381708651,"RT @EricLDaugh: JUST IN: Trump reposts statement from Elon Musk in favor of honest, hardworking legal immigrants https://t.co/0lYSslepqm","Dec 30, 5:33:53 PM EST"
-1873862372101968352,"The best way to ensure that @CommunityNotes are as accurate as possible is to become a contributor.
-
-The system is completely decentralized and open source, both code and data. Any manipulation would show up like a neon sore thumb!
-
-No one at 𝕏, includi","Dec 30, 5:42:58 PM EST"
-1873866747675283838,"Exactly https://t.co/hBd5e2BSXR","Dec 30, 6:00:22 PM EST"
-1873867488003547321,"RT @JonErlichman: Some things smartphones have replaced:
-
-cameras
-maps
-GPS devices
-calculators
-alarm clocks
-TV’s
-radios
-camcorders
-pay phon…","Dec 30, 6:03:18 PM EST"
-1873870932089201137,"We live in a BUREAUcracy, not a DEMOcracy.
-
-That will change after Jan 20. https://t.co/Fti5cey5yv","Dec 30, 6:16:59 PM EST"
-1873871932405539188,"Remember when almost every legacy media outlet lied that Biden was “sharp as a tack” right before the Presidential debate where it was obvious he had dementia?
-
-Well, they’re still lying just as much now. https://t.co/gyKBBsRfSN","Dec 30, 6:20:58 PM EST"
-1873873024098738487,"RT @BasedMikeLee: Future kids: “Dad, what did the term ‘legacy media’ mean?”
-
-Future dad: “The term ‘legacy media’ referred to people who,…","Dec 30, 6:25:18 PM EST"
-1873874694132424811,"RT @HSajwanization: SpaceX 🇺🇸 , in Q3-2024 alone, successfully delivered > 85% of entire world’s cargo to Orbit ! https://t.co/eRJv0qjVp7","Dec 30, 6:31:56 PM EST"
-1873876042387275849,"AfD is going to win an epic victory! https://t.co/o7zDhL8yvv","Dec 30, 6:37:18 PM EST"
-1873879896298279394,"🥇 https://t.co/WhAzkcw1Fn","Dec 30, 6:52:36 PM EST"
-1873903609945239831,"Testing Starlink streaming while in flight https://t.co/h4HqDYnLjK","Dec 30, 8:26:50 PM EST"
-1873907039350775909,"This is a pic of my laptop. It’s about 3 years old. A guy in Germany gave me this cool sticker, so I don’t want to upgrade it and lose the sticker. https://t.co/wJZbhpkus8","Dec 30, 8:40:28 PM EST"
-1873915701079273896,"Now THAT is a psy op they weren’t expecting 😂 https://t.co/AGBznSgLFG","Dec 30, 9:14:53 PM EST"
-1873916539428364539,"RT @MarioNawfal: 🚨🇺🇸 STARSHIP FLIGHT 7 SET FOR JAN 10TH LAUNCH WITH FRESH FAA APPROVAL
-
-SpaceX has secured its FAA license for Starship's n…","Dec 30, 9:18:13 PM EST"
-1873916712221106574,"RT @jamesdouma: https://t.co/M41gDzaZYP","Dec 30, 9:18:54 PM EST"
-1873917078870384828,"2025 is gonna be so lit 🔥🔥🇺🇸🇺🇸 https://t.co/GUUaTsiYi2","Dec 30, 9:20:21 PM EST"
-1873917277827195263,"True https://t.co/MnsiYdIXLw","Dec 30, 9:21:09 PM EST"
-1873917512599154870,"Pretty much https://t.co/TICh5sigVG","Dec 30, 9:22:05 PM EST"
-1873922238833188943,"2025 will be way more https://t.co/M8ryiEf3LU","Dec 30, 9:40:52 PM EST"
-1873927502835425343,"Please note that platform manipulation by buying large follower accounts and then using them to push paid narratives/scams will result in the annihilation of those accounts.
-
-Moreover, if a crime is involved, 𝕏 will prosecute to the full extent of the la","Dec 30, 10:01:47 PM EST"
-1873928098087117137,"𝕏 is the number 1 source of news on Earth.
-
-Nothing else is even close. https://t.co/Z77Q8YJewc","Dec 30, 10:04:09 PM EST"
-1873930478795055297,"A truly reusable orbital heat shield has never been made, but I think SpaceX has a decent chance of solving it in 2025 and solving it well in 2026
- https://t.co/mRBFOJtNVL","Dec 30, 10:13:36 PM EST"
-1873932514282397766,"Cybertruck looks like the future https://t.co/K2GAhH0vaN","Dec 30, 10:21:42 PM EST"
-1873939306886398003,"Government power needs to be restored to the people in America, rather than be held by an enormous, unaccountable bureaucracy! https://t.co/TJlZFI8qup","Dec 30, 10:48:41 PM EST"
-1873943610581999931,"Exciting times ahead! https://t.co/3kCadkHg1n","Dec 30, 11:05:47 PM EST"
-1873965524469813710,"https://t.co/ZBNItdRGmg","Dec 31, 12:32:52 AM EST"
-1873966681242132845,"No more donations to @Wikipedia until they start being truthful
- https://t.co/3QWJ5NWuEI","Dec 31, 12:37:28 AM EST"
-1873969439076647353,"The government officials responsible, including those in the judiciary, need to fired in shame over this https://t.co/KedvDmTHtD","Dec 31, 12:48:25 AM EST"
-1873969682157568449,"RT @AutismCapital: Community notes is taking souls today. https://t.co/uEY3AZ5CBN","Dec 31, 12:49:23 AM EST"
-1873970854838886767,"Community Notes ftw yet again https://t.co/CMftpgSIz3","Dec 31, 12:54:03 AM EST"
-1873972055970066679,"Only utterly rigorous pursuit of the truth can lead to understanding the universe https://t.co/ssQ6CZxit8","Dec 31, 12:58:49 AM EST"
-1873972150052475005,"RT @MarioNawfal: ELON: BE CAREFUL WHAT YOU WISH FOR
-
-“You want to be careful of these things where you wish for something that sounds good,…","Dec 31, 12:59:11 AM EST"
-1873972514210406569,"The legacy media didn’t just ignore Biden’s mental state, they flat-out lied through their teeth about it! https://t.co/xhATLytWIL","Dec 31, 1:00:38 AM EST"
-1873972860106268740,"What is a “pharmacy benefit manager”? https://t.co/wQSRCreBDK","Dec 31, 1:02:01 AM EST"
-1873979411508474279,"RT @cb_doge: Elon Musk is now Kekius Maximus. https://t.co/rYBoFV2IKA","Dec 31, 1:28:03 AM EST"
-1873980231675183389,"Why are rapists given suspended sentences in the UK, but this guy gets 18 months in solitary confinement, despite doing nothing violent? https://t.co/k2c1lDXXRx","Dec 31, 1:31:18 AM EST"
-1873980805820879069,"RT @Rainmaker1973: Giant Alaskan Malamute puppies are possibly the most fluffy creatures on Earth.
-
-When they reach the adult stage, they…","Dec 31, 1:33:35 AM EST"
-1873980978756280715,"RT @alx: Ave Imperator Kekius Maximus
-
-Long may he reign. https://t.co/ja9Iux0OCu","Dec 31, 1:34:16 AM EST"
-1873981210961248512,"This will be priceless 🤣🤣 https://t.co/YoX4JEDu5l","Dec 31, 1:35:12 AM EST"
-1873985108044091822,"Kekius Maximus will soon reach level 80 in hardcore PoE https://t.co/Cg5ttuqjvX","Dec 31, 1:50:41 AM EST"
-1873985688745762862,"Yup https://t.co/ZYLHBfZ0or","Dec 31, 1:52:59 AM EST"
-1873988267072540940,"All true https://t.co/5RNA9d6FId","Dec 31, 2:03:14 AM EST"
-1873989808617619964,"RT @WallStreetMav: "I think we should be extremely concerned about anything that undermines the First Amendment. There is a reason for the…","Dec 31, 2:09:22 AM EST"
-1873990842949808156,"Vote Reform https://t.co/IYTksoGL0R","Dec 31, 2:13:28 AM EST"
-1873991065340174565,"RT @AMAZlNGNATURE: A mother bear carrying her baby on her back, photographed in a field 🐻 https://t.co/V1eVwRDiwh","Dec 31, 2:14:21 AM EST"
-1873992969378029874,"Don’t take it from me (I’m just a frog after all), take it from the co-founder of Wikipedia https://t.co/jrh08VOQHn","Dec 31, 2:21:55 AM EST"
-1873996257037099102,"RT @teslaownersSV: Starship is the largest and powerful rocket ever https://t.co/bnwXN5Eopx","Dec 31, 2:34:59 AM EST"
-1873996914137718946,"RT @MarioNawfal: WIKIPEDIA CO-FOUNDER: IT HAS BECOME A LEFTIST PROPAGANDA SITE
-
-Larry Sanger:
-
-“Wikipedia made a real effort at neutrality…","Dec 31, 2:37:36 AM EST"
-1873997515709964787,"RT @teslaownersSV: “My plan is to use the money to get humanity to Mars and preserve the light of consciousness.”
-Elon Musk
- https://t.co/…","Dec 31, 2:39:59 AM EST"
-1873998617197109622,"RT @teslaownersSV: “We should be cautious about the gradual creep of regulations bureaucracy. Rules and regulations are immortal.”
-Elon Mus…","Dec 31, 2:44:22 AM EST"
-1874091666313011230,"RT @MarioNawfal: Community Notes FTW
-
-Newsom gets noted https://t.co/4SA1rqBRP4","Dec 31, 8:54:06 AM EST"
-1874092527437107609,"RT @Space_Station: As 2024 comes to a close today, the Exp 72 crew will see 16 sunrises and sunsets while soaring into the New Year. Seen h…","Dec 31, 8:57:32 AM EST"
-1874105293292134775,"RT @MarioNawfal: ELON: MERITOCRACY IS ONE OF AMERICA’S CORE PILLARS
-
-“There are some core pillars, core values that have, I think, made Ame…","Dec 31, 9:48:15 AM EST"
-1874151709888720982,"Great work by the SpaceX team building the highest volume advanced electronics manufacturing system in America! https://t.co/ngMLruQlOx","Dec 31, 12:52:42 PM EST"
-1874152274668511575,"This will be a gamechanger.
-
-Alien-level technology. https://t.co/kN0F14bBT2","Dec 31, 12:54:57 PM EST"
-1874153306647650365,"RT @america: Incoming White House Press Secretary Karoline Leavitt: Under Donald J. Trump, “the GOP is no longer a political party, it is a…","Dec 31, 12:59:03 PM EST"
-1874153691202412699,"🇺🇸🇺🇸🇺🇸 YES 🇺🇸🇺🇸🇺🇸 https://t.co/KL5VsQHNah","Dec 31, 1:00:34 PM EST"
-1874161078508392706,"Within a few years, @SpaceX direct to cell capability will improve by more than an order of magnitude, due to increased satellite count and improved technology https://t.co/FXdc3yjVk5","Dec 31, 1:29:56 PM EST"
-1874182589642350920,"Community Notes wins again https://t.co/NhFewbL7Cl","Dec 31, 2:55:24 PM EST"
-1874182774950940926,"RT @Starlink: This past year, we activated Starlink in 27 new markets, and are now covering a global area home to 2.8 billion people, inclu…","Dec 31, 2:56:08 PM EST"
-1874182859210334367,"RT @SpaceX: Falcon 9 launched multiple missions on behalf of the @SpaceForceDoD and @NatReconOfc, assuring rapid and reliable readiness to…","Dec 31, 2:56:28 PM EST"
-1874183237926609386,"Kek https://t.co/6DM5Ofu6wO","Dec 31, 2:57:59 PM EST"
-1874188180611883481,"2024 was a great year.
-
-Many good things are coming to the world in 2025. https://t.co/YBimKs1fBY","Dec 31, 3:17:37 PM EST"
-1874197064202195394,"RT @lindayaX: In 2024, X changed the world. Now, YOU are the media!
-
-2025 X will connect you in ways never thought possible. X TV, X Mo…","Dec 31, 3:52:55 PM EST"
-1874199431643619474,"Brothers in Arms https://t.co/vIZ8ADrXbo","Dec 31, 4:02:20 PM EST"
-1874199657318146121,"RT @realDonaldTrump: We just won a Historic Landslide and Mandate from the American People, but Senate Democrats are organizing to improper…","Dec 31, 4:03:13 PM EST"
-1874199682702074368,"RT @Tesla: 2024 is a wrap
-
-Thanks to our owners, supporters & employees – you rock ❤️
-
-2025 will be big","Dec 31, 4:03:19 PM EST"
-1874205806088118361,"RT @Starlink: With Falcon 9’s increased launch rate and the enhanced V2 Mini satellites, we were able to add more than 300 Tbps of capacity…","Dec 31, 4:27:39 PM EST"
-1874205858500141330,"RT @SpaceX: Falcon delivered a lander to the Moon, a spacecraft that aims to discover if Jupiter’s moon Europa can support life, a planetar…","Dec 31, 4:27:52 PM EST"
-1874205925923504485,"RT @teslaownersSV: "I am Kekius Maximus, CEO of Tesla, SpaceX, and X, servant to the vision of human progress. Father of many innovations,…","Dec 31, 4:28:08 PM EST"
-1874208681799340382,"RT @waitbutwhy: 24 thoughts that gave me a dopamine hit this year:
-https://t.co/U8diHca5If","Dec 31, 4:39:05 PM EST"
-1874210629302813133,"RT @Starlink: In 2024, the Starlink team focused on expanding coverage, increasing speeds and lowering latency for our now 4.6M+ customers…","Dec 31, 4:46:49 PM EST"
-1874221010939207978,"😂 https://t.co/SQZKxNxpwV","Dec 31, 5:28:05 PM EST"
-1874221791725683056,"RT @Starlink: The @SpaceX team also achieved an unprecedented launch cadence, conducting 134 Falcon launches with 89 dedicated to expanding…","Dec 31, 5:31:11 PM EST"
-1874324392051957998,"HNY LFG 2025!!! 🚀 🚀🚀","Jan 1, 12:18:52 AM EST"
-1874330909589356693,"https://t.co/uON7cFPXnf","Jan 1, 12:44:46 AM EST"
-1874341547917140387,"RT @X: happy new year to the world’s group chat 🎆","Jan 1, 1:27:03 AM EST"
-1874342693310259604,"I have a good feeling about 2025 https://t.co/LLgTEkpNdP","Jan 1, 1:31:36 AM EST"
-1874344600133132421,"RT @america: President-Elect Donald Trump when asked if he has any resolutions for 2025: “I just want everybody to be happy, healthy, and w…","Jan 1, 1:39:10 AM EST"
-1874355501338943686,"RT @teslaownersSV: Delete the news apps
-
-𝕏 is the signal and helps you see the truth.
-
-𝕏 empowers the voice of many vs a few in legacy me…","Jan 1, 2:22:30 AM EST"
-1874403135785173283,"🤣🎯 https://t.co/aoK7CrtGzr","Jan 1, 5:31:46 AM EST"
-1874406811828396454,"Make a beautiful custom greeting or birthday card with Grok instantly! https://t.co/5b67ZgyaHA","Jan 1, 5:46:23 AM EST"
-1874407344173715713,"RT @politicalmath: When I say "we are in the looting phase of institutional decline", this is what I mean
-
-The money wasn't really meant to…","Jan 1, 5:48:30 AM EST"
-1874407743181996466,"Nuts https://t.co/dNTuOzg4rj","Jan 1, 5:50:05 AM EST"
-1874410588329459832,"RT @dpoddolphinpro: It's been another year of mass-to-orbit domination by @SpaceX. Their Falcon family has launched approx. 1,500 metric to…","Jan 1, 6:01:23 AM EST"
-1874416150618255466,"RT @pegobry_en: Curtis Yarvin’s Parable of of the Motorcycle Helmet:
-
-Let’s say you see a motorcycle driver who’s crashed on the side of th…","Jan 1, 6:23:29 AM EST"
-1874417325702881740,"… https://t.co/pEs4plrecu","Jan 1, 6:28:10 AM EST"
-1874420530922893427,"RT @ArtemisConsort: “Europe has to tolerate grooming gangs for the economic benefits”
-
-The economic “benefits”: https://t.co/firG1izr1C","Jan 1, 6:40:54 AM EST"
-1874420914777198814,"RT @maxtempers: The grooming gangs trial summary transcripts are utterly grotesque. It’s incredible we haven’t had mass civil unrest. Media…","Jan 1, 6:42:25 AM EST"
-1874422237169869254,"RT @SAshworthHayes: By the way, grooming gang leaders were allowed to stay in the UK when it was decided that deporting them would breach t…","Jan 1, 6:47:41 AM EST"
-1874422854831460499,"RT @GoodwinMJ: One of the most shocking events in my academic career was at Oxford Uni (Oxford actually had a grooming gang) where professo…","Jan 1, 6:50:08 AM EST"
-1874423327789551778,"So many people at all levels of power in the UK need to be in prison for this. https://t.co/PtM39RGrFi","Jan 1, 6:52:01 AM EST"
-1874423961372795322,"Vote Reform. It’s the only hope. https://t.co/NfJQ7NHBnj","Jan 1, 6:54:32 AM EST"
-1874424823130267865,"RT @DrewPavlou: Reading the transcript from the Oxford grooming gang trial completely ruined my day. The amount of evil that exists in this…","Jan 1, 6:57:57 AM EST"
-1874424977212182846,"RT @BehizyTweets: BREAKING: An investigation by the Inspector General has found that three senior DOJ officials violated the law by leaking…","Jan 1, 6:58:34 AM EST"
-1874425631012004324,"Yeah https://t.co/kYpz3qVOgp","Jan 1, 7:01:10 AM EST"
-1874537952573100099,"RT @sundarpichai: Happy New Year! Lots to look forward to in 2025.","Jan 1, 2:27:29 PM EST"
-1874538141174071531,"Absolutely https://t.co/1wgQlt2a07","Jan 1, 2:28:14 PM EST"
-1874546280963379209,"Why is Tommy Robinson in a solitary confinement prison for telling the truth?
-
-He should be freed and those who covered up this travesty should take his place in that cell. https://t.co/Dn48JLoJgR","Jan 1, 3:00:35 PM EST"
-1874558969802547611,"The whole Tesla senior team is investigating this matter right now.
-
-Will post more information as soon as we learn anything.
-
-We’ve never seen anything like this. https://t.co/MpmICGvLXf","Jan 1, 3:51:00 PM EST"
-1874574237761175895,"RT @america: BREAKING: The New Orleans attack terrorist has been identified as Shamsud Din Jabbar and was reportedly carrying an ISIS flag…","Jan 1, 4:51:40 PM EST"
-1874579547452269054,"We have now confirmed that the explosion was caused by very large fireworks and/or a bomb carried in the bed of the rented Cybertruck and is unrelated to the vehicle itself.
-
-All vehicle telemetry was positive at the time of the explosion. https://t.co/H","Jan 1, 5:12:46 PM EST"
-1874587141491335237,"Appears likely to be an act of terrorism.
-
-Both this Cybertruck and the F-150 suicide bomb in New Orleans were rented from Turo. Perhaps they are linked in some way. https://t.co/MM6ehJO3SG","Jan 1, 5:42:57 PM EST"
-1874587515270967348,"Only Reform can save Britain. https://t.co/KayCknFQUZ","Jan 1, 5:44:26 PM EST"
-1874593961094038010,"Political corruption at the highest levels https://t.co/dVvH0KxC04","Jan 1, 6:10:03 PM EST"
-1874594506303230407,"Unquestionably so https://t.co/8yyN30waIo","Jan 1, 6:12:13 PM EST"
-1874594635626246583,"Absolutely https://t.co/IzE7vNLZvK","Jan 1, 6:12:44 PM EST"
-1874594920151007294,"Shameful conduct by Jess Phillips.
-
-Throw her out. https://t.co/XbfNdx53wG","Jan 1, 6:13:51 PM EST"
-1874602259189002728,"True https://t.co/c05hL14Tpl","Jan 1, 6:43:01 PM EST"
-1874604017290182813,"RT @PeterSweden7: WHAT'S GOING ON???
-
-1. Young girls were r*ped by grooming gangs in Britain.
-
-2. In two cases, the fathers tracked down th…","Jan 1, 6:50:00 PM EST"
-1874605166999343495,"What a travesty https://t.co/nTMlFn1Bmj","Jan 1, 6:54:34 PM EST"
-1874606559399117098,"RT @teslaownersSV: Legacy media are paid shills
-
-They use Tesla, Cybertruck and Elon Musk for clicks and maximum bait. I don’t watch legacy…","Jan 1, 7:00:06 PM EST"
-1874607275392077984,"RT @charliekirk11: God bless the three police officers who engaged the terrorist directly after he crashed his vehicle, ultimately killing…","Jan 1, 7:02:57 PM EST"
-1874614362612326761,"The evil knuckleheads picked the wrong vehicle for a terrorist attack. Cybertruck actually contained the explosion and directed the blast upwards.
-
-Not even the glass doors of the lobby were broken. https://t.co/9vj1JdcRZV","Jan 1, 7:31:07 PM EST"
-1874622087530520934,"RT @america: NEW FOOTAGE: “The fact that this was a Cybertruck really limited the damage that occurred inside of the valet, because it had…","Jan 1, 8:01:49 PM EST"
-1874622318502383858,"RT @Geiger_Capital: The Las Vegas Sheriff just said that the Cybertruck actually held it’s frame and limited the damage of the explosion, d…","Jan 1, 8:02:44 PM EST"
-1874622406616297579,"RT @SawyerMerritt: A bomb went off in the Cybertruck's bed and the tires didn't pop/deflate, the exterior of the truck is intact, the bed d…","Jan 1, 8:03:05 PM EST"
-1874623676567695569,"RT @konstructivizm: Magnificent Real Images of Deep Space! The Andromeda Galaxy (infrared)
-Hubble https://t.co/84Upy4Hl2W","Jan 1, 8:08:07 PM EST"
-1874624507140567382,"There must be accountability https://t.co/k99Febum7d","Jan 1, 8:11:25 PM EST"
-1874624914147418156,"This horrific crime has been going on for a very long time https://t.co/MDlXYsQrll","Jan 1, 8:13:03 PM EST"
-1874625080522850679,"RT @TRobinsonNewEra: ADMIN POST
-
-THE RAPE OF BRITAIN - EPISODE 1
-
-Nicole's story.
-
-Nicole was raped and pimped at the age of 11 by members…","Jan 1, 8:13:42 PM EST"
-1874625291538350372,"Worth watching https://t.co/OwHGnMcAgK","Jan 1, 8:14:33 PM EST"
-1874625502323134570,"Free Tommy Robinson!
-@TRobinsonNewEra","Jan 1, 8:15:23 PM EST"
-1874625851134025835,"Important https://t.co/E3LCOPBV9Q","Jan 1, 8:16:46 PM EST"
-1874626211202421089,"RT @GadSaad: Imagine an entire civilization that is taken over by an emotional parasite called suicidal empathy that trumps every other ins…","Jan 1, 8:18:12 PM EST"
-1874629776234971200,"Whoever ordered the arrest of fathers trying to protect their daughters from gang rape should be in prison for life https://t.co/jJj0pmoqSD","Jan 1, 8:32:22 PM EST"
-1874630091373989986,"Absolutely https://t.co/o5F5AESv81","Jan 1, 8:33:37 PM EST"
-1874630607835398643,"They oppose an inquiry, because it will show that those in power were complicit in the cover-up https://t.co/uLdWVRcEIg","Jan 1, 8:35:40 PM EST"
-1874635969665831153,"AP stands for Associated Propaganda https://t.co/kh8rTuwlPK","Jan 1, 8:56:58 PM EST"
-1874637342247661582,"RT @MarshaBlackburn: This is what the FBI New Orleans has been doing.
-
-Return the FBI to its mission of investigating criminals and terrori…","Jan 1, 9:02:26 PM EST"
-1874638578187391153,"RT @libsoftiktok: Kathy Hochul told us just last week that the subway is safe. Since then:
-
-Woman burned alive
-Man shoved into oncoming tra…","Jan 1, 9:07:20 PM EST"
-1874640771208691832,"Yes https://t.co/gVMSmY7dcO","Jan 1, 9:16:03 PM EST"
-1874641562694791359,"RT @MikhailaFuller: Free @TRobinsonNewEra right now.","Jan 1, 9:19:12 PM EST"
-1874642099074912303,"RT @sentdefender: Law Enforcement Officials are claiming that because the Suspect used a Tesla Cybertruck in their Attack earlier today aga…","Jan 1, 9:21:20 PM EST"
-1874642314062381108,"Yes https://t.co/g7t4a4kwWj","Jan 1, 9:22:11 PM EST"
-1874643357622059227,"What’s going on, @YouTube? https://t.co/yRovS3kr8P","Jan 1, 9:26:20 PM EST"
-1874645832152269237,"You don’t hate the legacy media enough https://t.co/wVq5JbmY5g","Jan 1, 9:36:10 PM EST"
-1874646141708783705,"A new election should be called in Britain https://t.co/qavxToRa7j","Jan 1, 9:37:24 PM EST"
-1874646268800323935,"💯 Treason https://t.co/OdKfSXc5DA","Jan 1, 9:37:54 PM EST"
-1874650336755142670,"RT @GenFlynn: Immediately. @TRobinsonNewEra is one of the only journalists telling the truth and yet, the UK Govt targeted and imprisoned h…","Jan 1, 9:54:04 PM EST"
-1874650951392616964,"RT @Riley_Gaines_: Free Tommy Robinson","Jan 1, 9:56:30 PM EST"
-1874652789907083555,"Maybe it is time to do so https://t.co/2i4q5QZOUn","Jan 1, 10:03:49 PM EST"
-1874664089894695221,"In the UK, serious crimes such as rape require the Crown Prosecution Service's approval for the police to charge suspects.
-
-Who was the head of the CPS when rape gangs were allowed to exploit young girls without facing justice?
-
-Keir Starmer, 2008 -2013","Jan 1, 10:48:43 PM EST"
-1874665801191739805,"Yes https://t.co/5gRcMckDlX","Jan 1, 10:55:31 PM EST"
-1874666645639323862,"RT @RobertMSterling: In case you’ve forgotten what a shithole Twitter used to be before Elon bought it, just head over to Bl**sky. It’s lik…","Jan 1, 10:58:52 PM EST"
-1874668504835817491,"Wow https://t.co/f7hrariCCL","Jan 1, 11:06:15 PM EST"
-1874669283961438443,"RT @SpaceX: Teams also built our fifth and final Dragon crew spacecraft in Hawthorne, California. Next stop is Florida, where teams will pr…","Jan 1, 11:09:21 PM EST"
-1874670025858310147,"RT @SpaceX: Dragon and the Crew-8 astronauts are set to depart the @Space_Station later today → https://t.co/8aciOT7Lmj https://t.co/gKN7di…","Jan 1, 11:12:18 PM EST"
-1874676265439072766,"Free Tommy https://t.co/gvTxhr0GJf","Jan 1, 11:37:06 PM EST"
-1874682902115684824,"RT @imPenny2x: The Cybertruck literally saved lives in Las Vegas today. The local police department confirmed it.
-
-Then the mainstream med…","Jan 2, 12:03:28 AM EST"
-1874682940116156713,"RT @SawyerMerritt: Cybertruck is the #1 most American-made full size pickup truck with 65% of its parts coming from the US/Canada and 90% c…","Jan 2, 12:03:37 AM EST"
-1874686218409246909,"RT @eyeslasho: Her study:
-
-https://t.co/HiRJaw1SuM https://t.co/qL8b5RbOye","Jan 2, 12:16:39 AM EST"
-1874686664897130731,"RT @OzraeliAvi: Tommy Robinson is a political prisoner","Jan 2, 12:18:25 AM EST"
-1874688117858549775,"Who is the boss of Jess Phillips right now? Keir Stamer.
-
-The real reason she's refusing to investigate the rape gangs is that it would obviously lead to the blaming of Keir Stamer (head of the CPS at the time).","Jan 2, 12:24:11 AM EST"
-1874688419647082719,"Needs to happen and will happen in America https://t.co/s0oMhRODwN","Jan 2, 12:25:23 AM EST"
-1874689446832226398,"RT @robbystarbuck: Tommy warned the world before anyone was paying attention that gangs of migrants were raping young British girls and his…","Jan 2, 12:29:28 AM EST"
-1874689606794584201,"RT @VickyRichterUSA: “What’s Happening in Britain Is Insane!” - @elonmusk
-
-“In Britain – and I’m not joking, how can this even be real? –…","Jan 2, 12:30:06 AM EST"
-1874821333974176189,"True! https://t.co/lyv0kPXJvC","Jan 2, 9:13:33 AM EST"
-1874821554632348020,"English version of the article (Die Welt translated it into German) https://t.co/2sC8ISpswp","Jan 2, 9:14:25 AM EST"
-1874821642540740773,"RT @BasedMikeLee: The UK must free Tommy Robinson
-
-If it doesn’t, there must be consequences","Jan 2, 9:14:46 AM EST"
-1874857531434283120,"🤨 https://t.co/lVnhESi7l7","Jan 2, 11:37:23 AM EST"
-1874857764377538573,"RT @BasedMikeLee: On no planet did the Tesla truck simply “catch fire”
-
-It was loaded up with explosives & detonated
-
-@AP, you’ve navigated…","Jan 2, 11:38:18 AM EST"
-1874858194876706835,"Exactly. Time for Reform. https://t.co/b0U09zpTG5","Jan 2, 11:40:01 AM EST"
-1874860101758287978,"RT @skscartoon: The terrorist attack outside of Trump hotel was the best ad for #Cybertruck https://t.co/Ucsyel2WV7","Jan 2, 11:47:36 AM EST"
-1874860940073840854,"RT @shaunmmaguire: For anyone new to the issue of “mass rape gangs” in the UK
-
-Which have been operating for decades
-
-And which have been c…","Jan 2, 11:50:56 AM EST"
-1874860983140954130,"RT @shaunmmaguire: The British media has demonized almost everyone that spoke out against the mass rape gangs in the UK
-
-It’s incredibly si…","Jan 2, 11:51:06 AM EST"
-1874861181552468170,"Yet more shameful conduct by the legacy media https://t.co/VztseekXx1","Jan 2, 11:51:53 AM EST"
-1874862847123165557,"🛡️ VERITAS 🛡️
-🛡️ ÆTERNUM 🛡️ https://t.co/iS5DsUagPb","Jan 2, 11:58:30 AM EST"
-1874863199574745093,"Deep empathy, not shallow empathy https://t.co/blqEHDwmO6","Jan 2, 11:59:54 AM EST"
-1874863824169582855,"Watch this to understand more https://t.co/OwHGnMcAgK","Jan 2, 12:02:23 PM EST"
-1874864996397846961,"This is the same media that hid the fact that a quarter million little girls were – still are – being systematically raped by migrant gangs in Britain.
-
-They are beneath contempt. Despicable human beings. https://t.co/B6ZQjqRj0m","Jan 2, 12:07:03 PM EST"
-1874866925584757117,"Good question https://t.co/2TcHO9nZvw","Jan 2, 12:14:43 PM EST"
-1874867078785818921,"Why? https://t.co/0I5gGrgtmk","Jan 2, 12:15:19 PM EST"
-1874867408424636759,"A very frequent tactic of the legacy media https://t.co/dFoZq2CRtv","Jan 2, 12:16:38 PM EST"
-1874867656739959127,"Britain needs Reform now! https://t.co/j9E0Ode0pG","Jan 2, 12:17:37 PM EST"
-1874867956422934554,"Good question https://t.co/AuXIf3CZVg","Jan 2, 12:18:48 PM EST"
-1874868753223327778,"RT @jk_rowling: 🎯 'But we'll be handing our enemies talking points' is the exact same argument used by people who refuse to accept that ado…","Jan 2, 12:21:58 PM EST"
-1874871236653932664,"Elderly man arrested in Britain for “causing anxiety” with a social media post. This is insane.
-
-Thank God there is a constitutional right to freedom of speech in America! https://t.co/Mctx8N46eI","Jan 2, 12:31:50 PM EST"
-1874871597020094519,"RT @KatiaEarth: Just a trippy dream of how Grok and I traversed the universe to understand it. All images to create the video were generate…","Jan 2, 12:33:16 PM EST"
-1874872124764221647,"Beautiful https://t.co/m9EEEORMB2","Jan 2, 12:35:22 PM EST"
-1874873265128415490,"RT @CDP1882: I've had dozens of interviews with survivors of grooming gangs. They are all immensely brave.
-
-But by far my most harrowing in…","Jan 2, 12:39:54 PM EST"
-1874874025169895900,"Two Tier Keir
-
-No justice for severe, violent crimes, but prison for social media posts https://t.co/QcK4o74Yla","Jan 2, 12:42:55 PM EST"
-1874874625441898651,"https://t.co/YfZXhT8Ia5 https://t.co/tac4J7nGXP","Jan 2, 12:45:18 PM EST"
-1874874903008362601,"https://t.co/RzdbwsqmwI https://t.co/zTR0Nhvsc6","Jan 2, 12:46:25 PM EST"
-1874875270773215720,"RT @JohnLeFevre: I never understood why people would turn down high honors and accolades.
-
-Now I do...
-
-Sadiq Khan is getting a Knighthood…","Jan 2, 12:47:52 PM EST"
-1874875613225623843,"A mass murderer is living free as a professor in Canada? https://t.co/a26hBn5n5G","Jan 2, 12:49:14 PM EST"
-1874876078197743885,"President @realDonaldTrump will take power just in time.
-
-Thank goodness. https://t.co/WjUAOc3VgF","Jan 2, 12:51:05 PM EST"
-1874876626506530946,"RT @AutismCapital: When it’s the second day of 2025 and nothing bad has happened yet. https://t.co/GFGH0Iadev","Jan 2, 12:53:15 PM EST"
-1874877322802995245,"💯 https://t.co/cfvcWjDbLB","Jan 2, 12:56:01 PM EST"
-1874878003924304186,"State-sponsored evil https://t.co/i9hIiZx6UC","Jan 2, 12:58:44 PM EST"
-1874889114505650259,"💯 https://t.co/QwaVO9yy5b","Jan 2, 1:42:53 PM EST"
-1874890724002742707,"The founders of America had great wisdom https://t.co/aDrZy5UD8G","Jan 2, 1:49:17 PM EST"
-1874891223473012836,"RT @RupertLowe10: I am asking the Home Office some questions this morning.
-
-Will they commit to a full, free and fair national inquiry into…","Jan 2, 1:51:16 PM EST"
-1874922813993410799,"😂 https://t.co/EGQty1qn3y","Jan 2, 3:56:47 PM EST"
-1874923751340683691,"RT @elonmusk: @BillyM2k The battery pack never even caught fire and the tires are still inflated!
-
-Once we get this Cybertruck back to Tes…","Jan 2, 4:00:31 PM EST"
-1874924921798930615,"Absolutely https://t.co/PkCnQoOmBD","Jan 2, 4:05:10 PM EST"
-1874928488333115426,"Keir Starmtrooper has a question … https://t.co/e2CoypW8oQ","Jan 2, 4:19:20 PM EST"
-1874947925446738411,"RT @TheBabylonBee: FBI Asks X Users To Please Stop Solving Crimes Before They Do https://t.co/TZt3AKcaR0 https://t.co/IsagWwggxW","Jan 2, 5:36:34 PM EST"
-1874955493036507158,"RT @thatsKAIZEN: Bernie is not responding to the full claim.
-
-Elon and Vivek both acknowledged that the current H-1B system is broken and n…","Jan 2, 6:06:39 PM EST"
-1874956990923014524,"Good https://t.co/ImegQRzuC0","Jan 2, 6:12:36 PM EST"
-1874957829221896438,"RT @PeterSweden7: Why did the British media cover up the grooming gsng scandal?
-
-Remember Jimmy Saville worked at the BBC...","Jan 2, 6:15:56 PM EST"
-1874959035105255857,"Most people in Europe think the legacy media is real.
-
-Send them links to 𝕏, so that they know the truth.
-
-Nothing is more convincing than actual source material. https://t.co/uSA4OT6pC9","Jan 2, 6:20:43 PM EST"
-1874959249455124671,"🎯 https://t.co/mu8oSLUpLy","Jan 2, 6:21:34 PM EST"
-1874959726540452120,"Grok can tell you a lot https://t.co/PtXhlTc4At","Jan 2, 6:23:28 PM EST"
-1874959882878894261,"The perfect question https://t.co/BgthoVlUU4","Jan 2, 6:24:05 PM EST"
-1874962325335322921,"Wow https://t.co/uo285Sl47X","Jan 2, 6:33:48 PM EST"
-1874962471569781189,"RT @AutismCapital: New Trump post from Truth 😂 https://t.co/pGO6gD8FIM","Jan 2, 6:34:22 PM EST"
-1874963264112849350,"Wow https://t.co/T6QYvWcsGf","Jan 2, 6:37:31 PM EST"
-1874967590818533882,"You can upload any image to Grok for analysis, from medical tests to video games!
-
-Just tap the + button or paste the image into the entry bar. https://t.co/RsvmqBiI67","Jan 2, 6:54:43 PM EST"
-1874971345840382000,"Unreal https://t.co/A7CCcZ0J1m","Jan 2, 7:09:38 PM EST"
-1874971573679255878,"🎯 https://t.co/KQy8AfKqT6","Jan 2, 7:10:33 PM EST"
-1874972321557131590,"😑 https://t.co/eI9FXulYi2","Jan 2, 7:13:31 PM EST"
-1874976007679312217,"Interesting https://t.co/JwnsXHN1EZ","Jan 2, 7:28:10 PM EST"
-1874976124993990893,"RT @america: Incoming Border Czar Tom Homan: “We need to secure that border. Despite what's happened in the last two days, this administrat…","Jan 2, 7:28:38 PM EST"
-1874978009628950699,"😂 https://t.co/DkFCihb14r","Jan 2, 7:36:07 PM EST"
-1874978581560057976,"RT @Object_Zero_: @RokoMijic Grooming Gangs sound like dog walkers.
-
-This is Genocidal Rape.","Jan 2, 7:38:23 PM EST"
-1874978775093678532,"Great interview https://t.co/UH5FAEsixZ","Jan 2, 7:39:10 PM EST"
-1874997897571561472,"You can watch live sports in 8k in Antarctica with @Starlink https://t.co/QtjoidRoU1","Jan 2, 8:55:09 PM EST"
-1875000055276748823,"Yes https://t.co/h0v3DyAWDO","Jan 2, 9:03:43 PM EST"
-1875005234466226343,"RT @cb_doge: "For building a city on Mars, you need thousands of Starships because you can only go to Mars every 26 months."
-
-一 Elon Musk h…","Jan 2, 9:24:18 PM EST"
-1875005583008637123,"RT @FBIWFO: FBI Releases New Information About Pipe Bomb Suspect to Encourage Additional Tips From the Public https://t.co/syH2b39IZq
-
-@ATF…","Jan 2, 9:25:41 PM EST"
-1875019181516583183,"💯 https://t.co/3r6DFTeGXr","Jan 2, 10:19:43 PM EST"
-1875025398603583743,"RT @EndWokeness: China was able to hack the Treasury due to a breach against BeyondTrust (third party for cybersecurity). Their priority? D…","Jan 2, 10:44:25 PM EST"
-1875025576945430708,"Insane https://t.co/YOzLhFtxT3","Jan 2, 10:45:08 PM EST"
-1875026312769012186,"Yes https://t.co/jW1ZX15MiL","Jan 2, 10:48:03 PM EST"
-1875027249159885062,"The legacy media and corrupt politicians hid this for 20 years https://t.co/6huSxcjjz1","Jan 2, 10:51:47 PM EST"
-1875028823173177816,"No UK government inquiry for the gang rape of innocent little girls, but £22M spent on an obviously violent lunatic.
-
-Shame, shame, shame. https://t.co/PwN6lL9w3u","Jan 2, 10:58:02 PM EST"
-1875032759154200676,"https://t.co/Ub1pL6JrWV","Jan 2, 11:13:40 PM EST"
-1875042802008281285,"RT @cb_doge: Just a reminder:
-
-Every user on 𝕏 can make voice and video calls without sharing their phone number and calls are never used f…","Jan 2, 11:53:35 PM EST"
-1875044113248305650,"RT @RobertJenrick: These weren’t grooming gangs - they were torture rape gangs.
-
-They will still be operating today because the institution…","Jan 2, 11:58:47 PM EST"
-1875044847691923498,"Yes https://t.co/WEaHZup2BT","Jan 3, 12:01:42 AM EST"
-1875049172203971040,"RT @Basil_TGMD: This is the BBC home page right now.
-No mention of the rape gangs.
-No mention of Jess Phillips.
-No mention of the numerous…","Jan 3, 12:18:54 AM EST"
-1875049529223139763,"Almost always https://t.co/fJWiAv0nQa","Jan 3, 12:20:19 AM EST"
-1875050409410330874,"RT @MarioNawfal: STARLINK BRINGS 8K STREAMING TO ANTARCTICA
-
-173 Mbps speed and 92 ms latency—in Antarctica!
-
-Latency, the time it takes da…","Jan 3, 12:23:49 AM EST"
-1875051774320771133,"RT @stillgray: British police asked this young woman if she consented. She was five. Let me repeat that: SHE WAS FIVE.
-
-The police did not…","Jan 3, 12:29:14 AM EST"
-1875052197433786743,"You are the media https://t.co/TZLiiB9cxT","Jan 3, 12:30:55 AM EST"
-1875134311076339788,"RT @realDonaldTrump: Our Country is a disaster, a laughing stock all over the World! This is what happens when you have OPEN BORDERS, with…","Jan 3, 5:57:12 AM EST"
-1875135014993866774,"RT @RupertLowe10: Ask yourself - what if it was your daughter? Imagine it was your child who was being pumped full of alcohol and drugs, ma…","Jan 3, 6:00:00 AM EST"
-1875135238533472582,"RT @ClaireCoutinho: Rishi and Suella brought in a grooming gangs specialist taskforce which led to 550 arrests in its first year and helped…","Jan 3, 6:00:53 AM EST"
-1875135741795398099,"RT @PeterSweden7: BREAKING: Turns out a grooming r*pe gang ringleader was employed as a Welfare rights officer by Oldham Council in Britain…","Jan 3, 6:02:53 AM EST"
-1875135923173908900,"Because he is guilty of complicity https://t.co/Y55nGaZIlQ","Jan 3, 6:03:37 AM EST"
-1875136149565686249,"RT @ThatAlexWoman: Get ready to be horrified
-
-Charlene Downes was 14 when she was killed, having been repeatedly raped
-
-Iyad Albattikhi an…","Jan 3, 6:04:31 AM EST"
-1875136724999066066,"Only those afraid of the truth oppose it https://t.co/qeRiTubmeI","Jan 3, 6:06:48 AM EST"
-1875137202122059838,"RT @DVATW: So the MP Shaun Davis who when leader of Telford Council did all he could to impede investigations into the r*pe gangs operating…","Jan 3, 6:08:42 AM EST"
-1875137607245643911,"DEI is racism and sexism https://t.co/v16hAVciQD","Jan 3, 6:10:18 AM EST"
-1875138315676242328,"The people of Britain do not want this government at all. New elections. https://t.co/Vh4uHLccTh","Jan 3, 6:13:07 AM EST"
-1875139190004076947,"RT @AntSpeaks: If you think @elonmusk commenting on British politics is a bad thing, then you clearly don't have a very strong grasp on the…","Jan 3, 6:16:35 AM EST"
-1875140185442451503,"You are the media now.
-
-And vastly better at getting to the truth. https://t.co/nME63QCeE4","Jan 3, 6:20:33 AM EST"
-1875144710270165390,"https://t.co/ng3RIo5zgK","Jan 3, 6:38:32 AM EST"
-1875145167633887358,"Jess Philips is a rape genocide apologist https://t.co/vmLKtIQ6YV","Jan 3, 6:40:21 AM EST"
-1875145696078373130,"Why were the charges dropped? This was a serious hate crime. https://t.co/4uD1CZvGQe","Jan 3, 6:42:27 AM EST"
-1875145922994426217,"RT @PeterSweden7: UNBELIEVABLE
-
-The truth about the grooming gangs in Britain is coming out.
-
-Please SHARE her story 👇","Jan 3, 6:43:21 AM EST"
-1875146197293555942,"RT @andrewlawrence: If you devote your career to protecting paedophiles, maybe one day you could be prime minister too. #inspiring https://…","Jan 3, 6:44:26 AM EST"
-1875146526777081913,"RT @libsoftiktok: British police showed up to her house after she spoke about the s*x abuse she endured when she was 5. They’re not going a…","Jan 3, 6:45:45 AM EST"
-1875146652694220856,"RT @skscartoon: #FreeTommyRobinson
-The UK is being run by criminals https://t.co/xgH2EtS52u","Jan 3, 6:46:15 AM EST"
-1875146797599113580,"Insane https://t.co/aK0IRLHyVq","Jan 3, 6:46:49 AM EST"
-1875147309593600296,"RT @MarioNawfal: 🚨🇬🇧EX-LABOUR MP: PARTY WARNED ME NOT TO LINK GROOMING GANGS TO ETHNICITY
-
-Simon Danczuk, former Rochdale MP, claims Labour…","Jan 3, 6:48:51 AM EST"
-1875147743787954510,"RT @StarSun2: @KonstantinKisin The King must step in .
-
-We can't have Keir heading the country,
-
-while he was the one heading
-
-the Crown P…","Jan 3, 6:50:35 AM EST"
-1875147790604697908,"Yes https://t.co/dYpvgW57Gw","Jan 3, 6:50:46 AM EST"
-1875148253572083871,"RT @TiceRichard: The Home Office must commit to a full inquiry into the grooming gang scandals
-
-Anything else is a massive cover up of the…","Jan 3, 6:52:36 AM EST"
-1875148744032981226,"Worth reading https://t.co/DilhkgXKfv","Jan 3, 6:54:33 AM EST"
-1875148997935145067,"The mass rapes in Britain are still happening https://t.co/krsbVIdB0I","Jan 3, 6:55:34 AM EST"
-1875150194909823085,"Starmer was complicit in the RAPE OF BRITAIN when he was head of Crown Prosecution for 6 years.
-
-Starmer must go and he must face charges for his complicity in the worst mass crime in the history of Britain.","Jan 3, 7:00:19 AM EST"
-1875153589318115775,"https://t.co/9PnTcdoU44","Jan 3, 7:13:49 AM EST"
-1875153655286137269,"RT @MarioNawfal: MARS, PACK YOUR BAGS—WE’RE HEADING THERE SOON!
-
-SpaceX is gearing up to send Starships to Mars by 2026 to test landings.…","Jan 3, 7:14:04 AM EST"
-1875155144356303308,"The worst mass crime against the people of Britain ever https://t.co/onFitlNDw7","Jan 3, 7:19:59 AM EST"
-1875155387483382140,"RT @GoodwinMJ: I have just lodged a request with the UK parliamentary authorities for a citizen-led petition demanding a national inquiry o…","Jan 3, 7:20:57 AM EST"
-1875155620086907317,"RT @Joey7Barton: You’re either with these Religious, rape gangs or you’re against them.
-
-There is literally no middle ground.
-
-Anyone defen…","Jan 3, 7:21:53 AM EST"
-1875155813435891763,"RT @Ayaan: The dam appears to have broken on this most shameful chapter in Britain’s history: where children were sacrificed by politicians…","Jan 3, 7:22:39 AM EST"
-1875156767728136521,"RT @PeterSweden7: WOAH
-
-This Reform MP says that he is getting loads of calls from victims of the grooming r*pe gangs.
-
-This is bigger than…","Jan 3, 7:26:26 AM EST"
-1875156793623798038,"RT @RupertLowe10: I have calls lined up all afternoon with campaigners and victims of the rape gang scandal - if the Government won't hold…","Jan 3, 7:26:32 AM EST"
-1875157232264052997,"RT @MarioNawfal: 🚨🇬🇧UK RAPE GANG SCANDALS: A SYSTEMIC BETRAYAL OF VICTIMS
-
-Douglas Murray's "The Strange Death of Europe" dissects the UK’s…","Jan 3, 7:28:17 AM EST"
-1875157474384462145,"RT @cb_doge: Most countries should view the birth rate as the single biggest problem they need to solve. https://t.co/ZpTetUms0n","Jan 3, 7:29:15 AM EST"
-1875159041795895345,"Good https://t.co/xor446JAuF","Jan 3, 7:35:28 AM EST"
-1875159656378912907,"More the complicit, he was a participant in the mass rape of Britain https://t.co/T6QYvWcsGf","Jan 3, 7:37:55 AM EST"
-1875159822460735906,"RT @Inevitablewest: British girls are being sacrificed on the alter of multiculturalism, and the perpetrators are being protected.
-
-Fight…","Jan 3, 7:38:35 AM EST"
-1875159899677864333,"RT @StevenJonMiller: 🚨BREAKING 😳
-
-‼️Elon Musk has confirmed that he believes the KING of the U.K should Dissolve Parliament and order a Gen…","Jan 3, 7:38:53 AM EST"
-1875160691151409643,"National inquiry now! https://t.co/ShjkCxSDAb","Jan 3, 7:42:02 AM EST"
-1875174226761765092,"Incentives explain behavior https://t.co/wKpGcOTX9z","Jan 3, 8:35:49 AM EST"
-1875186535001383326,"RT @RupertLowe10: This is simply staggering. I have verified the source of this information as reliable, from a GP practice in London.
-
-On…","Jan 3, 9:24:43 AM EST"
-1875187210414329959,"RT @SpeakerJohnson: Thank you, President Trump!
-
-Today is a new day in America.
-
-Congressional Republicans must stay united to quickly deli…","Jan 3, 9:27:24 AM EST"
-1875187452782207045,"That is exactly what they did https://t.co/Nl1uVycvhk","Jan 3, 9:28:22 AM EST"
-1875192947609886913,"RT @MarioNawfal: 🚨🇬🇧MASS IMMIGRATION: A LABOUR-BACKED EXPERIMENT THAT CHANGED AND FAILED BRITAIN
-
-Labour’s deliberate policy of opening the…","Jan 3, 9:50:12 AM EST"
-1875193948211478692,"The Democrats oppose voter ID so that they can commit voting fraud and not get caught. It’s that simple. https://t.co/6sV1svlP8L","Jan 3, 9:54:11 AM EST"
-1875194882182230429,"True https://t.co/GVGES9TMbr","Jan 3, 9:57:54 AM EST"
-1875199746627027341,"RT @PeterSweden7: This is what happened in Britain 🇬🇧
-
-1. Young girls were r*ped again and again by grooming gangs.
-
-2. Media and authoriti…","Jan 3, 10:17:13 AM EST"
-1875200347293282545,"RT @TRobinsonNewEra: ADMIN POST.
-
-Over 6 years ago now, Lord Pearson questioned the CONservatives over the upwards of 250,000 British chil…","Jan 3, 10:19:36 AM EST"
-1875201872283439199,"Conversation with Alice Weidel on Jan 9 https://t.co/VABUx71PLC","Jan 3, 10:25:40 AM EST"
-1875202560702943345,"Analyze any image in seconds with Grok! https://t.co/CgL5AquNrZ","Jan 3, 10:28:24 AM EST"
-1875203041793822876,"RT @RachelMoiselle: This is a horror beyond measure. https://t.co/iWmAB45Lj7","Jan 3, 10:30:19 AM EST"
-1875203809242497365,"RT @FarzadMediaINC: Elon Musk Has Changed Discourse Forever
-
-w/ @thatsKAIZEN and @HansCNelson https://t.co/yRghCHfjM6","Jan 3, 10:33:22 AM EST"
-1875204647444713759,"RT @skorusARK: Still working to update w/ incremental info from the SpaceX report, but I'm always amazed at how robust wrights law cost dec…","Jan 3, 10:36:42 AM EST"
-1875205169010692256,"This platform is the top source for news on Earth https://t.co/Wpsyt3sq3g","Jan 3, 10:38:46 AM EST"
-1875205546141454809,"RT @PunchingBubbles: @elonmusk https://t.co/QL71Mrj8MQ","Jan 3, 10:40:16 AM EST"
-1875207108968546397,"RT @JamesMelville: “Labour has blocked an inquiry into Keir Starmer’s conduct as the head of the Crown Prosecution Service while investigat…","Jan 3, 10:46:29 AM EST"
-1875243299289665963,"Kekius Maximus made it to rank 59 in the world in Hardcore League of @PathofExile. RIP noble warrior. https://t.co/WxFdZIRC9L","Jan 3, 1:10:17 PM EST"
-1875243625686487209,"List of major upgrades to Starship for Flight 7 https://t.co/lOhUSdVrlG","Jan 3, 1:11:35 PM EST"
-1875243769039302778,"True https://t.co/n6S44sfzBO","Jan 3, 1:12:09 PM EST"
-1875243839491076552,"RT @visegrad24: What concerns me, is that clearly for years there have been victims of child grooming.
-
-This has involved the CPS, Police a…","Jan 3, 1:12:26 PM EST"
-1875245064647262371,"RT @RupertLowe10: Talking to rape gang victims/campaigners today, it is clear that this cancer has spread almost unchecked.
-
-Horrifyingly,…","Jan 3, 1:17:18 PM EST"
-1875246496247116067,"It is high time https://t.co/rGIqD0aU4B","Jan 3, 1:22:59 PM EST"
-1875247027417976861,"It is now illegal to show your ID even in local elections in California. The reason they’re doing this is to make voting fraud unprovable.
-
-🤡🌎 https://t.co/jPTvrRWmmz","Jan 3, 1:25:06 PM EST"
-1875247451726344331,"RT @ThatAlexWoman: The two men accused got A QUARTER OF A MILLION QUID EACH
-
-Despite being caught bugged talking about how one disposed of…","Jan 3, 1:26:47 PM EST"
-1875247715279630644,"RT @AnnaMcGovernUK: I have joined Reform UK. https://t.co/Fz4Iih0YSb","Jan 3, 1:27:50 PM EST"
-1875249007771140389,"RT @JohnLeFevre: I've never used TikTok and I rarely use Instagram, but the "swipe up" function on videos on X is great now for relevant co…","Jan 3, 1:32:58 PM EST"
-1875250261817790733,"RT @Nigel_Farage: Another Conservative defector to Reform UK. A warm welcome to Marco Longhi. 🇬🇧 https://t.co/47VCIST6L5","Jan 3, 1:37:57 PM EST"
-1875269519893213256,"RT @ZubyMusic: We have passed the peak decade of 'wokeness' and are in the very early stages of a new era. I don't know what it is called y…","Jan 3, 2:54:29 PM EST"
-1875274142423118124,"RT @trussliz: The @bbc needs to be defunded.
-
-It is incapable of being objective, instead parroting the establishment line.
-
-It's part of B…","Jan 3, 3:12:51 PM EST"
-1875279468165816347,"RT @dvorahfr: Summary of my images generated with @grok : so many different styles. And grok is only just beginning! https://t.co/an8ncl1p1M","Jan 3, 3:34:00 PM EST"
-1875293661409505530,"🇺🇸🇺🇸 Congratulations! 🇺🇸🇺🇸 https://t.co/jjUEnLRhPL","Jan 3, 4:30:24 PM EST"
-1875294607929753954,"RT @BasedMikeLee: They’ve made it illegal to show your ID at a voting location in California
-
-That’s akin to making it illegal to drive wit…","Jan 3, 4:34:10 PM EST"
-1875297776348848475,"Yes https://t.co/dcWLeZUWBc","Jan 3, 4:46:45 PM EST"
-1875300998228635866,"RT @thatsKAIZEN: The Trump felony conviction was politically motivated from the start.
-
-- Trump was prosecuted for the same crime as former…","Jan 3, 4:59:34 PM EST"
-1875301046148644929,"RT @TobyPhln: I love working at @xai. No pointless internal politics and virtually no meetings - just coding and shipping.
-
-I'll do another…","Jan 3, 4:59:45 PM EST"
-1875304822074962295,"RT @teslaownersSV: BREAKING: Grok can now analyze photos you upload.
-
-Here’s how: https://t.co/3MfQa0YXeC","Jan 3, 5:14:45 PM EST"
-1875308629500555613,"RT @SpeakerJohnson: It’s an incredible honor to continue serving our great country as Speaker of the House.
-
-Now, let’s get to work. htt…","Jan 3, 5:29:53 PM EST"
-1875309692588847456,"RT @DimaZeniuk: Mike Johnson has been re-elected Speaker of the U.S. House of Representatives https://t.co/UNysWHM2Fu","Jan 3, 5:34:06 PM EST"
-1875311600883921147,"RT @teslaownersSV: Thanks to Elon Musk companies, the future is exciting. https://t.co/ohSUKEQZaJ","Jan 3, 5:41:41 PM EST"
-1875326469968470405,"Worth doing https://t.co/3if755JYhj","Jan 3, 6:40:46 PM EST"
-1875327464467308646,"RT @cb_doge: How to limit replies to verified users only?
-
- https://t.co/vxsxsLkiLX","Jan 3, 6:44:44 PM EST"
-1875331162400551044,"Posting technical upgrades to Starship, as I think a lot of people enjoy understanding how the technology is evolving from one flight to the next https://t.co/lOhUSdVrlG","Jan 3, 6:59:25 PM EST"
-1875353354408509780,"First launch of 2025!
- https://t.co/kmNfG9wS8O","Jan 3, 8:27:36 PM EST"
-1875355425601999255,"Algorithm tweak coming soon to promote more informational/entertaining content. We will publish the changes to @XEng.
-
-Our goal is to maximize unregretted user-seconds. Too much negativity is being pushed that technically grows user time, but not unregret","Jan 3, 8:35:50 PM EST"
-1875356078088843412,"We’re also working on easy ways for you to adjust the content feed dynamically, so you can have what you want at any given moment","Jan 3, 8:38:26 PM EST"
-1875361363981410463,"RT @cb_doge: BREAKING: Elon Musk has just restricted replies to his posts to verified users only and those mentioned in the post.
-
-He sugge…","Jan 3, 8:59:26 PM EST"
-1875361633784230209,"RT @DrPatSoonShiong: Newsom aims to limit unhealthy food in California… Good to see how California follows RFK’s lead on this issue. @lati…","Jan 3, 9:00:30 PM EST"
-1875362090837536976,"RT @unlimited_ls: If you spend time on 𝕏 posting or replying, you should consider getting verified
-
-Verification not only boosts your repli…","Jan 3, 9:02:19 PM EST"
-1875362478064070664,"RT @AMAZlNGNATURE: The size of a grizzly bear paw compared to a person. https://t.co/JDGBrEQp1c","Jan 3, 9:03:51 PM EST"
-1875363098741370888,"Yes https://t.co/N5eiwEYtnD","Jan 3, 9:06:19 PM EST"
-1875363829691117908,"RT @SpaceX: Deployment of Thuraya 4 confirmed https://t.co/u8Svi3B9yt","Jan 3, 9:09:14 PM EST"
-1875364042417791203,"Yes! https://t.co/O5HanzgIep","Jan 3, 9:10:04 PM EST"
-1875366539098251627,"RT @teslaownersSV: Use Grok to get additional context on any post on 𝕏.
- https://t.co/P1JY0do7KW","Jan 3, 9:20:00 PM EST"
-1875409257073635779,"RT @konstructivizm: The Clearest image of Mercury
-NASA https://t.co/Ie99zEQOis","Jan 4, 12:09:44 AM EST"
-1875413133050966114,"RT @wesyang: The power of Musk’s remarks on Twitter do not derive from his wealth or his ownership of the platform — they derive from the c…","Jan 4, 12:25:09 AM EST"
-1875519722068066751,"How the rape of Britain was covered up https://t.co/2vT1XOt20r","Jan 4, 7:28:41 AM EST"
-1875520753753583678,"A travesty that Biden is giving Soros the Medal of Freedom https://t.co/LGvGe8kqKE","Jan 4, 7:32:47 AM EST"
-1875521752262193418,"As a friend called it, this is the ultimate skill tree https://t.co/MeeSQdjFE9","Jan 4, 7:36:45 AM EST"
-1875522185428951534,"It’s also the second biggest boss battle after entropy","Jan 4, 7:38:29 AM EST"
-1875525668227936392,"Because Starmer is guilty of terrible crimes against the British people https://t.co/Frz4PKYIag","Jan 4, 7:52:19 AM EST"
-1875525796481380611,"RT @DouglasKMurray: For those interested in the UK rape gangs scandal, I wrote about it in ‘The Strange Death of Europe’ [2017] in the chap…","Jan 4, 7:52:50 AM EST"
-1875527610836648043,"RT @CDP1882: How the grooming gangs scandal was covered up
-
-This piece with @SAshworthHayes covers some of the atrocity’s worst details.…","Jan 4, 8:00:02 AM EST"
-1875537749983527152,"RT @SAshworthHayes: Police officers dismissed grooming gang victims who came to them for help.
-
-The authorities simply didn't want to know…","Jan 4, 8:40:20 AM EST"
-1875538271746634165,"That judge should be removed from the bench in disgrace https://t.co/ej7fDPRL53","Jan 4, 8:42:24 AM EST"
-1875560083033354597,"There must be justice for the hundreds of thousands of little British girls who were mercilessly targeted for gang rape and often murder in horrific ways https://t.co/w730XTddj9","Jan 4, 10:09:04 AM EST"
-1875561121698267382,"The sniveling cowards who allowed the mass rape of little girls in Britain are still in power … for now https://t.co/sALWF3mTjU","Jan 4, 10:13:12 AM EST"
-1875562836023505384,"Exactly https://t.co/40PLsQC0nS","Jan 4, 10:20:01 AM EST"
-1875564287680508398,"Yes https://t.co/b2TQZGfV7W","Jan 4, 10:25:47 AM EST"
-1875564438633509173,"Imagine if this were your child https://t.co/PHoAXFhRIt","Jan 4, 10:26:23 AM EST"
-1875568713820500218,"RT @TrungTPhan: never forget that time Nvidia hired Myhtbusters Team to demonstrate the difference between CPUs and GPUs (with a Mona Lisa…","Jan 4, 10:43:22 AM EST"
-1875570171987030324,"🤔 https://t.co/8AFY7kk77F","Jan 4, 10:49:10 AM EST"
-1875575420269294075,"Live conversations on 𝕏 with @Alice_Weidel in 5 days!
-
-Will take questions from the audience. https://t.co/NwvLC6oZww","Jan 4, 11:10:01 AM EST"
-1875576632326681099,"Legacy media dies a little more with each of their lies that is exposed.
-
-You are the media now. https://t.co/srxgccwGn5","Jan 4, 11:14:50 AM EST"
-1875579323878645949,"RT @MattGubba: I spent years as a Conservative Party member
-
-I donated money, attended events, and heavily promoted many of their initiativ…","Jan 4, 11:25:32 AM EST"
-1875579561938972870,"RT @unusual_whales: Walter Isaacson: Elon Musk isn't motivated by money or power. He deeply cares about humanity. https://t.co/ngInB4lK53","Jan 4, 11:26:28 AM EST"
-1875580592043278763,"It is my earnest hope that His Majesty considers this matter in the interests of his subjects https://t.co/xUD8lOym8g","Jan 4, 11:30:34 AM EST"
-1875583435710066836,"Yes https://t.co/bndDosXnPV","Jan 4, 11:41:52 AM EST"
-1875583572092104795,"Dead giveaway https://t.co/uJDl1Shzv2","Jan 4, 11:42:24 AM EST"
-1875583692837707858,"RT @teslaownersSV: 𝕏 is the most vital platform for free speech and democracy in 🇺🇸
-
-𝕏 is indispensable. You are the media.
- https://t.co/C…","Jan 4, 11:42:53 AM EST"
-1875585562025001005,"This actually happened multiple times https://t.co/YiBshFT30r","Jan 4, 11:50:19 AM EST"
-1875607203899715830,"At this rate, the UK Government will pretty soon be executing people for liking a meme! https://t.co/j1PX1qG7WW","Jan 4, 1:16:19 PM EST"
-1875607641520795677,"Makes no sense https://t.co/qcGiCC0xLe","Jan 4, 1:18:03 PM EST"
-1875607777084895466,"RT @GBNEWS: ‘We’re letting our children down!’ Reform mayor blasts Labour’s refusal to launch inquiry into grooming gangs scandal
-
-https://…","Jan 4, 1:18:35 PM EST"
-1875609508711657593,"Thanks https://t.co/7jXbdZzsTI","Jan 4, 1:25:28 PM EST"
-1875609563925508130,"RT @Starlink: Starlink Mini connects within minutes and packs up quickly when it's time to move to your next destination 🛰️⛺️","Jan 4, 1:25:41 PM EST"
-1875617883977621750,"RT @PeterSweden7: Britain sent a man to 20 months prison for a Facebook post about asylum seekers.
-
-Meanwhile when somebody reported on the…","Jan 4, 1:58:45 PM EST"
-1875620755104526755,"Good question. And this happened on a massive scale. Genocidal rape. https://t.co/IBnnb5UMtF","Jan 4, 2:10:10 PM EST"
-1875722946570023123,"George Soros looking quite good here. Must be the lighting. https://t.co/gNHhKyd2GQ","Jan 4, 8:56:14 PM EST"
-1875723605344186562,"This meme is actually real in the UK https://t.co/gW4a3pfCJM https://t.co/nnJfb7AOUO","Jan 4, 8:58:51 PM EST"
-1875723704837271957,"Absolutely https://t.co/e8mw8PIYrp","Jan 4, 8:59:15 PM EST"
-1875725266808721585,"Unreal https://t.co/A5thwqkOpC","Jan 4, 9:05:27 PM EST"
-1875727627228737560,"Crazy https://t.co/ZcaZid1T4C","Jan 4, 9:14:50 PM EST"
-1875731280224251908,"Yes https://t.co/DUFFqVUbUP","Jan 4, 9:29:21 PM EST"
-1875733901035077825,"This is insane https://t.co/DIKWq8poh3","Jan 4, 9:39:46 PM EST"
-1875737932012908634,"Those who suppressed these horrific crimes deserve very long prison sentences https://t.co/8oxh8cD5xQ","Jan 4, 9:55:47 PM EST"
-1875738098799415349,"RT @MarioNawfal: 🇺🇸HOW X EXPOSED THE UK’S RAPE GANG COVER-UP
-
-The UK government’s failure to address rape gangs exploded onto the global st…","Jan 4, 9:56:26 PM EST"
-1875746145261195463,"There is no excuse. Please post the list of people who opposed this law and want to keep illegals who are convicted sex offenders in America.
-
-They all need to be voted out of office. Every one of them. https://t.co/nuimP3Hsm1","Jan 4, 10:28:25 PM EST"
-1875748060925718679,"Super important to report what you see and hear, so that people know the truth https://t.co/q5cObxhWl4","Jan 4, 10:36:02 PM EST"
-1875751903608631607,"This clown looks like he bought that wig from the Party City liquidation sale 🤣🤣 https://t.co/LTPZWfGK2v","Jan 4, 10:51:18 PM EST"
-1875752493239640137,"Sorry, that was in poor taste. I’d like to apologize for insulting Party City. They would never sell such a 💩 wig.","Jan 4, 10:53:38 PM EST"
-1875755115245924663,"He’s wearing a merkin on his head! What is a merkin, you might ask?","Jan 4, 11:04:03 PM EST"
-1875755252546445504,"https://t.co/NeGmpXVXeN","Jan 4, 11:04:36 PM EST"
-1875755451092234546,"https://t.co/NeIIVtoFRc","Jan 4, 11:05:24 PM EST"
-1875759992898515080,"These awful people all need to be voted out, either in the primaries or the general election. They sully the Capitol Building with their presence. https://t.co/6i9LqTefzv","Jan 4, 11:23:26 PM EST"
-1875768209129009496,"That’s what I thought too. It seems not. https://t.co/Adfdg9iAuC","Jan 4, 11:56:05 PM EST"
-1875768433746518365,"Good idea https://t.co/ypbOmr2kgK","Jan 4, 11:56:59 PM EST"
-1875773844876869743,"RT @america: President-Elect Donald J. Trump met with Italian Prime Minister Giorgia Meloni tonight at Mar-a-Lago https://t.co/K3Zpdcjiy0","Jan 5, 12:18:29 AM EST"
-1875779422097441102,"87 arrests … https://t.co/YeDm83zhGl","Jan 5, 12:40:39 AM EST"
-1875779675303374855,"RT @visegrad24: Italian Prime Minister Giorgia Meloni is visiting Trump in Mar-a-Lago today.
-
-Meloni is on a mission to strengthen relation…","Jan 5, 12:41:39 AM EST"
-1875779987917406366,"RT @SeibtNaomi: 🚨BE BRAVE OR LOSE EVERYTHING❗️
-
-We NEED your voice on 𝕏.
-
-Hi 👋
-
-As a political 𝕏 video creator I push a lot of boundaries…","Jan 5, 12:42:54 AM EST"
-1875780502235574503,"Absolutely https://t.co/29b6mqywLh","Jan 5, 12:44:56 AM EST"
-1875780594363461723,"RT @alx: Here’s the list of Democrats that need to be voted out","Jan 5, 12:45:18 AM EST"
-1875781338063835275,"RT @GBNEWS: 'We need to know!' Farage calls for investigation into Starmer's role in grooming gangs scandal https://t.co/cWqHjOR1yi","Jan 5, 12:48:15 AM EST"
-1875782823673786703,"True https://t.co/3aeZ3cweCi","Jan 5, 12:54:10 AM EST"
-1875787043785281744,"RT @nima_owji: Don't just scroll the timeline...
-
-If you see an interesting post, make sure to like, repost, or reply to it
-
-This is the ea…","Jan 5, 1:10:56 AM EST"
-1875788248792068357,"For the bright sparks out there, no change has yet been made to the algorithm.
-
-If you’re wondering why you’re not getting more views, look in the mirror.
-
-Any changes we make will be posted publicly. https://t.co/zllfjru30Y","Jan 5, 1:15:43 AM EST"
-1875793475381432634,"They do https://t.co/jaWpwr8Hae","Jan 5, 1:36:29 AM EST"
-1875796558010314838,"RT @AMAZlNGNATURE: If you're having a bad day, watch this https://t.co/ria7icjXxl","Jan 5, 1:48:44 AM EST"
-1875796978522894788,"RT @AMAZlNGNATURE: I am safe 🐻❄️ https://t.co/ZJvpxb3Gmd","Jan 5, 1:50:24 AM EST"
-1875797029215203753,"RT @teslaownersSV: Cybertruck FSD handles S turn perfectly.
-
-The world has no idea Tesla is solving autonomy. https://t.co/Mxm2vGGFno","Jan 5, 1:50:37 AM EST"
-1875797259423773094,"RT @cb_doge: "We're going straight to Mars." https://t.co/wKZtWUCRcV","Jan 5, 1:51:31 AM EST"
-1875797405649793347,"RT @WallStreetApes: Elon Musk is raising awareness of Congress Reps who won’t deport sex offenders
-
-California Democrats are involved “As a…","Jan 5, 1:52:06 AM EST"
-1875799829617713309,"Grok will be the best source of truth by far https://t.co/PvtFaLwm9f","Jan 5, 2:01:44 AM EST"
-1875800429210317019,"RT @visegrad24: When we fear politicians that’s tyranny.
-
-When they fear us, that’s democracy.
-
-We are a majority, we’ve had enough of ma…","Jan 5, 2:04:07 AM EST"
-1875801699455267266,"Try it! https://t.co/VuqKAZgrd4","Jan 5, 2:09:10 AM EST"
-1875803038910443745,"Every one of them should be voted out https://t.co/3m8jRNwfsc","Jan 5, 2:14:29 AM EST"
-1875805159877701826,"Feedback is welcome https://t.co/0pFnPaCgtG","Jan 5, 2:22:55 AM EST"
-1875807040125477164,"!! https://t.co/w7mryQQyvw","Jan 5, 2:30:23 AM EST"
-1875807253422600662,"RT @amuse: GROOMING GANGS: There is a very persuasive argument to be made that the UK is in violation of the 1948 Convention on the Prevent…","Jan 5, 2:31:14 AM EST"
-1875813534510280828,"Thoughts on this video?
- https://t.co/wfi4k2BZcJ","Jan 5, 2:56:12 AM EST"
-1875813666773459313,"Full public inquiry https://t.co/ZJvgmJU6LR","Jan 5, 2:56:43 AM EST"
-1875897462663311829,"Good idea https://t.co/ZJvgmJU6LR","Jan 5, 8:29:42 AM EST"
-1875899290616549398,"Absolutely https://t.co/Iriem4uec3","Jan 5, 8:36:58 AM EST"
-1875901879752012218,"You don’t hate the media enough. Especially, state propaganda arms like the BBC.
-
-This is the same BBC that sheltered and paid Jimmy Saville, one of most horrific pedophiles in British history, for decades. https://t.co/cpW9LbtY71 https://t.co/qA1Y2ZMIiB","Jan 5, 8:47:15 AM EST"
-1875903315369967729,"Are these numbers accurate, @CommunityNotes? https://t.co/PVGlUY5mId","Jan 5, 8:52:57 AM EST"
-1875904634419859928,"The Reform Party needs a new leader. Farage doesn’t have what it takes.","Jan 5, 8:58:12 AM EST"
-1875905583053955090,"The Labour Party opposes a national inquiry on the mass rape of little girls in Britain for one reason only:
-
-It will show that they were complicit. https://t.co/P7qBucDWkW","Jan 5, 9:01:58 AM EST"
-1875905755892904017,"Wow https://t.co/CKpP57BNXb","Jan 5, 9:02:39 AM EST"
-1875920163499028664,"RT @PeterSweden7: Britain sent a father to 2 years prison for the crime of selling stickers opposing open borders online.
-
-Britain knowingl…","Jan 5, 9:59:54 AM EST"
-1875920314686996760,"RT @jk_rowling: Rape is an abuse, not a 'strategy', and if it's a 'biological problem', so is murder. We have the political option to struc…","Jan 5, 10:00:30 AM EST"
-1875920956738474074,"They are devaluing the Presidential Medal of Freedom even faster than the dollar!
-
-Didn’t think that was possible. https://t.co/8MsF7QVTpB","Jan 5, 10:03:03 AM EST"
-1875921852683661590,"Jimmy Saville, longtime BBC employee, raped over 400 children while being paid millions by the BBC https://t.co/nIomQKAWm5","Jan 5, 10:06:37 AM EST"
-1875921944580902935,"True https://t.co/1XB3kSWfdR","Jan 5, 10:06:59 AM EST"
-1875922647407874356,"So teachers don’t need to know how to read in New Jersey?
-
-Seems like that would make it challenging to teach kids how to read. https://t.co/xpkJo6swt1","Jan 5, 10:09:46 AM EST"
-1875923763549839452,"The more you investigate, the worse it gets. Beyond what you think is possible. https://t.co/4wqbC2FwXU","Jan 5, 10:14:12 AM EST"
-1875924534605574207,"https://t.co/6XWKm4GEwq","Jan 5, 10:17:16 AM EST"
-1875924704227402233,"Connect the dots … https://t.co/m1WISdFKtu","Jan 5, 10:17:57 AM EST"
-1875925097204404355,"Seriously 🤣🤣 https://t.co/1QrP5zx1Fi","Jan 5, 10:19:30 AM EST"
-1875925416332157229,"Troubling https://t.co/2W0kVt4PtC","Jan 5, 10:20:46 AM EST"
-1875926012221096041,"RT @teslaownersSV: "I thank Elon Musk, for the beautiful words that he had for me and for his precious genius for the era in which we live.…","Jan 5, 10:23:08 AM EST"
-1875926804365709675,"Once again:
-
-FREE TOMMY ROBINSON NOW https://t.co/pVBpoKTeLc","Jan 5, 10:26:17 AM EST"
-1875928538853101959,"Good for Kemi Badenoch! https://t.co/bxIj4Fmwle","Jan 5, 10:33:11 AM EST"
-1875928891858244032,"💯 https://t.co/otPKlOeTLP","Jan 5, 10:34:35 AM EST"
-1875931298143084755,"For anyone doubting the severity and depravity of the mass gang rapes of little girls in Britain, go to the source material and read the court transcripts. I did.
-
-It is worse than you could possibly imagine. https://t.co/OeK2uVxJ93","Jan 5, 10:44:09 AM EST"
-1875931398881824801,"https://t.co/4rQwcyw4Lk","Jan 5, 10:44:33 AM EST"
-1875931711248474433,"https://t.co/mt1csIreQd","Jan 5, 10:45:47 AM EST"
-1875933025638441177,"Imagine you are a father going to rescue your daughter from gang rape and possibly murder, but the police arrest YOU instead …","Jan 5, 10:51:01 AM EST"
-1875934421507039302,"I have not met Rupert Lowe, but his statements online that I have read so far make a lot of sense https://t.co/bxHaigf3A1","Jan 5, 10:56:33 AM EST"
-1875934847132426689,"For the truth, however beautiful or awful the truth may be, 𝕏 is where you will find it https://t.co/zvFvK4gA46","Jan 5, 10:58:15 AM EST"
-1875935051118203274,"Starmer must go. He is national embarrassment. https://t.co/kAsE2KHMpV","Jan 5, 10:59:04 AM EST"
-1875943223979659468,"🏅 https://t.co/ZNHJTV1ApN","Jan 5, 11:31:32 AM EST"
-1875981740633891261,"Yes https://t.co/iuwIxESwd2","Jan 5, 2:04:35 PM EST"
-1875983785893966316,"Prepare for some epic cringe https://t.co/jthmUvfhzC","Jan 5, 2:12:43 PM EST"
-1875985029563842824,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/5oi2VJAm0Y","Jan 5, 2:17:39 PM EST"
-1875997277980102834,"RT @spacesudoer: All the new developments on Flight 7 Starship! https://t.co/jglghI68yZ","Jan 5, 3:06:20 PM EST"
-1875997667396047204,"Thank you, Nancy! https://t.co/n6d5loYnIw","Jan 5, 3:07:52 PM EST"
-1875998467937775913,"Wow https://t.co/FKvDauVdRu","Jan 5, 3:11:03 PM EST"
-1876024962118787273,"Wow https://t.co/P1HpFAdTTA","Jan 5, 4:56:20 PM EST"
-1876025643902885894,"Is this accurate? @CommunityNotes https://t.co/M2XsgY6UDP","Jan 5, 4:59:03 PM EST"
-1876025855740359040,"Interesting perspective https://t.co/wVEXFMMmRm","Jan 5, 4:59:53 PM EST"
-1876082730527752375,"RT @TheFP: The serial rape of thousands of English girls went on for many years. Few in power cared.
-
-Then Elon Musk started tweeting.
-
-@D…","Jan 5, 8:45:53 PM EST"
-1876083406846771374,"Interesting https://t.co/p5wIEgrbDe","Jan 5, 8:48:34 PM EST"
-1876083467370549707,"RT @bariweiss: "Britain now stands shamed before the world. The public’s suppressed wrath is bubbling to the surface in petitions, calls fo…","Jan 5, 8:48:49 PM EST"
-1876085127199305860,"Interview with @ZelenskyyUa https://t.co/0SYUllZWNI","Jan 5, 8:55:24 PM EST"
-1876107251276251257,"Accurate description of what’s really going on by @benhabib6 https://t.co/ATiwrENNBE","Jan 5, 10:23:19 PM EST"
-1876107435376791789,"Because the answer is essentially zero https://t.co/yzFVfyci7m","Jan 5, 10:24:03 PM EST"
-1876109148800401529,"Wow https://t.co/p2U8Gc2ZX3","Jan 5, 10:30:52 PM EST"
-1876117478146969898,"Millions of rapes … https://t.co/VGau51nNF4","Jan 5, 11:03:58 PM EST"
-1876118019090612497,"You don’t hate the legacy media enough https://t.co/mlnHn2suDk","Jan 5, 11:06:06 PM EST"
-1876119026629546036,"You have finger guns, we have real guns https://t.co/FphDVTLsDc","Jan 5, 11:10:07 PM EST"
-1876119594223734786,"RT @BillAckman: An important @TheFP piece on the serial rape of English girls and the ongoing coverup.","Jan 5, 11:12:22 PM EST"
-1876119850747400657,"Unreal https://t.co/HBaArCDdRx","Jan 5, 11:13:23 PM EST"
-1876119924206363115,"💯 https://t.co/IYiuvTX6MT","Jan 5, 11:13:41 PM EST"
-1876120205954531340,"RT @realDonaldTrump: Members of Congress are getting to work on one powerful Bill that will bring our Country back, and make it greater tha…","Jan 5, 11:14:48 PM EST"
-1876120492844736708,"RT @Cmdr_Hadfield: Very handy graphic of changes/upgrades for the impending @SpaceX Starship launch.
-Thanks @VikranthJonna for making it!…","Jan 5, 11:15:56 PM EST"
-1876126755976786075,"RT @levie: This machine will manufacture most of the intelligence in the world. https://t.co/wNnspelPD1","Jan 5, 11:40:50 PM EST"
-1876129279429501094,"Yup https://t.co/CCUF2CHlet","Jan 5, 11:50:51 PM EST"
-1876129982839447902,"Yes https://t.co/TmN0BmpcIm","Jan 5, 11:53:39 PM EST"
-1876130419093168508,"RT @libsoftiktok: Here’s some POSITIVE content for X 🥰😁 https://t.co/fRPvVUOSt6","Jan 5, 11:55:23 PM EST"
-1876131592764293409,"RT @EndWokeness: America, 1975: "I bet in 50 years we'll have flying cars and live on Mars"
-
-America, 2025: https://t.co/jblmxRbHGv","Jan 6, 12:00:03 AM EST"
-1876131918191943726,"True https://t.co/ruvXHgdL9j","Jan 6, 12:01:20 AM EST"
-1876132941186961408,"What!!?? Explain yourself, Gordon Brown. https://t.co/zeBkYFKWlQ","Jan 6, 12:05:24 AM EST"
-1876134121908617284,"RT @MarioNawfal: 🚨SUICIDAL EMPATHY: WHEN YOU CARE MORE ABOUT THE PERPETRATOR THAN THE VICTIM
-
-Gad Saad:
-
-"Here's how the that leftist argum…","Jan 6, 12:10:06 AM EST"
-1876142847738667299,"Have they deported any of the gang rapists? Even one? https://t.co/EjR6At1aby","Jan 6, 12:44:46 AM EST"
-1876145346352668722,"True https://t.co/HNnrTXf94N","Jan 6, 12:54:42 AM EST"
-1876145510618444100,"RT @DaveAtherton20: Never forget how vile @jessphillips is. On News Year Eve 2016 in Cologne Germany 1,200 women & girls were harassed, sex…","Jan 6, 12:55:21 AM EST"
-1876145788683981126,"Starmer is complicit in the crimes https://t.co/gyKqCNLZK0","Jan 6, 12:56:27 AM EST"
-1876146442970321381,"… https://t.co/Ry4qeDcQN4","Jan 6, 12:59:03 AM EST"
-1876147031200477647,"Gordon Brown committed an unforgivable crime against the British people https://t.co/dKN60hWLTK","Jan 6, 1:01:24 AM EST"
-1876147362131071014,"Prison for Starmer https://t.co/6RxIyGnYkG","Jan 6, 1:02:42 AM EST"
-1876150956121018807,"RT @alanvibe: Peter Lynch grandad sentenced 2 yr 8 mths prison after holding up placard & shouting at policeman Rotherham: committed suicid…","Jan 6, 1:16:59 AM EST"
-1876153955505647744,"99 agencies is more than enough https://t.co/X1x4mqGlvU","Jan 6, 1:28:54 AM EST"
-1876154843867631745,"Am starting to wonder how anyone made it through childhood in Britain without severe trauma https://t.co/38Eire2ePw","Jan 6, 1:32:26 AM EST"
-1876154990353650153,"Wow https://t.co/l4DgqN7tuJ","Jan 6, 1:33:01 AM EST"
-1876155390314074416,"But @GovKathyHochul says the subways are super safe … https://t.co/2yfzXtZPAH","Jan 6, 1:34:36 AM EST"
-1876155965915161022,"Wow https://t.co/JCioxeBNMh","Jan 6, 1:36:54 AM EST"
-1876157387180228666,"Disgrace. https://t.co/a5Rvceswai","Jan 6, 1:42:33 AM EST"
-1876160545528897907,"Terrible https://t.co/o6QJzQCYIe","Jan 6, 1:55:06 AM EST"
-1876161198502334635,"RT @ThatAlexWoman: The backlash I got when I said this over a year ago
-
-Well, here are the stats at long last. It's been a fight to get her…","Jan 6, 1:57:41 AM EST"
-1876161861269557275,"Geoff Hinton is a good man
-https://t.co/iPkQoDTGu5","Jan 6, 2:00:19 AM EST"
-1876163331008151983,"RT @stillgray: What the actual hell is going on in Britain? A 12-year old girl was raped by multiple groups of Pakistani men, one after the…","Jan 6, 2:06:10 AM EST"
-1876166020760768680,"RT @SpartaJustice: @elonmusk MUSLIM CHILD RAPE GANGS NOT DEPORTED: Adil Khan, 51, and Qari Abdul Rauf, 52, Rochdale child gang rape members…","Jan 6, 2:16:51 AM EST"
-1876167082322297119,"RT @teslaownersSV: "When you have a decline in religion and increase in secular nature of society, for most people they need something to f…","Jan 6, 2:21:04 AM EST"
-1876167672381284476,"That is why the founders of America made freedom of speech and the right to bear arms the first two amendments https://t.co/yHFUZDVRuI","Jan 6, 2:23:25 AM EST"
-1876172393783369742,"RT @DogecoinNorway: We are the Media now means a lot!
-
-It means the connections and the reach you can have on 𝕏 are more than the media ha…","Jan 6, 2:42:10 AM EST"
-1876172669336653911,"RT @ElonClipsX: Elon Musk: It's extremely important we become multiplanet as soon as possible.
-
-“Eventually, something will happen to Earth…","Jan 6, 2:43:16 AM EST"
-1876173760140849178,"Wild times in Korea!
-
-What is actually the crux of the issue? https://t.co/jMXTUiJQMS","Jan 6, 2:47:36 AM EST"
-1876174253244264594,"Seriously https://t.co/PbWj2pO02v","Jan 6, 2:49:34 AM EST"
-1876174862747930717,"America should liberate the people of Britain from their tyrannical government","Jan 6, 2:51:59 AM EST"
-1876175322598838408,"OpenAI was funded as an open source, nonprofit, but has become a closed source, profit-maximizer https://t.co/nBxtzluxLi","Jan 6, 2:53:49 AM EST"
-1876175821418954864,"RT @EndWokeness: 4 years for an offensive post.
-
-3 years for being the ringleader of a 24 hour gang r-pe against a 12 year old. https://t.c…","Jan 6, 2:55:48 AM EST"
-1876176042358190155,"RT @BoLoudon: 🚨WATCH: Elon Musk speaks out against a World Government at the "WORLD GOVERNMENT SUMMIT."
-
-God bless @ElonMusk for helping Pr…","Jan 6, 2:56:40 AM EST"
-1876178691761574005,"Man, I never realized this meme was real 😔 https://t.co/SMIP4cDQSZ","Jan 6, 3:07:12 AM EST"
-1876179308521390518,"Had this election not been won by @realDonaldTrump, civilization would be lost","Jan 6, 3:09:39 AM EST"
-1876180040825868322,"Gordon Brown sold those little girls for votes https://t.co/PNfoaNnCrP","Jan 6, 3:12:34 AM EST"
-1876180124904902661,"RT @DogecoinNorway: Wow pretty epic drone show 🔥 https://t.co/VuOj6iofFc","Jan 6, 3:12:54 AM EST"
-1876180376797987204,"Troubling https://t.co/abkfVX758z","Jan 6, 3:13:54 AM EST"
-1876180530078888232,"🤩 https://t.co/iF5iiKmo0E","Jan 6, 3:14:30 AM EST"
-1876182466551279751,"RT @DefiyantlyFree: The Telegraph did a very thorough summary of what has been happening in the UK (linked below).
-
-As hard as it is to rea…","Jan 6, 3:22:12 AM EST"
-1876183202123174276,"Many such stories https://t.co/YQnm9HSNvF","Jan 6, 3:25:07 AM EST"
-1876184688072835182,"https://t.co/iaqA24V5if","Jan 6, 3:31:02 AM EST"
-1876238829734031537,"RT @trussliz: Labour's response to decades long failure on rape gangs targetting young white girls by mostly Pakistani-heritage men is...…","Jan 6, 7:06:10 AM EST"
-1876239265895792873,"Real answer is yes https://t.co/6gZT7M80Iq","Jan 6, 7:07:54 AM EST"
-1876239844843909459,"British legal system is not serving its people https://t.co/ktJe7PCOD0","Jan 6, 7:10:12 AM EST"
-1876240311099568373,"Deep empathy, not shallow empathy https://t.co/IEB7hF706C","Jan 6, 7:12:03 AM EST"
-1876240869034275036,"True https://t.co/bvX30rUjrS","Jan 6, 7:14:16 AM EST"
-1876241461152514200,"RT @Riley_Gaines_: Take 2 minutes of your time & listen to @RepNancyMace. If you have a heart and a moral conscience, you'll be sick to you…","Jan 6, 7:16:37 AM EST"
-1876242010333753786,"That’s how legacy media defines “far-right” https://t.co/TKZF46aYQM","Jan 6, 7:18:48 AM EST"
-1876243077565972695,"Starmer was deeply complicit in the mass rapes in exchange for votes.
-
-That’s what the inquiry would show. https://t.co/IVML26ygAg","Jan 6, 7:23:03 AM EST"
-1876245946348208601,"What an insane thing to say!
-
-The real reason is that it would show how Starmer repeatedly ignored the pleas of vast numbers of little girls and their parents, in order to secure political support.
-
-Starmer is utterly despicable. https://t.co/AsvDQ4q5af","Jan 6, 7:34:27 AM EST"
-1876247277477728417,"RT @geertwilderspvv: I invited @TRobinsonNewEra to the Dutch parliament in 2018, supported him in a rally in London when he was in jail and…","Jan 6, 7:39:44 AM EST"
-1876247646370947546,"RT @Rothmus: 👀 https://t.co/89pc5eqcXn","Jan 6, 7:41:12 AM EST"
-1876247734363312146,"RT @CatharineHoey: The Prime Minister has really gone too far this time in his attempts to call anyone who speaks out on grooming gangs Far…","Jan 6, 7:41:33 AM EST"
-1876248262216417558,"RT @BackBrexitBen: Tommy Robinson was jailed for contempt—but it was a political figure who brought the charge. Elon Musk isn’t just moving…","Jan 6, 7:43:39 AM EST"
-1876248727956111799,"Unconscionable https://t.co/HBrx08ONim","Jan 6, 7:45:30 AM EST"
-1876249880420815177,"RT @NancyMace: We asked the Left if they cared more about criminal illegal aliens or women. This was their answer:
-
-#HoldTheLine","Jan 6, 7:50:05 AM EST"
-1876301218097901709,"2025 is looking good 🔥 🚀 😎 https://t.co/qhVMzzy3yW","Jan 6, 11:14:05 AM EST"
-1876320746361991530,"Insane https://t.co/pOJVJTuovP","Jan 6, 12:31:40 PM EST"
-1876320966370086960,"Yes https://t.co/5xPoC3vFuw","Jan 6, 12:32:33 PM EST"
-1876325206484038113,"Oh like that time Starmer called @realDonaldTrump a racist and said the British government should do everything to stop him?
-
-Or when Starmer sent British Labour Party members to campaign in the US against President Trump this year?
-
-https://t.co/5R28WgZI","Jan 6, 12:49:24 PM EST"
-1876325429507711019,"Absolutely https://t.co/bW0ic18X4Q","Jan 6, 12:50:17 PM EST"
-1876327241845796904,"RT @tedcruz: Staggering. And unspeakably horrible.","Jan 6, 12:57:29 PM EST"
-1876328401839313241,"🇺🇸 Home of the Free 🇺🇸
-🇺🇸 Land of the Brave 🇺🇸 https://t.co/Et8vnqO5yJ","Jan 6, 1:02:06 PM EST"
-1876331055374123473,"Let’s extradite him instead https://t.co/4xEbzmeKic","Jan 6, 1:12:38 PM EST"
-1876332138066219023,"What is irony? https://t.co/nbhRkhIKr0","Jan 6, 1:16:56 PM EST"
-1876332361476088264,"RT @konstructivizm: Rocket launch into space, filmed from the ISS https://t.co/hf0P862bB9","Jan 6, 1:17:50 PM EST"
-1876332611477627250,"RT @alx: Donald Trump on Justin Trudeau’s resignation https://t.co/453WPzLaoq","Jan 6, 1:18:49 PM EST"
-1876332869963911294,"Wow https://t.co/51IbkQzRXX","Jan 6, 1:19:51 PM EST"
-1876337650921332830,"RT @visegrad24: Following the news of Trudeau resigning as PM, Trump releases new statement calling on Canada to join the U.S. in a unified…","Jan 6, 1:38:51 PM EST"
-1876376579082735916,"💯 https://t.co/wXEsSVCLFo","Jan 6, 4:13:32 PM EST"
-1876421122075361770,"True words https://t.co/ljF2G22Yhb","Jan 6, 7:10:32 PM EST"
-1876426259162599698,"First time I’ve heard of this https://t.co/LTtXCoIHJ1","Jan 6, 7:30:57 PM EST"
-1876426821857923538,"Understated, if anything https://t.co/vdr7wsH7t2","Jan 6, 7:33:11 PM EST"
-1876427989711229046,"Good question https://t.co/TydTNiZwOr","Jan 6, 7:37:49 PM EST"
-1876428411805012475,"The “Guardian” is the worst form of groveling propaganda on the planet https://t.co/Gcai85XfpH","Jan 6, 7:39:30 PM EST"
-1876430829037212138,"Absolutely https://t.co/yUOqLu1Lc9","Jan 6, 7:49:06 PM EST"
-1876431095212003843,"True, but why? https://t.co/ol45tVUqKq","Jan 6, 7:50:10 PM EST"
-1876431274350379201,"RT @Starlink: Starlink is designed to endure the elements, which makes it ideal for when you need it most 🛰️❤️","Jan 6, 7:50:52 PM EST"
-1876432913761501303,"Over 7 years prison for social media posts …
-
-Whoever gave that sentence deserves prison themselves.
-
-Thank God that America has freedom of speech in the Constitution! https://t.co/J7r1v626KS","Jan 6, 7:57:23 PM EST"
-1876433058385240544,"RT @Sargon_of_Akkad: This is Keir Starmer's response to @elonmusk calling out his part in covering up the rape gang scandal. Listen to it…","Jan 6, 7:57:58 PM EST"
-1876433327055573490,"Starmer is evil https://t.co/KbuxkgFDwf","Jan 6, 7:59:02 PM EST"
-1876435054622388257,"Remember these names next election https://t.co/ifNX53CxfY","Jan 6, 8:05:54 PM EST"
-1876435397850333473,"And Soros was just given the Presidential Medal of Freedom … https://t.co/vhK7EMZkAj","Jan 6, 8:07:15 PM EST"
-1876435820699357637,"💯 https://t.co/8mRWt0xaup","Jan 6, 8:08:56 PM EST"
-1876436014811504907,"RT @GSGB01: 🚨BREAKING: Reform MP Rupert Lowe says:-
-
-'I want foreign rapists deported, I want dual national rapists stripped of their Briti…","Jan 6, 8:09:43 PM EST"
-1876436915479843239,"Are we really sending US taxpayer money to the Taliban? https://t.co/gkVSErJqbz","Jan 6, 8:13:17 PM EST"
-1876437228685267029,"RT @america: The Vote on this bill will be extremely telling. https://t.co/OmnFiJz4V2","Jan 6, 8:14:32 PM EST"
-1876437579941433475,"Good https://t.co/beSHIJJBcd","Jan 6, 8:15:56 PM EST"
-1876438224991834129,"That is obviously what happened https://t.co/xM5rhoTaDc","Jan 6, 8:18:30 PM EST"
-1876438360564347276,"Doesn’t sound legal https://t.co/cvlMCUWyE6","Jan 6, 8:19:02 PM EST"
-1876438873364189488,"Help Grok be based and funny 😄 https://t.co/4QBq6JBNe4","Jan 6, 8:21:04 PM EST"
-1876444072422129959,"RT @512x512: Most users on web will now have access to the "post followups" feature. These will appear under some trending posts and will h…","Jan 6, 8:41:44 PM EST"
-1876444181154939297,"RT @BasedMikeLee: Unless we outlaw lawmaking by unelected bureaucrats—by passing the REINS Act—we will remain stuck
-
-But if we pass it, we…","Jan 6, 8:42:10 PM EST"
-1876444507778199638,"RT @DimaZeniuk: “There’s a lack of empathy for the victims of criminals and too much empathy for the criminals... there has to be real, dee…","Jan 6, 8:43:27 PM EST"
-1876444569283490109,"RT @EndWokeness: They want you to believe that the MOST armed demographic on EARTH tried to overthrow the government with ZERO FIREARMS. ht…","Jan 6, 8:43:42 PM EST"
-1876444916643147949,"RT @jeremykauffman: this is absolutely insane https://t.co/TuumNBCEfm","Jan 6, 8:45:05 PM EST"
-1876445206914212019,"RT @Rothmus: 🔥🔥 https://t.co/My7Yx7uzqz","Jan 6, 8:46:14 PM EST"
-1876446327254704534,"George Soros spent billions to create the fake asylum-seeker nightmare that is destroying America and Europe https://t.co/29IsdKKwrf","Jan 6, 8:50:41 PM EST"
-1876446496494617020,"From his website: https://t.co/EjD5KQp43Y","Jan 6, 8:51:22 PM EST"
-1876452784171848158,"No kidding … 🤨
-
-Spiegel is just paid propaganda https://t.co/QU77pj18wO","Jan 6, 9:16:21 PM EST"
-1876453541201822062,"If protecting children makes one a fascist, then so be it https://t.co/Y33OmOZ7hM","Jan 6, 9:19:21 PM EST"
-1876453996245787056,"The CYA 😂 https://t.co/mYEroNOBL6","Jan 6, 9:21:10 PM EST"
-1876454834238558368,"🤨 https://t.co/RFmbae0fNl","Jan 6, 9:24:29 PM EST"
-1876455435320123823,"Yes https://t.co/zaAemDbqtz","Jan 6, 9:26:53 PM EST"
-1876456008022708463,"Good https://t.co/dI3pIDcryp","Jan 6, 9:29:09 PM EST"
-1876456898360459510,"RT @bariweiss: "What’s happening in Canadian politics is not happening in a vacuum. It is a symptom of a much broader phenomenon. Call it t…","Jan 6, 9:32:42 PM EST"
-1876463993931673743,"RT @benhabib6: President Trump could save Western civilisation by requiring the following conditions for continued membership of NATO:
-
-1.…","Jan 6, 10:00:53 PM EST"
-1876464100747923930,"Good question https://t.co/0yaZIrdzTj","Jan 6, 10:01:19 PM EST"
-1876464954557235440,"Indeed https://t.co/iY8s2eKohI","Jan 6, 10:04:42 PM EST"
-1876465578422227337,"True, it hasn’t quite sunk in yet, but it will https://t.co/Uq4HuuEKxE","Jan 6, 10:07:11 PM EST"
-1876468826704929196,"https://t.co/anSGUuUVHC","Jan 6, 10:20:06 PM EST"
-1876470023344242874,"George Soros pays them off (actually) https://t.co/uUfpvGZp3z","Jan 6, 10:24:51 PM EST"
-1876470121419661524,"RT @benshapiro: Just so I'm clear on the rules, foreign-born American billionaires who interfere in international politics receive the Meda…","Jan 6, 10:25:14 PM EST"
-1876470668130406745,"Yes https://t.co/ICX2qijlsc","Jan 6, 10:27:25 PM EST"
-1876472631207006469,"RT @thatsKAIZEN: If children were being mass raped in America and American politicians hid it, I’d welcome “election interference” from any…","Jan 6, 10:35:13 PM EST"
-1876474027348218212,"RT @gardirms: The British government and authorities have turned a blind eye to the systemic rape and abuse of little girls for decades. Ye…","Jan 6, 10:40:45 PM EST"
-1876475320024649859,"🇬🇧 Thank you, Britain! 🇬🇧 https://t.co/t9hssauaCE","Jan 6, 10:45:54 PM EST"
-1876475891070443898,"RT @AutismCapital: It’s okay to say the gangs are bad. https://t.co/UjG1NosHNh","Jan 6, 10:48:10 PM EST"
-1876476322895245576,"RT @Rothmus: 🎯🎯 https://t.co/T7lb8Syf5G","Jan 6, 10:49:53 PM EST"
-1876484377020113108,"True https://t.co/1CIs7plqFg","Jan 6, 11:21:53 PM EST"
-1876485325641724101,"RT @AMAZlNGNATURE: This video will 100% improve your week! https://t.co/VsXpKx5Ku3","Jan 6, 11:25:39 PM EST"
-1876485463458079223,"RT @GBNEWS: ‘I reject the notion of an enquiry. I want a dedicated unit of the police force arresting everyone who turned a blind eye to th…","Jan 6, 11:26:12 PM EST"
-1876486028837683560,"Population collapse https://t.co/58jaHdj7go","Jan 6, 11:28:27 PM EST"
-1876486661728804999,"RT @astro_Pettit: Flying over aurora; intensely green. https://t.co/leUufKFnBB","Jan 6, 11:30:58 PM EST"
-1876488274367107451,"Yup https://t.co/DfGCLZiN1Y","Jan 6, 11:37:22 PM EST"
-1876488568090378353,"RT @SawyerMerritt: With Nvidia's announcement tonight, thought it was worth bringing up this comment from @elonmusk on synthetic data vs re…","Jan 6, 11:38:32 PM EST"
-1876488766845817223,"Hmm https://t.co/vJlOMBebug","Jan 6, 11:39:20 PM EST"
-1876489232988139700,"RT @laralogan: Senate Judiciary Democrats are a bunch of liars. They say died “because” of Jan 6 because they cannot say “on” January 6th.…","Jan 6, 11:41:11 PM EST"
-1876489858572558516,"As I was saying … https://t.co/8WjQjngeSt","Jan 6, 11:43:40 PM EST"
-1876490546526728648,"Wow https://t.co/qnoObfzaeP","Jan 6, 11:46:24 PM EST"
-1876492034699415620,"They just gave a guy 7.5 years in prison for social media posts.
-
-That legal system is deeply broken. https://t.co/JCioxeBNMh","Jan 6, 11:52:19 PM EST"
-1876493056238915650,"That one gets me every time 🤣🤣 https://t.co/AMV6yHvgyf","Jan 6, 11:56:22 PM EST"
-1876493283326849377,"Correct https://t.co/RZP5gJN7Rv","Jan 6, 11:57:16 PM EST"
-1876493763687948353,"RT @laralogan: I will never forget how bravely they stood up at the most critical moment, when it was the hardest. When it mattered the mos…","Jan 6, 11:59:11 PM EST"
-1876495749195743308,"Lmao https://t.co/F7AtSeQEY2","Jan 7, 12:07:04 AM EST"
-1876496976709362045,"This is how great civilizations throughout history have ended.
-
-People assume it was due to conquest, but it was actually often simply too much prosperity leading to low birth rate and population collapse, which ultimately enabled them to be conquered. ht","Jan 7, 12:11:57 AM EST"
-1876498308841238952,"RT @SawyerMerritt: Nvidia CEO Jensen Huang tonight on robotaxis and self-driving: “I predict that this is going to be the first multi-trill…","Jan 7, 12:17:15 AM EST"
-1876498571803111759,"Yes https://t.co/iiacYs29ju","Jan 7, 12:18:17 AM EST"
-1876499937757900851,"😂🎯
- https://t.co/11So7XLTeW","Jan 7, 12:23:43 AM EST"
-1876501312688312741,"RT @GBNEWS: 'I don't know if I could still be alive if that happened to my daughter. I honestly don't know what I'd do.'
-
-@MartinDaubney of…","Jan 7, 12:29:11 AM EST"
-1876503555739415034,"Perfectly articulated
- https://t.co/0R00kkCC7z","Jan 7, 12:38:06 AM EST"
-1876506223585210390,"RT @TheBabylonBee: Four years ago today, our country endured one of the most devastating attacks on democracy the world has ever seen.
-
-Jan…","Jan 7, 12:48:42 AM EST"
-1876513306439262375,"Magneto, a mutant of great power, who hated humanity https://t.co/BOEvmtjfkJ","Jan 7, 1:16:50 AM EST"
-1876525805372878962,"Another masterpiece
- https://t.co/K65PryiS3U","Jan 7, 2:06:30 AM EST"
-1876543226418762007,"https://t.co/dCH1YbpYLc","Jan 7, 3:15:44 AM EST"
-1876543646222467249,"I’ve now watched this at least 20 times 🤣🤣 https://t.co/87Cig4F14A","Jan 7, 3:17:24 AM EST"
-1876550039516110870,"It’s just so romantic 💘","Jan 7, 3:42:48 AM EST"
-1876551611260227756,"RT @stillgray: The BBC, ladies and gentlemen. https://t.co/LE9FrzYGxV","Jan 7, 3:49:03 AM EST"
-1876554867785007175,"Is this accurate? @CommunityNotes https://t.co/kTYfSNcyTP","Jan 7, 4:01:59 AM EST"
-1876570285488640212,"Soros really was a genius at arbitrage, whether finance or politics.
-
-He also figured out how to take a small amount of private funding and leverage that into massive government funding.
-
-Brilliant.
-
-I just wish he loved, rather than hated, humanity. ht","Jan 7, 5:03:15 AM EST"
-1876571570690486632,"This is the way.
-
-You are the media now. https://t.co/uae6qgUUlx","Jan 7, 5:08:22 AM EST"
-1876572437611188224,"RT @WallStreetApes: Elon Musk discusses George Soros with Joe Rogan
-
-“Soros actually, he is I believe, the top contributor to the Democrati…","Jan 7, 5:11:48 AM EST"
-1876572636660248904,"Yes https://t.co/GbsCFsjUVy","Jan 7, 5:12:36 AM EST"
-1876573837514740074,"More and more people around the world are choosing the red pill and leaving the matrix of lies https://t.co/mdiopADOYy","Jan 7, 5:17:22 AM EST"
-1876575109814890690,"💯 https://t.co/saWihciIJr","Jan 7, 5:22:25 AM EST"
-1876575181868810715,"RT @visegrad24: We are hosting an “𝕏 Space” tonight to discuss the rape gangs of the UK and the shocking cover up.
-
-Tune today at:
-
-12 AM…","Jan 7, 5:22:43 AM EST"
-1876575575067988326,"RT @RupertLowe10: Reform has committed to holding a full inquiry into the rape gang scandal if the Labour Government fails to do so.
-
-We wi…","Jan 7, 5:24:16 AM EST"
-1876577774854672456,"Could what happened to the Yazidi people one day happen to Europe?
-
- https://t.co/TIoCJbnRos","Jan 7, 5:33:01 AM EST"
-1876578903483204087,"🇬🇧🇬🇧 https://t.co/ZmJFZsNXcR","Jan 7, 5:37:30 AM EST"
-1876582315062858159,"My British grandmother, Cora Amelia Robinson, was an important part of my childhood. She was very strict, but also kind and I could always count on her.
-
-She grew up very poor in England during the Great Depression only to be bombed in WW2. To earn money ","Jan 7, 5:51:03 AM EST"
-1876583128648777915,"RT @ezralevant: George Soros didn’t just foment mass immigration in Europe. He did it in Canada too — and Trudeau tried to hide it. cc. @el…","Jan 7, 5:54:17 AM EST"
-1876583323075744044,"RT @bariweiss: The problem with Trudeau’s government is not the name at the top of the ticket. The problem is bad ideas, strongly held.
-
-Th…","Jan 7, 5:55:04 AM EST"
-1876583608305193275,"RT @MarioNawfal: 🚨🇦🇷MILEI: ELON RESCUED X FROM WOKE SOCIALISTS
-
-He praised X’s free-speech transformation under Elon, saying the platform n…","Jan 7, 5:56:12 AM EST"
-1876586067329261906,"🫃 https://t.co/8qEhdLU9gG","Jan 7, 6:05:58 AM EST"
-1876586176519536663,"🫃 https://t.co/2zwHnvpCtg","Jan 7, 6:06:24 AM EST"
-1876588543558238566,"Wow https://t.co/PhlSsIFwJP","Jan 7, 6:15:48 AM EST"
-1876588798454407277,"True https://t.co/zdBid7RiMW","Jan 7, 6:16:49 AM EST"
-1876657662068461657,"This is cool https://t.co/kUkrvu6YKY","Jan 7, 10:50:27 AM EST"
-1876659301068193800,"RT @BasedBeffJezos: Woah. 😲
-
-Zuck going full anti-censorship, following Elon and X's lead 😤
-
-Based Zuck arc and vibe shift complete ✅🔥 http…","Jan 7, 10:56:58 AM EST"
-1876661279542448606,"1000% 🤣🤣 https://t.co/265uD5hBRi","Jan 7, 11:04:50 AM EST"
-1876664245305438469,"If the people of Greenland want to be part of America, which I hope they do, they would be most welcome! 🇺🇸 🇬🇱 https://t.co/lgzbVDpYOG","Jan 7, 11:16:37 AM EST"
-1876664724336845241,"RT @lindayaX: COMMUNITY NOTES FTW!!! 🔥
-
-Fact-checking and moderation doesn't belong in the hands of a few select gatekeepers who can easily…","Jan 7, 11:18:31 AM EST"
-1876697674264813998,"Testing X Streaming https://t.co/f8LmyeSUHR","Jan 7, 1:29:27 PM EST"
-1876700763302355121,"About 40% of players on the hardcore ladder are dead https://t.co/7r4krqGYN4","Jan 7, 1:41:44 PM EST"
-1876728816292213108,"RT @teslaeurope: Model Y is your tent on wheels
-
-Toss in our air mattress, enable Camp Mode & you're good to go
-
-📸 @AdellExplores https://t…","Jan 7, 3:33:12 PM EST"
-1876729136032452987,"RT @greg_price11: Reporter: Can you assure the world that as you try to get control of Greenland and the Panama Canal, that you won't use m…","Jan 7, 3:34:28 PM EST"
-1876730944821842202,"RT @Inevitablewest: 🚨BREAKING: Donald Trump backs Elon Musk following UK disruption and German AfD endorsement:
-
-“Elon is doing a good job.…","Jan 7, 3:41:39 PM EST"
-1876730986970370385,"RT @JohnStossel: Mark Zuckerberg just announced: “We’re going to get rid of fact-checkers and replace them with Community Notes similar to…","Jan 7, 3:41:49 PM EST"
-1876731212800184570,"RT @PeterSweden7: BREAKING: 14 year old boy has been killed after being stabbed on a bus in London.
-
-Why does this keep happening?","Jan 7, 3:42:43 PM EST"
-1876731519839908052,"Good point. Why is that? https://t.co/QAM5y16d3Z","Jan 7, 3:43:56 PM EST"
-1876733531059065086,"RT @herbertong: " I know Elon's attitude towards AI, and he's very optimistic about its future. And obviously he's working on some of the m…","Jan 7, 3:51:56 PM EST"
-1876822177657352230,"Yes https://t.co/5xaP1giHXk","Jan 7, 9:44:11 PM EST"
-1876825104149066184,"First, the EU tried to stop me from having an online conversation with President @realDonaldTrump.
-
-Now, they want to prevent people from hearing a conversation with @Alice_Weidel, who might be the next Chancellor of Germany.
-
-These guys really hate demo","Jan 7, 9:55:49 PM EST"
-1876825740039069743,"Now why would Keir Starmtrooper order his own party to block such an inquiry?
-
-Because he is hiding terrible things. That is why. https://t.co/9oAJxxn75m","Jan 7, 9:58:20 PM EST"
-1876825857190183042,"😂 https://t.co/wqDRgIOJKH","Jan 7, 9:58:48 PM EST"
-1876826794076090591,"Labor needs a new leader https://t.co/j6W78h4Rcr","Jan 7, 10:02:32 PM EST"
-1876827129381323121,"🇬🇧🇬🇧🇬🇧🇬🇧🇬🇧 https://t.co/DnJIccZE7j","Jan 7, 10:03:52 PM EST"
-1876828764358758710,"Fetterman is based and truthful https://t.co/h602zSQElD","Jan 7, 10:10:21 PM EST"
-1876829312910839896,"They are hiding terrible things https://t.co/ZioXaryKD0","Jan 7, 10:12:32 PM EST"
-1876830169899405720,"George Soros’s hatred of humanity includes Israel btw https://t.co/LY6UPblsh9","Jan 7, 10:15:56 PM EST"
-1876830492722356466,"Some gems here 😂 https://t.co/hvaHTl3m85","Jan 7, 10:17:13 PM EST"
-1876834065485058489,"Nana had a spine of steel. My cousins just reminded me that she was once at a bank during a robbery and refused to give them her handbag, despite them pointing a gun at her head. They just left in the end.","Jan 7, 10:31:25 PM EST"
-1876835421490913721,"RT @ScottPresler: BREAKING: The Republican-controlled House passed the Laken Riley Act (264-159).
-
-The bill mandates that illegal aliens —…","Jan 7, 10:36:49 PM EST"
-1876835595755888686,"Great point https://t.co/GhlTwbYhqQ","Jan 7, 10:37:30 PM EST"
-1876836454275432456,"True words https://t.co/6BdIVSRlXy","Jan 7, 10:40:55 PM EST"
-1876840371512054164,"Lmaooo https://t.co/1MwHYztuMN","Jan 7, 10:56:29 PM EST"
-1876841162683625845,"After all, he does work there 🤭 https://t.co/TdEI5wRrXO","Jan 7, 10:59:37 PM EST"
-1876847974933823650,"😂😂😂😂😂😂😂 https://t.co/QmnWGfbTUG","Jan 7, 11:26:42 PM EST"
-1876850032223072492,"If you aren’t sure of something, ask @CommunityNotes!
-
-Notes are only published if a significant number of people who have historically disagreed agree that a note is accurate. https://t.co/YW8VdVMqyv","Jan 7, 11:34:52 PM EST"
-1876850831393173717,"Wow https://t.co/JfdZ6MeXlk","Jan 7, 11:38:03 PM EST"
-1876853006521503978,"RT @RupertLowe10: I have asked the Ministry of Justice for a full and immediate release of all court transcripts related to the Pakistani r…","Jan 7, 11:46:41 PM EST"
-1876853420021158266,"RT @GoodwinMJ: Nobody ever said UK newspapers did not cover the rape gangs at all. But can anybody tell me this. Why, between 2011-2025, d…","Jan 7, 11:48:20 PM EST"
-1876853627962220595,"RT @SeibtNaomi: George Soros collaborated with the Nazis as a teenager.
-He knew exactly what he was doing and he shows no remorse today.…","Jan 7, 11:49:09 PM EST"
-1876854030896423150,"RT @cb_doge: 𝐇𝐨𝐰 𝐢𝐭 𝐬𝐭𝐚𝐫𝐭𝐞𝐝:
-
-"When I started SpaceX, one of my friends got a compilation of rocket failures & made me watch the whole thin…","Jan 7, 11:50:45 PM EST"
-1876854114673439063,"RT @Rothmus: Madness. https://t.co/gRu1glFcfQ","Jan 7, 11:51:05 PM EST"
-1876854542941184093,"https://t.co/7SI90yEFCr","Jan 7, 11:52:47 PM EST"
-1876854694233907302,"RT @Chesschick01: @elonmusk https://t.co/s143qTV57S","Jan 7, 11:53:24 PM EST"
-1876854758322966561,"RT @RupertLowe10: Uncontrolled mass immigration has made the country more deprived, more divided, and more dangerous.
-
-This is not my opini…","Jan 7, 11:53:39 PM EST"
-1876855134363242650,"RT @SawyerMerritt: Nvidia CEO Jensen Huang today on @elonmusk and his attitude towards AI: "He's working on some of the most important AI a…","Jan 7, 11:55:08 PM EST"
-1876855816378019841,"RT @charliekirk11: REPORTER: “Will you pardon anyone who attacked an officer on Jan. 6th, 2021?”
-
-TRUMP: “The only one who was killed was a…","Jan 7, 11:57:51 PM EST"
-1876856837049401542,"The British justice system is broken https://t.co/uLn8R9oy8B","Jan 8, 12:01:54 AM EST"
-1876857211462328674,"RT @Rothmus: 💯 https://t.co/lMDWAxU4W1","Jan 8, 12:03:24 AM EST"
-1876857903912509571,"RT @DanielJHannan: He demanded an enquiry into whether Boris had eaten some cake. But he won't allow one into the gruesome sacrifice of tho…","Jan 8, 12:06:09 AM EST"
-1876858031046017253,"RT @SawyerMerritt: NEWS: Tesla was the United States’ most searched car brand in 2024, as well as Canada, South Korea, some Scandinavian co…","Jan 8, 12:06:39 AM EST"
-1876868645676085585,"RT @RupertLowe10: Labour MPs must vote in favour of a full, free and fair national inquiry into the Pakistani rape gangs tomorrow.
-
-There i…","Jan 8, 12:48:50 AM EST"
-1876869362138653154,"Good idea https://t.co/mQlxytAkId","Jan 8, 12:51:41 AM EST"
-1876872036515041629,"Cool https://t.co/VPd9rb5jbm","Jan 8, 1:02:18 AM EST"
-1876873106842624478,"Starmer is evil https://t.co/sM6HZ1ycyX","Jan 8, 1:06:33 AM EST"
-1876873475203227889,"https://t.co/EiX5EYuDXl","Jan 8, 1:08:01 AM EST"
-1876874859600302168,"RT @cfdownes_: Britain is not an idea.
-
-Britain is a nation.
-
-Britain is a people.
-
-🇬🇧 https://t.co/ip0NAg7msg","Jan 8, 1:13:31 AM EST"
-1876875374849662977,"This platform is the collective consciousness of humanity.
-
-You are the media now. https://t.co/qcwr5Aplmd","Jan 8, 1:15:34 AM EST"
-1876875879990567405,"RT @Chesschick01: Trump posted the Soros meme 🤣🤣🤣🤣 https://t.co/3dIeV8Ui3l","Jan 8, 1:17:35 AM EST"
-1876876046470889597,"💯 https://t.co/nC7Xa0zoRl","Jan 8, 1:18:14 AM EST"
-1876876527234687224,"RT @dvorahfr: Not all princesses are nice.
-
-Animation @Kling_ai https://t.co/EXCXOIYE4S","Jan 8, 1:20:09 AM EST"
-1876876893003170217,"https://t.co/tuzcLUDoON","Jan 8, 1:21:36 AM EST"
-1876877042886516980,"RT @_RobbieMoore: I asked the Home Secretary if she could tell me just how many children have been by abused by rape gangs in Bradford.
-
-T…","Jan 8, 1:22:12 AM EST"
-1876878487375540396,"RT @natemcgrady: if it takes you 5 seconds to write a post - and that post earns you just $1 in revenue share - you're effectively making $…","Jan 8, 1:27:56 AM EST"
-1876879018483392544,"RT @stillgray: This is the George Soros interview they don’t want you to see. Keep in mind, this is the same man Joe Biden just gave the Pr…","Jan 8, 1:30:03 AM EST"
-1876879268895953355,"RT @kcoleman: Definitely gratifying to see something go from coffee shop Figma to industry standard.
-
-How it started / How it's going https…","Jan 8, 1:31:03 AM EST"
-1876879922041377107,"Still a few final touches to perfect Raptor https://t.co/2OT7n0rLZT","Jan 8, 1:33:38 AM EST"
-1876880568362627238,"This is terrible https://t.co/dKLw4xHZiJ","Jan 8, 1:36:12 AM EST"
-1876886891175285238,"RT @Starlink: Starlink's high-speed, low-latency internet will soon be available on @airbaltic ✈️❤️","Jan 8, 2:01:20 AM EST"
-1876887112483582293,"RT @cb_doge: ELON MUSK: "It's crazy to see how much the government influences the media.
-
-Whoever's manipulating the media should mix it u…","Jan 8, 2:02:13 AM EST"
-1876888563117101110,"💯 https://t.co/Cyhy0mPFZt","Jan 8, 2:07:59 AM EST"
-1876890147532202329,"Jess Philips, whose job it is to protect women & girls, didn’t even try to speak to a single victim. https://t.co/OqRtgPYnXs","Jan 8, 2:14:16 AM EST"
-1876891726536646978,"RT @KanekoaTheGreat: .@elonmusk: "It's bizarre that we've come to this point where free speech used to be a liberal value. And yet we see f…","Jan 8, 2:20:33 AM EST"
-1876893132211527787,"RT @GoodwinMJ: “Labour MPs will be whipped to vote against an attempt to force a national inquiry into rape gangs”.
-
-Do our children not de…","Jan 8, 2:26:08 AM EST"
-1876893229393563745,"RT @KeithWoodsYT: In Sweden, Algerian migrants are 122x more likely to commit aggravated rape than a native Swede.
-
-Same patterns everywher…","Jan 8, 2:26:31 AM EST"
-1876894011169894553,"RT @teslaownersSV: SpaceX Starship will have more than twice the thrust of the Saturn V rocket https://t.co/7orJW0ICAq","Jan 8, 2:29:37 AM EST"
-1876897107732205969,"RT @HarryStebbings: I love London, I have lived here my whole life and I am immensely sad to be writing this.
-
-In the last week I have see…","Jan 8, 2:41:56 AM EST"
-1876897340180566397,"RT @Inevitablewest: 🚨BREAKING: Nigel Farage loosens on Tommy Robinson:
-
-“I don’t think he’s wrong in everything he says. I do question why…","Jan 8, 2:42:51 AM EST"
-1876902016485593272,"For all those poor little girls who were so terribly abused, many of whom died, they should do the right thing. https://t.co/Ijs87HfEdo","Jan 8, 3:01:26 AM EST"
-1876902135037657321,"RT @robinmonotti: I agree that foreign billionaires should not meddle in British politics, but I strongly believe in their right to free tr…","Jan 8, 3:01:54 AM EST"
-1876904640425402555,"Good https://t.co/MmNUAwiNpF","Jan 8, 3:11:52 AM EST"
-1876906639598465114,"Read the court transcripts. I did.
-
-What was done to thousands of defenseless little girls in Britain was vile beyond belief.
-
-When the fathers of the little girls tried to save them, the authorities arrested their fathers. https://t.co/VgE3w9o4MB","Jan 8, 3:19:48 AM EST"
-1876910840776921402,"RT @recusant_raja: Dear Mr. Musk,
-
-I, and the people of my town, owe you our gratitude. For six years, we have led the campaign for a Publi…","Jan 8, 3:36:30 AM EST"
-1876967481283092603,"RT @KeithWoodsYT: 🇬🇧 A girl in the UK was trafficked at age 11 by a rape gang and raped by over 500 men.
-
-She went to police about it multi…","Jan 8, 7:21:34 AM EST"
-1876967834179326207,"RT @visegrad24: The Mayor or Berlin had refused to release the list of the first names of the people arrested for the firework chaos, viole…","Jan 8, 7:22:58 AM EST"
-1876968481888870871,"RT @jonatanpallesen: @visegrad24 Keir Starmer was head of the CPS for five years while they had systemic failure in protecting citizens aga…","Jan 8, 7:25:33 AM EST"
-1876970346370261317,"Why has the British government refused to deport a convicted child rape gang leader to their home country? https://t.co/lK2LYhgGrH","Jan 8, 7:32:57 AM EST"
-1876972993102160370,"https://t.co/Mx6LXzfeJk","Jan 8, 7:43:28 AM EST"
-1876973205719503270,"Exactly https://t.co/Em57CTiszF","Jan 8, 7:44:19 AM EST"
-1876975328939130996,"Please call your member of parliament and tell them that the hundreds of thousands of little girls in Britain who were, and are still are, being systematically, horrifically gang-raped deserve some justice in this world.
-
-This is vitally important or it ","Jan 8, 7:52:45 AM EST"
-1876976456405844129,"This is how to contact them: https://t.co/RndTdXwR3C","Jan 8, 7:57:14 AM EST"
-1876976798304452693,"RT @NancyMace: Let's deport the r*pists, p*dophiles and m*rderers first.
-
-HR7909 is now HR30. Refiled it on Friday. Now titled the Preventi…","Jan 8, 7:58:35 AM EST"
-1876977071705964716,"The system is broken https://t.co/XcsP8SyjiX","Jan 8, 7:59:41 AM EST"
-1876978336699711746,"Worth reading https://t.co/lQTHrowTys","Jan 8, 8:04:42 AM EST"
-1876978652774039816,"RT @_HenryBolton: Ok. I’m cross. The Nation needs an investigation into the grooming gang scandal and mass rape of white British girls by p…","Jan 8, 8:05:58 AM EST"
-1876979473033146805,"What a hypocrite https://t.co/RaBWAtIfC5","Jan 8, 8:09:13 AM EST"
-1876982133224272113,"https://t.co/spGJQaSHrQ","Jan 8, 8:19:47 AM EST"
-1876982633629954059,"Biden just gave George Soros the Presidential Medal of Freedom https://t.co/2B4qDwFp14","Jan 8, 8:21:47 AM EST"
-1876983296845902096,"This is insane https://t.co/RiOgvqIUmo","Jan 8, 8:24:25 AM EST"
-1876983599792013799,"Wow https://t.co/9gnv6Hc229","Jan 8, 8:25:37 AM EST"
-1876983942479274045,"Because there has been a massive coverup https://t.co/dvTgZmz0dQ","Jan 8, 8:26:59 AM EST"
-1876984384319873149,"Such hypocrisy https://t.co/yy3peuYTzn","Jan 8, 8:28:44 AM EST"
-1876985743257612771,"Judges who put politics above the law should be removed from the bench so that they may practice their preferred career full-time https://t.co/crdbz4zcCK","Jan 8, 8:34:08 AM EST"
-1876988538442457311,"RT @profstonge: Justin Trudeau is quitting.
-
-He destroyed Canada’s economy, delivering West Virginia wages for San Francisco house prices a…","Jan 8, 8:45:14 AM EST"
-1876989632539251058,"Good for the farmers https://t.co/a6UNqsps14","Jan 8, 8:49:35 AM EST"
-1876990152536473874,"💯 https://t.co/zpIfDT0aIQ","Jan 8, 8:51:39 AM EST"
-1876990434766926288,"Utter hypocrisy https://t.co/NAJhGnC3SU","Jan 8, 8:52:47 AM EST"
-1876990826191978923,"Fathers were arrested when trying to save their daughters from rape gangs https://t.co/5YMsJr0Xog","Jan 8, 8:54:20 AM EST"
-1876990988532519376,"Exactly https://t.co/0ikf7ic0KD","Jan 8, 8:54:59 AM EST"
-1876993924083917189,"RT @MarioNawfal: 🚨🇬🇧ELON: CALL YOUR MPS AND ASK THEM TO VOTE IN FAVOR OF A FULL NATIONAL ENQUIRY INTO THE RAPE GANG SCANDAL
-
-Elon:
-
-“Please…","Jan 8, 9:06:39 AM EST"
-1876995649998070121,"Funny how just learning facts can make one a radical 🤷♂️ https://t.co/RYsROsqOou","Jan 8, 9:13:30 AM EST"
-1876995855145668682,"Wow insane https://t.co/05RN8t6rAr","Jan 8, 9:14:19 AM EST"
-1876996193990914258,"RT @amuse: NEVER FORGET… four years ago Trump was banned from all social media. https://t.co/0iktckWK48","Jan 8, 9:15:40 AM EST"
-1876996616642568263,"UK politicians are selling your daughters for votes https://t.co/pJaWGscSTb","Jan 8, 9:17:20 AM EST"
-1876997175625851119,"How many Sharia Law courts are there in the UK? @CommunityNotes https://t.co/nJeLudtEyn","Jan 8, 9:19:34 AM EST"
-1876997822349807696,"These fires are easily avoidable, but nonsense regulations in California prevent action being taken, so year after year homes burn down and more people die https://t.co/GeqZ8vDkEn","Jan 8, 9:22:08 AM EST"
-1876998474979278851,"Well said by @KemiBadenoch
- https://t.co/GswA80ijFU","Jan 8, 9:24:44 AM EST"
-1876999064216064493,"RT @TiceRichard: Big day today, it’s PMQs…
-
-It’s time to for the Prime Minister to clear one or two things up! 👇👇 https://t.co/FEbBam1GzZ","Jan 8, 9:27:04 AM EST"
-1876999288372248887,"RT @BasedMikeLee: Calling out child sex predators is now “radical”—apparently from the perspective of those who don’t want the predators ca…","Jan 8, 9:27:57 AM EST"
-1876999723795550480,"Absolutely https://t.co/zMseuESNoE","Jan 8, 9:29:41 AM EST"
-1877000630322995361,"RT @Chesschick01: .@GavinNewsom could have fixed the fire issue 5 years ago. Now his state burns thanks to his woke policies. https://t.co/…","Jan 8, 9:33:17 AM EST"
-1877001684381040851,"https://t.co/KcquVJ7OYh","Jan 8, 9:37:29 AM EST"
-1877003776202010631,"Just posting a meme like this could get you sent to prison in Britain (actually) https://t.co/I93In3rvAj","Jan 8, 9:45:47 AM EST"
-1877003933668855977,"Terrible https://t.co/F10lZ3kkj1","Jan 8, 9:46:25 AM EST"
-1877004768838660146,"But what about California? https://t.co/w0YcFSDky7","Jan 8, 9:49:44 AM EST"
-1877004939106349075,"RT @SethDillon: Fact checking almost killed The Babylon Bee. So many of our jokes were rated "false" that the media began to characterize u…","Jan 8, 9:50:25 AM EST"
-1877005434621415607,"Obama made sure that Rick Caruso, who is extremely competent, lost to utterly incompetent Mayor Karen (her real name) https://t.co/Fveo189wBp","Jan 8, 9:52:23 AM EST"
-1877023586956738688,"Evel Knievel’s most dangerous stunt in 2025 would be going to Britain & posting memes https://t.co/bQPevfoVSC","Jan 8, 11:04:31 AM EST"
-1877023966377677283,"RT @RupertLowe10: I asked a number of uncomfortable questions in Parliament today around the mass rape of white working class girls by main…","Jan 8, 11:06:01 AM EST"
-1877024663898816837,"Crazy https://t.co/d20JO63nqC","Jan 8, 11:08:47 AM EST"
-1877025171241918702,"They prioritized DEI over saving lives and homes https://t.co/KW1S7ZJEuJ","Jan 8, 11:10:48 AM EST"
-1877025619403231682,"True https://t.co/0917lObkgS","Jan 8, 11:12:35 AM EST"
-1877025856767295968,"Yes https://t.co/ET3wsyl2uL","Jan 8, 11:13:32 AM EST"
-1877026985601356246,"Beautiful graffiti art on the factory walls https://t.co/39l6sLGEUw","Jan 8, 11:18:01 AM EST"
-1877028002879467693,"Nobody trusts Starmer and for good reason.
-
-Investors won’t invest without trust.
-
-He has created a financial crisis for Britain. https://t.co/QJd9sjvfEe","Jan 8, 11:22:04 AM EST"
-1877028270832505016,"Good for @KemiBadenoch!
-
-Brave and true words. https://t.co/IiDL0aUuF4","Jan 8, 11:23:07 AM EST"
-1877028565499158983,"Wow https://t.co/87Xt3KU1AO","Jan 8, 11:24:18 AM EST"
-1877030623254077486,"Cool https://t.co/FWzPow0f4F","Jan 8, 11:32:28 AM EST"
-1877030697501700524,"RT @SawyerMerritt: NEWS: Tesla Model Y is Sweden’s most popular vehicle for the second year in a row. https://t.co/A5zI7Hhowl","Jan 8, 11:32:46 AM EST"
-1877031254920458585,"Unbelievable.
-
-Starmer must go. https://t.co/zWdbUl77pB","Jan 8, 11:34:59 AM EST"
-1877031987774415170,"Wow https://t.co/HAxgdrz0Fw","Jan 8, 11:37:54 AM EST"
-1877032230549156313,"RT @SpaceX: Falcon 9 delivers 24 @Starlink satellites to orbit from Florida https://t.co/AWEHT61vS4","Jan 8, 11:38:51 AM EST"
-1877032271921774968,"https://t.co/PHtr8pv1mh","Jan 8, 11:39:01 AM EST"
-1877032705172365818,"RT @CamillaTominey: #PMQs If finding out how many children were raped, who raped them, and who covered it up isn't cause for a national inq…","Jan 8, 11:40:45 AM EST"
-1877033233256169857,"RT @altcap: Heads should roll in LA & Sacramento - the total failure of leadership w regard to these fires are impeachable offenses. This…","Jan 8, 11:42:51 AM EST"
-1877033629122990554,"RT @teslaownersSV: "Elon Musk is in a phenomenal position, with a fantastic AI factory, best in the world algorithms and a lot of data from…","Jan 8, 11:44:25 AM EST"
-1877033775638380722,"RT @MichelleDewbs: To be clear, this was the *second* former Labour advisor, *in 2 days*, on my tv show to debate the grooming gangs, who a…","Jan 8, 11:45:00 AM EST"
-1877034638524211526,"Cool https://t.co/UWyiX7Ab83","Jan 8, 11:48:26 AM EST"
-1877035502370509147,"Irish citizens get longer sentences than illegal immigrants. That’s messed up. https://t.co/ck1Mgq6SbP","Jan 8, 11:51:52 AM EST"
-1877036020081803468,"https://t.co/k9Vaozv1UY","Jan 8, 11:53:55 AM EST"
-1877037107308372331,"RT @Alice_Weidel: Morgen ist es soweit! Am morgigen Donnerstag ab 19 Uhr findet der angekündigte Space mit Elon Musk und mir auf X statt.…","Jan 8, 11:58:14 AM EST"
-1877037601661583407,"Discussion with @AfD leader and possible Chancellor of Germany @Alice_Weidel tomorrow https://t.co/Uhm2g1Fgzk","Jan 8, 12:00:12 PM EST"
-1877039022486192253,"RT @LozzaFox: It is plain for all to see.
-
-@Keir_Starmer is ordering @UKLabour MP’s to vote to cover up the rape of young girls in exchange…","Jan 8, 12:05:51 PM EST"
-1877039179672015013,"🇺🇸🇺🇸 https://t.co/yUVSgXNZxK","Jan 8, 12:06:28 PM EST"
-1877039654890783038,"RT @Geiger_Capital: Rick Caruso, billionaire real estate developer, called into LA local news:
-
-“This is like a third world country… there…","Jan 8, 12:08:22 PM EST"
-1877039763544228211,"RT @DonaldJTrumpJr: Oh look of course The LA fire department donated a bunch of their supplies to Ukraine","Jan 8, 12:08:47 PM EST"
-1877045008974426496,"https://t.co/vVLnET6Fj4","Jan 8, 12:29:38 PM EST"
-1877045366891163935,"RT @ScottAdamsSays: California is turning red, both literally and figuratively.
-
-A Republican can now win the state. But it has to be a st…","Jan 8, 12:31:03 PM EST"
-1877048844996735214,"https://t.co/yLWCJxpoax","Jan 8, 12:44:53 PM EST"
-1877049293233631697,"Insane https://t.co/MF2c5x6ruJ","Jan 8, 12:46:40 PM EST"
-1877049648554062215,"RT @PWestoff: @AllisonPearson has written a majestic article about the rape gangs and government/police complicity. It is behind the Daily…","Jan 8, 12:48:04 PM EST"
-1877049867588993219,"RT @amuse: FIRE: Eight years after California voters approved a $7.5 billion water bond to construct water storage facilities, not one proj…","Jan 8, 12:48:56 PM EST"
-1877050523309736175,"😂💯 https://t.co/XbCiiO1Rr0","Jan 8, 12:51:33 PM EST"
-1877051112647164241,"RT @TPointUK: Exclusive: Jez, the father of a Pakistani rape gang victim, reveals that the grooming gangs still exist and have spread to th…","Jan 8, 12:53:53 PM EST"
-1877051195342135704,"RT @DrPatSoonShiong: Our hearts go out to those who have lost their homes and are seeking shelter. Fires in LA are sadly no surprise, yet t…","Jan 8, 12:54:13 PM EST"
-1877053020405412042,"A friend in LA just took this video https://t.co/WJBWCHmCUs","Jan 8, 1:01:28 PM EST"
-1877057231134265364,"Something that people may find helpful for stopping fires is packing wet sand/dirt (aka mud) on vulnerable surfaces if you can.
-
-This is far more effective than just wetting a surface with water, which evaporates quickly.","Jan 8, 1:18:12 PM EST"
-1877058266217193968,"RT @luismbat: wow! Grok can identify planets and constellations - even from old photos. I tested it with a picture from 2019, and it got it…","Jan 8, 1:22:19 PM EST"
-1877059871373164724,"Madness https://t.co/vi4zMGZkr8","Jan 8, 1:28:42 PM EST"
-1877114589021679886,"Unbelievable https://t.co/IZcEyg06Rv","Jan 8, 5:06:07 PM EST"
-1877114980140462456,"Wow https://t.co/bdi5H3GmEu","Jan 8, 5:07:41 PM EST"
-1877117422844420354,"Exactly https://t.co/BziyUfFrON","Jan 8, 5:17:23 PM EST"
-1877117701291655214,"💯 https://t.co/QepB13Smb0","Jan 8, 5:18:29 PM EST"
-1877118231581716810,"Absolutely https://t.co/SnMgyJjgA3","Jan 8, 5:20:36 PM EST"
-1877121097776156962,"RT @TalkTV: John in Lancashire says his daughter was gang raped by Pakistani groomers in Oldham when only 13-years-old.
-
-"I phoned the poli…","Jan 8, 5:31:59 PM EST"
-1877121588522365437,"RT @mazemoore: April, 2021. Gavin Newsom explains that wildfire preparedness will be better now that Biden is in office instead of Trump. h…","Jan 8, 5:33:56 PM EST"
-1877121883759370449,"Exactly https://t.co/De9AS8P922","Jan 8, 5:35:06 PM EST"
-1877122011186544690,"RT @VigilantFox: During Starmer’s leadership from 2008 to 2013, the CPS (Crown Prosecution Service) presided over a justice system that cho…","Jan 8, 5:35:37 PM EST"
-1877123076485218462,"💯 https://t.co/QWwymYjJre","Jan 8, 5:39:51 PM EST"
-1877124097806565490,"You are the media now.
-
-Post what’s happening.
-
-It will help people. https://t.co/GgaPD5FED5","Jan 8, 5:43:54 PM EST"
-1877124653929382286,"RT @MarioNawfal: ELON: THE DEMOCRATS SUPPORT DEI, WHICH IS FUNDAMENTALLY ANTI-MERITOCRATIC
-
-“Many years ago, the Democratic Party was the p…","Jan 8, 5:46:07 PM EST"
-1877125040929444186,"RT @PierrePoilievre: Dr. Peterson has paid an enormous price to go up against the woke censorship apparatus.
-
-Thousands of common sense Ca…","Jan 8, 5:47:39 PM EST"
-1877125439434482035,"RT @cb_doge: Elon Musk is working on exactly the right things. He has hit the 3 most important areas in artificial intelligence with xAI, T…","Jan 8, 5:49:14 PM EST"
-1877127824475374018,"🎯 https://t.co/VMlStaqjUJ","Jan 8, 5:58:43 PM EST"
-1877129449981813128,"RT @SawyerMerritt: NEWS: Mandatory evacuation order has just been issued for parts of Santa Monica due to the fires. Over 15,000 people. ht…","Jan 8, 6:05:10 PM EST"
-1877129540243206481,"True https://t.co/qcqdYqlP8K","Jan 8, 6:05:32 PM EST"
-1877130248715677703,"RT @libsoftiktok: BREAKING: Biden just authorized $500 million in aid to Californians who lost everything in the fires.
-
-jk. That was for U…","Jan 8, 6:08:21 PM EST"
-1877130441720791374,"Wow https://t.co/s1w5QcBBZJ","Jan 8, 6:09:07 PM EST"
-1877130987450040609,"RT @Liv_Boeree: If you are evacuating your house, consider opening all the gates/fences so that any fleeing animals have an easier path out…","Jan 8, 6:11:17 PM EST"
-1877136195160768570,"RT @visegrad24: Los Angeles https://t.co/xBuSoiY4tc","Jan 8, 6:31:59 PM EST"
-1877138845025657051,"RT @MarioNawfal: 🇺🇸 ENVIRONMENTALISTS SUED TO SAVE THE FORESTS—FROM BEING SAVED…
-
-In 2007, the Sierra Club sued the U.S. Forest Service to…","Jan 8, 6:42:30 PM EST"
-1877171014351593775,"RT @Telstra: We're excited to announce a new collaboration with SpaceX's @Starlink to bring Satellite-to-Mobile text messaging to our custo…","Jan 8, 8:50:20 PM EST"
-1877171140495335661,"RT @Rothmus: 👇 https://t.co/XLGt7pMCre","Jan 8, 8:50:50 PM EST"
-1877173962007785565,"RT @DouglasKMurray: ‘If any political party wants to do something about the scandal, they will need to stop reviewing and start acting. Whe…","Jan 8, 9:02:03 PM EST"
-1877174925640843686,"RT @libsoftiktok: Don’t you hate it when climate change appoints a DEI hire to run the fire dept, gives away fire equipment to Ukraine, sto…","Jan 8, 9:05:53 PM EST"
-1877175908953424113,"RT @DouglasKMurray: ‘What real justice would look like for grooming gang victims.’ My cover piece in this week’s @spectator https://t.co…","Jan 8, 9:09:47 PM EST"
-1877176401599615319,"🤡 https://t.co/NSIh7a1vHP","Jan 8, 9:11:45 PM EST"
-1877178280186417603,"https://t.co/AZ7WFCnNzP","Jan 8, 9:19:12 PM EST"
-1877218543051096541,"RT @BillAckman: Once a society concludes that meritocracy is unfair, it is on a rapid path to self-immolation.","Jan 8, 11:59:12 PM EST"
-1877219652050313671,"SpaceX will provide free Starlink terminals to affected areas in LA tomorrow morning https://t.co/hm4k3hAmq2","Jan 9, 12:03:36 AM EST"
-1877222097988014523,"Yes https://t.co/slPi4eOm35","Jan 9, 12:13:19 AM EST"
-1877223216147485030,"Unacceptable https://t.co/M3PLE2t0Vd","Jan 9, 12:17:46 AM EST"
-1877223467403075868,"💯 https://t.co/1DLUkaVm2j","Jan 9, 12:18:46 AM EST"
-1877223553218593110,"RT @txsalth2o: It’s amazing.
-Los Angeles has had a
-Democrat Mayor for 23 years
-Democrat majority in the state assembly for 24 years
-Democra…","Jan 9, 12:19:06 AM EST"
-1877223649503072677,"RT @Rothmus: 🎯 https://t.co/qLFxzrbdMY","Jan 9, 12:19:29 AM EST"
-1877223698479947969,"Absolutely https://t.co/deMNyMoabc","Jan 9, 12:19:41 AM EST"
-1877224004680843539,"DEI means people DIE https://t.co/f86ZXam5oz","Jan 9, 12:20:54 AM EST"
-1877224426300702911,"RT @kimbal: Listen to this one to the end","Jan 9, 12:22:35 AM EST"
-1877225211306676426,"RT @saramfoster: We pay the highest taxes in California. Our fire hydrants were empty. Our vegetation was overgrown, brush not cleared. Our…","Jan 9, 12:25:42 AM EST"
-1877225310212567326,"Wow https://t.co/LxtkqADMuY","Jan 9, 12:26:05 AM EST"
-1877226218052792699,"Accurate https://t.co/aS7f9mw5o6","Jan 9, 12:29:42 AM EST"
-1877229802303717453,"Yes https://t.co/WHe0mX2lcD","Jan 9, 12:43:56 AM EST"
-1877237630741496193,"RT @TheRabbitHole84: Abolish DEI.
-
-Everywhere. https://t.co/YfSqdT7FA8","Jan 9, 1:15:03 AM EST"
-1877237871981085171,"RT @iam_smx: Restore Meritocracy where only skills and competence matters.
-
-"I believe we need to return to a focus on merit. It shouldn't…","Jan 9, 1:16:00 AM EST"
-1877237993578135675,"RT @Live: Watch Stagwell's CEO Mark Penn interview Elon Musk at CES! https://t.co/BO3Z7bbHOZ","Jan 9, 1:16:29 AM EST"
-1877238383384158534,"Yes https://t.co/jNTwxoXZzI","Jan 9, 1:18:02 AM EST"
-1877238651366588551,"RT @DogRightGirl: They didn’t fill the reservoirs
-
-They cut $17million from the fire budget
-
-They sent supplies to Ukraine
-
-They fired fi…","Jan 9, 1:19:06 AM EST"
-1877241911263498683,"RT @MarioNawfal: JENSEN HUANG: ELON HAS THE BEST AUTONOMOUS VEHICLE ALGORITHMS IN THE WORLD
-
-“Elon has a great advantage because, number on…","Jan 9, 1:32:03 AM EST"
-1877242171197132843,"RT @teslaownersSV: Starlink is one of the most vital and important inventions of our lifetime.
-
-"The only reason you're able to see us rig…","Jan 9, 1:33:05 AM EST"
-1877242474231427194,"🇺🇸🇺🇸 https://t.co/Ry4Qye9t2Z","Jan 9, 1:34:17 AM EST"
-1877243339424071922,"!! https://t.co/2gv2jrYGem","Jan 9, 1:37:44 AM EST"
-1877248530399813825,"RT @ElonClipsX: Elon Musk: We could have saved a lot of tragedy in LA.
-
-“We really need to have fire breaks, and we need to clear the brush…","Jan 9, 1:58:21 AM EST"
-1877249104721408001,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida, delivering 21 @Starlink satellites to the constellation https://t.co/N58QXJEdBi","Jan 9, 2:00:38 AM EST"
-1877251351354179628,"RT @MarioNawfal: LINDA YACCARINO: 90% OF ADVERTISERS ARE BACK ON X
-
-"X is seeing growth everywhere. 90% of advertisers have returned, drive…","Jan 9, 2:09:34 AM EST"
-1877251463107211570,"RT @MarioNawfal: 🇺🇸ELON: AN IMPORTANT ASPECT OF DOGE IS REMOVING HARMFUL REGULATION
-
-“There’s an element of Doge that's very important, whi…","Jan 9, 2:10:01 AM EST"
-1877251833648816456,"RT @LangmanVince: Megyn Kelly goes off on the Los Angeles DEI Fire Chef, like only she can!
-Must Watch! 👏👏👏 https://t.co/BMVVgNG2aZ","Jan 9, 2:11:29 AM EST"
-1877252398659371122,"RT @MarioNawfal: ELON: "X IS HUMANITY'S GLOBAL CONSCIOUSNESS — THE GOOD AND THE BAD
-
-“One of the things I try to create conceptually with t…","Jan 9, 2:13:44 AM EST"
-1877256124493136270,"RT @ElonClipsX: Elon Musk: Whoever appoints the censors controls information.
-
-“If you empower people as censors, then there's going to be…","Jan 9, 2:28:32 AM EST"
-1877256517595893810,"https://t.co/51tBx7uHSj","Jan 9, 2:30:06 AM EST"
-1877363909251969533,"RT @stillgray: The damage from the Palisades fire is now estimated to be as high as $57 billion.
-
-The city of Los Angeles under Karen Bass…","Jan 9, 9:36:50 AM EST"
-1877364096988799407,"RT @Alice_Weidel: Folge mir jetzt auf X und sei ab 19 Uhr live dabei! Im Anschluss wird es exklusiv an dieser Stelle ein Video mit deutsche…","Jan 9, 9:37:35 AM EST"
-1877365568975618080,"RT @RupertLowe10: We are extracting vital information from the Ministry of Justice which is showing the extent to which foreign criminals w…","Jan 9, 9:43:26 AM EST"
-1877366047818547588,"RT @laralogan: The Delta smelt is a tiny fish that environmentalists claimed was an indicator of the health of your ecosystem. The argument…","Jan 9, 9:45:20 AM EST"
-1877368439704109426,"RT @JohnLeFevre: Watch any video of LA Mayor Karen Bass.
-
-She has a room temperature IQ and represents the steroid age of DEI and identity…","Jan 9, 9:54:50 AM EST"
-1877373844765171840,"RT @AllisonPearson: Paywall is lifted on my @Telegraph child-rape gangs column. Free to read now.
- One of the most important things I’ve…","Jan 9, 10:16:19 AM EST"
-1877373945923375385,"RT @shaunmmaguire: We should probably stop electing Castro loving anarcho-socialists into major government positions","Jan 9, 10:16:43 AM EST"
-1877374228539785567,"RT @DineshDSouza: If you want to know what a society in a death spiral looks like, you have to be alert for the signs https://t.co/ZBUaaS50…","Jan 9, 10:17:50 AM EST"
-1877374589451264187,"RT @ajassy: Incredibly sad to see the devastating impact of the Los Angeles wildfires. Thinking of everyone in Los Angeles right now. Amazo…","Jan 9, 10:19:16 AM EST"
-1877379125452910850,"Exactly. Climate change risk is real, just much slower than alarmists claim.
-
-The immense loss of homes in LA is primarily due to:
-
-1. Nonsensical overregulation that prevented creating fire breaks and doing brush clearing.
-
-2. Bad governance at the st","Jan 9, 10:37:18 AM EST"
-1877381923389190537,"RT @thatsKAIZEN: Fish over people: https://t.co/Ryf8ccAkzw
-
-DEI hiring and funding: https://t.co/AMER8ElO4o
-
-LAFD underfunding: https://t.c…","Jan 9, 10:48:25 AM EST"
-1877384884949258357,"And Soros is being defeated https://t.co/UCxk1nZjHm","Jan 9, 11:00:11 AM EST"
-1877385138159362249,"RT @DimaZeniuk: Starship's magic ✨ https://t.co/1phVh7kxVr","Jan 9, 11:01:11 AM EST"
-1877391430630388080,"Because they are his lapdogs https://t.co/KZA5gISCaH","Jan 9, 11:26:11 AM EST"
-1877391663720456450,"RT @cb_doge: Caption this. https://t.co/tDcGzjpGl9","Jan 9, 11:27:07 AM EST"
-1877394181435568442,"https://t.co/NIzHAHT8N9","Jan 9, 11:37:07 AM EST"
-1877394842981933483,"Conversation with @Alice_Wiedel in about an hour https://t.co/NwvLC6orGY","Jan 9, 11:39:45 AM EST"
-1877396378420158547,"Starship to launch tower this morning https://t.co/RnZVWpRZOm","Jan 9, 11:45:51 AM EST"
-1877400624213668138,"I have a drinking problem https://t.co/7agFvrSPSH","Jan 9, 12:02:43 PM EST"
-1877401370866655246,"Clearly, I need to switch to glass bottle DC","Jan 9, 12:05:41 PM EST"
-1877401605852557319,"💯 https://t.co/LJvMqGjG92","Jan 9, 12:06:37 PM EST"
-1877402081340043512,"Conversation with @Alice_Weidel in ~45 mins https://t.co/NwvLC6oZww","Jan 9, 12:08:31 PM EST"
-1877412961754501184,"https://t.co/wEGXEhT4ue","Jan 9, 12:51:45 PM EST"
-1877414299867529329,"Conversation starting in a few minutes https://t.co/haMfV8zLOV","Jan 9, 12:57:04 PM EST"
-1877415490588643451,"Conversation starting now https://t.co/haMfV8AjEt","Jan 9, 1:01:48 PM EST"
-1877434828053766328,"True https://t.co/DhBOalgPDX","Jan 9, 2:18:38 PM EST"
-1877434926750183476,"Exactly https://t.co/OX3I6MjZ8f","Jan 9, 2:19:02 PM EST"
-1877435053170442475,"RT @AutismCapital: 🚨 ELON MUSK: “The amount of regulations is crazy. 25,000 pages of regulation had to be printed out on paper and transfer…","Jan 9, 2:19:32 PM EST"
-1877435581250122002,"https://t.co/UJAGnR93QK","Jan 9, 2:21:38 PM EST"
-1877435764520239454,"Only @AfD can save Germany 🇩🇪 https://t.co/8ZrHWepINx","Jan 9, 2:22:21 PM EST"
-1877436034759237656,"RT @AutismCapital: 🚨 ALICE WEIDEL: “Do you believe in God?”
-
-ELON MUSK: “I’m open to believing things proportionate to the information I re…","Jan 9, 2:23:26 PM EST"
-1877436284785897764,"New government is needed for California https://t.co/xWNm8KA0Id","Jan 9, 2:24:26 PM EST"
-1877436381649088950,"💯 https://t.co/tEN5OWAYcG","Jan 9, 2:24:49 PM EST"
-1877436683152507042,"RT @stillgray: You may have heard that the AfD is Nazi adjacent. Having listened to Elon Musk’s interview with Alice Weidel, what do you th…","Jan 9, 2:26:01 PM EST"
-1877436995544510553,"Yes https://t.co/8l7m3pVe4Y","Jan 9, 2:27:15 PM EST"
-1877437279850856632,"RT @cb_doge: ELON MUSK: "Only AfD can save Germany. You must vote for change. I am strongly recommending that people vote for AfD." https:/…","Jan 9, 2:28:23 PM EST"
-1877437395424919561,"RT @HSajwanization: “Any self respecting civilization must have at least 2 planets” — Elon Musk","Jan 9, 2:28:50 PM EST"
-1877437964759830868,"Clear https://t.co/vYNbEPJPQB","Jan 9, 2:31:06 PM EST"
-1877438142325862863,"RT @AutismCapital: 🚨 ALICE WEIDEL: “We have a severe dependence on Russian gas. After we were cut off of cheap energy supply from Russia, t…","Jan 9, 2:31:48 PM EST"
-1877441284689817734,"Why Mars? https://t.co/gQZrDxXkfc","Jan 9, 2:44:18 PM EST"
-1877483860570812518,"True https://t.co/wwBqR0Whjs","Jan 9, 5:33:28 PM EST"
-1877484231858991493,"!! https://t.co/jOfFM11fR9","Jan 9, 5:34:57 PM EST"
-1877484962116485506,"RT @TexasRepublic71: This man explains perfectly why Trump is changing the name to the Gulf of America. Biden banned offshore drilling in t…","Jan 9, 5:37:51 PM EST"
-1877485176504332624,"RT @cstanley: Ron Swanson is basically DOGE https://t.co/C5qGquDiRh","Jan 9, 5:38:42 PM EST"
-1877497546786140596,"AfD is the only hope for Germany https://t.co/esWfhxM2JR","Jan 9, 6:27:52 PM EST"
-1877497711789789642,"🎯 https://t.co/IuMlgk4zLf","Jan 9, 6:28:31 PM EST"
-1877498150866313510,"RT @Starlink: In addition to providing free kits to agencies, organizations and shelters, Starlink is providing 1 month of free service for…","Jan 9, 6:30:16 PM EST"
-1877498361454199275,"But is that sweater ethically sourced? https://t.co/zGununtgir","Jan 9, 6:31:06 PM EST"
-1877498754426875936,"This is not a parody https://t.co/4M6pS9ZYEx","Jan 9, 6:32:39 PM EST"
-1877498881547595821,"You are the media now https://t.co/c3zT25q5XP","Jan 9, 6:33:10 PM EST"
-1877499590049472739,"RT @StarshipGazer: Mechazilla with chopsticks on Starship 33 and the new catch fitting.
-
-1/9/25 https://t.co/zgWysBG1mJ","Jan 9, 6:35:59 PM EST"
-1877501867997200593,"You can’t make this 💩 up https://t.co/nEVk52ouAL","Jan 9, 6:45:02 PM EST"
-1877503761150542255,"Community Notes ftw again https://t.co/q818eksVtl","Jan 9, 6:52:33 PM EST"
-1877508005081788489,"Discussion with @Alice_Weidel https://t.co/j6oWRjv4A7","Jan 9, 7:09:25 PM EST"
-1877517281867313443,"🇩🇪🇩🇪🇩🇪 https://t.co/fnOAkfqPtV","Jan 9, 7:46:17 PM EST"
-1877536017198232052,"RT @dvorahfr: One Day, soon, very soon, Humanity will build on the Moon, Mars and beyond https://t.co/0hsCLCoNKU","Jan 9, 9:00:44 PM EST"
-1877538843580072431,"RT @AutismCapital: 🚨MEL GIBSON: "I don't know why Fauci is still walking around? I listened to the RFK Jr book on Fauci driving up to San F…","Jan 9, 9:11:57 PM EST"
-1877560971973329273,"Texting should now work in LA even when there is no cellular service if you use @TMobile https://t.co/sXIpGa1h0c","Jan 9, 10:39:53 PM EST"
-1877561965612012012,"RT @MarioNawfal: 🇺🇸 DESANTIS: IF NEWSOM WERE A REPUBLICAN, YOU’D NAIL HIM TO THE WALL
-
-"Is it appropriate for people in your industry to cr…","Jan 9, 10:43:50 PM EST"
-1877562247351796062,"https://t.co/UVmGLQhfBP","Jan 9, 10:44:57 PM EST"
-1877568055305257045,"https://t.co/GaIfVgaV2o","Jan 9, 11:08:02 PM EST"
-1877569016157307206,"RT @MarioNawfal: 🇦🇷 ECONOMISTS WHO PREDICTED MILEI'S 'DEVASTATION' NOW AWKWARDLY QUIET AS ARGENTINA REBOUNDS
-
-Turns out the "crazy" guy wit…","Jan 9, 11:11:51 PM EST"
-1877569861758390382,"Competence saves lives https://t.co/KYGurzdiPN","Jan 9, 11:15:13 PM EST"
-1877589463892730309,"This was so crazy! https://t.co/Ko5jun3JNI","Jan 10, 12:33:06 AM EST"
-1877591094549971347,"RT @Safety: We’re rolling out profile labels for parody accounts to clearly distinguish these types of accounts and their content on our pl…","Jan 10, 12:39:35 AM EST"
-1877591601536520640,"https://t.co/jR7fD6jomx","Jan 10, 12:41:36 AM EST"
-1877598445755666701,"America and Europe are suffering strangulation by overregulation https://t.co/BCy7HziU8q","Jan 10, 1:08:48 AM EST"
-1877602152001962492,"RT @pmarca: Libertarian economist. Member of Hayek Society, the secular patron saint of human freedom. The Milei of Germany. Who knew. http…","Jan 10, 1:23:31 AM EST"
-1877602216376148106,"💯 https://t.co/PdGjk4qt1T","Jan 10, 1:23:47 AM EST"
-1877602512758312986,"RT @thegskull: @pmarca Great interview. So she's a Libertarian free market capitalist who wants secure borders, sensible energy policy and…","Jan 10, 1:24:57 AM EST"
-1877603678598615364,"!! https://t.co/e6wuzfA4Wr","Jan 10, 1:29:35 AM EST"
-1877604316661350581,"True https://t.co/G2eg60L3bu","Jan 10, 1:32:07 AM EST"
-1877604540016455872,"RT @DOGE: The current administration has imposed $1.7 trillion in regulatory costs on the economy.
-
-Per household costs are projected to be…","Jan 10, 1:33:01 AM EST"
-1877604630474952926,"https://t.co/bV1BK7IB0Q","Jan 10, 1:33:22 AM EST"
-1877607636016742881,"Yes https://t.co/uyES03UmON","Jan 10, 1:45:19 AM EST"
-1877608159549727209,"Ok, we’re thinking too small with Starship https://t.co/sKN2o28gin","Jan 10, 1:47:24 AM EST"
-1877608440459059354,"This is seriously messed up https://t.co/TCuxGxIVfw","Jan 10, 1:48:31 AM EST"
-1877608601293885904,"RT @RupertLowe10: I have asked the Home Office how many of Musk's posts have been investigated, for what reason, by how many officers and a…","Jan 10, 1:49:09 AM EST"
-1877619372237136205,"The real red pill will come when people try to get permits to rebuild their homes and face multiyear waits.
-
-This might finally spell doom for the Coastal Commission, which should not even exist as an organization. https://t.co/LNIooLoTIX","Jan 10, 2:31:57 AM EST"
-1877621354704335171,"RT @EndWokeness: Local elections matter. Remember this.
-
- https://t.co/CJc6rFtLIj","Jan 10, 2:39:50 AM EST"
-1877626229462913242,"Sensible 🇬🇧 https://t.co/CPyEWz7VWA","Jan 10, 2:59:12 AM EST"
-1877630081473851470,"They do https://t.co/bqcBuVnf8c","Jan 10, 3:14:30 AM EST"
-1877633791356748208,"True https://t.co/xPf6knI9gs","Jan 10, 3:29:15 AM EST"
-1877634886728647083,"https://t.co/dnSuEmB0Dq","Jan 10, 3:33:36 AM EST"
-1877637593409413599,"RT @SwipeWright: Amazing how all of California's problems are surfacing right now. Government incompetence and mismanagement, homeless peop…","Jan 10, 3:44:21 AM EST"
-1877637985098768471,"😂💯 https://t.co/1USAyLfaAC","Jan 10, 3:45:55 AM EST"
-1877639801593102683,"What are your views? https://t.co/q1rg3Ye4ZB","Jan 10, 3:53:08 AM EST"
-1877644536966414587,"Yes https://t.co/A4VW3uMsvZ","Jan 10, 4:11:57 AM EST"
-1877646549590671626,"An attack by the legacy media is Germany is exactly what I expected and wanted to happen.
-
-It will only help the @AfD win🥇for 🇩🇪
-
-https://t.co/4BQDeUyIts https://t.co/JtQVSvt4bm","Jan 10, 4:19:57 AM EST"
-1877647821404258676,"RT @stillgray: AfD leader Alice Weidel: “Hitler was a communist. He considered himself as a socialist.
-
-They nationalized all the private c…","Jan 10, 4:25:00 AM EST"
-1877649770681880614,"RT @SeibtNaomi: Hitler enforced the values of the authoritarian left establishment that dominates Germany today.
-
-Free speech was HitIer’s…","Jan 10, 4:32:45 AM EST"
-1877709490700657080,"RT @visegrad24: How the UK Lost the Battle Against Illegal Migration. 🇬🇧
-
-The UK government has been battling illegal migration for years,…","Jan 10, 8:30:03 AM EST"
-1877710354014154895,"RT @GoodwinMJ: Support for stripping convicted dual national child groomers/rapists of their British citizenship:
-
-96% Reform voters
-91% To…","Jan 10, 8:33:29 AM EST"
-1877711632463286380,"RT @Nigel_Farage: 76% of Britons want a national public inquiry into the rape gangs scandal. @Keir_Starmer","Jan 10, 8:38:34 AM EST"
-1877711880275304934,"Yeah https://t.co/R4ZdwQoEZG","Jan 10, 8:39:33 AM EST"
-1877713724162629927,"RT @RupertLowe10: A strong reaction to this speech.
-
-I would like to put on the record that I stand by every single word I said.","Jan 10, 8:46:52 AM EST"
-1877714961977283036,"RT @sophielouisecc: Imagine having an extremist unit monitor Elon musks tweet
-
-But not have an inquiry into grooming gangs","Jan 10, 8:51:47 AM EST"
-1877715278777200987,"Defund Sierra Club https://t.co/MvvH8Qtdta","Jan 10, 8:53:03 AM EST"
-1877715867254853859,"The fox is guarding the henhouse https://t.co/ReekLrx98o","Jan 10, 8:55:23 AM EST"
-1877716619612291304,"Why is Starmer harboring known terrorists? https://t.co/ryxjb5C4sc","Jan 10, 8:58:23 AM EST"
-1877717446779428923,"Who provides funding to Starmer and the Labour Party?
-
-Apparently, for example, I was reading that some hedge fund gave them £5M from a dodgy island in the Caribbean.","Jan 10, 9:01:40 AM EST"
-1877728818560971186,"Racism of any kind is unacceptable https://t.co/ABxw66gbeM","Jan 10, 9:46:51 AM EST"
-1877735011882852736,"RT @iam_smx: Elon Musk's most inspiring speech that gives a clear understanding of his lifetime mission. https://t.co/mTa6xLfZ5P","Jan 10, 10:11:28 AM EST"
-1877743414134923292,"RT @thackerpd: Peter Thiel w/ some critical facts for incoming Trump administration:
-
-- Fauci/NIH hid the truth
-- NIH-funded research may h…","Jan 10, 10:44:51 AM EST"
-1877743988112777442,"It’s over for Gavin https://t.co/kTPAOU96uA","Jan 10, 10:47:08 AM EST"
-1877787404808999025,"Yeah https://t.co/eAqz3HGwvt","Jan 10, 1:39:39 PM EST"
-1877789585972809761,"RT @thatsKAIZEN: LA Fire Department’s head of DEI has a similar or higher salary than LAFD’s second in command.
-
-Jon O’Brien - Chief Deputy…","Jan 10, 1:48:19 PM EST"
-1877791788624134643,"RT @BasedMikeLee: No federal benefits to illegal aliens
-
-Share if you agree https://t.co/WMX0UqNrso","Jan 10, 1:57:04 PM EST"
-1877791918454652938,"RT @ChrisWillx: The UK is beating Russia.
-
-There were 98 convictions for internet speech in Russia from 2007-2018.
-
-During the same period,…","Jan 10, 1:57:35 PM EST"
-1877792430067474490,"RT @prwhittle: The enormity of the rape gangs issue, known now to the world thanks to @elonmusk , means British history for the past 20 yea…","Jan 10, 1:59:37 PM EST"
-1877794678780666276,"https://t.co/OHaLG5GpIj","Jan 10, 2:08:33 PM EST"
-1877796287174570204,"RT @shellenberger: For more than a decade, the media, Democrats, and Hollywood have told us that Western civilization in general and the Un…","Jan 10, 2:14:57 PM EST"
-1877796743036743891,"Tyrannical behavior https://t.co/IIIVlxP0YJ","Jan 10, 2:16:45 PM EST"
-1877797204686999898,"Incompetence costs lives https://t.co/FiUSu00AOJ","Jan 10, 2:18:36 PM EST"
-1877800144596353068,"Hopefully, public pressure will drive political, regulatory and legal reforms, otherwise these areas will not be rebuilt for many years to come.
-
-The current system makes it impossible. https://t.co/kYimdPM4Qy","Jan 10, 2:30:16 PM EST"
-1877801382658392222,"RT @Liv_Boeree: This woman pretty clearly hates men. You can just feel her disdain for them through the camera. And fine, that’s her prerog…","Jan 10, 2:35:12 PM EST"
-1877818136948322661,"RT @longmier: With 400 @Starlink Direct to Cell sats launched, you can now send a text message from your phone via satellite within seconds…","Jan 10, 3:41:46 PM EST"
-1877831328172826647,"This is crazy https://t.co/CjWbCQfudh","Jan 10, 4:34:11 PM EST"
-1877948465516257646,"The astounding absurdity of @ThierryBreton 🤡 as tyrant of Europe 😂 https://t.co/fdLp8rbF0M","Jan 11, 12:19:39 AM EST"
-1877948754478731544,"https://t.co/YzIQT3tb5Y","Jan 11, 12:20:48 AM EST"
-1877952067081244856,"lol https://t.co/oDoj5f9Vsp","Jan 11, 12:33:58 AM EST"
-1877952545072546182,"💯 https://t.co/xNuIRYTO39","Jan 11, 12:35:52 AM EST"
-1877952838849978824,"Beautiful https://t.co/U9gcMXXvdy","Jan 11, 12:37:02 AM EST"
-1877956343199420867,"woke_mind_virus found at 127.0.0.1
-woke_mind_virus deleted rm -rf https://t.co/M1HQkz3LDM","Jan 11, 12:50:57 AM EST"
-1877956708275826958,"https://t.co/48HRqZWpBf","Jan 11, 12:52:24 AM EST"
-1877956831042994582,"RT @MarioNawfal: BILL MAHER: ELON HAS SAID SOME THINGS I THINK ARE GREAT
-
-“I'm curious to see, for example, what Elon Musk is going to do.…","Jan 11, 12:52:53 AM EST"
-1877959441103937638,"🎯 https://t.co/m3wao1w3Kq","Jan 11, 1:03:16 AM EST"
-1877961051863453946,"https://t.co/l4XNZBcyTM","Jan 11, 1:09:40 AM EST"
-1877964788636045490,"Vital to fix this https://t.co/qtKjL2OaVq","Jan 11, 1:24:31 AM EST"
-1877965434542043395,"RT @MarioNawfal: 🇪🇺🇩🇪EU PANICS AS ELON GIVES VOTERS A VOICE
-
-Elon’s decision to host German leader Alice Weidel on X has EU elites scrambli…","Jan 11, 1:27:05 AM EST"
-1877965941423693847,"RT @ChuckCallesto: BREAKING REPORT: ⚠️ Hundreds of British citizens and journalists NOW REPORTING visits from police in the last few days…","Jan 11, 1:29:06 AM EST"
-1877966150086086994,"RT @the_jefferymead: Here is the difference between X and Tiktok.
-
-I posted the same video on both platforms calling out the terrible thi…","Jan 11, 1:29:55 AM EST"
-1877966183514694067,"RT @thatsKAIZEN: @the_jefferymead Yep, happens to me all the time. I don’t make content for TikTok anymore, I just post stuff there that I…","Jan 11, 1:30:03 AM EST"
-1877966366889681294,"🤣🤣 https://t.co/nVNK66StUk","Jan 11, 1:30:47 AM EST"
-1877966932680319328,"Cool https://t.co/5GkxeSxTKl","Jan 11, 1:33:02 AM EST"
-1877968248517329227,"RT @MarioNawfal: CHAMATH: ELON DIDN’T MAKE A VALUE MAXIMIZING DECISION, HE MADE A MORAL ONE
-
-"Now the winds are blowing in a different dire…","Jan 11, 1:38:16 AM EST"
-1878030421713203225,"The forcing function for improvement in the public sector is weak https://t.co/MypY2DmymF","Jan 11, 5:45:19 AM EST"
-1878031209185300651,"RT @Space_Strategy: 2025 feels like the start of some hard Sci-fi novel https://t.co/oZtbigxT3F","Jan 11, 5:48:27 AM EST"
-1878031512404115727,"RT @recusant_raja: Sources inside @oldhamcouncil contacted me overnight distraught that @UKLabour leaders had secretly met with sectarian M…","Jan 11, 5:49:39 AM EST"
-1878035818641543209,"https://t.co/TQJakstQyX","Jan 11, 6:06:46 AM EST"
-1878036047805698048,"RT @koshercockney: Holy sh*t.
-
-Mind blowing, listen to this from @benhabib6
-
-He did some digging and found out:
-
-“The Pakistani government…","Jan 11, 6:07:40 AM EST"
-1878036771516109057,"That was your Dad or husband or son she was talking about abandoning to die https://t.co/ecpEBESGwL","Jan 11, 6:10:33 AM EST"
-1878036868446539913,"RT @WholeMarsBlog: Elon really did a lot of good buying Twitter and speaking up
-
-He was right about many things, and the resistance he fac…","Jan 11, 6:10:56 AM EST"
-1878038752120959277,"One of them being the “Labour” Party https://t.co/HZ6XBpVImP","Jan 11, 6:18:25 AM EST"
-1878039641627971630,"RT @Alice_Weidel: "Now, while we talk, 150 bureaucrats of the European Union are watching us, our conversation, to enforce this ridiculous…","Jan 11, 6:21:57 AM EST"
-1878039923816571068,"!! https://t.co/PUBf5rUSSc","Jan 11, 6:23:04 AM EST"
-1878040579243688330,"ELECTION INTERFERENCE!! https://t.co/alGRTsamir","Jan 11, 6:25:41 AM EST"
-1878045242240217440,"RT @The_Kyle_Mann: Another one of our @TheBabylonBee prophecies fulfilled https://t.co/maATEyK1bN","Jan 11, 6:44:12 AM EST"
-1878045547891769497,"🇼🇸 Starlink in Samoa! 🇼🇸 https://t.co/3mLmSowoqg","Jan 11, 6:45:25 AM EST"
-1878045658134856073,"😂 https://t.co/i6Jp8edpiC","Jan 11, 6:45:51 AM EST"
-1878045901819720168,"RT @cb_doge: Tesla is far ahead in self-driving cars.
-
-一 Nvidia CEO Jensen Huang
-
- https://t.co/Lf8WpA9axy","Jan 11, 6:46:50 AM EST"
-1878046592969621983,"Exactly https://t.co/2LakSM794f","Jan 11, 6:49:34 AM EST"
-1878048381089563046,"Coulda had Caruso https://t.co/l1O2LXx1Qx","Jan 11, 6:56:41 AM EST"
-1878163353933099446,"What a creep https://t.co/FrDy6Cjmby","Jan 11, 2:33:32 PM EST"
-1878163671953580515,"RT @TheFP: “This was supposed to be the water to put out the Palisades fire.”
-
-The FP’s Austyn Jeffs visits the Santa Ynez Reservoir that h…","Jan 11, 2:34:48 PM EST"
-1878163853625770197,"RT @friedberg: “We pretend to work, and they pretend to pay us.” - old Soviet Union phrase.
-
-infrastructure failing as absentee staff decl…","Jan 11, 2:35:31 PM EST"
-1878164119150358555,"RT @CilComLFC: In Wales, the Welsh Refugee Council is using 12-year-old girls in ads meant to entice migrant men to come to Wales. Most mem…","Jan 11, 2:36:35 PM EST"
-1878164813332836824,"If he doesn’t stop with this nonsense, I’m going to cancel his hair stylist expense account. Vicious, I know, but … https://t.co/pYZGE6sZOd","Jan 11, 2:39:20 PM EST"
-1878173328453595279,"RT @Brick_Suit: Janisse Quinones makes $750,000 per year as the head of Los Angeles' water district.
-
-Surely she must have experience in ma…","Jan 11, 3:13:10 PM EST"
-1878173512885580222,"🤡🌎 https://t.co/1RMuVXOAHH","Jan 11, 3:13:54 PM EST"
-1878174564003282977,"And, of course, he has pronouns in bio https://t.co/j0oeqk44Qr https://t.co/nMFddlfUdj","Jan 11, 3:18:05 PM EST"
-1878178349400416372,"“Committee for Public Safety” https://t.co/reHHLxJUxG","Jan 11, 3:33:08 PM EST"
-1878178898959057198,"Incompetence in the limit is indistinguishable from sabotage","Jan 11, 3:35:19 PM EST"
-1878179033701122160,"Absolutely https://t.co/26dY3gPNu0","Jan 11, 3:35:51 PM EST"
-1878182462318055717,"💯 https://t.co/k41vj9s3BL","Jan 11, 3:49:28 PM EST"
-1878188411409825974,"Competence matters https://t.co/7ExchSKT2L","Jan 11, 4:13:06 PM EST"
-1878188646701900274,"RT @MarcMerrill: Been off the grid fighting to save my house and neighborhood for days. It burned a house two doors down, two above us on a…","Jan 11, 4:14:03 PM EST"
-1878203372513136854,"Grok can diagnose medical injuries https://t.co/OWqNjupSqE","Jan 11, 5:12:33 PM EST"
-1878213131387719682,"RT @TheChiefNerd: Jillian Michaels Sounds Off on the Leadership Failures in California
-
-"It's absolute madness ... In 2014, Californians v…","Jan 11, 5:51:20 PM EST"
-1878213974103101705,"RT @amitisinvesting: $TSLA
-
-This is going to be a long post about FSD because I just had one of the most incredible experiences of my life.…","Jan 11, 5:54:41 PM EST"
-1878240432779415923,"Make
-Europe
-Great
-Again
-
-MEGA!!! https://t.co/P0anzzjbOc","Jan 11, 7:39:49 PM EST"
-1878244066334285827,"Sag Nein zu Scholz! https://t.co/S7gkm3TLMf https://t.co/P0anzzjbOc","Jan 11, 7:54:16 PM EST"
-1878244779441447191,"Now we know why Labour voted against an inquiry: they are guilty https://t.co/XQlTSPTl7r","Jan 11, 7:57:06 PM EST"
-1878260798302073126,"Easy to figure out
- https://t.co/meW5adDAZS","Jan 11, 9:00:45 PM EST"
-1878261569890537513,"RT @MarioNawfal: 🇩🇪🇪🇺AFD’S PLAN TO SAVE EUROPE FROM GLOBALISTS
-
-Olaf Scholz is poised for four more years of the same tired leadership, but…","Jan 11, 9:03:49 PM EST"
-1878262290476093562,"Just tap the xAI/Grok button to explain anything https://t.co/qwaTpbeKFz","Jan 11, 9:06:41 PM EST"
-1878269909584478691,"RT @AutismCapital: Community notes for the win. https://t.co/KGWVhcAPAu","Jan 11, 9:36:57 PM EST"
-1878276331588190666,"fyi https://t.co/vHmbjiBy9F","Jan 11, 10:02:28 PM EST"
-1878276650330177721,"🤡 https://t.co/zUCgFAv4F8","Jan 11, 10:03:44 PM EST"
-1878276946716504255,"Wow https://t.co/lT4LZJzdNV","Jan 11, 10:04:55 PM EST"
-1878278442434617572,"This will scale to enormous numbers, as California passed a bill providing free healthcare for illegals that just took effect last year.
-
-Essentially, anyone on Earth can come to California for free healthcare.
-
-Earth has 8 billion people, but Californi","Jan 11, 10:10:52 PM EST"
-1878278893649473857,"If the people of Greenland want their territory to join America, we should accept them! https://t.co/QaFmKZ1tyJ","Jan 11, 10:12:39 PM EST"
-1878281096279867606,"Swords were the guns of the Middle Ages.
-
-And don’t even get me started on crossbows!
-
- https://t.co/usInl3QQp2","Jan 11, 10:21:24 PM EST"
-1878284671974281365,"About a year ago, a guy tried to kill three X employees with an axe outside the former Twitter HQ in SF. They reported it to the police, but nothing was done.
-
-He later killed someone with that axe.
-
-This insanity needs to stop. https://t.co/kp86izOULI","Jan 11, 10:35:37 PM EST"
-1878289425211265136,"Slavery is still practiced in some parts of the world https://t.co/9jWXiktrBV","Jan 11, 10:54:30 PM EST"
-1878289952657560030,"DEI means people will DIE https://t.co/Uskn0uMMPL","Jan 11, 10:56:36 PM EST"
-1878290215770509796,"https://t.co/PtMhoyq6Lj","Jan 11, 10:57:39 PM EST"
-1878290751617958153,"There will probably be another 10m added to the Starship stack before we increase diameter https://t.co/SVIfkZHNet","Jan 11, 10:59:46 PM EST"
-1878295624182882738,"True https://t.co/aOd1rauORd","Jan 11, 11:19:08 PM EST"
-1878309007598739461,"For the idiots claiming otherwise https://t.co/02MAu5AA0B","Jan 12, 12:12:19 AM EST"
-1878314159269433682,"Gavin Newsom is a subtard https://t.co/WmbBc15gCO","Jan 12, 12:32:47 AM EST"
-1878317437776498841,"Reality is beyond parody 😂 https://t.co/aSVXV9nKeT","Jan 12, 12:45:49 AM EST"
-1878318149797322994,"RT @teslaownersSV: Newsom must RESIGN","Jan 12, 12:48:39 AM EST"
-1878318312557301916,"Quite the quandary https://t.co/jRTTpBQmpY","Jan 12, 12:49:17 AM EST"
-1878319143860253042,"Either incarcerate those attempting to axe-murder or they will eventually succeed in axe-murdering https://t.co/2IbCggXgsO","Jan 12, 12:52:36 AM EST"
-1878319348567196001,"🇺🇸🇺🇸 Yes!! 🇺🇸🇺🇸 https://t.co/9aBllguVYq","Jan 12, 12:53:24 AM EST"
-1878320240418841055,"RT @Rothmus: 🎯 https://t.co/Js9DebemRv","Jan 12, 12:56:57 AM EST"
-1878321016255995997,"True https://t.co/RnshbLwfid","Jan 12, 1:00:02 AM EST"
-1878336938668614051,"This is the future that inspires me https://t.co/7mF0NaVGMn","Jan 12, 2:03:18 AM EST"
-1878337946983526472,"Goodbye Gavin https://t.co/ckVaAFPwRf","Jan 12, 2:07:19 AM EST"
-1878339006171083214,"Thank you, @DanCardenMP!
-
-Integrity. https://t.co/ACflU8AICB","Jan 12, 2:11:31 AM EST"
-1878339431066714602,"💯 https://t.co/UT1KcjBGC0","Jan 12, 2:13:12 AM EST"
-1878339619848147246,"RT @ElonClipsX: Elon Musk: Most civilizations collapsed because of low birth rates.
-
-“What ended most civilizations was a low birth rate. A…","Jan 12, 2:13:57 AM EST"
-1878345168857837660,"RT @MarioNawfal: 🚨🇬🇧RACISM FEARS STOP POLICE FROM CATCHING RAPISTS?
-
-“I’ve had friends who've been raped, and the police have told them bec…","Jan 12, 2:36:00 AM EST"
-1878463585250074716,"RT @MarioNawfal: ELON: IT’S INSANE THAT PEOPLE ARE GOING TO PRISON IN THE UK FOR SOCIAL MEDIA POSTS WHEN REAL CRIMINALS WALK FREE
-
-“People…","Jan 12, 10:26:33 AM EST"
-1878466155016290551,"RT @MarioNawfal: 🚨🇺🇸 J.D. VANCE: WE HAVE TO DO A BETTER JOB BOTH ON THE FEDERAL AND STATE LEVEL
-
-“We need competent, good governance.
-
-Some…","Jan 12, 10:36:46 AM EST"
-1878469173635932257,"Wow https://t.co/Ezv7rL2Qes","Jan 12, 10:48:45 AM EST"
-1878532392324870235,"RT @MarioNawfal: 🚨🇦🇷STANDING OVATION FOR MILEI AT BUENOS AIRES RESTAURANT
-
-Argentina's @JMilei , known for his humility, dined at a local s…","Jan 12, 2:59:58 PM EST"
-1878534290994077888,"This is wrong https://t.co/OfMQC76YiA","Jan 12, 3:07:31 PM EST"
-1878539087818162686,"First booster has reached 25 flights https://t.co/8J5QpwfJmc","Jan 12, 3:26:34 PM EST"
-1878540286655078764,"Exactly https://t.co/XUxV6KMCLt","Jan 12, 3:31:20 PM EST"
-1878548886962212964,"Apologies to those expecting Cybertruck deliveries in California over the next few days.
-
-We need to use those trucks as mobile base stations to provide power to Starlink Internet terminals in areas of LA without connectivity.
-
-A new truck will be delive","Jan 12, 4:05:31 PM EST"
-1878550409851093287,"We are going to position Cybertrucks with Starlinks and free WiFi in a grid pattern in the areas that most need it in the greater LA/Malibu area https://t.co/oWilgDyVh5","Jan 12, 4:11:34 PM EST"
-1878556378412798174,"Adding a lot more to this effort tonight and tomorrow https://t.co/gm1THPg17L","Jan 12, 4:35:17 PM EST"
-1878561100439961847,"True https://t.co/qRgnVuZqQC","Jan 12, 4:54:02 PM EST"
-1878563858052202589,"Yes. Please be careful in some areas, as there is non-zero risk of armed looters.
-
-Cybertruck side panels are bulletproof to subsonic projectiles (handguns, shotgun & Tommy gun), but the glass is not, so make sure to duck if you see anyone wielding a","Jan 12, 5:05:00 PM EST"
-1878564751149596950,"Exactly, article misses the point.
-
-Fire breaks, brush clears and plenty of water won’t stop all houses from burning down, but the situation would be vastly improved if those things were done. https://t.co/ClXYdWf3Qk","Jan 12, 5:08:33 PM EST"
-1878565581579792589,"RT @Telegraph: 🇩🇪 The co-leader of Germany’s AfD has endorsed the policy of “remigration”, pledging to carry out mass deportations of immig…","Jan 12, 5:11:51 PM EST"
-1878566579656446423,"Better to think of government, which is a monopolistic corporation in the limit, in terms of its feedback loop for improvement (or lack thereof) https://t.co/OzEI4K79Eb","Jan 12, 5:15:49 PM EST"
-1878566761429123142,"RT @AdrianDittmann: Capitalism is a naturally occurring interface maintaining balance between systems of order and chaos in a universe that…","Jan 12, 5:16:32 PM EST"
-1878569001673949595,"This guy was sentenced to 7 years in prison for social media posts.
-
-The other guy was sentenced to a mere 6 months for raping a 9-year-old child!
-
-British “justice” system is deeply broken. https://t.co/8g2TMdLipV","Jan 12, 5:25:26 PM EST"
-1878569177415331919,"RT @MarioNawfal: 🇩🇪 AfD LEADER VOWS MASS DEPORTATIONS UNDER “REMIGRATION” POLICY
-
-Alice Weidel of the AfD promises to close Germany’s borde…","Jan 12, 5:26:08 PM EST"
-1878571458093314161,"Also adding security personnel in vehicle and snacks & beverages for passers-by https://t.co/azX7tuYtNd https://t.co/wlZp8e6U2H","Jan 12, 5:35:12 PM EST"
-1878594194681614620,"RT @RobertMSterling: Not only did Karen Bass break her promise not to travel abroad…
-
-Not only was she in Africa when the devastating fires…","Jan 12, 7:05:33 PM EST"
-1878596195494584490,"Slow strangulation by overregulation https://t.co/e3emP4ZpNO","Jan 12, 7:13:30 PM EST"
-1878604403525275826,"RT @PlanetOfMemes: @elonmusk Completely broken. https://t.co/g4z8oUpoQA","Jan 12, 7:46:07 PM EST"
-1878606309131788786,"RT @amuse: CENSORSHIP: You know you've got a problem when the CEO of your nation's largest state-funded media outlet is ALSO on the board o…","Jan 12, 7:53:41 PM EST"
-1878606378895565121,"RT @Tesla: Summary of efforts Tesla has done to support employees & communities impacted by the LA fires
-
-Impacted employees (home lost or…","Jan 12, 7:53:58 PM EST"
-1878613318606406098,"The so-called “endangered plant” isn’t even in danger of extinction! https://t.co/mBWMTHxkMN","Jan 12, 8:21:32 PM EST"
-1878624587547807894,"Tesla & SpaceX personnel are driving around areas in greater LA/Malibu that are in tough shape with free WiFi, drinks & snacks https://t.co/304vjlXSoc","Jan 12, 9:06:19 PM EST"
-1878629590769529078,"!! https://t.co/v41n2C6wNr","Jan 12, 9:26:12 PM EST"
-1878642981307388412,"https://t.co/X1IjuSHNdc","Jan 12, 10:19:24 PM EST"
-1878650301185728888,"RT @WesternLensman: 🚨UNREAL: While LA is being devastated by fires, Newsom and CA legislators reach an agreement to allocate $50M to “Trump…","Jan 12, 10:48:30 PM EST"
-1878654690814247082,"Taxpayer money should not be used to fund propaganda https://t.co/kL3DR8l0VR","Jan 12, 11:05:56 PM EST"
-1878655040363385278,"… https://t.co/BWdfYi6G76","Jan 12, 11:07:20 PM EST"
-1878668079179465060,"❤️❤️ Firefighters of the World ❤️❤️","Jan 12, 11:59:08 PM EST"
-1878681818712695237,"Cellular networks & electrical power are currently down in most of Malibu and the Palisades https://t.co/yT8agOC9nf","Jan 13, 12:53:44 AM EST"
-1878682047985909934,"RT @BLKMDL3: My friend who is working at the Palisades Command Center for the fire just texted me this:
-
-@elonmusk was at Basecamp earlier…","Jan 13, 12:54:39 AM EST"
-1878682719154307201,"Competition to serve the people is what results in the best products & services.
-
-Government is the biggest corporation & has a monopoly on violence. How much power do you want it to have? https://t.co/ZLyoz9yx7a","Jan 13, 12:57:19 AM EST"
-1878688648637579502,"It’s hard to know what’s really going on! https://t.co/Ci386212E5","Jan 13, 1:20:52 AM EST"
-1878688951969706353,"💯 https://t.co/MdRtXAvvhz","Jan 13, 1:22:05 AM EST"
-1878689375472779384,"😂 https://t.co/e7fRPup2Ht","Jan 13, 1:23:46 AM EST"
-1878693613313663295,"That would be good https://t.co/Fkmj5ctjr5","Jan 13, 1:40:36 AM EST"
-1878696610651357305,"RT @cb_doge: Hey, you!
-
-Yes, You! 🫵
-
-You're the media now !","Jan 13, 1:52:31 AM EST"
-1878696682537492890,"RT @EndWokeness: Governor Newsom cut $100 million in fire prevention spending this year….. all while allocating $3 BILLION DOLLARS on free…","Jan 13, 1:52:48 AM EST"
-1878697151838228530,"!! https://t.co/gBKjLN0hko","Jan 13, 1:54:40 AM EST"
-1878703039873495321,"RT @ElonClipsX: Ron Baron: While everyone tries to make as much money as they can, Elon is focused on his long-term mission.
-
-“What amazes…","Jan 13, 2:18:03 AM EST"
-1878703207645638858,"RT @MarioNawfal: 🇺🇸 SPACE GIANTS ALIGN: BEZOS BACKS ELON'S VISION
-
-Two of tech's biggest innovators showing how competition drives progress…","Jan 13, 2:18:43 AM EST"
-1878703520364544239,"RT @teslaownersSV: “Don't hate the media, become the media. Citizen journalism is vital to the future of civilization. Any one can be a cit…","Jan 13, 2:19:58 AM EST"
-1878704757793292661,"You are the media now https://t.co/vlTzLW7FvC","Jan 13, 2:24:53 AM EST"
-1878723005402255703,"RT @MarioNawfal: ZUCKERBERG: BIDEN’S TEAM WOULD SCREAM AT US TO TAKE DOWN CONTENT
-
-“They want us to take down this meme of Leonardo DiCapri…","Jan 13, 3:37:24 AM EST"
-1878727092147462411,"https://t.co/djXWLR8mpK","Jan 13, 3:53:38 AM EST"
-1878729374163452307,"RT @DesireeAmerica4: Elon Musk stepped up big time, donating Starlink to help Los Angeles firefighters and people stay connected during the…","Jan 13, 4:02:42 AM EST"
-1878729553050509809,"RT @JackBMontgomery: The most talked about story in Britain right now is the arrest of Ivor Caplin, a former Labour minister who has been a…","Jan 13, 4:03:25 AM EST"
-1878729743681695974,"RT @CDP1882: An IOPC whistleblower has told @thetimes that the investigation into Rotherham abuse gang failures “barely scratched the surfa…","Jan 13, 4:04:10 AM EST"
-1878730029041115644,"!! https://t.co/DePQSVWt7Z","Jan 13, 4:05:18 AM EST"
-1878731382769471560,"This TDS hypocrite had the nerve to write a book about how lying is evil and then say that any lie was acceptable to ensure @realDonaldTrump didn’t get elected! https://t.co/hDlv5CdLGn","Jan 13, 4:10:41 AM EST"
-1878733978972361026,"https://t.co/8K6Ao8gJMD","Jan 13, 4:21:00 AM EST"
-1878734238587269539,"RT @RupertLowe10: Deporting illegal migrants is not an extreme position.
-
-The real extremist policy is importing thousands of undocumented…","Jan 13, 4:22:02 AM EST"
-1878830419183128783,"Madness https://t.co/JhyXpYhKl6","Jan 13, 10:44:13 AM EST"
-1878830741897052536,"Good for them https://t.co/V3qAhjqHXx","Jan 13, 10:45:30 AM EST"
-1878831175806193931,"RT @EricLDaugh: GAVIN NEWSOM: All of our reservoirs here in southern California are full.
-
-REPORTER: One of them was actually not full - th…","Jan 13, 10:47:13 AM EST"
-1878849882490097761,"RT @SpaceX: Watch Falcon 9 launch 21 @Starlink satellites to orbit from Florida, including 13 with Direct to Cell capabilities https://t.co…","Jan 13, 12:01:33 PM EST"
-1878863525738914209,"RT @DJSnM: Starlink skeptics kept telling me it wouldn't provide worldwide access because it was priced for the US.
-I just saw this articl…","Jan 13, 12:55:46 PM EST"
-1878877630755471395,"The pressure will keep building. The British public deserve answers, not cover-ups! https://t.co/vsfncaRRul","Jan 13, 1:51:49 PM EST"
-1878877802025607368,"RT @SpaceX: Falcon 9 lifts off from pad 40 in Florida, delivering 21 @Starlink satellites to the constellation https://t.co/R2W8qZLkdC","Jan 13, 1:52:30 PM EST"
-1878886779098656776,"RT @Tesla_Asia: Built for any planet📐
-
-📸: @calvintseng8931 &黄自凯KleinHuang https://t.co/64vl31GUQA","Jan 13, 2:28:10 PM EST"
-1878888522695999721,"This is what exponential improvement looks like https://t.co/g8lflQkSiY","Jan 13, 2:35:06 PM EST"
-1878889814898172216,"Just wanted to express appreciation for President @realDonaldTrump and so many people, both inside & outside of government, supporting @DOGE.
-
-I am confident that the American people will be happy with the outcome.","Jan 13, 2:40:14 PM EST"
-1878901515110543802,"RT @astro_Pettit: One photo with: Milkyway, Zodical light, @Starlink satellites as streaks, stars as pin points, atmosphere on edge showin…","Jan 13, 3:26:44 PM EST"
-1878901936008925466,"The vastness of the cosmos https://t.co/UeJJSrBADQ","Jan 13, 3:28:24 PM EST"
-1878903016776171818,"Wow https://t.co/aB3Yj5cPwV","Jan 13, 3:32:42 PM EST"
-1878903293768016239,"RT @DonaldJTrumpJr: Hegseth was 'incredibly talented, battle-proven leader,' military evaluations show
-
-https://t.co/6bMXKZtcU6","Jan 13, 3:33:48 PM EST"
-1878909785757880662,"The massive federal bureaucracy, an unconstitutional 4th branch of government, will do everything possible to thwart the will of the people! https://t.co/sTON1eXii5","Jan 13, 3:59:36 PM EST"
-1878910521925390813,"Wow https://t.co/YWiSWUMQnG","Jan 13, 4:02:31 PM EST"
-1878914879463317965,"🍿 https://t.co/jnUXA6w44M","Jan 13, 4:19:50 PM EST"
-1878956963649958184,"RT @libsoftiktok: HORRIFIC. 14-year-old boy in NYC was stabbed to d*ath on his way to school by a violent criminal repeat offender who was…","Jan 13, 7:07:04 PM EST"
-1878957227647910348,"Slow strangulation by overregulation https://t.co/irvVhgu7TK","Jan 13, 7:08:07 PM EST"
-1878957424989863986,"https://t.co/Ki8cRE6cB8","Jan 13, 7:08:54 PM EST"
-1878993684827713900,"RT @thatsKAIZEN: Here’s what’s repulsive about the climate change movement to so many of us.
-
-Its branding is fearful, negative, and disemp…","Jan 13, 9:32:59 PM EST"
-1879025747492561347,"RT @AJamesMcCarthy: Just got done watching Mars slip behind the moon. This is a real-time view through my 12” telescope. So cool. https://t…","Jan 13, 11:40:23 PM EST"
-1879026105124032992,"🎯 https://t.co/iWBVV5TIFY","Jan 13, 11:41:48 PM EST"
-1879027571674980594,"RT @MarioNawfal: ELON: WE TRY TO MAXIMIZE ANIMAL WELFARE AT NEURALINK
-
-“I want to emphasize that we do our absolute best to take care of th…","Jan 13, 11:47:38 PM EST"
-1879028229534855393,"RT @DimaZeniuk: “I acquired 𝕏 in order to preserve freedom of speech in America.”
-
-— Elon Musk https://t.co/rbe95v4vWZ","Jan 13, 11:50:15 PM EST"
-1879029405588304132,"Hear we go again (sigh) https://t.co/GGaG2xyuYu","Jan 13, 11:54:55 PM EST"
-1879030492009517241,"They were (rightfully) skeptical 14 years ago https://t.co/p9Ah6cdblg","Jan 13, 11:59:14 PM EST"
-1879030557524529349,"Wow https://t.co/LTZgXHHoVt","Jan 13, 11:59:30 PM EST"
-1879056558405157279,"RT @kyliem: Excited for **Parody Labels** on X!
-
-Now, you can easily spot satire accounts with a "Parody Account" label. Enjoy the humour,…","Jan 14, 1:42:49 AM EST"
-1879064709909152079,"RT @ElonClipsX: Elon Musk: My early tweets were already crazy.
-
-“I actually had one of the very first Twitter accounts when it was less tha…","Jan 14, 2:15:12 AM EST"
-1879067696501080093,"RT @kanyewest: https://t.co/jL8L03tiSG","Jan 14, 2:27:04 AM EST"
-1879146205256827027,"Support Pete Hegseth! https://t.co/tuoijo2dJD","Jan 14, 7:39:02 AM EST"
-1879150532134400499,"RT @EvaVlaar: 🇳🇱 A group of underaged asylum seekers brutally gang raped a 33 y/o Dutch homeless woman last year and were just sentenced to…","Jan 14, 7:56:14 AM EST"
-1879156487446286844,"RT @MarioNawfal: FORMER TESLA EMPLOYEE: ELON GIVES HIS ALL EVERY SINGLE DAY
-
-“In 2008, when Tesla was at its darkest moment, he put in his…","Jan 14, 8:19:54 AM EST"
-1879156757093900781,"These guys are cool https://t.co/WsIkX2ycR4","Jan 14, 8:20:58 AM EST"
-1879157099885920576,"RT @WholeMarsBlog: In the world's most competitive auto market, people are choosing Tesla https://t.co/VyJooc9WaX","Jan 14, 8:22:20 AM EST"
-1879160530352652518,"RT @SpeakerJohnson: Defense Secretary Lloyd Austin oversaw the catastrophic Afghanistan withdrawal, let the Chinese make rapid advancements…","Jan 14, 8:35:58 AM EST"
-1879161591343784008,"RT @america: Veterans rally on Capitol Hill this morning to show support for Pete Hegseth as Secretary of Defense ahead of his Senate confi…","Jan 14, 8:40:11 AM EST"
-1879165508433616950,"RT @JDVance: Pete Hegseth will crush it today. Say a prayer for him and for the country--he's the Secretary of Defense we all need!","Jan 14, 8:55:45 AM EST"
-1879168335507845433,"RT @SawyerMerritt: The Cybertruck was the 5th bestselling EV in the US in 2024, beating the Ford F-150 Lightning, Rivian R1S and all GM EVs…","Jan 14, 9:06:59 AM EST"
-1879196624045715854,"RT @TrumpWarRoom: Retired Army Green Beret and U.S. Congressman @michaelgwaltz urges members of the Senate Armed Services Committee to conf…","Jan 14, 10:59:23 AM EST"
-1879229003489493470,"Kids are awesome. Nothing will make you happier. https://t.co/GXfHeRODDa","Jan 14, 1:08:03 PM EST"
-1879237631026115064,"RT @SpaceX: Falcon 9 is vertical at pad 4E in California ahead of today’s launch of 131 payloads to orbit. Liftoff is targeted for 11:09 a.…","Jan 14, 1:42:20 PM EST"
-1879237861293342937,"RT @SpaceX: Starship’s sixth flight test aimed to push the vehicle to its limits as we iterate towards a rapidly reusable rocket.
-
-Up next…","Jan 14, 1:43:15 PM EST"
-1879238005397082150,"RT @SawyerMerritt: NEWS: Tesla has officially overtaken Audi in global car sales for the first time ever.
-
-Audi sold 1.67 million vehicles…","Jan 14, 1:43:49 PM EST"
-1879240438672191597,"RT @charliekirk11: PETE HEGSETH: "We won WW2 with 7 four star generals. Today we have 44 four star generals... we don't need more bureaucra…","Jan 14, 1:53:29 PM EST"
-1879242387777802473,"https://t.co/jF4FM3Dtky","Jan 14, 2:01:14 PM EST"
-1879242638370705687,"RT @JonErlichman: Vehicles sold in 2024:
-
-Tesla: 1.79 million
-Audi: 1.67 million
-
-Vehicles sold in 2014:
-
-Audi: 1.74 million
-Tesla:…","Jan 14, 2:02:14 PM EST"
-1879273789718216997,"RT @SpaceX: About 8 minutes after liftoff, Falcon 9’s first stage will return to Landing Zone 4 at Vandenberg Space Force Base, announcing…","Jan 14, 4:06:01 PM EST"
-1879280268399583431,"😂 https://t.co/dBtpqQhI6n","Jan 14, 4:31:45 PM EST"
-1879280443469730062,"Wow https://t.co/zzg7RA2iUK","Jan 14, 4:32:27 PM EST"
-1879287550550081954,"RT @TheRabbitHole84: Debt has consistently risen regardless of who occupies the White House https://t.co/W9nCtdqW3S","Jan 14, 5:00:42 PM EST"
-1879293016512639471,"Starship Flight 7 launches tomorrow, provided weather is good https://t.co/elDWqhTb0d","Jan 14, 5:22:25 PM EST"
-1879392233507668235,"💯 https://t.co/7T8T4CSPs2","Jan 14, 11:56:40 PM EST"
-1879392443130679413,"This is so messed up https://t.co/PVKdHZcMRS","Jan 14, 11:57:30 PM EST"
-1879392602082115726,"That is exactly the goal https://t.co/CQszFzmebZ","Jan 14, 11:58:08 PM EST"
-1879392752494080085,"The inventor of Diet Coke is a genius https://t.co/Ze3U9ln6YS","Jan 14, 11:58:44 PM EST"
-1879392945981530575,"RT @KanekoaTheGreat: NEW: Marc Andreessen breaks down Elon Musk and Vivek Ramaswamy's Department of Government Efficiency (DOGE)
-
-Regulatio…","Jan 14, 11:59:30 PM EST"
-1879400522547147012,"Yes https://t.co/J65MXsJDnj","Jan 15, 12:29:36 AM EST"
-1879400790131159200,"RT @teslaownersSV: Starship is the vehicle to get us to Mars
-
-Starship 7 will ship tomorrow. https://t.co/wpQfLmE7yh","Jan 15, 12:30:40 AM EST"
-1879405095101850035,"RT @PapiTrumpo: MOOD THIS WEEK...😎🇺🇸🥳🥳🥳 https://t.co/XtPW1pU6Zz","Jan 15, 12:47:46 AM EST"
-1879405422807023923,"https://t.co/MQ6vD32hjJ","Jan 15, 12:49:05 AM EST"
-1879405505262809277,"Yes https://t.co/ldoRso4hTx","Jan 15, 12:49:24 AM EST"
-1879406092163391767,"True https://t.co/K02Rnki2EX","Jan 15, 12:51:44 AM EST"
-1879406344962523236,"No more double standards! https://t.co/lCvkv2q1O4","Jan 15, 12:52:44 AM EST"
-1879406494841700599,"💯 https://t.co/MQEiY9BzDt","Jan 15, 12:53:20 AM EST"
-1879406656829952408,"It is the only way https://t.co/4AmyRhfoMQ","Jan 15, 12:53:59 AM EST"
-1879408055848493382,"😂 https://t.co/RVP5FlUvHr","Jan 15, 12:59:32 AM EST"
-1879408719102201918,"💯 https://t.co/oV2fCLiFFS","Jan 15, 1:02:11 AM EST"
-1879409015421383061,"Absolutely https://t.co/czHYKBu4LQ","Jan 15, 1:03:21 AM EST"
-1879415680396931367,"That would be great https://t.co/4EMb1zuw4P","Jan 15, 1:29:50 AM EST"
-1879416163039584718,"RT @NASA: There it goes: our post-holiday delivery aboard Blue Ghost begins its journey to the Moon!
-
-In addition to providing information…","Jan 15, 1:31:45 AM EST"
-1879416351858831564,"RT @BigImpactHumans: @unusual_whales https://t.co/tFNoUCsoWY","Jan 15, 1:32:30 AM EST"
-1879416522638315626,"RT @america: “We won WWII with 7 4-Star generals. Today, we have 44 4-Star generals. There’s an inverse relationship between the size of st…","Jan 15, 1:33:11 AM EST"
-1879416988713603241,"https://t.co/ZVrrwQP7Fc","Jan 15, 1:35:02 AM EST"
-1879417176966434990,"Absolutely https://t.co/WapjJmPVfF","Jan 15, 1:35:47 AM EST"
-1879417285959729186,"RT @MarioNawfal: 🚨🇺🇸 ELON'S FEDERAL WORKFORCE STRATEGY BACKED BY REMOTE WORK DATA
-
-Trump advisers Elon and Vivek's plan to end federal work…","Jan 15, 1:36:13 AM EST"
-1879418008269185105,"Good https://t.co/EbZ7sTUaAt","Jan 15, 1:39:05 AM EST"
-1879419570286653662,"🚀 🚀🚀🚀🚀
-
-Btw, the @xAI team is still grinding hard, even at this hour. https://t.co/0XyoPAByOX","Jan 15, 1:45:18 AM EST"
-1879419810762903660,"RT @MarioNawfal: 🚨SPACEX HITS 100TH LAUNCH FROM HISTORIC PAD 39A WITH DOUBLE MOON MISSION
-
-Falcon 9 just nailed its historic centennial lif…","Jan 15, 1:46:15 AM EST"
-1879419881839525972,"RT @SpaceX: A Falcon rocket lifts off from pad 39A in Florida for the 100th time! https://t.co/aIQXrQFEux","Jan 15, 1:46:32 AM EST"
-1879420024928251945,"Over 100 satellites launched! https://t.co/kbCbXD9huO","Jan 15, 1:47:06 AM EST"
-1879420137809543272,"America has indeed had enough https://t.co/HjikBgTUMZ","Jan 15, 1:47:33 AM EST"
-1879420263168987268,"!! https://t.co/hYyu483AOC","Jan 15, 1:48:03 AM EST"
-1879420581478912449,"RT @teslaownersSV: “The woke mind virus is communism rebranded”
-Elon Musk
- https://t.co/QSiLuyboCG","Jan 15, 1:49:19 AM EST"
-1879423228978077761,"Try using @Grok from @xAI to ask any question, generate any image or analyze any picture! No other AI is more up-to-date or truthful.
-
-Just tap on the xAI/Grok button on the bottom 𝕏 icon bar for instant access.
-
-To upload images, tap the + to the left","Jan 15, 1:59:50 AM EST"
-1879423402269954253,"RT @DOGE: USAID spends $40B+ of taxpayer dollars to fund foreign aid:
-- $45mm to DEI scholarships in Burma
-- $520mm for consultant-driven…","Jan 15, 2:00:31 AM EST"
-1879423514211680282,"RT @america: Former Democrat Fundraiser: I was fully indoctrinated into the Democrat 'cult.' Here's why I left my liberal influencer life b…","Jan 15, 2:00:58 AM EST"
-1879423595358851375,"RT @GoodwinMJ: How is Keir Starmer doing as PM?
-
-Well: 24%
-Badly: 64%
-
-Net: -40 (YouGov)
-
-Is 24% of Britain on acid?","Jan 15, 2:01:17 AM EST"
-1879424568974344239,"Something like that 🤭 https://t.co/p4nAcPJocX","Jan 15, 2:05:09 AM EST"
-1879425196865810452,"Absolutely https://t.co/hgFuGQ7fP9","Jan 15, 2:07:39 AM EST"
-1879426467001704803,"RT @DimaZeniuk: Starship Flight 7 is set for Wednesday, January 15, 2025, at 5:00 p.m. EST https://t.co/CF7lirsdNk","Jan 15, 2:12:42 AM EST"
-1879426713035436199,"You are the media now.
-
-This is an incredibly profound change. https://t.co/Z3mHVFDaVE","Jan 15, 2:13:41 AM EST"
-1879427063222063402,"RT @bennyjohnson: QUOTE OF THE DAY: “If you’re a rifleman, and you lose your rifle, they’re throwing the book at you. If you’re a general a…","Jan 15, 2:15:04 AM EST"
-1879427080733241350,"RT @charliekirk11: MUST WATCH: Sen. Markwayne Mullin's FULL remarks in defense of Pete Hegseth. Powerful. Absolute masterclass. https://t.c…","Jan 15, 2:15:08 AM EST"
-1879427509663814051,"https://t.co/YoNmfgnjD3","Jan 15, 2:16:51 AM EST"
-1879427815352959268,"Yes. Count on it. https://t.co/LLKFjsnk7E","Jan 15, 2:18:03 AM EST"
-1879428293776302447,"RT @SpaceX: Deployment of @Firefly_Space’s Blue Ghost lunar lander confirmed https://t.co/6HpA2Xl7cM","Jan 15, 2:19:57 AM EST"
-1879517301403467966,"Lawfare needs to stop.
-
-Instead of fighting real crime, under the Democrats, citizens are prosecuted, while serious criminals run free.
-
-In fact many of the criminals are in the government. At least for another 5 days. https://t.co/XpDgXNt8zI","Jan 15, 8:13:39 AM EST"
-1879517370592669989,"Yes https://t.co/mYNDym7oQC","Jan 15, 8:13:55 AM EST"
-1879517865394721277,"The Labour minister for child welfare shields the predators and their anti-corruption minister is corrupt 🤨 https://t.co/7MvGzU7qtn","Jan 15, 8:15:53 AM EST"
-1879519790311834034,"Another reason why citizen journalism is so critically important.
-
-You, the people, must be the media, as it is the only way for your fellow citizens to know the truth. https://t.co/i8blELXji0","Jan 15, 8:23:32 AM EST"
-1879520605634220362,"More things on my plate now, but that’s still pretty much true.
-
-I do play video games as my one recreational activity to quiet my mind. Some days are real tough, so playing video games is my strange solace. https://t.co/RAUiVqhmo8","Jan 15, 8:26:46 AM EST"
-1879520976763003143,"Insane https://t.co/4v00CohySq","Jan 15, 8:28:15 AM EST"
-1879521202538213583,"https://t.co/hlfadId6OH","Jan 15, 8:29:09 AM EST"
-1879525680679121166,"Thank you, glad to be of service! 🇺🇸🇺🇸 https://t.co/24Bx0WwrRF","Jan 15, 8:46:56 AM EST"
-1879527444493074456,"RT @Cmdr_Hadfield: Two spaceships are on their way to the Moon, launched together last night by @SpaceX. Soft landings to Blue Ghost (top)…","Jan 15, 8:53:57 AM EST"
-1879527526961479727,"RT @MarioNawfal: 🚨🇺🇸NEWSOM’S ORDER TRAPS WILDFIRE VICTIMS IN LA
-
-Newsom blocks wildfire survivors from selling their land, labeling offers…","Jan 15, 8:54:17 AM EST"
-1879528739580817659,"The only reason to ban voter ID is to commit voting fraud.
-
-Some playbook there as here. https://t.co/XeffSfMFsu","Jan 15, 8:59:06 AM EST"
-1879531470886465545,"If you’re a hardcore software engineer and want to build the everything app, please join us by sending your best work to code@x.com.
-
-We don’t care where you went to school or even whether you went to school or what “big name” company you worked at.
-
-Ju","Jan 15, 9:09:57 AM EST"
-1879532205405516204,"RT @NotFarLeftAtAll: Here we have it !!
-
-94% of British people ❤️@elonmusk and a mere 6% hate Elon Musk https://t.co/SPJJ0Ji9oa","Jan 15, 9:12:52 AM EST"
-1879532295637676484,"RT @DaveAtherton20: In a poll nearly two-thirds of Brits support @elonmusk commenting on grooming gangs and British politics. https://t.co/…","Jan 15, 9:13:13 AM EST"
-1879533559276536183,"Um no, cyanide and arsenic are poisons, whereas sugar is edible. You don’t see a pile of bodies outside a candy store lmao.
-
-That said, sugar should only be eaten occasionally and in small quantities. https://t.co/5NtntVRIMJ","Jan 15, 9:18:15 AM EST"
-1879534816913502214,"Video games are meant for you to be immersed in an exciting and creative alternative reality and have fun with friends.
-
-Adding present-day political bullshit kills the vibe.","Jan 15, 9:23:15 AM EST"
-1879538467119694034,"Unacceptable https://t.co/hfF6XU8uoN","Jan 15, 9:37:45 AM EST"
-1879538584535117948,"This is the way https://t.co/2AN7EG2EPK","Jan 15, 9:38:13 AM EST"
-1879538875967914311,"Pam Bondi is an excellent choice for AG. Someone who truly cares about justice. https://t.co/ElpR7RWtQe","Jan 15, 9:39:22 AM EST"
-1879565812878741574,"Testing Starlink Streaming from Mar-a-Lago https://t.co/hWSZPIyxFn","Jan 15, 11:26:25 AM EST"
-1879566529794367655,"This is a dicey test, as the Starlink antenna is partially obscured by trees, so latency & jitters will be higher, as the terminal tries to connect with satellites further away that are not obscured","Jan 15, 11:29:16 AM EST"
-1879587122702946368,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/E4BFUgqmOP","Jan 15, 12:51:05 PM EST"
-1879587561213206744,"I love my Chinese alter-ego 😂 https://t.co/f0SikCrSgd","Jan 15, 12:52:50 PM EST"
-1879591242457379130,"Gavin Newsom is a scumbag https://t.co/hV3mfkFSzr","Jan 15, 1:07:27 PM EST"
-1879626424132444615,"RT @HSajwanization: Just in : President Donald Trump announces hostage deal has been reached in the Middle East https://t.co/JWaZkQGe1u","Jan 15, 3:27:15 PM EST"
-1879626641049354299,"RT @SpaceX: Falcon 9 launches two lunar landers to the Moon for @Firefly_Space and @ispace_inc https://t.co/Jrb8MZcycp","Jan 15, 3:28:07 PM EST"
-1879626723945549834,"RT @X: if you want to build & ship at record speed, come join the X engineering team","Jan 15, 3:28:27 PM EST"
-1879627860375413189,"RT @Alice_Weidel: MEGA - Make Europe Great Again! 🚀","Jan 15, 3:32:58 PM EST"
-1879628213607088485,"You are the media now https://t.co/Klpdw941a9","Jan 15, 3:34:22 PM EST"
-1879628300018225304,"😂 https://t.co/XO8XjffPVO","Jan 15, 3:34:43 PM EST"
-1879628926886244715,"RT @TheRabbitHole84: The world has passed "Peak Child" with the number of children no longer projected to grow. https://t.co/Y3HbtuQcDD","Jan 15, 3:37:12 PM EST"
-1879629548209459419,"RT @shaunmmaguire: I have a friend that offered to build a major infra project for LA County at a breakeven cost
-
-They were told by a local…","Jan 15, 3:39:40 PM EST"
-1879629807446896763,"RT @shellenberger: California is the richest state with the highest taxes and yet it cut funding for firefighting, which led directly to L.…","Jan 15, 3:40:42 PM EST"
-1879630301007397155,"RT @jondipietronh: @CAgovernor Can you clear that brush near my house so it doesn't burn down?
-"No"
-OK, can I do it?
-"No"
-OK, can I upgrade…","Jan 15, 3:42:40 PM EST"
-1879630363854799249,"RT @Alice_Weidel: Nun möchte die CDU gegen „ungefilterte Meinungen“ vorgehen mithilfe des willfährigen Geheimdienstes/Verfassungsschutzes.…","Jan 15, 3:42:55 PM EST"
-1879630532407132667,"RT @GroundTruthPics: SpaceX seems very serious about Starships Seventh Flight attempt tomorrow! We are under 24 hours away!
-
-Here are some…","Jan 15, 3:43:35 PM EST"
-1879630851102871840,"RT @SageListener: 🚨Dr. Patrick Soon-Shiong, owner of the LA Times and a renowned transplant surgeon, is raising alarms about the fallout fr…","Jan 15, 3:44:51 PM EST"
-1879630890957164743,"RT @america: Nominee for AG, Pam Bondi’s Opening statement:
-
-“If confirmed, I will fight every day to restore confidence and integrity to t…","Jan 15, 3:45:00 PM EST"
-1879633021810429959,"RT @kane: San Francisco sanctuary policy was used to release the illegal immigrant who killed a woman in front of her father on the Embarca…","Jan 15, 3:53:28 PM EST"
-1879636120197358076,"RT @SpaceX: Falcon 9 lifts off on SpaceX’s 100th launch from historic Launch Complex 39A in Florida, carrying @Firefly_Space and @ispace_in…","Jan 15, 4:05:47 PM EST"
-1879689143544156452,"This is cool https://t.co/AYiBCX3MfL","Jan 15, 7:36:29 PM EST"
-1879746360683155610,"RT @SawyerMerritt: FYI: If you subscribe to your favorite creators on the X. com website instead of the X app, Apple can't take 30% cut, so…","Jan 15, 11:23:51 PM EST"
-1879746393662972099,"True https://t.co/VF0dmYvAn2","Jan 15, 11:23:58 PM EST"
-1879746968370717049,"RT @teslaownersSV: Don’t hate the media, become the media.
-
-𝕏 empowers the voice of the people and it’s the town square of the world.
-
-𝕏…","Jan 15, 11:26:15 PM EST"
-1879747012712964157,"RT @amuse: INSANE: LAFD whistleblower reveals Gov Newsom ordered them to remove Elon Musk from the Command Post and to return all the Starl…","Jan 15, 11:26:26 PM EST"
-1879747081407283484,"Amen https://t.co/8qhBAPISNn","Jan 15, 11:26:42 PM EST"
-1879747390787510462,"RT @teslaownersSV: Hop in let’s go to Mars.
-
-Starship is CGI IRL https://t.co/Q0yUUNWK3V","Jan 15, 11:27:56 PM EST"
-1879788062596808745,"https://t.co/tyyAgX35f1","Jan 16, 2:09:33 AM EST"
-1879793206973591769,"Congratulations on reaching orbit on the first attempt!
-@JeffBezos https://t.co/EJl6L8aevV","Jan 16, 2:30:00 AM EST"
-1879794751479914700,"!! https://t.co/vmOJ5dlZBb","Jan 16, 2:36:08 AM EST"
-1879795264049107437,"Looting is not normally considered a felony? https://t.co/QWBvsFc12Y","Jan 16, 2:38:10 AM EST"
-1879795436623630825,"Extremely concerning
- https://t.co/ze1mmlIMdD","Jan 16, 2:38:51 AM EST"
-1879796369038409877,"RT @stillgray: OpenAI whistleblower Suchir Balaji was murdered. https://t.co/t3srRWHSTB","Jan 16, 2:42:33 AM EST"
-1879796444338811176,"RT @fentasyl: I don't think it's particularly funny how the Democrat party spends my taxes to fly "inadmissible" aliens into Republican-vot…","Jan 16, 2:42:51 AM EST"
-1879796509853790320,"💯 https://t.co/EAJgVEpeYf","Jan 16, 2:43:07 AM EST"
-1879803095364083809,"RT @MarioNawfal: 🚨🇺🇸LOOTING LA WILDFIRE VICTIMS: WHY ISN’T THIS A FELONY YET?
-
-As wildfires destroy homes and lives, criminals are swooping…","Jan 16, 3:09:17 AM EST"
-1879803751051211044,"RT @iam_smx: Elon Musk showing the Mechazilla, a tower with mechanical arms that will once again attempt to catch the Super Heavy booster d…","Jan 16, 3:11:53 AM EST"
-1879803898497831325,"RT @AutismCapital: 🚨Suchi Balaji's mom talks about Ilya Sutskever's firing: "A few days after my son's death was announced, Ilya was seen i…","Jan 16, 3:12:29 AM EST"
-1879804318611808717,"Absolutely https://t.co/JnKhx6Pkak","Jan 16, 3:14:09 AM EST"
-1879804774360740329,"RT @NVIDIADC: .@xai, partnering with NVIDIA and @Supermicro_SMCI, built Colossus, the world's largest liquid-cooled GPU cluster, featuring…","Jan 16, 3:15:57 AM EST"
-1879806832870645939,"RT @cstanley: I am playing around with the xAI API and it is literally a drop in replacement for OpenAI.
-
-Literally all I had to do was rep…","Jan 16, 3:24:08 AM EST"
-1879806927066284363,"Cool https://t.co/90Yx62qUbS","Jan 16, 3:24:31 AM EST"
-1879886394535059661,"There are still people like Sam Harris who think that ANY lie, no mattter how depraved, is justified to prevent @realDonaldTrump from being democratically elected or, if elected, to remove from office.
-
-Is TDS curable or does the brain turn into irreparab","Jan 16, 8:40:17 AM EST"
-1879887326115246496,"Sam Harris simultaneously advocates telling horrible lies to prevent the public from voting with accurate facts, but also writes a book about how lying is the worst thing ever and we should never do it!
-
-Hypocrisy personified. https://t.co/NRq7H2bJ3z","Jan 16, 8:43:59 AM EST"
-1879887646019006653,"RT @teslaownersSV: Are you ready to see a Starship flight?
-
-Let’s hop and go to Mars. Starship will take us to Mars. https://t.co/mLpbgKjB…","Jan 16, 8:45:16 AM EST"
-1879889302509031521,"RT @DimaZeniuk: SpaceX Mechazilla 😳 https://t.co/rPMLGqBuMX","Jan 16, 8:51:51 AM EST"
-1879889331139260807,"RT @esherifftv: I’m pretty confident Starship will ACTUALLY launch tmrw ❤️🥹🚀 https://t.co/zyHt5apMsz","Jan 16, 8:51:57 AM EST"
-1879889632701358426,"RT @Space_Station: .@NASA+ is live now as @AstroHague and @AstroSuni prepare for a spacewalk set to begin at 8am ET today to repair the NIC…","Jan 16, 8:53:09 AM EST"
-1879890300040343884,"Well done, @JeffBezos, and the Blue Origin team! https://t.co/wbezf3UP11","Jan 16, 8:55:48 AM EST"
-1879891414232010975,"💯 https://t.co/3zobJKuFUO","Jan 16, 9:00:14 AM EST"
-1879892605632397771,"RT @tyler: Welcome to Hotel California where you pay the highest taxes, your house burns down cause there’s no water in the hydrants, and y…","Jan 16, 9:04:58 AM EST"
-1879892669624996068,"RT @SpaceX: Launch and return are fundamental techniques for Starship’s fully and rapidly reusable design https://t.co/vrTdGkB08s","Jan 16, 9:05:13 AM EST"
-1879897217651372295,"Thanks to great work by the @xAI team and support from many others, which is much appreciated! https://t.co/b5QsONAaEX","Jan 16, 9:23:18 AM EST"
-1879899841897316515,"RT @MarioNawfal: ELON: STARSHIP EXCEEDS NASA’S REQUIREMENTS BY FAR
-
-"We've designed [Starship] to be far in excess of NASA's requirements.…","Jan 16, 9:33:43 AM EST"
-1879900220651356403,"Yes https://t.co/mS8UTcraEu","Jan 16, 9:35:14 AM EST"
-1879918479530488292,"… https://t.co/HjaOEeuWBm","Jan 16, 10:47:47 AM EST"
-1879920878424916035,"I hope this is a proper investigation https://t.co/r8dP3mAFDt","Jan 16, 10:57:19 AM EST"
-1879922170249511294,"Is there any recorded case of someone coming back from stage 5 TDS? 🤣🤣 https://t.co/TnfQmqzHl8","Jan 16, 11:02:27 AM EST"
-1879923478125818020,"Every Starship launch is one more step towards Mars https://t.co/iNdAU8h0WD","Jan 16, 11:07:39 AM EST"
-1879923994759188860,"RT @MarioNawfal: 🚨🇺🇸 GEORGIA FINES TWO DEM AFFILIATED GROUPS FOR $300K FOR ELECTION VIOLATIONS
-
-The New Georgia Project and its Action Fund…","Jan 16, 11:09:42 AM EST"
-1879924255930081392,"Unconscionable that 145 elected representatives voted AGAINST deporting illegal migrant rapists! https://t.co/UaQCw1xmrH","Jan 16, 11:10:44 AM EST"
-1879928953286033584,"And people will say this is AI 😂 https://t.co/ZCh7e3T9tJ","Jan 16, 11:29:24 AM EST"
-1879931240201252875,"The full truth is horrific https://t.co/Gsw0DYUG54","Jan 16, 11:38:29 AM EST"
-1879931320765476934,"RT @cb_doge: Starship is the world's most powerful rocket ever made. https://t.co/er7B5XcLCO","Jan 16, 11:38:48 AM EST"
-1879934826238853536,"Very sensible words from Scott Bessent https://t.co/GTD2UaPw65","Jan 16, 11:52:44 AM EST"
-1879935659261198773,"RT @Inevitablewest: 🚨BREAKING: 66% of Brits believe the officials involved with the grooming gang coverup should be jailed.
-
-The British wa…","Jan 16, 11:56:03 AM EST"
-1879936627772096849,"Wow https://t.co/tJlDlMeNGo","Jan 16, 11:59:54 AM EST"
-1879937966019342663,"Platform manipulation that degrades the experience for other users is not ok https://t.co/YE6WPuSePk","Jan 16, 12:05:13 PM EST"
-1879938111406501947,"This is a step in the right direction, but the results will speak for themselves https://t.co/qALeaAg4EG","Jan 16, 12:05:47 PM EST"
-1879938645253333171,"!! https://t.co/317i8TU5IA","Jan 16, 12:07:55 PM EST"
-1879943440865325058,"RT @JudiciaryGOP: President Biden gave his “farewell” address tonight.
-
-Let’s take a look back at his failures these past four years.
-
-A…","Jan 16, 12:26:58 PM EST"
-1879944230124286040,"RT @luismbat: After a tough car ride, I decided to build a test app with Grok+Replit to tackle motion sickness. The app has a simulated liq…","Jan 16, 12:30:06 PM EST"
-1879944634295844912,"RT @BasedMikeLee: You can’t oppose both voter ID and voter fraud
-
-If you support either, you support both","Jan 16, 12:31:43 PM EST"
-1879944789359227289,"Much appreciated! https://t.co/I7k4YYcItk","Jan 16, 12:32:20 PM EST"
-1879945057891152310,"Earth sure owes Earth a lot of money 😂 https://t.co/7X3dszAbWd","Jan 16, 12:33:24 PM EST"
-1879948518984675779,"Haha sick burn 🤣🤣 https://t.co/kpypNtU3Cu","Jan 16, 12:47:09 PM EST"
-1879948809511616903,"RT @teslaownersSV: Elon Musk on Starship
-“This is the largest flying object ever made.
-
-So, to catch it with giant robot arms and pluck it…","Jan 16, 12:48:18 PM EST"
-1879949275062497576,"Since Sam Harris now puts me in the same camp as @realDonaldTrump, he can, by his own admitted pseudo-morality, justify any half-truth or lie about me","Jan 16, 12:50:09 PM EST"
-1879949855579336931,"Step Brothers is the perfect meme for @JeffBezos & me 🤣🤣
- https://t.co/3IxOmdo0fU","Jan 16, 12:52:28 PM EST"
-1879953282698997973,"RT @JTLonsdale: Scott Bessent speaks to legends like Druckenmiller many times a week, and is one of the smartest men alive about how our ec…","Jan 16, 1:06:05 PM EST"
-1879956005922193458,"Wow, a lot has happened in 21 years! https://t.co/QNoOWuIfLP","Jan 16, 1:16:54 PM EST"
-1879958372088508428,"Actual footage of @ElonMusk & @JeffBezos at the Catalina Wine Mixer
- https://t.co/XE7VV8cCG1","Jan 16, 1:26:18 PM EST"
-1879958967956484212,"Sick burn by Bessent 🔥🔥🤣🤣 https://t.co/hGm2J8CJzh","Jan 16, 1:28:40 PM EST"
-1879960249769357757,"The New York Times is evil propaganda https://t.co/6vsGOQkFbS","Jan 16, 1:33:46 PM EST"
-1879961394835276109,"https://t.co/wzNax8fGKW","Jan 16, 1:38:19 PM EST"
-1879961748691907033,"RT @BillyM2k: yilong ma is adrian dittmann","Jan 16, 1:39:43 PM EST"
-1879992889155240320,"RT @SpaceX: T-4 hours until Starship's seventh flight test. All systems and weather are looking good
-
-Live webcast will begin ~35 minutes b…","Jan 16, 3:43:28 PM EST"
-1879993225349582908,"Starship Flight 7 launches in 2 hours
- https://t.co/fdOnVB3KhT","Jan 16, 3:44:48 PM EST"
-1879999803578544399,"https://t.co/7zOK3Xf3vT","Jan 16, 4:10:56 PM EST"
-1880003796199436665,"RT @DrPatSoonShiong: Looks like Angelina’s are taking action. Petition · Demand the Immediate Resignation of Mayor Karen Bass - Los Angeles…","Jan 16, 4:26:48 PM EST"
-1880008050712703197,"RT @BillyM2k: https://t.co/xSbIYMVsn5","Jan 16, 4:43:42 PM EST"
-1880010957696692704,"Indeed https://t.co/LxBuFCzFax","Jan 16, 4:55:15 PM EST"
-1880011320097144886,"RT @MarioNawfal: 🚨SPACEX STARSHIP FLIGHT 7 LAUNCHES TODAY!
-
-SpaceX is set to launch its 400-foot-tall Starship rocket today in about 1.5 ho…","Jan 16, 4:56:42 PM EST"
-1880017691790164463,"There is a lot of interesting technical info in the webcast. You can rewind the livecast and watch at 2X speed to catch up. https://t.co/k7YVgtwspK","Jan 16, 5:22:01 PM EST"
-1880020338152730793,"Launch in 5 minutes
- https://t.co/fdOnVB3KhT","Jan 16, 5:32:32 PM EST"
-1880024942546415624,"RT @EvaFoxU: SpaceX, congratulations on your successful booster catch! Awesome! 👏🏻👏🏻👏🏻 https://t.co/mS78cFJD1s","Jan 16, 5:50:50 PM EST"
-1880025214463144071,"We caught the rocket!! 🚀
- https://t.co/gVv34W9l2n https://t.co/o0vA3XXi8L","Jan 16, 5:51:54 PM EST"
-1880025359636394458,"https://t.co/yQal3BxWFt","Jan 16, 5:52:29 PM EST"
-1880025578398720330,"https://t.co/oKS3LG8JLH","Jan 16, 5:53:21 PM EST"
-1880040106993779123,"RT @Teslaconomics: Holy fuck, Super Heavy has been caught for the second time, go SpaceX! https://t.co/mGzs00tmlA","Jan 16, 6:51:05 PM EST"
-1880040599761596689,"Success is uncertain, but entertainment is guaranteed! ✨
- https://t.co/nn3PiP8XwG","Jan 16, 6:53:03 PM EST"
-1880041663546249251,"Improved versions of the ship & booster already waiting for launch 🚀","Jan 16, 6:57:16 PM EST"
-1880041791514435883,"RT @SpaceX: In response to the LA fires, the @Starlink team has provided 1,350 free kits to fire departments and other disaster response or…","Jan 16, 6:57:47 PM EST"
-1880048050858783097,"https://t.co/XieEruUCtd","Jan 16, 7:22:39 PM EST"
-1880048327674458353,"RT @Aloha_Aviator: @SpaceX “NASA has this phrase that they like: ‘Failure is not an option.’ But failure has to be an option in art and in…","Jan 16, 7:23:45 PM EST"
-1880052482627506178,"https://t.co/dj5eavqxgw","Jan 16, 7:40:16 PM EST"
-1880055181129445396,"RT @johnkrausphotos: https://t.co/3HSKTg2vAO","Jan 16, 7:50:59 PM EST"
-1880056080514142369,"RT @cb_doge: The most incredible footage from today's Starship flight. https://t.co/I63YOjJccP","Jan 16, 7:54:34 PM EST"
-1880056422689566756,"Entitlements fraud is >10%, maybe >20% https://t.co/ehp8lRTyBv","Jan 16, 7:55:55 PM EST"
-1880057330487988479,"RT @johnkrausphotos: Super Heavy landing burn startup https://t.co/1373b38Nai","Jan 16, 7:59:32 PM EST"
-1880057718591091148,"Starship Super Heavy Booster is already back in its launch mount","Jan 16, 8:01:04 PM EST"
-1880060983734858130,"Preliminary indication is that we had an oxygen/fuel leak in the cavity above the ship engine firewall that was large enough to build pressure in excess of the vent capacity.
-
-Apart from obviously double-checking for leaks, we will add fire suppression t","Jan 16, 8:14:03 PM EST"
-1880062737965019170,"RT @Rothmus: 🫤 https://t.co/pnzhjLuYsA","Jan 16, 8:21:01 PM EST"
-1880063488489668867,"Maybe she clicked on the “send me 1 btc, I send you 2btc” email 😂 https://t.co/mtIfZ4Cd4Z","Jan 16, 8:24:00 PM EST"
-1880063684837535879,"Thanks 🚀✨ https://t.co/pINiVT7Fpt","Jan 16, 8:24:47 PM EST"
-1880112220551647335,"Starship is the first rocket design where success in making life multiplanetary is in the set of possible outcomes https://t.co/njFvR3z3AD","Jan 16, 11:37:38 PM EST"
-1880113428670578999,"RT @SpaceX: Mechazilla has caught the Super Heavy booster! https://t.co/aq91TloYzY","Jan 16, 11:42:26 PM EST"
-1880114193078350193,"Slavery was almost everywhere and still exists in some parts of the world https://t.co/mcOXt6tqVs","Jan 16, 11:45:29 PM EST"
-1880114845389062155,"RT @Rothmus: 🎯🎯🎯 https://t.co/H66n0m7N7A","Jan 16, 11:48:04 PM EST"
-1880114873893531870,"RT @cb_doge: All 7 Starship Launches https://t.co/T4bjKeCHKJ","Jan 16, 11:48:11 PM EST"
-1880115187568763158,"RT @Rothmus: 💯 https://t.co/GpjyTltnCz","Jan 16, 11:49:26 PM EST"
-1880118391618564508,"Wow https://t.co/5bEa5cFC30","Jan 17, 12:02:10 AM EST"
-1880119630804709845,"Wow https://t.co/SUUdA8dMQI","Jan 17, 12:07:05 AM EST"
-1880120374702272764,"Atmospheric reentry speed is more than twice as fast as a bullet from an assault rifle and this is the largest flying object ever made https://t.co/QmyUbeMNQ8","Jan 17, 12:10:02 AM EST"
-1880122011948839203,"A common story https://t.co/srhYKudPY3","Jan 17, 12:16:33 AM EST"
-1880122213980082210,"Wow https://t.co/Axv7nGY7BF","Jan 17, 12:17:21 AM EST"
-1880125087627768216,"RT @ElonClipsX: Morgan Freeman: What Elon Musk has done, nobody else has ever done.
-
-“I'm a huge fan of Elon Musk.I think he's got the most…","Jan 17, 12:28:46 AM EST"
-1880125212454449500,"RT @MarioNawfal: ELON: WE CAN BUILD A CITY ON MARS AND BE A MULTI-PLANET SPECIES... IT'S VERY EXCITING!
-
-“It's wild that this giant 250-ton…","Jan 17, 12:29:16 AM EST"
-1880125355870376063,"RT @teslaownersSV: Monday 🇺🇸 gets back on Track to become Great again. https://t.co/lrZQqw1aOe","Jan 17, 12:29:50 AM EST"
-1880125404700373447,"RT @mayemusk: True!","Jan 17, 12:30:02 AM EST"
-1880130226770035110,"RT @SawyerMerritt: I slowed down today’s @SpaceX booster catch, zoomed in a little, added some badass music, and a few other touches. Wow,…","Jan 17, 12:49:11 AM EST"
-1880130514566410724,"RT @teslaownersSV: BREAKING: 𝕏 is the #1 app for over 140 countries.
-
-No other media or platform has the reach of 𝕏. https://t.co/GxK4yG8H…","Jan 17, 12:50:20 AM EST"
-1880130887326789894,"RT @teslaownersSV: Starship exploding captured on an airplane https://t.co/Y5maQrfmPG","Jan 17, 12:51:49 AM EST"
-1880133490118906125,"You can see the much higher propellant mass fraction of the new ship design by the percentage of rocket that is frosty
- https://t.co/uzhDOc38mV","Jan 17, 1:02:09 AM EST"
-1880137479128510967,"Now @DOGE will do this with government https://t.co/Y6mawoKOx4","Jan 17, 1:18:00 AM EST"
-1880148743204532679,"A 12-year-old script kiddie could hack into Yellen’s computer. I doubt she knows how to reboot her WiFi router. https://t.co/4Bv0P9NKaK","Jan 17, 2:02:46 AM EST"
-1880149311826371017,"It’s harder than it looks https://t.co/2KFcVkUC8o","Jan 17, 2:05:02 AM EST"
-1880152918894211171,"Yup https://t.co/GwQV2rMhLh","Jan 17, 2:19:22 AM EST"
-1880153156598001879,"RT @SawyerMerritt: NEWS: EVs accounted for 89% of all new passenger car sales in Norway in 2024, up from 82% in 2023.
-
-@Tesla's Model Y was…","Jan 17, 2:20:18 AM EST"
-1880162305733976105,"We’ve come a long way https://t.co/LAKesdMyeD","Jan 17, 2:56:40 AM EST"
-1880162891283984417,"To reiterate, the legacy news headlines are false. This fire has nothing to do with Tesla and our Megapacks are operating well. https://t.co/4gxa2AKIa8","Jan 17, 2:58:59 AM EST"
-1880162969230918100,"Yes https://t.co/rjfvgtVEJu","Jan 17, 2:59:18 AM EST"
-1880163084926611942,"RT @MarioNawfal: ELON: STARSHIP 7 TEST ISSUES WERE BARELY A BUMP IN THE ROAD
-
-“The booster flight was a success, the ship flight was 1/4 su…","Jan 17, 2:59:45 AM EST"
-1880163649735782532,"RT @Teslaconomics: NEWS: Starlink has provided 1,350 free kits to fire departments and other disaster response organizations for the LA fir…","Jan 17, 3:02:00 AM EST"
-1880285306353754575,"Major and immediate action is needed to prevent America from going bankrupt https://t.co/stNT8b84aY","Jan 17, 11:05:25 AM EST"
-1880285408967450778,"RT @SpaceX: Liftoff of Starship's seventh flight test. The Super Heavy booster utilized flight proven hardware for the first time, reusing…","Jan 17, 11:05:50 AM EST"
-1880286106769600597,"RT @Tesla: https://t.co/PJztVyJkHO","Jan 17, 11:08:36 AM EST"
-1880338254177923562,"33 Raptor engines with enough thrust to lift a skyscraper off its foundations https://t.co/qnpXJIwbZd","Jan 17, 2:35:49 PM EST"
-1880341792840905101,"Amazing! https://t.co/3QaYmw1YB3","Jan 17, 2:49:53 PM EST"
-1880371296346992925,"RT @SawyerMerritt: Cumulative global battery energy storage capacity, in gigawatts. https://t.co/pMbieDfDoN","Jan 17, 4:47:07 PM EST"
-1880383923039137988,"The mayor of LA prioritizes politics over helping people … https://t.co/BUQOCr7r9y","Jan 17, 5:37:17 PM EST"
-1880388456955932894,"Starlink now available in 120 countries https://t.co/02cHiHrslu","Jan 17, 5:55:18 PM EST"
-1880390913744392693,"RT @johnkrausphotos: https://t.co/swMmMUSCIS","Jan 17, 6:05:04 PM EST"
-1880467845324423291,"Try our underground tunnels in Vegas. Way better than being stuck in surface traffic! https://t.co/e9R8N5lqe5","Jan 17, 11:10:46 PM EST"
-1880469184603431196,"It’s uncanny https://t.co/ZIkCQJ8OSq","Jan 17, 11:16:05 PM EST"
-1880482206961004970,"RT @EricAbbenante: Blistering ending monologue from Bill Maher as he torches LA Mayor Karen Bass 'Nero who fiddled in Ghana as LA burns':
-"…","Jan 18, 12:07:50 AM EST"
-1880482929681522854,"RT @EricAbbenante: Bill Maher admits Trump was right about forest management and prevention of fires:
-Bill Maher: "Remember when we had a f…","Jan 18, 12:10:42 AM EST"
-1880520982928191577,"RT @cb_doge: ELON MUSK: "We want to make Starfleet Academy real. Let's go out there and visit other star systems and see if there are alien…","Jan 18, 2:41:55 AM EST"
-1880530086241399093,"Wow! https://t.co/uD0UPYQypp","Jan 18, 3:18:05 AM EST"
-1880530625612095928,"RT @Rainmaker1973: When you're on a plane and accidentally catch a Falcon 9 lifoff.
-
-[📹 chefpinkpr]
-https://t.co/YJUb1xdIK9","Jan 18, 3:20:14 AM EST"
-1880531066018230367,"RT @naval: Virtues are the rules that, if widely adopted by individuals, lead to win-win outcomes for all of society.","Jan 18, 3:21:59 AM EST"
-1880532052564664517,"Yup https://t.co/hWQlCseWyM","Jan 18, 3:25:54 AM EST"
-1880533178785624261,"RT @HSajwanization: From now on, I’ll be limiting interactions with only Verified accounts. Please subscribe to 𝕏 Premium and support this…","Jan 18, 3:30:23 AM EST"
-1880533887677616613,"RT @teslaownersSV: Elon Musk is essentially part of the Trump family or as we call him the First Buddy
- https://t.co/kbRmc7WZXN","Jan 18, 3:33:12 AM EST"
-1880534733601567202,"She needs to go https://t.co/hfxpexG4iH","Jan 18, 3:36:33 AM EST"
-1880536003494162775,"This is real https://t.co/G3Z09Os1AF","Jan 18, 3:41:36 AM EST"
-1880536477446336594,"If we stop having baby humans, there will be no more humanity https://t.co/2MCZpCFYzu","Jan 18, 3:43:29 AM EST"
-1880536914690036015,"From MAGA to MEGA:
-
-Make Europe Great Again!","Jan 18, 3:45:13 AM EST"
-1880540758681456740,"RT @iam_smx: When Elon Musk was gifted a cool jacket by Space force.
-
-"I am wearing this jacket that was given to me by the Space Force it’…","Jan 18, 4:00:30 AM EST"
-1880642215036465316,"So many people in Europe lack hope for the future or think Europe is “bad” in some way.
-
-Pervasive pessimism.
-
-This will lead to the end of Europe.
-
-Therefore, it must change. https://t.co/8eTd1JA5pf","Jan 18, 10:43:39 AM EST"
-1880642429558354171,"💯 https://t.co/aPuLYkrrTW","Jan 18, 10:44:30 AM EST"
-1880644841048281385,"The bs below is what normally happens. Not this time. https://t.co/uslX2PlfGj","Jan 18, 10:54:05 AM EST"
-1880649820345684419,"RT @TheFP: EXCLUSIVE: @SpeakerJohnson tells @BariWeiss that President Biden hasn’t been in charge for a while.
-
-In January 2024, when Johns…","Jan 18, 11:13:52 AM EST"
-1880657793663070619,"RT @EvaVlaar: I am European. And I am proud.
-
-We have to reject the lies we are being told about who we were, who we are and who we should…","Jan 18, 11:45:33 AM EST"
-1880658424452833383,"https://t.co/Zp36huUDvC","Jan 18, 11:48:03 AM EST"
-1880663737092432217,"33 -> 13 -> 3
-
-It will be very difficult to get Raptor to 300 tons of thrust, but … not impossible https://t.co/DSxRPv3CaF","Jan 18, 12:09:10 PM EST"
-1880665163990515951,"RT @SpaceX: The second successful catch of the Super Heavy booster https://t.co/FanOyDoE8Z","Jan 18, 12:14:50 PM EST"
-1880665436184019210,"Slow motion catch of the most massive flying object ever made
- https://t.co/HQh3ojOdwl","Jan 18, 12:15:55 PM EST"
-1880673359400428007,"They are importing voters https://t.co/1VNntrRMjI","Jan 18, 12:47:24 PM EST"
-1880674586486067387,"As I said a few years ago, Biden was not in charge. Whoever controlled his teleprompter was. https://t.co/kzwQpWlzx8","Jan 18, 12:52:17 PM EST"
-1880675249093775585,"RT @Scobleizer: I did 35 videos at CES.
-
-The most mind blowing was #9 and the most important for the future is #29.
-
-But this is just a v…","Jan 18, 12:54:55 PM EST"
-1880675321713995962,"RT @PeterSweden7: Raise your hand if you want to Make Europe Great Again 💪","Jan 18, 12:55:12 PM EST"
-1880682181456183473,"RT @markpinc: I didnt get a chance to share on @theallinpod how sad it is to hear from so many friends, fellow school parents and even stra…","Jan 18, 1:22:28 PM EST"
-1880683007398617520,"I lost my last bit of respect for Obama when he repeated the “fine people” hoax in a speech right before the election https://t.co/LKN9NE4FlV","Jan 18, 1:25:45 PM EST"
-1880684277337407764,"RT @billmaher: We may not be able to do much about the weather, but we do need a better plan for putting out a burning city than waiting fo…","Jan 18, 1:30:47 PM EST"
-1880726752298983915,"RT @adb1146: Wow. Wow. My #Tesla #HW4 #FSD v13.2.2 just reversed out of my driveway. Drove me across town and wait for it into the pharmac…","Jan 18, 4:19:34 PM EST"
-1880727984354758841,"💯 https://t.co/z7t1iQQhVb","Jan 18, 4:24:28 PM EST"
-1880728655309242544,"https://t.co/D0ZZWfvvw6","Jan 18, 4:27:08 PM EST"
-1880731631058907325,"RT @cb_doge: MEGA 🇪🇺
-
-MAKE EUROPE GREAT AGAIN
-
- https://t.co/BvzpAs5iXu","Jan 18, 4:38:57 PM EST"
-1880734361009750371,"RT @Starlink: When you walk onto a plane with Starlink, the internet just works 🛰️❤️✈️","Jan 18, 4:49:48 PM EST"
-1880816299686977569,"Good idea https://t.co/EkjMq1HsPb","Jan 18, 10:15:24 PM EST"
-1880828020610715739,"Nice shot https://t.co/7CKSFntTNn","Jan 18, 11:01:58 PM EST"
-1880854417366491452,"https://t.co/H1ChWWQx0r","Jan 19, 12:46:52 AM EST"
-1880857825569869992,"RT @Tesla: Supervised robot cars
-
-All yours
-
-https://t.co/7Ol1BvJW8G","Jan 19, 1:00:24 AM EST"
-1880961586921390521,"RT @ElonClipsX: Elon Musk: We're living in the most interesting time in history.
-
-“Sometimes, it's easy to get down about some day-to-day e…","Jan 19, 7:52:43 AM EST"
-1880962276565606750,"True https://t.co/z0pmGO0zgS","Jan 19, 7:55:27 AM EST"
-1880967347235881054,"British justice is broken https://t.co/wXjM9zdx9U","Jan 19, 8:15:36 AM EST"
-1880967609686122824,"Always look on the bright side of life!
-
-We live on the most interesting timeline. https://t.co/sFZgXBIQgX","Jan 19, 8:16:39 AM EST"
-1880968773005422923,"Starship is the first ever rocket design capable of making life multiplanetary.
-
-Becoming multiplanetary is a milestone that, if achieved, would fit in the top 10 biggest events in the evolution of life.
-
-And it would greatly extend the lifespan of civil","Jan 19, 8:21:16 AM EST"
-1880970784883302761,"RT @Fidias0: Why Politicians Don’t Innovate https://t.co/ULMEzwLduX","Jan 19, 8:29:16 AM EST"
-1880971189809828226,"RT @teslaownersSV: Do yourself a favor and delete the news app in your phone.
-
-𝕏 is the only honest and reliable source for news.
-
-𝕏 is t…","Jan 19, 8:30:53 AM EST"
-1880971301160140800,"RT @DefiantLs: This will never be not funny. https://t.co/aOD639CVnO","Jan 19, 8:31:19 AM EST"
-1880972545157214472,"Amo a @JMilei https://t.co/Plb05jPvcS","Jan 19, 8:36:16 AM EST"
-1880973122100494404,"The vibe shift is real 😂 https://t.co/DjH5LRsL8N","Jan 19, 8:38:33 AM EST"
-1880973232368718230,"11 years ago https://t.co/BMEbDOnvpm","Jan 19, 8:39:00 AM EST"
-1880973654756049366,"RT @WholeMarsBlog: *SBF steals money from people and donates it to Democrats*
-
-Democrats: Thank you Mr. Billionaire!
-
-*Silicon Valley start…","Jan 19, 8:40:40 AM EST"
-1880974092771459101,"It’s way better just to talk to the public directly than go through the negativity filter of legacy media https://t.co/QYDJXWAC5r","Jan 19, 8:42:25 AM EST"
-1880975630646612254,"I have been against a TikTok ban for a long time, because it goes against freedom of speech.
-
-That said, the current situation where TikTok is allowed to operate in America, but 𝕏 is not allowed to operate in China is unbalanced.
-
-Something needs to ch","Jan 19, 8:48:31 AM EST"
-1881047368440877508,"RT @jgebbia: I have a confession to make:
-
-I did a bad thing.
-
-Something the younger me
-
-Would hate myself for doing.
-
-Something that only…","Jan 19, 1:33:35 PM EST"
-1881050312708137132,"Post your own material.
-
-Authenticity is far better than fake “perfection”. https://t.co/7UuZeQZa4w","Jan 19, 1:45:17 PM EST"
-1881052891370361098,"Yes https://t.co/NwCAPMr9ia","Jan 19, 1:55:32 PM EST"
-1881071635547267280,"RT @johnkrausphotos: Starship's Super Heavy booster is 232 feet tall — three feet taller than an entire Falcon 9.
-
-After launch, it returns…","Jan 19, 3:10:01 PM EST"
-1881072894501134434,"It is because you are the media now.
-
-Legacy media is too slow & too biased. https://t.co/WuuHUAIQxZ","Jan 19, 3:15:01 PM EST"
-1881075557993165260,"Mars is The New World https://t.co/MwEFDuoBWb","Jan 19, 3:25:36 PM EST"
-1881080894926262743,"https://t.co/FSuqvC4do6","Jan 19, 3:46:48 PM EST"
-1881092558648197511,"RT @teslaownersSV: Starship is by far the most powerful flying object ever made.
-
-Each Raptor rocket engine produces twice as much thrust…","Jan 19, 4:33:09 PM EST"
-1881129811386790319,"RT @cb_doge: 🇺🇸 President Trump and Elon Musk. 🇺🇸 https://t.co/qw9wObg4LY","Jan 19, 7:01:11 PM EST"
-1881130003083210990,"RT @MarioNawfal: 🚨🇺🇸 BREAKING: TRUMP BRINGS ELON ON STAGE, CROWD GOES WILD
-
-Elon:
-
-“Thank you Mr. President!
-
-Little X just followed me on…","Jan 19, 7:01:57 PM EST"
-1881131026371444901,"Can’t believe it’s been so long 😂 https://t.co/4ohOEeYWXb","Jan 19, 7:06:01 PM EST"
-1881131140658143520,"RT @DimaZeniuk: “We are looking forward to making a lot of changes and this victory is the start.”
-
-— Elon Musk today https://t.co/MHGFQ97g…","Jan 19, 7:06:28 PM EST"
-1881131447433736517,"RT @teslaownersSV: Did the starship booster really get caught? https://t.co/o4xAkwtosy","Jan 19, 7:07:41 PM EST"
-1881132116400017682,"Guess I’ve liked space, computer programming & video games for a long time 😂 https://t.co/0jncdq3FB2","Jan 19, 7:10:20 PM EST"
-1881132324403982468,"RT @EndWokeness: Declassification is coming. DC, buckle up. https://t.co/aYMhMQTHCw","Jan 19, 7:11:10 PM EST"
-1881135439387734351,"😎 https://t.co/30BsehQpNC","Jan 19, 7:23:33 PM EST"
-1881138083028181281,"RT @teslaownersSV: Elon Musk: What should I do?
-
-𝕏: Save 🇺🇸 and help Trump.
-
-2025 is gonna be lit
- https://t.co/qfWlfXLRcJ","Jan 19, 7:34:03 PM EST"
-1881139424391762133,"RT @teslaownersSV: "It was love at first sight for me & computers tbh"
-
-Elon Musk https://t.co/xZWitLNhiR","Jan 19, 7:39:23 PM EST"
-1881139944502227001,"RT @cb_doge: MAKE AMERICA FUN AGAIN 🇺🇸 https://t.co/MLdPHzlJFM","Jan 19, 7:41:27 PM EST"
-1881211841822802254,"RT @pmarca: https://t.co/4s1MOgKQgC","Jan 20, 12:27:08 AM EST"
-1881214789407637879,"Some good points here https://t.co/S08LdVLOsH","Jan 20, 12:38:51 AM EST"
-1881224922221150403,"RT @MarioNawfal: ELON: I’M AGAINST GLOBALIST POWER
-
-“I'm against globalist power.
-
-The UN should not have a lot of power.
-
-Who voted for…","Jan 20, 1:19:07 AM EST"
-1881225922730492341,"RT @yacineMTB: man this site is crazy good right now. Like the whole world is posting their hardest","Jan 20, 1:23:06 AM EST"
-1881226020986274279,"🔥🔥 https://t.co/TEYQOB43lQ","Jan 20, 1:23:29 AM EST"
-1881232650398319066,"RT @DefiyantlyFree: https://t.co/Bkkl0PMDCV","Jan 20, 1:49:50 AM EST"
-1881314118436814942,"RT @tim_cook: Dr. King once said, "Everybody can be great, because everybody can serve." True greatness lies in lifting others, making a di…","Jan 20, 7:13:33 AM EST"
-1881402495479767322,"https://t.co/OYWg7gPlQB","Jan 20, 1:04:44 PM EST"
-1881414797377626532,"RT @POTUS: AMERICA IS BACK. 🇺🇸
-
-Every single day I will be fighting for you with every breath in my body. I will not rest until we have del…","Jan 20, 1:53:37 PM EST"
-1881415565065224194,"🇺🇸🇺🇸 YES! 😎 🇺🇸🇺🇸 https://t.co/3JYxxyicMa","Jan 20, 1:56:40 PM EST"
-1881416718201094254,"The Return of the King https://t.co/CjaRrXH7k9","Jan 20, 2:01:15 PM EST"
-1881417656190001350,"RT @thatsKAIZEN: Trump said we’re going to Mars.
-
-He said God.
-
-He said there are two genders.
-
-He said merit.
-
-He said we will defeat our…","Jan 20, 2:04:58 PM EST"
-1881419178516832441,"🇺🇸🇺🇸 AMERICA IS GOING TO MARS 🇺🇸🇺🇸
-
- https://t.co/Jfvi43YWse","Jan 20, 2:11:01 PM EST"
-1881426874930515995,"https://t.co/ZUnFUgLTUP","Jan 20, 2:41:36 PM EST"
-1881438950218510700,"https://t.co/hH6i7xYy60","Jan 20, 3:29:35 PM EST"
-1881439156385226965,"The future is so exciting!! https://t.co/TjuDeRNaul","Jan 20, 3:30:24 PM EST"
-1881442880264540556,"RT @SawyerMerritt: Elon Musk: "We're gonna take DOGE to Mars! Can you imagine how awesome it will be to have American astronauts plant the…","Jan 20, 3:45:12 PM EST"
-1881443135349530888,"RT @sundarpichai: Congratulations to @POTUS Donald Trump and @VP JD Vance on your inauguration. We look forward to working with you to ushe…","Jan 20, 3:46:13 PM EST"
-1881443311006961811,"RT @BrianRoemmele: “The flag Bam, Bam for the first time on Mars!”—Mr @elonmusk
-
-Godspeed Elon.
-
-Godspeed America. https://t.co/dIXTdrW9…","Jan 20, 3:46:55 PM EST"
-1881450877371977910,"RT @america: Elon Musk speaking ahead of President Donald Trump: “It is thanks to you that the future of civilization is assured. We're goi…","Jan 20, 4:16:59 PM EST"
-1881451110944395576,"RT @DavidSacks: Gm in America again ☀️💪🇺🇸","Jan 20, 4:17:55 PM EST"
-1881451591687131188,"RT @StephenM: All illegal aliens seeking entry into the United States should turn back now. Anyone entering the United States without autho…","Jan 20, 4:19:49 PM EST"
-1881451761434784037,"RT @chamath: If you weren’t sure who the Deep State were, they all got pardoned today.","Jan 20, 4:20:30 PM EST"
-1881459290969702612,"RT @JTLonsdale: I’ve been looking forward to this week. I invested time, money, and reputation convincing powerful friends of the dangers a…","Jan 20, 4:50:25 PM EST"
-1881464022136221769,"Best inaugural address ever! https://t.co/GmrxfYaiQ0","Jan 20, 5:09:13 PM EST"
-1881464340236378402,"Yes! https://t.co/9wisRCYLdw","Jan 20, 5:10:29 PM EST"
-1881506481847390408,"It begins https://t.co/Uh9lyb3lp8","Jan 20, 7:57:56 PM EST"
-1881513272802935288,"RT @KanekoaTheGreat: BREAKING: President Trump signs executive order pardoning approximately 1,500 January 6th protestors.
-
-https://t.co/sH…","Jan 20, 8:24:55 PM EST"
-1881517134720782488,"Yes! https://t.co/GMnqqC5RfZ","Jan 20, 8:40:16 PM EST"
-1881517448056467775,"😂💯 https://t.co/yhnMtP10Pk","Jan 20, 8:41:31 PM EST"
-1881519266207617422,"RT @C__Herridge: President Trump takes aim at the security clearances of 51 former intelligence officials who signed a statement before the…","Jan 20, 8:48:44 PM EST"
-1881522438531670271,"The hammer of justice has come https://t.co/VnekAC0fwI","Jan 20, 9:01:20 PM EST"
-1881523717731443187,"Testing Grok 3 int4 inference https://t.co/PkKuA1ZpF1","Jan 20, 9:06:25 PM EST"
-1881524774003941702,"Definitely highly unusual behavior of a “dictator” 🤣 🤣 https://t.co/p54uy8esZh","Jan 20, 9:10:37 PM EST"
-1881525808822702385,"Restoring American sovereignty over health! https://t.co/6XRbuJk6ks","Jan 20, 9:14:44 PM EST"
-1881526317700837436,"RT @JohnnaCrider1: When I first bought my Starlink, I never anticipated having to use the snow melt feature.
-
-I’m in Baton Rouge and we nor…","Jan 20, 9:16:45 PM EST"
-1881529142145097949,"Getting so much done in the first 12 hours! https://t.co/X42oFk9uKV","Jan 20, 9:27:59 PM EST"
-1881529880439071119,"That’s a good question. What crimes did Fauci commit starting in 2014?
-
-(Not counting his many crimes before that) https://t.co/uoGIYuoeGU","Jan 20, 9:30:55 PM EST"
-1881530361114702224,"Seriously 🥱 https://t.co/65jKhyLmrR","Jan 20, 9:32:49 PM EST"
-1881530884257644826,"RT @AutismCapital: 🚨NEW: Elon Musk speaks at the Presidential Parade. "We are going to plant an American flag on MARS. GET EXCITED! Be opti…","Jan 20, 9:34:54 PM EST"
-1881534217034899686,"RT @JeffBezos: The peaceful transfer of power is a hallmark of America, and it’s been an honor to witness it up close. Congratulations to P…","Jan 20, 9:48:09 PM EST"
-1881535685490036858,"𝕏 is the best source of news on Earth https://t.co/4B5sOMHKwx","Jan 20, 9:53:59 PM EST"
-1881535870400131160,"RT @teslaownersSV: "We're gonna take @DOGE to Mars!
-
-Can you imagine how awesome it will be to have 🇺🇸 astronauts plant the flag on anothe…","Jan 20, 9:54:43 PM EST"
-1881536518206218445,"Frankly, they need better dirty tricks.
-
-The “everyone is Hitler” attack is sooo tired 😴 https://t.co/9fIqS5mWA0","Jan 20, 9:57:17 PM EST"
-1881537249290199466,"RT @kimbal: The entrenched interests run deep. They will throw everything they can at Elon to stop change.
-
-It won’t work. But it’s going…","Jan 20, 10:00:12 PM EST"
-1881538283106164982,"RT @WesternLensman: 🚨 Scott Jennings methodically explains to CNN panel that America finally has a real President again:
-
-"I'm just struck…","Jan 20, 10:04:18 PM EST"
-1881539057882427631,"Incredible action within the first 12 hours! https://t.co/zoPAkmn7Nz","Jan 20, 10:07:23 PM EST"
-1881539632183271676,"That’s what is really gutting them https://t.co/0UE2JynOf5","Jan 20, 10:09:40 PM EST"
-1881540504455680103,"“Gulf of America” has a beautiful ring to it https://t.co/ytZeeYtfYl","Jan 20, 10:13:08 PM EST"
-1881540767287775523,"So true 😂 https://t.co/WIEIqdz9mL","Jan 20, 10:14:10 PM EST"
-1881544359272960471,"RT @MarioNawfal: 🚨🇺🇸 TRUMP DIRECTS REVAMP OF FEDERAL ARCHITECTURE
-
-Trump has ordered a review of federal public buildings to emphasize clas…","Jan 20, 10:28:27 PM EST"
-1881544455041560846,"RT @ElonClipsX: Elon Musk: We'll drain many swamps and be very transparent about it.
-
-“We're going to be very open and transparent and be v…","Jan 20, 10:28:50 PM EST"
-1881547272556777647,"My talk today at the Presidential Parade
- https://t.co/qCAxYQb7LN","Jan 20, 10:40:01 PM EST"
-1881549902418985458,"Calling a halt to the strangulation by overregulation of America https://t.co/NFA5wFYENa","Jan 20, 10:50:28 PM EST"
-1881549931569451254,"RT @AutismCapital: 🚨BREAKING: Trump and Melania's Inaugural Ball First Dance https://t.co/bd8RzPEAGp","Jan 20, 10:50:35 PM EST"
-1881552286905966636,"RT @MrAndyNgo: Breaking: Donald Trump signed a “PUTTING PEOPLE OVER FISH” directive to restart his efforts from
-his first administration to…","Jan 20, 10:59:57 PM EST"
-1881552780772729062,"RT @SpeakerJohnson: It’s official. America’s Golden Age has arrived. https://t.co/K4K7Er0kVN","Jan 20, 11:01:55 PM EST"
-1881553997603172621,"RT @addicted2newz: 'Britain sacrificed thousands of its own children on the altar of multiculturalism'
-
-@benshapiro calls for Keir Starmer…","Jan 20, 11:06:45 PM EST"
-1881554160623186364,"RT @ElonClipsX: Elon Musk: It was outrageous that Twitter suspended the account of a sitting president.
-
-“The reason I felt it was importan…","Jan 20, 11:07:24 PM EST"
-1881554621493359096,"Please let us know if you encounter any difficulties with release of your loved ones https://t.co/GRAw2qcVnG","Jan 20, 11:09:14 PM EST"
-1881555411662442699,"There will be meaningful progress every week https://t.co/WV8Gl7eswg","Jan 20, 11:12:22 PM EST"
-1881556075784425900,"RT @PaulIngrassia: BREAKING: First January 6th political prisoners to be released after President Trump’s pardon: brothers Matthew and Andr…","Jan 20, 11:15:00 PM EST"
-1881560564394275090,"Yes https://t.co/9CKSTKJWeJ","Jan 20, 11:32:50 PM EST"
-1881562371392749654,"Legit https://t.co/Z8TacZUlDF","Jan 20, 11:40:01 PM EST"
-1881565048050794589,"True https://t.co/CcxDrulX5z","Jan 20, 11:50:39 PM EST"
-1881568612047339650,"RT @TeslaBoomerMama: The best speech. Ever.","Jan 21, 12:04:49 AM EST"
-1881568681773445223,"RT @ElonClipsX: Here are Elon Musk's full remarks at the Presidential Parade a few minutes ago.
-
-“This is what victory feels like!
-
-And th…","Jan 21, 12:05:06 AM EST"
-1881572397826072670,"RT @GoodwinMJ: Imagine waking up in Britain and reading this, which is the equivalent of what Trump is doing on Day 1:
-
--a national border…","Jan 21, 12:19:52 AM EST"
-1881703050659954789,"Incredible productivity https://t.co/Qj8zDU6P4X","Jan 21, 8:59:02 AM EST"
-1881703511806881988,"Not even one government building was found to be even half occupied! That is crazy. https://t.co/niL87udKif","Jan 21, 9:00:52 AM EST"
-1881705898407764084,"This is about fairness: it’s not fair that most people have to come to work to build products or provide services while Federal Government employees get to stay home https://t.co/8jXrv2zwmI","Jan 21, 9:10:21 AM EST"
-1881707101950738458,"And some government buildings, including in DC, have been taken over by squatters, while taxpayers continue to pay for the upkeep! https://t.co/f9OZeuUlWm","Jan 21, 9:15:08 AM EST"
-1881707490762731984,"Shame on Oaf Schitz! https://t.co/xtdW8D6FTo","Jan 21, 9:16:40 AM EST"
-1881709076423627043,"RT @MarioNawfal: 🇦🇷🇺🇸MILEI: WE'VE CUT 900+ REGULATIONS AND OFFERED TO HELP TRUMP AND ELON DO THE SAME
-
-"Today we have already eliminated mo…","Jan 21, 9:22:58 AM EST"
-1881710161729032195,"Yes! https://t.co/EBGZjZ8C5N","Jan 21, 9:27:17 AM EST"
-1881711470561665304,"Undermining the US military and border security to spend money on racist/sexist DEI nonsense is no longer acceptable https://t.co/IPoDv5odP8","Jan 21, 9:32:29 AM EST"
-1881711703504875596,"Can someone start a lawsuit counter?
-
-How long until we hit triple digits? 🤣🤣 https://t.co/SN7XzwNBGO","Jan 21, 9:33:25 AM EST"
-1881712158477807776,"MEGA, MEGA, MEGA!!!
-
-Back to common sense. https://t.co/10OhMDXJGM","Jan 21, 9:35:13 AM EST"
-1881714960524529890,"Pretending to work while taking money from taxpayers is no longer acceptable https://t.co/EEqGmPVkrw","Jan 21, 9:46:21 AM EST"
-1881725684273524793,"😘 https://t.co/58Qn1pgxNn","Jan 21, 10:28:58 AM EST"
-1881727381489987949,"https://t.co/hVN3UOad8a","Jan 21, 10:35:43 AM EST"
-1881728436852695188,"RT @PM_ViktorOrban: The executive orders signed by President @realDonaldTrump will transform not only the US, but the entire world. The reb…","Jan 21, 10:39:54 AM EST"
-1881744946820174003,"Stupidity in the limit is indistinguishable from malice https://t.co/8MeYJWeLka","Jan 21, 11:45:31 AM EST"
-1881745361716543603,"Indeed https://t.co/XJ0p6lLbd9","Jan 21, 11:47:10 AM EST"
-1881746484229763524,"The legacy media is pure propaganda.
-
-You are the media now. https://t.co/lgkIbzcAZP","Jan 21, 11:51:37 AM EST"
-1881746587430641834,"RT @RubinReport: What’s fascinating right now is how the intellectual Left has been absolutely demolished.
-
-The sane liberals are now Trum…","Jan 21, 11:52:02 AM EST"
-1881747191234166971,"RT @POTUS: Our armed forces will be free to focus on their sole mission—DEFEATING AMERICA'S ENEMIES. https://t.co/1cGdS7tQk7","Jan 21, 11:54:26 AM EST"
-1881747671867859232,"The Falcon has landed 400 times https://t.co/5UC7EtH6So","Jan 21, 11:56:20 AM EST"
-1881751656804782464,"🎯 https://t.co/NahjkfvVEe","Jan 21, 12:12:10 PM EST"
-1881752812276891674,"Since legacy media propaganda is considered a “valid” source by Wikipedia, it naturally simply becomes an extension of legacy media propaganda! https://t.co/lwQlM51FRX","Jan 21, 12:16:46 PM EST"
-1881752947379642825,"Defund Wikipedia until balance is restored! https://t.co/CIszNP5Pvc","Jan 21, 12:17:18 PM EST"
-1881756372272054551,"The numbers are crystal clear https://t.co/usrWApr0ax","Jan 21, 12:30:55 PM EST"
-1881760015725523053,"We should expand consciousness to the stars, so that we may better understand the wonders of creation!","Jan 21, 12:45:23 PM EST"
-1881767465560219908,"Good trend https://t.co/hcfXzVKNNd","Jan 21, 1:14:59 PM EST"
-1881767794636906759,"RT @dogeofficialceo: Dawn
-Of
-Golden
-Era","Jan 21, 1:16:18 PM EST"
-1881875468955374019,"RT @DonaldJTrumpJr: Promises made… MORE promises kept!
-🇺🇸🇺🇸🇺🇸 Ross is free! https://t.co/fbAgT7YsqM","Jan 21, 8:24:10 PM EST"
-1881875725198020630,"Staging is so hot rn https://t.co/7A0fd4EkO5","Jan 21, 8:25:11 PM EST"
-1881921201108636148,"RT @TheRabbitHole84: For whatever reason, the Federal Aviation Administration (FAA) had DEI programs.
-
-Those programs were just ordered to…","Jan 21, 11:25:53 PM EST"
-1881922997755469915,"Massive https://t.co/g0d540w2bo","Jan 21, 11:33:01 PM EST"
-1881923648531108147,"RT @LeaderJohnThune: We can do this the easy way or the hard way.","Jan 21, 11:35:36 PM EST"
-1881924748717982070,"Haha this is amazing 🤣🤣 https://t.co/GdZMss555L","Jan 21, 11:39:59 PM EST"
-1881925970950856916,"RT @WholeMarsBlog: My god. Not her too https://t.co/qQpVGpBA2H","Jan 21, 11:44:50 PM EST"
-1881926117264863641,"RT @EndWokeness: Does this mean Swifties = HitIer youth? https://t.co/rfCZVdltT1","Jan 21, 11:45:25 PM EST"
-1881927114339086789,"RT @charliekirk11: President Trump just removed affirmative action from the federal government hiring practices
-
-This reverses LBJ’s execut…","Jan 21, 11:49:23 PM EST"
-1881928371179020516,"I was honored to be in the Oval Office tonight when @POTUS signed this https://t.co/QeRn8XFqOj","Jan 21, 11:54:22 PM EST"
-1881931858075861411,"RT @SpaceX: Falcon 9 lifts off from pad 4E in California ahead of completing the 400th landing of an orbital class rocket and delivering 27…","Jan 22, 12:08:14 AM EST"
-1881939043354833408,"RT @ElonClipsX: Elon Musk: One platform can change everything.
-
-“As soon as any company steps out of line and is willing to actually have t…","Jan 22, 12:36:47 AM EST"
-1881939434943471891,"Almost 5 billion text impressions and now approaching 700 million video views! https://t.co/FWxRg710at","Jan 22, 12:38:20 AM EST"
-1881940047009906915,"😂 https://t.co/FROuLjyncR","Jan 22, 12:40:46 AM EST"
-1881942267931627660,"RT @SeibtNaomi: MEGA 🇺🇸❤️🇩🇪
-
-2025 I aim to end the German legacy media by inspiring everyone to get their news from 𝕏.
-
-The AfD supports my…","Jan 22, 12:49:36 AM EST"
-1881944387942563912,"RT @Starlink: Starlink Mini が日本でご利用いただけます! 🛰️🇯🇵♥️
-
-ご注文はオンラインですぐできます。→ https://t.co/DikG0Tl9mf","Jan 22, 12:58:01 AM EST"
-1881953276356337934,"🔥😂 https://t.co/FTS7EbN8HM","Jan 22, 1:33:20 AM EST"
-1881955480475771162,"RT @AutismCapital: 🚨NEW: Trump orders the Secretary of Transportation and the FAA to halt all DEI initiatives and now focus on merit. https…","Jan 22, 1:42:06 AM EST"
-1881960459701805442,"Yes https://t.co/H8y4DExr3L","Jan 22, 2:01:53 AM EST"
-1881963314756137360,"RT @PressSec: 🚨The most transparent President in history is back. https://t.co/IHKc0SdGMT","Jan 22, 2:13:14 AM EST"
-1881963446083948881,"RT @MarioNawfal: 🚨🇺🇸 ATR AIRCRAFT ADDS STARLINK TO ATR72
-
-ATR Aircraft is bringing SpaceX’s Starlink connectivity to its ATR72-600 and ATR7…","Jan 22, 2:13:45 AM EST"
-1882129201320603748,"RT @ParikPatelCFA: Leaked image of the research tool OpenAI used to come up with their $500 billion number for Stargate https://t.co/bUjMot…","Jan 22, 1:12:24 PM EST"
-1882129343696257032,"RT @GavinSBaker: Stargate is a great name but the $500b is a ridiculous number and no one should take it seriously unless SoftBank is going…","Jan 22, 1:12:58 PM EST"
-1882129615797506109,"Nice of him to say https://t.co/5Dh7mpw23q","Jan 22, 1:14:03 PM EST"
-1882131458183336303,"The cure is being administered https://t.co/qmTxNg4IN8","Jan 22, 1:21:22 PM EST"
-1882134944614674911,"RT @DOGE: $784 MILLION in taxpayer dollars for a new U.S. embassy in South Sudan, initiated in 2023. This is not a reasonable expenditure.…","Jan 22, 1:35:13 PM EST"
-1882138167039635731,"RT @realchrisrufo: They're going to try to memory-hole this, but we can't forget that the Left put America through a reign of terror after…","Jan 22, 1:48:02 PM EST"
-1882138247830352383,"RT @ElonClipsX: Richard Dawkins: I have a very favorable impression of Elon Musk and his concern for the welfare of the world.
-
-“I have sat…","Jan 22, 1:48:21 PM EST"
-1882138751130116265,"🤔 https://t.co/hwMR3tlECH","Jan 22, 1:50:21 PM EST"
-1882138837620826606,"RT @teslaownersSV: 𝕏 is the #1 app for over 140 countries.
-
-No other media or platform has the reach of 𝕏. https://t.co/FYM1Av1N40","Jan 22, 1:50:41 PM EST"
-1882139216370692530,"RT @SpaceX: Falcon 9 lifts off from pad 39A in Florida to deliver 21 @Starlink satellites to the constellation https://t.co/3Kum66PxY9","Jan 22, 1:52:12 PM EST"
-1882166547831267769,"😂💯 https://t.co/ifrqP9OCzU","Jan 22, 3:40:48 PM EST"
-1882166629293023521,"RT @PirateWires: NEW PIECE from Palantir CTO Shyam Sankar on Pirate Wires: Trump will get America out of “manager mode”
-
-• While SpaceX pu…","Jan 22, 3:41:08 PM EST"
-1882167937748103667,"RT @realDonaldTrump: Happy 20th Anniversary to Melania! https://t.co/VIcXSQb4QO","Jan 22, 3:46:20 PM EST"
-1882230464976421153,"https://t.co/G539vK6AIP","Jan 22, 7:54:47 PM EST"
-1882230611341160489,"RT @Geiger_Capital: Yikes…
-
-December 2021. https://t.co/YfVOlVlCLk","Jan 22, 7:55:22 PM EST"
-1882230956926615588,"RT @Tesla: New Model 3 wins Edmunds Top Rated award in Electric Car category
-
-Thanks @edmunds!
-
-https://t.co/aIeO68xOhy","Jan 22, 7:56:44 PM EST"
-1882230999603626333,"RT @america: BREAKING: ICE changes their official terminology to refer to those they arrest from “noncitizen” to “illegal alien” according…","Jan 22, 7:56:55 PM EST"
-1882231243137528254,"Cool https://t.co/X1qJIfm1ep","Jan 22, 7:57:53 PM EST"
-1882232189414408478,"True https://t.co/zB2QsReOqc","Jan 22, 8:01:38 PM EST"
-1882232579090493558,"😂
- https://t.co/jOSSp2SzHY","Jan 22, 8:03:11 PM EST"
-1882251232439623962,"🤨 https://t.co/vNtBrwG3sM","Jan 22, 9:17:19 PM EST"
-1882256348374831532,"The radical leftists are really upset that they had to take time out of their busy day praising Hamas to call me a Nazi","Jan 22, 9:37:38 PM EST"
-1882256568793899260,"🤨 https://t.co/opNBsKhMWS","Jan 22, 9:38:31 PM EST"
-1882256779482165596,"Exactly https://t.co/gF1FZ247XN","Jan 22, 9:39:21 PM EST"
-1882258740860387609,"Good question https://t.co/3Blhr3yFkV","Jan 22, 9:47:09 PM EST"
-1882258953230520744,"NYT is pure propaganda https://t.co/wedfbEdSZ3","Jan 22, 9:47:59 PM EST"
-1882259573765243258,"Altman literally testified to Congress that he wouldn’t get OpenAI compensation and now he wants $10 billion! What a liar. https://t.co/YpHvcm0WZa","Jan 22, 9:50:27 PM EST"
-1882270339142664509,"RT @KanekoaTheGreat: Joe Rogan and Lex Fridman watch SpaceX successfully catch Spaceship's booster rocket.
-
-"Fuck yeah. That is so fuckin b…","Jan 22, 10:33:14 PM EST"
-1882289454427349336,"RT @MarioNawfal: 🚨CAUGHT: OPENAI FUNDS AXIOS WHILE OUTLET BLASTS TRUMP
-
-Sam Altman's OpenAI revealed as backer of Axios just as news outlet…","Jan 22, 11:49:11 PM EST"
-1882289800272843067,"RT @Cernovich: Sam Altman’s good friend and mentor is Reid Hoffman.
-
-Reid Hoffman said, “Yeah, I wish I had made Trump an actual martyr,” d…","Jan 22, 11:50:34 PM EST"
-1882295133577830717,"RT @Starlink: Starlink delivers high-speed internet to locations all around the world, including oceans and waterways 🛰️⛵️","Jan 23, 12:11:45 AM EST"
-1882295565456925167,"Verdad https://t.co/tWPzW7QJRJ","Jan 23, 12:13:28 AM EST"
-1882296062133817771,"https://t.co/3mgDNakDQt","Jan 23, 12:15:27 AM EST"
-1882299542592500140,"RT @teslaownersSV: Starship will take humanity to another planet https://t.co/x4LxUl2PzN","Jan 23, 12:29:17 AM EST"
-1882301283090190520,"🧐 https://t.co/8fUHfVNFWm","Jan 23, 12:36:12 AM EST"
-1882303826214162580,"On the other hand, Satya definitely does have the money https://t.co/VGBObPG7fM","Jan 23, 12:46:18 AM EST"
-1882304819370897812,"RT @cb_doge: Elon Musk played a key role in the creation of OpenAI, even coming up with the name “OpenAI” to reflect its commitment to bein…","Jan 23, 12:50:15 AM EST"
-1882310843075047488,"RT @alx: Did you know that the NIH spent $759 Million in taxpayer dollars on “Workforce Diversity and Outreach”?
-
-https://t.co/fD0TPEt0oL h…","Jan 23, 1:14:11 AM EST"
-1882390829974831279,"RT @shaunmmaguire: The stories that are going to come out from J6ers will be wild
-
-They’ll defy what you thought was possible in America","Jan 23, 6:32:01 AM EST"
-1882391090562838860,"RT @MarioNawfal: 🚨🇦🇷MILEI: THE WEST LOST ITS WAY—WOKEISM HAS REPLACED FREEDOM WITH TYRANNY
-
-“On this foundation, wokeism was built, an ideo…","Jan 23, 6:33:03 AM EST"
-1882391312919593096,"RT @libsoftiktok: BREAKING: Trump just rescinded the Covid vax mandate for legal immigrants https://t.co/XwMlt392bC","Jan 23, 6:33:56 AM EST"
-1882391395144790274,"RT @america: FCC Chair Brendan Carr: “People would be shocked if they learned how much DEI had been embedded in agencies. At the FCC alone…","Jan 23, 6:34:16 AM EST"
-1882391802369720796,"RT @lexfridman: Had a great conversation with @joerogan and got to watch Starship's epic launch & landing live.
-
-This is why I love America…","Jan 23, 6:35:53 AM EST"
-1882393900087910609,"RT @MarioNawfal: WALTER ISAACSON: I PREDICT ELON WILL BE SUCCESSFUL WITH DOGE
-
-“He pretty much owns SpaceX.
-
-If he wants to say, let's get…","Jan 23, 6:44:13 AM EST"
-1882394525743927403,"Very important to vote Republican for the Wisconsin Supreme Court to prevent voting fraud! https://t.co/tB1qErm2cP","Jan 23, 6:46:42 AM EST"
-1882395163848482893,"RT @martinvars: Now @JMilei about to speak at Davos!! https://t.co/zlbZ8POpF7","Jan 23, 6:49:14 AM EST"
-1882395996531118531,"RT @MarioNawfal: ELON: GOVERNMENT SHOULD BE FULLY TRANSPARENT BY DEFAULT
-
-“I think that the strong bias with respect to government informat…","Jan 23, 6:52:33 AM EST"
-1882396804454797658,"RT @Starlink: High-speed internet on the go! 🛰️🛻","Jan 23, 6:55:46 AM EST"
-1882397144172356015,"https://t.co/nnzx9RKI1c","Jan 23, 6:57:07 AM EST"
-1882397411974533379,"RT @Riley_Gaines_: HUGE NEWS. Following the below tweet, USCIS has rescinded their Covid vax mandate for legal immigrants.
-
-I can't even te…","Jan 23, 6:58:10 AM EST"
-1882398456557552098,"Thank you https://t.co/onSO3PY9CA","Jan 23, 7:02:19 AM EST"
-1882399041084096719,"Fraudulent behavior is cause for termination https://t.co/NwglfDkAel","Jan 23, 7:04:39 AM EST"
-1882399635089904089,"Good question https://t.co/pQidMqNsjR","Jan 23, 7:07:00 AM EST"
-1882399903722402273,"RT @DefiyantlyFree: To anger conservative, all you have to do is lie to them, but to anger a liberal you have to tell them the truth.","Jan 23, 7:08:05 AM EST"
-1882400168101974056,"RT @MarioNawfal: ANDREJ KARPATHY: ELON LOVES SMALL, HIGHLY TECHNICAL TEAMS.
-
-“Elon likes very small, strong, highly technical teams.
-
-At c…","Jan 23, 7:09:08 AM EST"
-1882400696663990497,"RT @Nigel_Farage: Starmer wants us to talk about how a 17 year old could buy a knife online.
-
-The truth is there are murder weapons in ever…","Jan 23, 7:11:14 AM EST"
-1882401198516687089,"RT @dogeofficialceo: Pics that go hard 🇺🇸 https://t.co/1repS5zx3Y","Jan 23, 7:13:13 AM EST"
-1882401536841785457,"RT @Nigel_Farage: I questioned whether the Southport attacker was known to authorities and linked to terrorism.
-
-Our Deputy Prime Minister…","Jan 23, 7:14:34 AM EST"
-1882401664147042351,"Messed up https://t.co/x7K0jWEbzB","Jan 23, 7:15:04 AM EST"
-1882406209187409976,"Don’t say Hess to Nazi accusations!
-
-Some people will Goebbels anything down!
-
-Stop Gőring your enemies!
-
-His pronouns would’ve been He/Himmler!
-
-Bet you did nazi that coming 😂","Jan 23, 7:33:08 AM EST"
-1882406444773106016,"Grok 3 https://t.co/B2UGe8Jelf","Jan 23, 7:34:04 AM EST"
-1882406548984787102,"RT @ericzelikman: @Teslanaut https://t.co/nPnITtWYTU","Jan 23, 7:34:29 AM EST"
-1882407126825623960,"Cut the millions of strings of negative regulations to free the giant that is America! https://t.co/vEQqQaoQm3","Jan 23, 7:36:47 AM EST"
-1882409574298476897,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app on the AppStore in Argentina, leading both the free and grossing categories.
-
- https://t.co…","Jan 23, 7:46:30 AM EST"
-1882410078269329860,"🇺🇸🇺🇸🇺🇸 FREE AMERICA!!! 🇺🇸🇺🇸🇺🇸 https://t.co/vKjHlKOw0r","Jan 23, 7:48:30 AM EST"
-1882410374819164540,"RT @ElonClipsX: Elon Musk: The true test of someone's character is how they behave under fire.
-
-“The true test of someone's character is ho…","Jan 23, 7:49:41 AM EST"
-1882414028259311869,"RT @ada_lluch: Milei did it again.
-
-He went to the WEF to tell them to go fuck themselves basically.
-
-It was beautiful to watch.
-
-https:/…","Jan 23, 8:04:12 AM EST"
-1882414068788871555,"RT @JDVance: This is extraordinary, and in the worst way.","Jan 23, 8:04:22 AM EST"
-1882414416672747770,"Would be helpful to understand exactly what crimes we are talking about here https://t.co/x0NxrVfKvy","Jan 23, 8:05:45 AM EST"
-1882415959526592915,"RT @cb_doge: Name this band. https://t.co/rgwTFz9KbB","Jan 23, 8:11:53 AM EST"
-1882421122559512962,"RT @PeterSweden7: BREAKING: The Southport attacker that killed 3 children stabbed a 6 year old girl 122 times during the attack.
-
-How can a…","Jan 23, 8:32:23 AM EST"
-1882437483000127934,"When I see the troll emoji 🧌, it’s like looking in the mirror","Jan 23, 9:37:24 AM EST"
-1882438576870470114,"Me: How many radical leftists does it take to screw in a light bulb?
-
-Radical leftists: That’s not funny 😡
-
-Me: 🤣","Jan 23, 9:41:45 AM EST"
-1882440483512946725,"How many flies does it take to screw in a light bulb?
-
-Two, but how did they get in there??","Jan 23, 9:49:19 AM EST"
-1882461079143600344,"Starlink bringing connectivity to farmers! https://t.co/qCdDd8LCEk","Jan 23, 11:11:10 AM EST"
-1882462023050805697,"😂
-
-We will do our best to help from America! https://t.co/kCWymmgaML","Jan 23, 11:14:55 AM EST"
-1882469826981155241,"RT @MarioNawfal: 🚨🇺🇸 TRUMP: IT’S OFFICIAL POLICY—THERE ARE ONLY TWO GENDERS, MEN AND WOMEN
-
-"I’ve made it an official policy of the United…","Jan 23, 11:45:56 AM EST"
-1882530280772358613,"RT @DavidSacks: President Trump announced at Davos today that he will make the United States the “World Capital of Artificial Intelligence…","Jan 23, 3:46:09 PM EST"
-1882530357360349523,"Yes! https://t.co/I3sjd1svID","Jan 23, 3:46:27 PM EST"
-1882530545256775744,"Awesome 😎 https://t.co/4JE7vZgxHi","Jan 23, 3:47:12 PM EST"
-1882530755617898877,"RT @MarioNawfal: 🚨🇺🇸TRUMP: WHAT THE WOULD HAS WITNESSED IS A REVOLUTION OF COMMON SENSE
-
-" Our country will soon be stronger, wealthier, an…","Jan 23, 3:48:02 PM EST"
-1882546800558829925,"RT @DonaldJTrumpJr: JFK, RFK & MLK Jr. files released.
-More promises made and kept.","Jan 23, 4:51:47 PM EST"
-1882546908276936787,"🔥😂 https://t.co/vtnjGUfG5v","Jan 23, 4:52:13 PM EST"
-1882549199918792842,"RT @WholeMarsBlog: Guys, look at this shit. Even most human drivers would struggle with something like this.
-
-FSD makes it look so smooth,…","Jan 23, 5:01:19 PM EST"
-1882549294143795234,"RT @EndWokeness: Filmed this morning by a veteran at the VA Center in Lyons NJ. There are more Pride LGBTQ+ flags than AMERICAN flags.
-
-VA…","Jan 23, 5:01:42 PM EST"
-1882549421147304147,"RT @visegrad24: South African farmers are in grave danger now that the Expropriation Bill has been signed into law by Ramaphosa.
-
-Land can…","Jan 23, 5:02:12 PM EST"
-1882549506614694346,"RT @JackPosobiec: Holy Shlit","Jan 23, 5:02:33 PM EST"
-1882589745219534902,"Seriously https://t.co/ea2ZRrt9BH","Jan 23, 7:42:26 PM EST"
-1882591207026512033,"If I see one more damn Nazi salute in my feed, I’m gonna lose my mind 🤪
-
-This algorithm sucks!!","Jan 23, 7:48:15 PM EST"
-1882594322413224337,"The recommendation algorithm on this platform sucks!
-
-I want to talk to the manager right now!!","Jan 23, 8:00:38 PM EST"
-1882594689997811918,"He’s Austrian too 👀
- https://t.co/NdDLSbPK39","Jan 23, 8:02:05 PM EST"
-1882594881056768254,"RT @MarioNawfal: 🚨 STARLINK MINI: HIGH-SPEED INTERNET ANYWHERE
-
-Starlink Mini delivers blazing speeds—200 Mbps download and 222 Mbps upload…","Jan 23, 8:02:51 PM EST"
-1882610531607187507,"RT @Tesla: Y https://t.co/Dnr4IxVujb","Jan 23, 9:05:02 PM EST"
-1882613107027259703,"RT @WesternLensman: 🚨NEW: Tom Homan reveals that ICE has already made 1300 arrests during deportation operations:
-
-“We've arrested 1300 peo…","Jan 23, 9:15:16 PM EST"
-1882613250682216939,"RT @teslaownersSV: Elon Musk explains how the starship will enable us to get anywhere in space
-
-“The entire ship is designed to land propul…","Jan 23, 9:15:50 PM EST"
-1882615180896403499,"JK I will never quit DC https://t.co/TXerqoOfnL","Jan 23, 9:23:31 PM EST"
-1882615755260432479,"RT @TrumpWarRoom: 🚨 BREAKING: President Donald J. Trump grants pardons to peaceful pro-life protesters prosecuted by the Biden administrati…","Jan 23, 9:25:48 PM EST"
-1882617410672611483,"Great https://t.co/M6WcpIJ9h3","Jan 23, 9:32:22 PM EST"
-1882618496984682624,"RT @EricLDaugh: 🚨 OMG. This reporter just called illegals "undocumented," DeSantis corrected him, and the reporter re-phrased the question…","Jan 23, 9:36:41 PM EST"
-1882618574021537902,"RT @DOGE: In 2023, the National Institutes of Health (NIH) spent:
-
--$759 Million on Workforce Diversity and Outreach
--$611,203 “Evaluating…","Jan 23, 9:37:00 PM EST"
-1882618771711693109,"And it is being removed https://t.co/azNAoz1v1o","Jan 23, 9:37:47 PM EST"
-1882619717804011914,"The woke mind virus will fight hard, but it will die https://t.co/8egC73ElOR","Jan 23, 9:41:32 PM EST"
-1882624129242996840,"💯
-
-Legacy media sucks next-level, especially in Europe https://t.co/Ynv1QCJg5g","Jan 23, 9:59:04 PM EST"
-1882624219554746724,"RT @teslaownersSV: Elon Musk won’t be bribed or bought
-
-“Offer me money, offer me power, I don't care. I'll say what I want to say, and if…","Jan 23, 9:59:26 PM EST"
-1882624363960361217,"True https://t.co/lUgCnrZjsd","Jan 23, 10:00:00 PM EST"
-1882624768849178721,"🔥🔥 https://t.co/oK6TLPwkg8","Jan 23, 10:01:37 PM EST"
-1882640654628786573,"RT @teslaownersSV: The Starlink mini is one of the most important devices ever made.
-
-Super compact, easy to sign up and it’ll connect you…","Jan 23, 11:04:44 PM EST"
-1882641241713885403,"https://t.co/Fj6MhcICDv","Jan 23, 11:07:04 PM EST"
-1882648158402236869,"RT @YunTaTsai1: My wife asked me why I did not go to work on LLMs for more money.
-
-“I just want to save lives.”
-
-And the objective function…","Jan 23, 11:34:33 PM EST"
-1882649399685484639,"RT @cb_doge: Make sure to invite your friends to this platform. https://t.co/Ee9ZT4EcCo","Jan 23, 11:39:29 PM EST"
-1882651034578989093,"RT @MarioNawfal: 🚨DOGE FACES WATERMELONS, WHALES AND WAMPUM IN WAR ON WASTE
-
-DOGE's first peek into federal spending reveals the absurd sco…","Jan 23, 11:45:59 PM EST"
-1882707031951646872,"RT @DefiyantlyFree: I would like to remind everybody that Democrats made up a story about how ICE agents were whipping migrants, turned out…","Jan 24, 3:28:30 AM EST"
-1882707981583995209,"RT @DefiyantlyFree: https://t.co/Y1Gjmo3OD5","Jan 24, 3:32:16 AM EST"
-1882711349844976008,"RT @trengriffin: "Stargate has not yet secured the funding it requires, will receive no government financing and will only serve OpenAI onc…","Jan 24, 3:45:39 AM EST"
-1882713298937974787,"Standard practice for the lying legacy media https://t.co/tpQi2PZISI","Jan 24, 3:53:24 AM EST"
-1882714950038393005,"RT @TuckerCarlson: Chamath Palihapitiya on the emptiness of Silicon Valley, the future of technology and the promise of the new Trump Admin…","Jan 24, 3:59:57 AM EST"
-1882719101627609192,"Exactly https://t.co/RJZuB6NDDb","Jan 24, 4:16:27 AM EST"
-1882722163662406070,"Terrible https://t.co/jpbK6eQ8pY","Jan 24, 4:28:37 AM EST"
-1882722950505492604,"RT @MarioNawfal: CHAMATH: FSD CAN ELIMINATE ALL UNNECESSARY ROAD DEATHS
-
-“Elon has an AI brain inside the Tesla, and the ability to drive s…","Jan 24, 4:31:45 AM EST"
-1882723776154243198,"https://t.co/D7SKV9OFAB","Jan 24, 4:35:02 AM EST"
-1882724115670589573,"Starlink direct from satellite to cell phone Internet connection starts beta test in 3 days https://t.co/ygAjtTN8SY","Jan 24, 4:36:23 AM EST"
-1882725105253720076,"ENOUGH.
-
-NO MORE. https://t.co/iLl8eFx7d9","Jan 24, 4:40:19 AM EST"
-1882725948795367825,"Under @realDonaldTrump, the US government will stop bribing religious organizations to facilitate illegal migration https://t.co/1XLtWQ5s8m","Jan 24, 4:43:40 AM EST"
-1882728514295906628,"Globalism is civilizational suicide https://t.co/uPMfPihr7E","Jan 24, 4:53:51 AM EST"
-1882728823562838069,"Good question https://t.co/jQpkKZL9aH","Jan 24, 4:55:05 AM EST"
-1882729027989049669,"RT @stillgray: There was never a reckoning after a jihadist blew himself up along with 22 people—most of whom were little white girls—at an…","Jan 24, 4:55:54 AM EST"
-1882729980863611120,"I just can’t help it 😂 https://t.co/0lXa68fQS4","Jan 24, 4:59:41 AM EST"
-1882730158031098276,"I am confident this will happen someday https://t.co/EmQU7vf92S","Jan 24, 5:00:23 AM EST"
-1882730712337658106,"15% is absurdly high.
-
-The problem is that if you give bad people a moral cloak that hides their terrible behavior, they will wear it! https://t.co/ipEWEWs1Jt","Jan 24, 5:02:35 AM EST"
-1882731191759208881,"Not wrong 😂 https://t.co/Q0GNA8hu7J","Jan 24, 5:04:30 AM EST"
-1882731345857958318,"https://t.co/RgZH3MlpHR","Jan 24, 5:05:06 AM EST"
-1882732717139534034,"Laws should be long enough to cover the subject, but short enough to be understandable by a normal person who is expected to follow them https://t.co/OMvRE8mGLS","Jan 24, 5:10:33 AM EST"
-1882732947406827619,"RT @MarioNawfal: 🇺🇸WHY THE 'WOKE MIND VIRUS' IS CONSIDERED HARMFUL AND ITS FUTURE UNDER TRUMP
-
-The term "woke mind virus" has been used to…","Jan 24, 5:11:28 AM EST"
-1882733015048331312,"RT @MarioNawfal: 🚨🇺🇸 DISNEY CEO'S PAY JUMPS TO $41M AS WORKERS FACE LAYOFFS
-
-Bob Iger's compensation soared 30% to $41.1 million in 2024, i…","Jan 24, 5:11:44 AM EST"
-1882734544207695955,"RT @amuse: UKRAINE: It might be time for elections. Zelensky is delusional, insisting that Russia surrender before he will begin peace nego…","Jan 24, 5:17:49 AM EST"
-1882734681059430596,"Immediately https://t.co/d4AV1mbszx","Jan 24, 5:18:22 AM EST"
-1882735686929011012,"It was astonishing how insanely hard legacy media tried to cancel me for saying “my heart goes out to you” and moving my hand from my heart to the audience.
-
-In the end, this deception will just be another nail in the coffin of legacy media. https://t.co","Jan 24, 5:22:21 AM EST"
-1882735987996139958,"RT @RupertLowe10: We need to deport the foreign criminals in our prisons. We need to deport anyone arriving illegally. We need to deport AL…","Jan 24, 5:23:33 AM EST"
-1882736085148840404,"Yes https://t.co/EwExNRMMKW","Jan 24, 5:23:56 AM EST"
-1882737545962025378,"🤨 https://t.co/rZEkp1mFWv","Jan 24, 5:29:45 AM EST"
-1882737976733823482,"💯 https://t.co/GH28Nsoc1P","Jan 24, 5:31:27 AM EST"
-1882738725849039248,"Close the borders and deport criminals https://t.co/MskMdkVHFl","Jan 24, 5:34:26 AM EST"
-1882741866292293866,"RT @pmarca: Correspondingly, the catastrophic collapse of Los Angeles was caused first and foremost by the gusher of tax revenue provided b…","Jan 24, 5:46:55 AM EST"
-1882742029534527638,"RT @stillgray: The Southport monster didn’t just kill three little white girls. He stabbed them hundreds of times, and he stabbed almost a…","Jan 24, 5:47:34 AM EST"
-1882742335777517737,"RT @pmarca: Cities with real fiscal constraints cannot afford to go crazy. Cities with virtually unlimited tax revenue can go wholly insane…","Jan 24, 5:48:47 AM EST"
-1882743412635693154,"Yes https://t.co/KMdDXWnYGn","Jan 24, 5:53:03 AM EST"
-1882746929094053972,"Wow https://t.co/PZ1haHCFQG","Jan 24, 6:07:02 AM EST"
-1882747082093785488,"Never forget https://t.co/TNaqiXb1PF","Jan 24, 6:07:38 AM EST"
-1882914998802158010,"🇺🇸🇺🇸 https://t.co/LfKW4ZQytY","Jan 24, 5:14:53 PM EST"
-1882919144817090941,"Wow https://t.co/KJWA5dmR9U","Jan 24, 5:31:21 PM EST"
-1883001180948971749,"https://t.co/sgfQZwHwtG","Jan 24, 10:57:20 PM EST"
-1883029905920946266,"It was so close https://t.co/lfQ9FNw3ru","Jan 25, 12:51:29 AM EST"
-1883029983729512608,"RT @TheRabbitHole84: The United States has the right to vet the people who enter our home, deny entry, and remove guests.
-
-This is basic ho…","Jan 25, 12:51:47 AM EST"
-1883032225509515735,"RT @nayibbukele: Are you saying that if you put those 1,000 people in jail, you'd reduce crime by 40% overnight?
-
-Such a hard decision 🤯","Jan 25, 1:00:42 AM EST"
-1883122048157057469,"RT @BillAckman: This is extremely concerning. Eleven year olds are being shown cartoon videos in schools which tell them that if they feel…","Jan 25, 6:57:37 AM EST"
-1883124340167991550,"Cool https://t.co/9lyjINEAzw","Jan 25, 7:06:44 AM EST"
-1883126001322127812,"https://t.co/puTYWlCrhi","Jan 25, 7:13:20 AM EST"
-1883129207896817779,"https://t.co/oNy0yDViSy","Jan 25, 7:26:04 AM EST"
-1883132776884678943,"https://t.co/ja1M3a6MGX","Jan 25, 7:40:15 AM EST"
-1883134631517749290,"RT @visegrad24: My grandfather’s brother, David de Villiers, was murdered on his farm when I was 17 years old.
-
-And his killer actually wr…","Jan 25, 7:47:37 AM EST"
-1883147829985907164,"RT @JDVance: I thought I was done voting in the senate 😂","Jan 25, 8:40:04 AM EST"
-1883148703642632456,"RT @StateDept: The State Department will no longer undertake any activities that facilitate or encourage mass migration. Read more about t…","Jan 25, 8:43:32 AM EST"
-1883148799721488648,"RT @BillAckman: Consider the impact of Starlink becoming available everywhere and @X as a free global news and information platform, when t…","Jan 25, 8:43:55 AM EST"
-1883149407551717476,"This is awesome
- https://t.co/T7D007H1fB","Jan 25, 8:46:20 AM EST"
-1883150678622883897,"My car is orbiting Earth and Mars 🤷♂️ https://t.co/zuOd4PjZFa","Jan 25, 8:51:23 AM EST"
-1883151330161861104,"RT @TeslaKing420: Here’s more of the new Tesla Model Y, in case you’re not tired of it yet. https://t.co/KYoDDEViDo","Jan 25, 8:53:59 AM EST"
-1883151832987668700,"Nor should they be forgiven https://t.co/azQ8TVEWnG","Jan 25, 8:55:58 AM EST"
-1883152222445510700,"RT @WhiteHouse: President Trump Achieves More in 100 hours Than Any President in 100 Days
-
-🇺🇸 300+ executive actions taken
-🇺🇸 $1.1T+ invest…","Jan 25, 8:57:31 AM EST"
-1883155474549535117,"RT @cb_doge: I don’t want to give Trump any more ideas, but there are some companies that need a serious name change:
-
-OpenAI → Closed AI
-W…","Jan 25, 9:10:27 AM EST"
-1883163467542311230,"Exactly https://t.co/RO52xTqSFs","Jan 25, 9:42:12 AM EST"
-1883184095402004708,"https://t.co/9XxwaqBJnJ","Jan 25, 11:04:10 AM EST"
-1883222028687478899,"RT @MarioNawfal: ELON: THERE IS A NEED FOR CHANGE IN EUROPE
-
-"Go out there, talk to people... one vote at a time. There is a need for cha…","Jan 25, 1:34:54 PM EST"
-1883289048061714625,"https://t.co/c034D2wn6x","Jan 25, 6:01:13 PM EST"
-1883297449365975287,"RT @BrittPettibone: Elon Musk’s statement “It’s okay to be proud to be German” is creating a storm in Germany for a very simple reason.
-
-Un…","Jan 25, 6:34:36 PM EST"
-1883366645328134248,"RT @realDonaldTrump: https://t.co/hmxumW2iC0","Jan 25, 11:09:34 PM EST"
-1883366870503580049,"Vox Populi https://t.co/QZmwjEoOVK","Jan 25, 11:10:27 PM EST"
-1883405986804965684,"Yes, that’s almost always how it goes with new technology https://t.co/7U4TCQS5eD","Jan 26, 1:45:53 AM EST"
-1883407424171958761,"I have no idea if this is real, but there certainly is massive fraud in the entitlements programs https://t.co/YKgr64UGv9","Jan 26, 1:51:36 AM EST"
-1883409869656744239,"💯 https://t.co/GxUMeyUp1g","Jan 26, 2:01:19 AM EST"
-1883410118861295916,"Yes https://t.co/NX4Rr8h1jK","Jan 26, 2:02:19 AM EST"
-1883410830378856747,"There is massive fraud in the federal entitlements programs. Worse than you could possibly imagine. https://t.co/xhvFoo2FMF","Jan 26, 2:05:08 AM EST"
-1883411251692539978,"They sure did and still are.
-
-@DOGE will stop it. https://t.co/wQnDvPFo22","Jan 26, 2:06:49 AM EST"
-1883411426175545794,"RT @libsoftiktok: A man who’s in our country illegally was artested in FL after killing a 6-year-old boy while driving under the influence.…","Jan 26, 2:07:30 AM EST"
-1883412365498003505,"New name for the water that separates England and France https://t.co/R6Lipj1Dra","Jan 26, 2:11:14 AM EST"
-1883413306653986924,"Bureaucracy is killing America https://t.co/yQU1dzlSyZ","Jan 26, 2:14:59 AM EST"
-1883416606933680469,"“Nemo me impune lacessit” – Sulla","Jan 26, 2:28:05 AM EST"
-1883417427813499158,"The proscriptions of Marius forced the proscriptions of Sulla","Jan 26, 2:31:21 AM EST"
-1883418400892035145,"RT @TrumpWarRoom: PRESIDENT TRUMP: "I'm signing an Executive Order to open up the pumps and the valves in the north. We want to get that wa…","Jan 26, 2:35:13 AM EST"
-1883419115102302433,"RT @SeibtNaomi: 🚨🇩🇪 ELON MUSK: LET’S GOOOO! 🤣
-
-“Fight for a GREAT future for Germany! Let’s go!”
-
-Germans are usually NOT the overly enthus…","Jan 26, 2:38:03 AM EST"
-1883420042307772643,"RT @ElonClipsX: Elon Musk: AI is like a genius child. You want it to grow up with love of the truth and of humanity.
-
-“I do worry about AI.…","Jan 26, 2:41:44 AM EST"
-1883499269887574362,"RT @Alice_Weidel: Elon Musk‘s great speech at our party convention! Make America & Germany great again! 🇺🇸🇩🇪 https://t.co/XHtMIBfOYh","Jan 26, 7:56:34 AM EST"
-1883500429159624709,"Yes! https://t.co/Mb203mOxlS","Jan 26, 8:01:10 AM EST"
-1883500950029316566,"RT @SeibtNaomi: 🚨🇩🇪 I AM PROUD TO BE GERMAN❗️
-
-Elon Musk shared a powerful message with us at the AfD rally today:
-
-It’s ok to be proud to…","Jan 26, 8:03:14 AM EST"
-1883501291768631440,"RT @RupertLowe10: Reports of illegal migrants loitering near schools are incredibly disturbing - I have heard similar from numerous parents…","Jan 26, 8:04:36 AM EST"
-1883503887661039797,"RT @kylenabecker: The AfD endorsement by @ElonMusk has the Eurocrats in a complete state of panic.
-
-Musk's statement "it's okay to be prou…","Jan 26, 8:14:55 AM EST"
-1883608974119112919,"RT @BillMelugin_: Per source with knowledge, Trump’s team is drafting final documents for the president’s signature on all sanctions indica…","Jan 26, 3:12:29 PM EST"
-1883694509403554238,"RT @HSajwanization: WHAO ! This is escalated quickly … https://t.co/5BUyPKNifX","Jan 26, 8:52:23 PM EST"
-1883694790354894892,"RT @DOGE: The DOGE Team is looking for world-class talent to work long hours identifying/eliminating waste, fraud, and abuse. These are ful…","Jan 26, 8:53:30 PM EST"
-1883694908298625359,"This is awesome https://t.co/WeWUeF17Gm","Jan 26, 8:53:58 PM EST"
-1883731462224314484,"Fatalism ftw https://t.co/1diTV359pw","Jan 26, 11:19:13 PM EST"
-1883732625304834550,"How can this be real? https://t.co/n5V4TZQo8q","Jan 26, 11:23:50 PM EST"
-1883733288919195801,"BAMF https://t.co/TmhGSZr07M","Jan 26, 11:26:28 PM EST"
-1883737277605790049,"RT @SpeakerJohnson: Colombia and all nations should be on notice - Congress is fully prepared to pass sanctions and other measures against…","Jan 26, 11:42:19 PM EST"
-1883757102168170902,"This is just bureaucracy 101 tbh https://t.co/79xhq0z5c5","Jan 27, 1:01:06 AM EST"
-1883765054929252542,"RT @AutismCapital: It feels like America came to life again.","Jan 27, 1:32:42 AM EST"
-1883767377797792013,"RT @HansCNelson: Marc Andreessen just revealed exactly how Elon Musk delivered the hammer blow that ended the US Government's illegal inter…","Jan 27, 1:41:56 AM EST"
-1883771171155661236,"Overprescribed https://t.co/HnB4w18K8r","Jan 27, 1:57:00 AM EST"
-1883878012770525198,"RT @CynicalPublius: To fully understand just how remarkable today’s exchange with Colombia was, you need to understand how Washington DC ha…","Jan 27, 9:01:33 AM EST"
-1883878185076679070,"🎯 https://t.co/qnP9vDiP7z","Jan 27, 9:02:14 AM EST"
-1883919559834624178,"RT @thackerpd: 1) I exposed Center for Countering Digital Hate for trying to "Kill Musk's Twitter." We learn today that the British governm…","Jan 27, 11:46:39 AM EST"
-1883920032658514130,"RT @DogecoinNorway: Scandinavian Airlines is hooking all their aircraft up with Starlink from SpaceX🔥
-
-By the end of 2025, all aircraft wil…","Jan 27, 11:48:31 AM EST"
-1883920259448725803,"Good question https://t.co/ALhkf9TTl6","Jan 27, 11:49:26 AM EST"
-1883922457259876352,"Worth a try. Something needs to change or Europe and Asia (and most of Earth) will disappear! https://t.co/xX3od3OCGD","Jan 27, 11:58:10 AM EST"
-1883998457452716237,"RT @jack: open source everything","Jan 27, 5:00:09 PM EST"
-1884076010708295711,"RT @thatsKAIZEN: There just isn’t a good logical argument for letting people stay illegally.
-
-That’s why Obama deported them too.
-
-People a…","Jan 27, 10:08:20 PM EST"
-1884076481690886472,"RT @DOGE: The GSA terminated three leases of mostly empty office space, with tenants relocating to nearby buildings in the GSA portfolio.…","Jan 27, 10:10:12 PM EST"
-1884076497708966373,"RT @DOGE: GSA has repealed 3 internal DEIA policies, eliminated 17 DEIA websites, and removed DEIA language from all known GSA public facin…","Jan 27, 10:10:16 PM EST"
-1884078753154060486,"They literally did the meme https://t.co/zctJWbpdzW https://t.co/8lyhInTn76","Jan 27, 10:19:13 PM EST"
-1884079796503875605,"💯 https://t.co/QF7VChIX4a","Jan 27, 10:23:22 PM EST"
-1884082008810479936,"Interesting https://t.co/RsKK2YjRl2","Jan 27, 10:32:10 PM EST"
-1884108149839499628,"This would work very fast https://t.co/B9R7ppAVyi","Jan 28, 12:16:02 AM EST"
-1884110007719149723,"Hmm https://t.co/UFuxoRI7Ng","Jan 28, 12:23:25 AM EST"
-1884112412854653015,"RT @teslaownersSV: BREAKING:
-TESLA MODEL 3 is AMERICA'S MOST AFFORDABLE CAR to own https://t.co/fk9KYUwuZU","Jan 28, 12:32:58 AM EST"
-1884114824159993948,"RT @teslaownersSV: "The vast majority of diseases or brain issues, I think are fixable with a Neuralink device."
-
-Elon Musk https://t.co/Bv…","Jan 28, 12:42:33 AM EST"
-1884115415485632867,"RT @teslaownersSV: "The next Neuralink product is BlindSight which will enable people who have lost both eyes or have no eye sight to see."…","Jan 28, 12:44:54 AM EST"
-1884119238723637581,"RT @TuckerCarlson: Donald Trump is releasing more secrets than any president in history. Matt Taibbi on the top ten mysteries we’re likely…","Jan 28, 1:00:06 AM EST"
-1884119965160399109,"RT @america: President Donald Trump: “For the first time in history, we are locating and loading illegal aliens into military aircraft and…","Jan 28, 1:02:59 AM EST"
-1884122574432657756,"True https://t.co/z4Y7nIIEBu","Jan 28, 1:13:21 AM EST"
-1884310121632977081,"RT @realDonaldTrump: https://t.co/matfK2s03a","Jan 28, 1:38:36 PM EST"
-1884310277237387286,"True https://t.co/DQaqmVbtPb","Jan 28, 1:39:13 PM EST"
-1884310630221631702,"RT @BasedMikeLee: The @TulsiGabbard vote needs to be public
-
-Her nomination isn’t classified
-
-The vote on her nomination shouldn’t be treat…","Jan 28, 1:40:37 PM EST"
-1884310761197244449,"Exactly https://t.co/qEe2zjXsrJ","Jan 28, 1:41:08 PM EST"
-1884312495097323743,"Live broadcast from The @WhiteHouse.
-
-You can now rewind live broadcasts to catch up.
-
- https://t.co/YwZYM5DqOm","Jan 28, 1:48:02 PM EST"
-1884326482161590294,"Tip of iceberg https://t.co/ixjtgut26G","Jan 28, 2:43:37 PM EST"
-1884327935223685311,"RT @SenRickScott: In week one, Obama had 13 nominees confirmed. Today is day 9 for Trump & he only has 5 confirmed.
-
-Senate Democrats are…","Jan 28, 2:49:23 PM EST"
-1884328052647420108,"True https://t.co/5fsarhZ1f5","Jan 28, 2:49:51 PM EST"
-1884328412569035192,"https://t.co/sIc0gt687P","Jan 28, 2:51:17 PM EST"
-1884329088040722724,"My guess is that a lot of that money ended up in the pockets Hamas, not actually condoms","Jan 28, 2:53:58 PM EST"
-1884365928038563880,"The @POTUS has asked @SpaceX to bring home the 2 astronauts stranded on the @Space_Station as soon as possible. We will do so.
-
-Terrible that the Biden administration left them there so long.","Jan 28, 5:20:21 PM EST"
-1884368000280637625,"RT @boringcompany: Cybertunnel is open. Fast and safe way to transport Cybertruck production to the outbound lot. Thanks to @Tesla for a…","Jan 28, 5:28:35 PM EST"
-1884370358733570354,"RT @MarioNawfal: 🚨🇺🇸BREAKING: TRUMP SIGNS ORDER TO BAN TRANSGENDER PROCEDURES FOR MINORS
-
-Trump has signed an executive order banning feder…","Jan 28, 5:37:58 PM EST"
-1884370731774906620,"RT @BillyM2k: the IRS spent $88 billion dollars to collect $1 billion more last year and the media was slobbering all over the story
-
-this…","Jan 28, 5:39:27 PM EST"
-1884371523135254859,"Exactly https://t.co/XTFvjsvZr5","Jan 28, 5:42:35 PM EST"
-1884372302898552908,"RT @AutismCapital: Wonder what the condoms could be used for? 🤔 https://t.co/gr650UKR9R","Jan 28, 5:45:41 PM EST"
-1884374441456476408,"A fork in the road https://t.co/vzk1RYbM5u","Jan 28, 5:54:11 PM EST"
-1884375700758839565,"RT @EndWokeness: Age to vote: 18
-Age to enlist: 18
-Age to buy a pet: 18
-Age to get a tattoo: 18
-Age to sign contracts: 18
-Age to adopt a ch…","Jan 28, 5:59:11 PM EST"
-1884376421981725094,"RT @bennyjohnson: My absolute favorite mic drop moment from press conference was when Karoline Leavitt completely destroyed KJP and the Leg…","Jan 28, 6:02:03 PM EST"
-1884377072535232662,"RT @bennyjohnson: Hi. Want to see a murder on live TV?
-
-I give you White House Deputy Chief of Staff Stephen Miller vs. Jake Tapper on CNN.…","Jan 28, 6:04:38 PM EST"
-1884377726833905992,"Explains why all condom orders were “Magnum” 😂 https://t.co/eKKRsfkgjY","Jan 28, 6:07:14 PM EST"
-1884418071831408645,"RT @AutismCapital: 🚨 NEW: This is the full buyout memo from the OPM sent to all Federal employees titled “A Fork in the Road.” The pillars…","Jan 28, 8:47:33 PM EST"
-1884419137113563488,"Confirm @RobertKennedyJr https://t.co/fLadiCmTZ5","Jan 28, 8:51:47 PM EST"
-1884419592698884165,"RT @CollinRugg: JUST IN: Billionaire Nicole Shanahan vows to fund primary challengers of 13 specific U.S. Senators who don't support RFK Jr…","Jan 28, 8:53:36 PM EST"
-1884420691707019512,"RT @Tesla_Asia: Happy Chinese New Year🧧🚗 https://t.co/0CaucCyp2e","Jan 28, 8:57:58 PM EST"
-1884420862624866775,"RT @TheRabbitHole84: Community Notes 🔥 🔥 https://t.co/TI9pDI64fQ","Jan 28, 8:58:39 PM EST"
-1884421635752722879,"Children cannot consent. That is why there are laws protecting minors.
-
-Those who perpetrated this evil should be in prison for life. https://t.co/R8RXTJZS0u","Jan 28, 9:01:43 PM EST"
-1884452479493935155,"Seriously 🤣🤣 https://t.co/5aZbrTOrGG","Jan 28, 11:04:17 PM EST"
-1884453033771184276,"Progress https://t.co/vCqrqlQu5R","Jan 28, 11:06:29 PM EST"
-1884453840033808719,"🫡 https://t.co/CsZJDUFeAj","Jan 28, 11:09:41 PM EST"
-1884464429426749904,"It is critical to take action on this now https://t.co/xeFGqY7fNx","Jan 28, 11:51:46 PM EST"
-1884466609634345277,"Medium resolution images, music & audio podcasts should work with the current generation Starlink direct-to-phone constellation.
-
-Next generation constellation will do medium resolution video. https://t.co/yfDPbkgSJH","Jan 29, 12:00:26 AM EST"
-1884467091899593076,"Unsupervised full self-driving begins https://t.co/5rujaGTncb","Jan 29, 12:02:21 AM EST"
-1884467222359253203,"RT @Tesla_AI: Starting with the ~1.2 mile route at the Fremont factory https://t.co/avgSpBxb4j","Jan 29, 12:02:52 AM EST"
-1884467356505698353,"True https://t.co/jDXddxAqCp","Jan 29, 12:03:24 AM EST"
-1884467836170416479,"Good idea https://t.co/mWouoO5cuE","Jan 29, 12:05:18 AM EST"
-1884470666100904015,"Most people don’t understand that their minds can be taken over by a virus, just like a computer virus takes over your computer.
-
-The woke mind virus is like Cordyceps. https://t.co/Sk5B7bgYua","Jan 29, 12:16:33 AM EST"
-1884471751750410344,"RT @SwipeWright: It's easy to forget how bad things got on trans issues.
-
-I'm still banned from PayPal and Etsy for stating, as a biologist…","Jan 29, 12:20:52 AM EST"
-1884471954419094015,"Yes https://t.co/wHONEquxgD","Jan 29, 12:21:40 AM EST"
-1884472255096242509,"RT @propjerry: @elonmusk "Where one sees these viruses, one can expect unchanging attitudes in support of conspiracies, of cults, of populi…","Jan 29, 12:22:52 AM EST"
-1884474455025405992,"“Hit ‘Send’.” 😂 https://t.co/JTW0MoAXzD","Jan 29, 12:31:36 AM EST"
-1884474887688925427,"💯 https://t.co/hIFktaJEL1","Jan 29, 12:33:19 AM EST"
-1884475225770692811,"https://t.co/0V7elB9k7b","Jan 29, 12:34:40 AM EST"
-1884475881403437369,"Worth noting that the 8 month severance offer through the end of the government fiscal year is the most that is legally allowed without Congress passing another appropriations bill.
-
-Very generous. https://t.co/gyr9eR6fhO","Jan 29, 12:37:16 AM EST"
-1884477249916633516,"Yes https://t.co/fo5NkcvfxZ","Jan 29, 12:42:42 AM EST"
-1884482267310952583,"Interesting poll.
-
-Downsizing government is the most popular issue by far! https://t.co/8WqYNYE2aB","Jan 29, 1:02:39 AM EST"
-1884484473661645035,"Indeed https://t.co/4yxSMuahx1","Jan 29, 1:11:25 AM EST"
-1884484697368965376,"Wow, Bill Clinton deported 12M illegals! https://t.co/9QWlL9Qlyg","Jan 29, 1:12:18 AM EST"
-1884485047010382317,"It was absolutely deliberate https://t.co/v2TX1cn40m","Jan 29, 1:13:41 AM EST"
-1884485647148241391,"RT @altcap: Occam’s Razor. No act in my lifetime undermined trust more than the gov’t denial / cover up of something so patently obvious…","Jan 29, 1:16:04 AM EST"
-1884487541480456491,"RT @MattWalshBlog: Read through the whole EO on child mutilation. Spectacular stuff. I couldn’t have written it any better. Trump is doing…","Jan 29, 1:23:36 AM EST"
-1884487611940544715,"Yes https://t.co/aHm7Ip12Ib","Jan 29, 1:23:53 AM EST"
-1884487700213850563,"RT @Austen: NVDA revenue is pacing for more than $10 Billion/year to Singapore?
-
-1/4 of all NVDA revenue… comes from Singapore?
-
-Yeah these…","Jan 29, 1:24:14 AM EST"
-1884488323399344382,"RT @Jason: Extremely savvy approach to downsizing government thus far.
-
-First, it is impossible to criticize return to office for governme…","Jan 29, 1:26:43 AM EST"
-1884488510909845908,"RT @BehizyTweets: BREAKING: President Trump just fired Gwynne Wilcox, the National Labor Relations Board Chair.
-
-Wilcox says she will fight…","Jan 29, 1:27:27 AM EST"
-1884489178857009403,"Interesting from @QuasLacrimas https://t.co/yDArXkGUC1","Jan 29, 1:30:07 AM EST"
-1884490061195989176,"Worth following @DataRepublican https://t.co/51L7JOApIg","Jan 29, 1:33:37 AM EST"
-1884490412703797316,"RT @MarioNawfal: 🚨🇺🇸 BORDER NUMBERS PLUNGE 92.9% IN TRUMP'S FIRST WEEK!
-
-Daily migrant encounters dropped from Biden's average of 2,087 to…","Jan 29, 1:35:01 AM EST"
-1884491065312383124,"RT @Jason: This is extremely popular @aoc @SenSanders @SenWarren —- and the opportunity for @KamalaHarris and @JoeBiden to do it was there…","Jan 29, 1:37:36 AM EST"
-1884491255394046120,"RT @DataRepublican: A quarter of billion dollars to convince an at-risk foreign population that they should undergo an invasive procedure t…","Jan 29, 1:38:22 AM EST"
-1884491762556653890,"Even at hypersonic speeds on Starship! https://t.co/1vEfqrPd7C","Jan 29, 1:40:23 AM EST"
-1884492019298431467,"Cool https://t.co/ITMsA0IumF","Jan 29, 1:41:24 AM EST"
-1884493365099577396,"https://t.co/ol5ZR288Xw","Jan 29, 1:46:45 AM EST"
-1884494169458020703,"💯 https://t.co/GKXjy8jj9E","Jan 29, 1:49:56 AM EST"
-1884591330019389872,"Checks out https://t.co/cDCK2IBkaL","Jan 29, 8:16:01 AM EST"
-1884591837530263781,"True https://t.co/DTNI2QJN6o","Jan 29, 8:18:02 AM EST"
-1884592252363649376,"For good reason. Legacy media is dying. https://t.co/NCUFXqZWHy","Jan 29, 8:19:41 AM EST"
-1884592507222122947,"RT @PeterSweden7: Italy 🇮🇹
-
-▪️Has BANNED fake lab grown meat.
-
-▪️Has BANNED insects in their pasta and pizza.
-
-▪️Has BANNED ground mounted…","Jan 29, 8:20:42 AM EST"
-1884592821086105674,"RT @altcap: Hugely innovative, impactful & incredibly humane. @DOGE acting fast to downsize federal gov’t. Let’s find ways to increase emp…","Jan 29, 8:21:57 AM EST"
-1884593184522834154,"RT @TheRabbitHole84: Length of the United States Tax Code and Regulations:
-- 2015: Over 10 million words.
-- 1955: Under 1.5 million words h…","Jan 29, 8:23:23 AM EST"
-1884595098387714319,"Starlink can do it for ~10 times less https://t.co/SvImK5MqRg","Jan 29, 8:31:00 AM EST"
-1884596588716155107,"Absolutely https://t.co/ZZ9M20tWRH","Jan 29, 8:36:55 AM EST"
-1884597806389657624,"Fidias is right!
- https://t.co/gDMp3agsuV","Jan 29, 8:41:45 AM EST"
-1884600062342250499,"💯 https://t.co/btWEML2Lq2","Jan 29, 8:50:43 AM EST"
-1884601571347943773,"Clarification of what can be done while receiving full government pay & benefits for 8 months: whatever you like, including obtaining a new job. https://t.co/iQPFOSbZjZ","Jan 29, 8:56:43 AM EST"
-1884602861947867470,"This statement by Surowieki is false.
-
-Those deciding to take the deferred resignation deal can do anything they want for the next 8 months and are not required to work at all whatsoever.
-
-https://t.co/Yh4RDVl6Yr https://t.co/Vt8NB5dU8t","Jan 29, 9:01:51 AM EST"
-1884603222028951890,"Wow … https://t.co/XFExR2Mu3K","Jan 29, 9:03:17 AM EST"
-1884603652595241388,"It really is a fair & generous deal https://t.co/2s6yBrLgbt","Jan 29, 9:04:59 AM EST"
-1884604222890541296,"Strange https://t.co/virMWoeY70","Jan 29, 9:07:15 AM EST"
-1884605023440515503,"Making life multiplanetary to maximize the lifespan of consciousness will matter most.
-
-But maybe that would not have happened without buying Twitter. https://t.co/czvcDMxahP","Jan 29, 9:10:26 AM EST"
-1884605599020720308,"Terrible things are happening to those poor kids https://t.co/BnbzUxoVGm","Jan 29, 9:12:43 AM EST"
-1884606430914793795,"Nothing is more dangerous than getting between JB Pritzker and the buffet table! https://t.co/7uRYAfqrh2","Jan 29, 9:16:02 AM EST"
-1884607245255598380,"RT @mirandadevine: Love this: the White House is now issuing press releases “Debunking Latest Fake News Hoaxes”. https://t.co/kEvLLGBL1j","Jan 29, 9:19:16 AM EST"
-1884607940016886213,"RT @MarioNawfal: 🇺🇸 TRUMP REVIVES “TASK FORCE 250” FOR AMERICA’S 250TH BIRTHDAY BASH
-
-Trump is signing an executive order to create Task Fo…","Jan 29, 9:22:01 AM EST"
-1884608391080808530,"If no judge is EVER removed from the bench, no matter HOW unjust their verdicts, our legal system is fundamentally broken.
-
-This MUST happen. https://t.co/8n1cn6KKB4","Jan 29, 9:23:49 AM EST"
-1884608536795050253,"🇺🇸🇺🇸 https://t.co/CbrsmDYOT0","Jan 29, 9:24:24 AM EST"
-1884636943574499423,"Confirm @TulsiGabbard! https://t.co/2vrJAP7NI6","Jan 29, 11:17:16 AM EST"
-1884637247598624997,"https://t.co/ZEkkwEpEFJ","Jan 29, 11:18:29 AM EST"
-1884637500917809369,"💯 https://t.co/JjX1cPOCwQ","Jan 29, 11:19:29 AM EST"
-1884639026813993311,"The US radical-left has been using US taxpayer money to fund radical-left political parties & media around the world! https://t.co/S693KvLkUk","Jan 29, 11:25:33 AM EST"
-1884639941046436323,"Woke James Bond 😂 https://t.co/9di997mDmb","Jan 29, 11:29:11 AM EST"
-1884670471201055192,"https://t.co/GihPM8F9fW","Jan 29, 1:30:30 PM EST"
-1884705485837713674,"RT @JDVance: In their own way, both Tulsi Gabbard and RFK Jr. represent parts of the new coalition in our party.
-
-To say they’re unwelcome…","Jan 29, 3:49:38 PM EST"
-1884719796236763485,"RT @jk_rowling: I see the leftists who threw evidence-based medicine and safeguarding out of the window, causing acute harm to women, gay r…","Jan 29, 4:46:30 PM EST"
-1884719991276097784,"🤔 https://t.co/8dt38LseCT","Jan 29, 4:47:16 PM EST"
-1884720228430467436,"Hardcore 🔥🔥 https://t.co/TneoRtypEY","Jan 29, 4:48:13 PM EST"
-1884720659541926005,"Accurate https://t.co/QYyUHcF8OE","Jan 29, 4:49:56 PM EST"
-1884721158542463482,"🤣🤣 https://t.co/2d0tZk8kJ9","Jan 29, 4:51:55 PM EST"
-1884721467759186019,"RT @neuralink: Today is the one-year anniversary of @ModdedQuad becoming the first person to receive our implant.
-
-To Noland and our other…","Jan 29, 4:53:09 PM EST"
-1884737522661515422,"https://t.co/LAyjDkpwCb","Jan 29, 5:56:56 PM EST"
-1884751592282309044,"🇺🇸🇺🇸 https://t.co/xlWRLvlySB","Jan 29, 6:52:51 PM EST"
-1884752000518181357,"The mayor of LA is going full communist.
-
-Recall her before it is too late. https://t.co/XA3gXg2VId","Jan 29, 6:54:28 PM EST"
-1884754561803395193,"RT @SeibtNaomi: 🚨🇩🇪 THE AFD JUST MADE HISTORY!!!
-
-The firewall has fallen.
-
-The German parliament has voted for a stricter migration polic…","Jan 29, 7:04:39 PM EST"
-1884755225824702464,"RT @levie: Teslas driving themselves off the factory floor. When you see stuff like this, it’s obvious that there are just crazy cool effic…","Jan 29, 7:07:17 PM EST"
-1884756138752667665,"Unfortunately, there has been weaponization of FBI “background checks” and making things “classified” and then redacted when they should be open to public scrutiny.
-
-Serious reform is needed. https://t.co/7pGNaAzKE3","Jan 29, 7:10:55 PM EST"
-1884756469624545462,"Mini en México! https://t.co/KyN7OKxJed","Jan 29, 7:12:14 PM EST"
-1884785557491835255,"Community Notes ftw again 😂 https://t.co/yBGDPB3LfF https://t.co/ef0w7WaKOt","Jan 29, 9:07:49 PM EST"
-1884787686650896805,"𝕏 really is the PvP of social media 😂
-
-All the others are just story mode. https://t.co/KaoL65Th39","Jan 29, 9:16:16 PM EST"
-1884787905891033439,"https://t.co/dwRuYpsCIe","Jan 29, 9:17:09 PM EST"
-1884844523676733520,"RT @NASA: NASA and SpaceX are expeditiously working to safely return the agency’s SpaceX Crew-9 astronauts Suni Williams and Butch Wilmore…","Jan 30, 1:02:07 AM EST"
-1884845644608675844,"RT @JackPosobiec: JD VANCE: There is a Christian concept that you love your family and then you love your neighbor, and then you love your…","Jan 30, 1:06:35 AM EST"
-1884847049167761483,"RT @teslaownersSV: Birth rates are plummeting in a lot of countries. Population collapse is the greatest threat to civilization.
-
-Change n…","Jan 30, 1:12:09 AM EST"
-1884848309430317385,"RT @DouglasKMurray: https://t.co/xmVpB8StVL","Jan 30, 1:17:10 AM EST"
-1884848925435150783,"RT @YunTaTsai1: Many of my friends in AI companies thought we were just a car company. Yet, I personally have more compute quota than their…","Jan 30, 1:19:37 AM EST"
-1884851809962860637,"https://t.co/g0UPtfXK2f","Jan 30, 1:31:05 AM EST"
-1884853228111552843,"RT @WallStreetMav: Liberal logic ... they don't seem to understand the entering the country iIIegaIIy was a crime. https://t.co/QPbwP84Qzq","Jan 30, 1:36:43 AM EST"
-1884950821772673529,"RT @amuse: SHOCK: For the first time large numbers of FEMA employees are going door-to-door in Western North Carolina. Trump’s return to wo…","Jan 30, 8:04:31 AM EST"
-1884951079453933817,"RT @amuse: FALSE FLAG: The FBI routinely setup, funded, and/or organized rightwing extremists groups like the Michigan 3% and Patriot Front…","Jan 30, 8:05:32 AM EST"
-1884952045985137013,"RT @Liv_Boeree: He’s spot on about this, and the fact that heads have not literally rolled for this fraud is a travesty","Jan 30, 8:09:23 AM EST"
-1884952228600930457,"RT @skscartoon: #ElizabethWarren AKA "Pocahontas" or "Senator Karen" received contributions totaling around $821,941 from the pharmaceutica…","Jan 30, 8:10:06 AM EST"
-1884952334284812579,"🤨 https://t.co/2aTz6iNHNX","Jan 30, 8:10:31 AM EST"
-1884953859052708226,"RT @amuse: DEMOCRACY? The German Bundestag is set to vote today on whether to initiate proceedings to ban the Alternative for Germany (AfD)…","Jan 30, 8:16:35 AM EST"
-1884954118776570151,"RT @amuse: RACISM? Los Angeles Mayor Karen Bass opposes voter ID but is requiring proof of residency and photo ID to enter the Pacific Pali…","Jan 30, 8:17:37 AM EST"
-1884957429500158166,"RT @teslaownersSV: "It is possible from the physics standpoint to restore full body functionality”
-
- Elon Musk
- https://t.co/xAdBGNPvun","Jan 30, 8:30:46 AM EST"
-1884957451872526721,"RT @cb_doge: WE ARE SO BACK https://t.co/2hkDE0rnhY","Jan 30, 8:30:51 AM EST"
-1884972459129983142,"RT @MarioNawfal: LVMH CEO BERNARD ARNAULT: FRANCE ALSO NEEDS TO APPOINT SOMEONE TO SLASH BUREAUCRACY
-
-“I've just returned from the USA, as…","Jan 30, 9:30:30 AM EST"
-1884972901037670478,"RT @iamyesyouareno: This is like an open invitation saying: “Come to the UK, you can steal an old man’s home and be rewarded £540K!” https:…","Jan 30, 9:32:15 AM EST"
-1884973040921956710,"Absolutely! https://t.co/yeXpEaM2GG","Jan 30, 9:32:48 AM EST"
-1884973429570338894,"True https://t.co/5PGmVkN8pe","Jan 30, 9:34:21 AM EST"
-1884981561046524226,"RT @SeibtNaomi: 🇩🇪 Oaf Schitz is fuming as his only hope to get into a government coalition Merz calls him out:
-
-Under Scholz's government,…","Jan 30, 10:06:40 AM EST"
-1884982248249622845,"😂 https://t.co/FbOyqilP9D","Jan 30, 10:09:23 AM EST"
-1884985835554050192,"🫤 https://t.co/pRWfsfqSuT","Jan 30, 10:23:39 AM EST"
-1885057952953897469,"🔥🔥 https://t.co/uYdJ0AnHZE","Jan 30, 3:10:13 PM EST"
-1885058334119637341,"RT @thatsKAIZEN: Diversity is not inherently a strength.
-
-Diversity is a variable.
-
-Diversity is sometimes a strength.
-
-Diversity is someti…","Jan 30, 3:11:44 PM EST"
-1885081785505087506,"Congrats on going supersonic! https://t.co/xgyDSevEEF","Jan 30, 4:44:55 PM EST"
-1885082132772503583,"RT @TheBabylonBee: Democrat Senators Oppose Diversity For One Day Only https://t.co/TtAeVwELhR https://t.co/7Fi6zX4Zuh","Jan 30, 4:46:18 PM EST"
-1885085005589667976,"Much appreciated https://t.co/nIfD8jSudq","Jan 30, 4:57:43 PM EST"
-1885087843623518699,"Crazy https://t.co/zy1QVUi20k","Jan 30, 5:08:59 PM EST"
-1885089037112791069,"Under the Biden administration, the FAA and other government agencies had absolutely insane hiring practices that endangered the public.
-
-President @realDonaldTrump and his team are working rapidly to restore competent personnel to all positions involvin","Jan 30, 5:13:44 PM EST"
-1885089589888434374,"https://t.co/REP7AUWroH","Jan 30, 5:15:56 PM EST"
-1885092217624088944,"RT @amuse: @elonmusk @realDonaldTrump The DEI indoctrination in the FAA began during the Obama administration and accelerated during the Bi…","Jan 30, 5:26:22 PM EST"
-1885093173950599203,"RT @libsoftiktok: "Those that oppose my nomination -- are accusing me of being Trump’s puppet, Putin’s puppet, Assad’s puppet, a guru’s pup…","Jan 30, 5:30:10 PM EST"
-1885101970261786807,"RT @neuralink: 🧠🦾🖊️ https://t.co/TapNfhllLS","Jan 30, 6:05:07 PM EST"
-1885102414526652561,"Wow https://t.co/bNqoixs6Ur","Jan 30, 6:06:53 PM EST"
-1885108450910187533,"These hearings are just political theater https://t.co/8TrYJPF5vk","Jan 30, 6:30:52 PM EST"
-1885147497372287064,"True https://t.co/C68qbBQZta","Jan 30, 9:06:02 PM EST"
-1885147709495005273,"RT @charliekirk11: We are saving billions everyday thanks to DOGE hunting down these insane DEI departments.
-
-And this is just the start.…","Jan 30, 9:06:52 PM EST"
-1885156045804261689,"🇺🇸🇺🇸 https://t.co/cvN23YAX0m","Jan 30, 9:40:00 PM EST"
-1885157071705764285,"Wow, this is insane! 🤯 https://t.co/yswj5iAYQv","Jan 30, 9:44:05 PM EST"
-1885157812805742752,"💯 https://t.co/jZT7DUKYsQ","Jan 30, 9:47:01 PM EST"
-1885158108634198319,"Starlink works even on a cold night in the Arctic! https://t.co/kckHqjkfnJ","Jan 30, 9:48:12 PM EST"
-1885158388964724778,"This is messed up https://t.co/nshOwFBh4T","Jan 30, 9:49:19 PM EST"
-1885158454068666444,"RT @charliekirk11: Democrats are realizing their outrage machine can't keep pace with President Trump.
-
-As soon as the "resistance" talkin…","Jan 30, 9:49:34 PM EST"
-1885159276445851728,"https://t.co/WqlxFCupy6","Jan 30, 9:52:50 PM EST"
-1885160407876112402,"RT @MarioNawfal: 🇺🇸T-MOBILE JOINS APPLE & SPACEX FOR STARLINK EXPANSION
-
-T-Mobile is teaming up with Apple and @SpaceX to expand satellite…","Jan 30, 9:57:20 PM EST"
-1885161759511568618,"https://t.co/oOKe3gqzDJ","Jan 30, 10:02:42 PM EST"
-1885170810807070805,"Precisely https://t.co/c4ucIEG3tk","Jan 30, 10:38:40 PM EST"
-1885170909176095167,"RT @WesternLensman: 🔥HOLY SMOKES: Tulsi just took apart The Russia Hoax, the Dirty 51 laptop letter, Clapper, Brennan, weaponized FBI in he…","Jan 30, 10:39:04 PM EST"
-1885173060392604049,"True
- https://t.co/Ngs8kDR1qR","Jan 30, 10:47:37 PM EST"
-1885175189438070841,"DOGE has now saved taxpayers over $1 billion in crazy DEI contracts https://t.co/P81LgRKeOV","Jan 30, 10:56:04 PM EST"
-1885176751036252621,"Reducing the federal deficit from $2T to $1T in FY2026 requires cutting an average of ~$4B/day in projected 2026 spending from now to Sept 30.
-
-That would still result in a ~$1T deficit, but economic growth should be able to match that number, which woul","Jan 30, 11:02:16 PM EST"
-1885177203639349417,"As predicted https://t.co/YPw3hap6ev","Jan 30, 11:04:04 PM EST"
-1885178751371076028,"RT @sentdefender: According to a recent 𝕏 post from the Federal Bureau of Investigation (FBI), they are aiding the Department of Homeland S…","Jan 30, 11:10:13 PM EST"
-1885185750154572187,"🚀 https://t.co/eeGdBkG7yK","Jan 30, 11:38:02 PM EST"
-1885186975809888640,"RT @WesternLensman: 🚨MILLER: Trump’s FAA executive order will replace employees not hired on merit:
-
-"It is a betrayal of the American peop…","Jan 30, 11:42:54 PM EST"
-1885187049600295273,"True https://t.co/rzTdACqN04","Jan 30, 11:43:12 PM EST"
-1885187230370500797,"True https://t.co/0F56Gd3mYX","Jan 30, 11:43:55 PM EST"
-1885187465222254918,"Imperative https://t.co/3P2WT2S6gP","Jan 30, 11:44:51 PM EST"
-1885188077544501262,"The real economy is not money, it is goods & services.
-
-Money is simply an abstract representation of real things. https://t.co/mmOHBdTmkr","Jan 30, 11:47:17 PM EST"
-1885188396672336068,"RT @ChuckCallesto: @elonmusk X is the most accurate outlet for news hands down..
-
-NO DEBATE..","Jan 30, 11:48:33 PM EST"
-1885190650414432331,"Fixing this is essential https://t.co/KrHIRLmUSb","Jan 30, 11:57:30 PM EST"
-1885191085267292417,"😂💯 https://t.co/SSnTiRaanR","Jan 30, 11:59:14 PM EST"
-1885191383926858060,"Can you believe it? 🤷♂️🤣 https://t.co/JFjf96z6wz","Jan 31, 12:00:25 AM EST"
-1885192169893335118,"https://t.co/1jwFhHpjuK","Jan 31, 12:03:33 AM EST"
-1885192374688653320,"RT @ElonClipsX: Elon Musk: Do we have a spirit of adventure?
-
-“Do we have a spirit of adventure? Do we want to go out there and see the res…","Jan 31, 12:04:21 AM EST"
-1885192828034166818,"RT @mazemoore: 2023. Ted Cruz questions Biden's nominee for FAA Administrator.
-
-If it wasn't so tragic it would be hysterical. It's like a…","Jan 31, 12:06:10 AM EST"
-1885193409326874742,"Inflation is caused by government spending https://t.co/VijF7ZWW6p","Jan 31, 12:08:28 AM EST"
-1885195601781936503,"🤔 https://t.co/f2qq64eiyE","Jan 31, 12:17:11 AM EST"
-1885196110936809738,"RT @Nigel_Farage: Tell @Keir_Starmer to let the people vote. https://t.co/IDZAKPHG0E","Jan 31, 12:19:12 AM EST"
-1885196516328943852,"RT @Mick_O_Keeffe: “My child is one of 30 children in her class and she’s the only Irish child.” https://t.co/1ltBKvoC7E","Jan 31, 12:20:49 AM EST"
-1885197159051477462,"https://t.co/lEaii8gcT3","Jan 31, 12:23:22 AM EST"
-1885197391592063035,"True https://t.co/B3HCZMRxcJ","Jan 31, 12:24:18 AM EST"
-1885198510024253690,"RT @DrPatSoonShiong: Why Robert F. Kennedy Jr. has captured the attention of everyday moms because he cares. I hope our Senators understand…","Jan 31, 12:28:44 AM EST"
-1885212853965062374,"RT @stillgray: A transgender Antifa militant who was radicalized by Reddit planned for over a month to kill Scott Bessent, Pete Hegseth and…","Jan 31, 1:25:44 AM EST"
-1885213240822567410,"True. Violent criminals are a very small percentage of the population, but they will keep inflicting violence on innocent people until they’re locked up.
-
-It is cruel to the victims of crime not to lock up criminals!! https://t.co/xqQDyAs9j1","Jan 31, 1:27:16 AM EST"
-1885213613163499776,"Almost 80% of “refugees” go on vacation to the country they claim to have fled from … https://t.co/EMa9rLeDa5","Jan 31, 1:28:45 AM EST"
-1885214111140548664,"Hmm https://t.co/btiGAyeXFj","Jan 31, 1:30:44 AM EST"
-1885214631704031690,"RT @MarioNawfal: 🚨🇺🇸TESLA NAMED A TOP 100 EMPLOYER OF CHOICE IN 2024
-
-Tesla’s Form 10-K filing reveals the company earned a spot among the…","Jan 31, 1:32:48 AM EST"
-1885214723576090708,"RT @MarioNawfal: 🚨🇺🇸 CORNYN BACKS TULSI GABBARD FOR DIRECTOR OF NATIONAL INTELLIGENCE
-
-Senator Cornyn has announced his intention to suppor…","Jan 31, 1:33:10 AM EST"
-1885291720390156340,"RT @MarioNawfal: 🚨🇺🇸META MELTDOWN: STAFF REVOLT AFTER TAMPONS REMOVED FROM MEN’S BATHROOMS
-
-Zuckerberg’s crackdown on woke policies has Met…","Jan 31, 6:39:07 AM EST"
-1885293172458242296,"This is the critical battle to restore power to the PEOPLE from the massive unelected bureaucracy!
-
-If your elected representatives cannot overcome the bureaucrats who control government, then you live in a BUREAUcracy, not a DEMOcracy!
-
-Tyranny. https:/","Jan 31, 6:44:54 AM EST"
-1885294459639754790,"RT @JTLonsdale: We’re winning in DC, but our cities are still run by the corrupt left.
-
-The state of TX needs to confront its runaway citie…","Jan 31, 6:50:00 AM EST"
-1885294804252127611,"RT @EndWokeness: Why the heII does it matter what skin color or gender identity our air traffic controllers are? https://t.co/dqATCsbk0h","Jan 31, 6:51:23 AM EST"
-1885294891611078848,"🇺🇸🇺🇸 https://t.co/WmVQEoEYeq","Jan 31, 6:51:43 AM EST"
-1885295268393812242,"RT @Nigel_Farage: Keir Starmer does not want you to sign this petition. Please do not share it with your friends.
-
-➡️https://t.co/yikGOfSJ…","Jan 31, 6:53:13 AM EST"
-1885295431665483781,"RT @RapidResponse47: President Donald J. Trump signs a Presidential Memorandum ordering an immediate assessment of aviation safety to ensur…","Jan 31, 6:53:52 AM EST"
-1885298116372394214,"!! https://t.co/Loiezu3ciC","Jan 31, 7:04:32 AM EST"
-1885298695727423955,"Interesting https://t.co/PSfLD2ohNm","Jan 31, 7:06:50 AM EST"
-1885299358700114118,"RT @america: Full opening statement of President Donald Trump’s nominee for Director of National Intelligence, Tulsi Gabbard:
-
- https://t.c…","Jan 31, 7:09:28 AM EST"
-1885299619585831097,"RT @nicksortor: 🚨 #BREAKING: Just 24 HOURS before an American Airlines flight collided with a Blackhawk at Reagan National Airport, ANOTHER…","Jan 31, 7:10:31 AM EST"
-1885299724036579833,"RT @DefiyantlyFree: One year ago, Republicans stood before Congress and stated that there was shortage of air, traffic control operators, a…","Jan 31, 7:10:56 AM EST"
-1885299796837011716,"RT @BillboardChris: Washington State Democrats voted not to inform parents if a child is sexually abused by a school employee.","Jan 31, 7:11:13 AM EST"
-1885300119123189876,"RT @america: Full opening statement of President Donald Trump’s nominee for FBI Director, Kash Patel:
-
- https://t.co/buDPPHjwQb","Jan 31, 7:12:30 AM EST"
-1885300783899430968,"This is insane https://t.co/d5GEBRns4p","Jan 31, 7:15:08 AM EST"
-1885301364202348845,"Promising https://t.co/L2GNKrmZGT","Jan 31, 7:17:27 AM EST"
-1885301548026036462,"Absolutely https://t.co/v8pfmcq2Jk","Jan 31, 7:18:10 AM EST"
-1885301867762102571,"Good for him! https://t.co/B34kP1OHan","Jan 31, 7:19:27 AM EST"
-1885301950943551531,"RT @LibertyPillMeme: @elonmusk Are we having fun yet? https://t.co/KAozDHR8xR","Jan 31, 7:19:46 AM EST"
-1885302061148913874,"RT @iam_smx: DEI must DIE, only Skills and competence should matter!
-
-"I believe we need to return to a focus on merit. It shouldn't matter…","Jan 31, 7:20:13 AM EST"
-1885397103066710249,"Night and Day! https://t.co/ilIcdPS5VC","Jan 31, 1:37:53 PM EST"
-1885398919561027871,"https://t.co/TUYjj4jXsz","Jan 31, 1:45:06 PM EST"
-1885399532130714014,"Wow, this is worth reading https://t.co/YMpHwXs7Ga","Jan 31, 1:47:32 PM EST"
-1885402591556673883,"https://t.co/7xv3xHa61v","Jan 31, 1:59:41 PM EST"
-1885402703397872112,"Exactly https://t.co/ucQiKg8AVo","Jan 31, 2:00:08 PM EST"
-1885402979437625619,"😎 https://t.co/Gy7YxLplTU","Jan 31, 2:01:14 PM EST"
-1885403170479702314,"😮 https://t.co/9dMxvdIa6Z","Jan 31, 2:01:59 PM EST"
-1885403898380238853,"Yes! https://t.co/ovV39GZMUl","Jan 31, 2:04:53 PM EST"
-1885404127594717514,"And @CommunityNotes ftw again 😂 https://t.co/BXNa6A4GA8","Jan 31, 2:05:47 PM EST"
-1885404220108464632,"RT @DimaZeniuk: Starships at Starbase https://t.co/IFSHygie9d","Jan 31, 2:06:09 PM EST"
-1885404339209900455,"RT @teslaeurope: Better in all the ways you were hoping for
-
-New Model Y on display across Europe starting tomorrow – come have a look in p…","Jan 31, 2:06:38 PM EST"
-1885404613081227414,"I have great respect for anyone who makes useful products or provides useful services to their fellow human beings https://t.co/McijHsyMEm","Jan 31, 2:07:43 PM EST"
-1885405022491414825,"RT @teslaownersSV: If young Elon Musk called you, what would you say ? https://t.co/NnpLF2tZr2","Jan 31, 2:09:21 PM EST"
-1885405086316110129,"RT @thatsKAIZEN: A note on affirmative action:
-
-In a competitive system where one person getting a spot means that another person doesn’t,…","Jan 31, 2:09:36 PM EST"
-1885409396496195861,"RT @DimaZeniuk: Standing under the Starship https://t.co/OvhtU1Odcx","Jan 31, 2:26:43 PM EST"
-1885438555654098978,"RT @DOGE: Updated data on DEI related contract cancellations with full detail: https://t.co/kcPATigb3x","Jan 31, 4:22:36 PM EST"
-1885568627992129879,"This is the way https://t.co/ia9dI42Re6","Feb 1, 12:59:27 AM EST"
-1885574060798583230,"RT @BrendanCarrFCC: Ricky asked me to say Thank You to Elon Musk.
-
-Ricky is working hard to rebuild Chimney Rock, North Carolina, and he’s…","Feb 1, 1:21:03 AM EST"
-1885574145515131030,"RT @TeslaBoomerMama: Dropbox is leaving Delaware !!!
-
-Ladies and Gentlemen, it's happening.
-
-And so overdue.
-
-@delaware_gov, are you listen…","Feb 1, 1:21:23 AM EST"
-1885574678737039823,"I am cautiously optimistic that we will reach the $4B/day FY2026 reduction this weekend https://t.co/XQBK3rqkwo","Feb 1, 1:23:30 AM EST"
-1885575202358092099,"Deleted https://t.co/o0C9neqJcG","Feb 1, 1:25:35 AM EST"
-1885575392720761079,"The nightmare is over https://t.co/YgIhyysBbQ","Feb 1, 1:26:20 AM EST"
-1885576908420644999,"None of this would be possible without President @realDonaldTrump https://t.co/OGCWYxJAqb","Feb 1, 1:32:21 AM EST"
-1885578911209209983,"🇺🇸🇺🇸🇺🇸 God Bless America 🇺🇸🇺🇸🇺🇸 https://t.co/ybcrQnNwvI","Feb 1, 1:40:19 AM EST"
-1885580164303589646,"🤨 https://t.co/jk7p7B311F","Feb 1, 1:45:18 AM EST"
-1885580453307928827,"💯 https://t.co/RO4XXGVdUR","Feb 1, 1:46:27 AM EST"
-1885582076247712229,"The @DOGE team discovered, among other things, that payment approval officers at Treasury were instructed always to approve payments, even to known fraudulent or terrorist groups.
-
-They literally never denied a payment in their entire career.
-
-Not even ","Feb 1, 1:52:54 AM EST"
-1885582860297335169,"😍 https://t.co/Ofr55unbxe","Feb 1, 1:56:00 AM EST"
-1885583425953833223,"RT @kanyewest: https://t.co/dERBUj7EPv","Feb 1, 1:58:15 AM EST"
-1885584603521462429,"Awesome https://t.co/ilXf5rBjSQ","Feb 1, 2:02:56 AM EST"
-1885585697106428100,"Ultimately, I doubt the cartels can be defeated without US Special Operations https://t.co/gEfAhyruo5","Feb 1, 2:07:17 AM EST"
-1885589956376035494,"True https://t.co/vsaIztl2Q6","Feb 1, 2:24:12 AM EST"
-1885592855143383050,"RT @AutismCapital: 🚨 JASON CALACANIS: “I think the best part about (DeepSeek) is the fact that Sam Altman was supposed to be doing open sou…","Feb 1, 2:35:43 AM EST"
-1885593185394499692,"Deleted https://t.co/KlA2fW0oyY","Feb 1, 2:37:02 AM EST"
-1885593417910006196,"RT @amuse: BLACK HISTORY MONTH! Love to see Trump honoring Thomas Sowell, Justice Thomas, Frederick Douglas, and Harriet Tubman. https://t…","Feb 1, 2:37:58 AM EST"
-1885594684682080511,"The @AfD is Germany’s only hope https://t.co/SUi76sCtkI","Feb 1, 2:43:00 AM EST"
-1885595333683560946,"Yes https://t.co/FDfXdu2ntS","Feb 1, 2:45:34 AM EST"
-1885595695010214151,"RT @amuse: GERMANY: AfD leader Alice Weidel has taken a bold, Trumpian stance, vowing that within 100 days of taking office, she will seal…","Feb 1, 2:47:01 AM EST"
-1885596218765492629,"RT @unusual_whales: JUST IN: Mark Zuckerberg's $META in talks to exit Delaware and reincorporate in Texas, per WSJ","Feb 1, 2:49:05 AM EST"
-1885596418829586614,"Interesting https://t.co/4XJD5S7OiB","Feb 1, 2:49:53 AM EST"
-1885596495384092960,"RT @cb_doge: 🚨 ELON MUSK: "This election coming up in Germany is incredibly important. It could decide the entire fate of Europe, maybe the…","Feb 1, 2:50:11 AM EST"
-1885635755529138370,"All this time, they kept the water from the people of California … https://t.co/I7MzrvNM4n","Feb 1, 5:26:12 AM EST"
-1885636574353760362,"RT @MarioNawfal: 🚨🇺🇸DELAWARE GOES WOKE - WILL IT GO BROKE?
-
-Delaware’s once rock-solid reputation as a corporate haven is crumbling as busi…","Feb 1, 5:29:27 AM EST"
-1885638564068626823,"Sanders feels the burn https://t.co/GmHu2SF4EB","Feb 1, 5:37:21 AM EST"
-1885638945926488218,"Only because of @realDonaldTrump https://t.co/yjCIWFFQY7","Feb 1, 5:38:52 AM EST"
-1885639832539455598,"Sent to bot hell https://t.co/LfXDKzfaAV","Feb 1, 5:42:24 AM EST"
-1885640099867619404,"Yea https://t.co/5uqvjecwC2","Feb 1, 5:43:27 AM EST"
-1885641015899410467,"True https://t.co/kQwDU1LHQ7","Feb 1, 5:47:06 AM EST"
-1885641567668519240,"💯
-
-They are government-funded non-governmental organizations – living oxymorons! https://t.co/qg49sUD7fD","Feb 1, 5:49:17 AM EST"
-1885641720961900721,"Exactly https://t.co/XTFvjsvZr5","Feb 1, 5:49:54 AM EST"
-1885643883012329915,"RT @RupertLowe10: We must be unapologetically patriotic - put the British people above ALL else, and be proud of doing so.
-
-We must do what…","Feb 1, 5:58:29 AM EST"
-1885644783307182356,"💯 https://t.co/1D2J3haTCH","Feb 1, 6:02:04 AM EST"
-1885645059250417857,"RT @MarioNawfal: 🚨🇺🇸TRUMP: EVERYBODY’S REPLACEABLE—WE’RE REDUCING GOVERNMENT
-
-“We'd love to have them leave. We wanna clean it out. People…","Feb 1, 6:03:10 AM EST"
-1885645765554348107,"Bingo https://t.co/wc98mufFzA","Feb 1, 6:05:58 AM EST"
-1885645937759969423,"RT @MarioNawfal: ELON: AI EDUCATION WILL BE LIKE HAVING EINSTEIN AS A TEACHER FOR EACH CHILD
-
-“I think the parents will still be responsibl…","Feb 1, 6:06:39 AM EST"
-1885646651257237832,"!! https://t.co/lFE1MTap6z","Feb 1, 6:09:29 AM EST"
-1885646905222267169,"RT @ElTiranistas: @DefiyantlyFree And the air traffic control shortage of employees started all the way back in the Obama administration. T…","Feb 1, 6:10:30 AM EST"
-1885647508937851303,"DOGE is inevitable https://t.co/UBbILM64To","Feb 1, 6:12:54 AM EST"
-1885723650591953282,"True https://t.co/To9HEc2ImR","Feb 1, 11:15:28 AM EST"
-1885723736692711773,"RT @MarioNawfal: ELON: TESLA IS UNIQUELY POSITIONED TO MANUFACTURE A HUMANOID ROBOT
-
-“We really have by far the best team of humanoid robot…","Feb 1, 11:15:48 AM EST"
-1885729464828432462,"RT @cb_doge: 🚨 ELON MUSK: Just like President Trump has common sense policies, the AfD party has common sense policies like getting the gov…","Feb 1, 11:38:34 AM EST"
-1885730623005839753,"RT @powerbottomdad1: a single activist judge ruined her entire state lol. so much of delawares lifeblood was due to a reliable unbiased cou…","Feb 1, 11:43:10 AM EST"
-1885742602588148173,"Companies are flooding out of Delaware, because the activist chief judge of the Delaware court has no respect for shareholder rights https://t.co/YtCLLGFC54","Feb 1, 12:30:46 PM EST"
-1885742801960239347,"DEI has caused people to DIE https://t.co/AJTWVChAzX","Feb 1, 12:31:34 PM EST"
-1885750344065413623,"RT @realDonaldTrump: This morning I ordered precision Military air strikes on the Senior ISIS Attack Planner and other terrorists he recrui…","Feb 1, 1:01:32 PM EST"
-1885750647938760791,"Any lawyer still recommending incorporation in Delaware at this point should be sued for malpractice https://t.co/PjkEZNSpsx","Feb 1, 1:02:44 PM EST"
-1885750707661210063,"RT @RupertLowe10: We should call DEI what it is. Anti-white racism.
-
-Let's follow the Americans and eradicate the poisonous diversity indus…","Feb 1, 1:02:58 PM EST"
-1885750777399898550,"RT @MarioNawfal: 🚨🇺🇸TRUMP UNLEASHES CALIFORNIA’S WATER—BIDEN AND NEWSOM LET WILDFIRES BURN!
-
-For years, California suffered from artificial…","Feb 1, 1:03:15 PM EST"
-1885754113574498313,"🇺🇸🇺🇸 Bravo Britain!! 🇬🇧 🇬🇧 https://t.co/lxEfDfzuWA","Feb 1, 1:16:30 PM EST"
-1885754223230423178,"RT @Inevitablewest: Holy Sh*t.
-
-The entirety of Central London has just been completely shut down by 100,000+ British patriots demanding th…","Feb 1, 1:16:57 PM EST"
-1885755284133474501,"Texas and Nevada are the best choices for incorporation https://t.co/ZZJQuBZ83q","Feb 1, 1:21:10 PM EST"
-1885755482662478240,"Texas or Nevada actually respect shareholder rights","Feb 1, 1:21:57 PM EST"
-1885755690368573766,"It is more insane than you could possibly imagine! https://t.co/2GJfC0j4NP","Feb 1, 1:22:46 PM EST"
-1885758822330884582,"Same https://t.co/SBlQ6DaFaS","Feb 1, 1:35:13 PM EST"
-1885763877830332653,"Absolutely https://t.co/N2CQVBAcnh","Feb 1, 1:55:18 PM EST"
-1885764053265449008,"💯 https://t.co/1wOLGwenUL","Feb 1, 1:56:00 PM EST"
-1885764639574618411,"This is insane https://t.co/uFWpoYH91K","Feb 1, 1:58:20 PM EST"
-1885767446209888726,"RT @SallyMayweather: 👌 https://t.co/QnCGEN4J5z","Feb 1, 2:09:29 PM EST"
-1885767797877219687,"RT @teslaownersSV: Thankful Elon Musk is giving us an exciting future
- https://t.co/Rxs6obkcdc","Feb 1, 2:10:53 PM EST"
-1885768824135307369,"Obviously, there will be EXTREME opposition from the grifters!!
-
-And they will make it sound like we’re cutting funding to save baby pandas when we’re actually cutting funding to fraudsters, wastrels & terrorists 🤣🤣
-
-This is only possible because of","Feb 1, 2:14:58 PM EST"
-1885769191631765714,"True https://t.co/w8gdCnNc8D","Feb 1, 2:16:25 PM EST"
-1885769304286658691,"RT @MarioNawfal: 🇺🇸FINALLY, OPM’S WASTE AND MISMANAGEMENT ARE BEING REINED IN
-
-For years, Congress has exposed how the Office of Personnel…","Feb 1, 2:16:52 PM EST"
-1885777925158437177,"The level of corruption and waste is unreal! https://t.co/XVCxRhROlg https://t.co/kRrdeI0HQe","Feb 1, 2:51:08 PM EST"
-1885778138422018410,"Vote for Fidias. He is smart, super high energy and genuinely cares about you! https://t.co/2JeatKXW0u","Feb 1, 2:51:58 PM EST"
-1885778417586442324,"https://t.co/k7s9zGJ63s","Feb 1, 2:53:05 PM EST"
-1885779185144115240,"RT @HSajwanization: Honestly, Trump has done in 2 weeks what Biden could NOT do in 4 years !
-
-California has water
-
-DOGE saving $1 Bn / d…","Feb 1, 2:56:08 PM EST"
-1885779386621686151,"MEGA!!
-
-Make Europe Great Again https://t.co/fiIHHhvHNV","Feb 1, 2:56:56 PM EST"
-1885779527978090772,"!! https://t.co/LWM3zV3jtL","Feb 1, 2:57:30 PM EST"
-1885781762560737474,"People of Europe:
-
-Join the MEGA movement!
-
-Make Europe Great Again!!","Feb 1, 3:06:22 PM EST"
-1885788762052960729,"This will unlock incredible growth.
-
-America is a nation of builders.
-
-Let the builders build. https://t.co/L48nWRshzO","Feb 1, 3:34:11 PM EST"
-1885789468713476492,"Very few in the bureaucracy actually work the weekend, so it’s like the opposing team just leaves the field for 2 days!
-
-Working the weekend is a superpower 😂 https://t.co/VgyBk1nJIO","Feb 1, 3:37:00 PM EST"
-1885790327627206835,"Absolutely https://t.co/Uj0ZuHr2rT","Feb 1, 3:40:25 PM EST"
-1885790422514991178,"Wise words https://t.co/8WNH9H4DUI","Feb 1, 3:40:47 PM EST"
-1885790748844359821,"😂 https://t.co/rX5U8ntfhA","Feb 1, 3:42:05 PM EST"
-1885791803636326717,"RT @AutismCapital: 🚨NEW: Trump issued an order saying that any lame-duck Collective Bargaining Agreements (CBAs) executed 30 days prior to…","Feb 1, 3:46:16 PM EST"
-1885791888755548464,"Time for a massive decrease @DOGE https://t.co/41VBxvGxaz","Feb 1, 3:46:37 PM EST"
-1885793506020430139,"RT @Rothmus: 👇 https://t.co/gvAbS32IxX","Feb 1, 3:53:02 PM EST"
-1885793561590866394,"RT @RupertLowe10: The UK is not a project, it’s not an experiment, it’s not a corporation.
-
-It’s our home.
-
-Those of us who love it very de…","Feb 1, 3:53:16 PM EST"
-1885793629995708745,"https://t.co/YptnshrF6E","Feb 1, 3:53:32 PM EST"
-1885797646427677142,"RT @cb_doge: MEGA 🇪🇺
-
-MAKE EUROPE GREAT AGAIN
-
- https://t.co/nUaPTEBz0i","Feb 1, 4:09:29 PM EST"
-1885797829676868043,"RT @cb_doge: It's time to set the foundation for America to be strong for centuries, forever! 🇺🇸
-
- https://t.co/oZuDo8A7Wo","Feb 1, 4:10:13 PM EST"
-1885804731596988569,"Yay! Thanks for your support, Michael.
-
-This will be great for the American people. https://t.co/YKCflp38aO","Feb 1, 4:37:39 PM EST"
-1885804974073856447,"RT @SERobinsonJr: Starship. Human for scale. https://t.co/dJrCjBaDbM","Feb 1, 4:38:37 PM EST"
-1885834575374639376,"RT @MarioNawfal: ALEX KARP: CALLING ELON A NAZI IS A COMPLETE REWRITE OF HISTORY
-
-“The only 2 CEOs that went to Israel who run publicly tra…","Feb 1, 6:36:14 PM EST"
-1885843585779576951,"𝕏 is the #1 news source on Earth! https://t.co/rcNqqRrSWc","Feb 1, 7:12:02 PM EST"
-1885843731615523046,"RT @UpdatingOnRome: https://t.co/Zeram56UbK","Feb 1, 7:12:37 PM EST"
-1885844237415047651,"RT @johnkrausphotos: https://t.co/28jNEDVswf","Feb 1, 7:14:38 PM EST"
-1885961308622684465,"Very corrupt https://t.co/noP598f7dQ","Feb 2, 2:59:50 AM EST"
-1885962927821209885,"RT @MarioNawfal: 🚨🇩🇪ALICE WEIDEL: WE WILL SECURE GERMANY'S BORDERS, REFUSE ALL ILLEGAL IMMIGRANTS, AND EXIT THE EU ASYLUM SYSTEM
-
-"We have…","Feb 2, 3:06:16 AM EST"
-1885963170553942502,"RT @charliekirk11: Imagine trying to illegally cross the border and running into this. We finally have a border again, folks. https://t.co/…","Feb 2, 3:07:14 AM EST"
-1885963468441800946,"RT @MarioNawfal: 🚨🇺🇸DEAD OPENAI WHISTLEBLOWER’S PARENTS SUE SFPD FOR HIDDEN RECORDS
-
-The parents of Suchir Balaji have filed a lawsuit agai…","Feb 2, 3:08:25 AM EST"
-1885963870885527724,"RT @MarioNawfal: 🚨🇺🇸 JD VANCE: MEMO TO THE PRESS, ‘TRUMP REFUSES TO BEND THE KNEE TO OLIGARCHY’
-
-VP Vance issued a direct statement on X, w…","Feb 2, 3:10:00 AM EST"
-1885964198972170646,"Good question https://t.co/Jb3DYiZ6Qx","Feb 2, 3:11:19 AM EST"
-1885964343906357676,"RT @Starlink: Starlink Mini connects in minutes and fits in a backpack 🛰️🏖️","Feb 2, 3:11:53 AM EST"
-1885964969335808217,"The @DOGE team is rapidly shutting down these illegal payments https://t.co/GabhBL7gxf","Feb 2, 3:14:22 AM EST"
-1885965581834166761,"Super important https://t.co/FjsVhf9XwX","Feb 2, 3:16:48 AM EST"
-1885966827227861179,"DOGE is working 120 hour a week. Our bureaucratic opponents optimistically work 40 hours a week. That is why they are losing so fast. https://t.co/dXtrL5rj1K","Feb 2, 3:21:45 AM EST"
-1885967449859690807,"RT @Timcast: Democrats used the DOJ to try to implement a soft coup
-
-They raided the GOP frontrunners home, charged him with fake bullshit…","Feb 2, 3:24:14 AM EST"
-1885967608823922898,"RT @Sec_Noem: Daily encounters at our southern border have plunged 93% since President @realDonaldTrump took office.
-
-I'm at the border to…","Feb 2, 3:24:52 AM EST"
-1885967939137925471,"🎯 https://t.co/C4xteVUJeN","Feb 2, 3:26:10 AM EST"
-1885968081475780938,"RT @johnkrausphotos: https://t.co/eNUUgK6iWQ","Feb 2, 3:26:44 AM EST"
-1885968146361655719,"RT @SpaceX: Falcon 9 lifts off from pad 4E in California, delivering 22 @Starlink satellites to the constellation https://t.co/Y4xyrVxp5Y","Feb 2, 3:27:00 AM EST"
-1885968244034404837,"https://t.co/2eCXHJgTq0","Feb 2, 3:27:23 AM EST"
-1885968300674256961,"RT @teslaownersSV: Elon Musk won’t be bribed or bought
-
-“Offer me money, offer me power, I don't care. I'll say what I want to say, and if…","Feb 2, 3:27:37 AM EST"
-1885968644129092088,"True https://t.co/z6U6tJrsyB","Feb 2, 3:28:59 AM EST"
-1885969037324091698,"RT @MostlyPeacefull: Everything Trump and Musk are doing is exactly what people voted for in November.
-
-Democrats can’t comprehend this.…","Feb 2, 3:30:32 AM EST"
-1885969225199567306,"RT @Tesla: One of the first New Model Y produced at Giga Berlin, signed by local team 🤝
-
-Production has now started across all of our 4 veh…","Feb 2, 3:31:17 AM EST"
-1885970278787715249,"RT @MilaLovesJoe: BREAKING:
-
-The Department of Justice has just ended their lawsuit against Virginia for removing illegals from the voter r…","Feb 2, 3:35:28 AM EST"
-1885970766094569592,"RT @themarketswork: If Trump kills USAID it will be one of the single biggest wins for our country and one of the single biggest losses for…","Feb 2, 3:37:24 AM EST"
-1885971513477574660,"😎 https://t.co/6EU2FA8hXI","Feb 2, 3:40:23 AM EST"
-1885971669300232381,"Absolutely https://t.co/4mg9T56LVx","Feb 2, 3:41:00 AM EST"
-1885971752548741308,"RT @stillgray: Never bet against Elon Musk. https://t.co/S2yilwGWl6","Feb 2, 3:41:20 AM EST"
-1885971860975694112,"RT @iam_smx: Next time you are thinking of giving up remember this photo.
-
-2006 - Elon Musk staring at debris from Falcon 1, which was the…","Feb 2, 3:41:45 AM EST"
-1885972389629960436,"🤨 https://t.co/3BXH0dnOSd","Feb 2, 3:43:52 AM EST"
-1885972433129140660,"RT @DefiyantlyFree: 🧵How the Biden administration weaponized USAID:
-
-1.Abortion
-
-One of the first things that Joe Biden did after assuming…","Feb 2, 3:44:02 AM EST"
-1885981038217670889,"RT @MarioNawfal: 🇺🇸JD VANCE: WE'VE ACCOMPLISHED MORE IN 8 DAYS THAN BIDEN IN 4 YEARS
-
-"There's something incredibly energetic about [Trump]…","Feb 2, 4:18:14 AM EST"
-1885983936263737841,"RT @cb_doge: Starship can make life multiplanetary for the first time in Earth’s ~4.5 billion year existence. https://t.co/IFSFCPdCxQ","Feb 2, 4:29:44 AM EST"
-1885984124130804219,"RT @themarketswork: Samantha Power ran USAID for the last four years. She was responsible for untold billions given to NGOs all over the wo…","Feb 2, 4:30:29 AM EST"
-1886054701696774300,"Interesting. Is this legal? https://t.co/kQJJiYU43E","Feb 2, 9:10:56 AM EST"
-1886083149446127695,"Lmao I thought this post was parody https://t.co/rhm7H3HDUU","Feb 2, 11:03:59 AM EST"
-1886083762376540296,"Great idea https://t.co/c3YVVj7g3e","Feb 2, 11:06:25 AM EST"
-1886084534568996942,"Americans are excited about the future and love what President @realDonaldTrump is getting done!
-
-🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/kFzqiCbQck","Feb 2, 11:09:29 AM EST"
-1886089119773720695,"Extremely concerning.
-
-NED is RIFE with CORRUPTION!!
-
-What is going on here? @SenToddYoung https://t.co/murz7mLYGC","Feb 2, 11:27:42 AM EST"
-1886089653188481504,"Those who know, please reply to this post listing all the evil things that NED has done. It’s a long list. https://t.co/8smJsP5Hji","Feb 2, 11:29:49 AM EST"
-1886091346412175768,"This is the best way to reach the public directly.
-
-Infinitely better than legacy media soundbites. https://t.co/BD8TeceEr7","Feb 2, 11:36:33 AM EST"
-1886092387098796499,"Tax regulations need a massive reset.
-
-They are torturing the American people! https://t.co/UnO9cCASnT","Feb 2, 11:40:41 AM EST"
-1886093571104584015,"💯 https://t.co/WvEFYt2two","Feb 2, 11:45:23 AM EST"
-1886093812352565741,"NED is a SCAM https://t.co/YmNO4NGMjS","Feb 2, 11:46:21 AM EST"
-1886094474201206804,"Todd Young is a deep state puppet. https://t.co/lHd6e6lTFJ","Feb 2, 11:48:59 AM EST"
-1886094736932454767,"As the saying goes, follow the money …
-
-That is exactly what we will do. https://t.co/KATGVQ2rJ0","Feb 2, 11:50:01 AM EST"
-1886098373251301427,"USAID was a viper’s nest of radical-left marxists who hate America https://t.co/0xKxmN5Pss","Feb 2, 12:04:28 PM EST"
-1886099001876832480,"USAID is evil https://t.co/03PAhpJkU2","Feb 2, 12:06:58 PM EST"
-1886099259646173695,"It’s amazing what you can learn from device forensics. They won’t get away with their crimes. https://t.co/oPKcynyjvQ","Feb 2, 12:08:00 PM EST"
-1886100660287914056,"Only US military forces can defeat the cartels https://t.co/dsnOqPDq4q","Feb 2, 12:13:34 PM EST"
-1886100950219182312,"Absolutely. The federal government has squandered your hard-earned tax money. It’s an outrage. https://t.co/26n9Ss8536","Feb 2, 12:14:43 PM EST"
-1886101361370022199,"Absolutely. Returning to merit above all will save many innocent lives.
-
-So much damage was done by the prior administration. https://t.co/0l2wIVriVr","Feb 2, 12:16:21 PM EST"
-1886101574096753074,"Good https://t.co/XaL8DYlePn","Feb 2, 12:17:11 PM EST"
-1886102008337211531,"DEI means people DIE https://t.co/e0ck9znaaN","Feb 2, 12:18:55 PM EST"
-1886102414194835755,"USAID is a criminal organization.
-
-Time for it to die. https://t.co/sWYy6fyt1k","Feb 2, 12:20:32 PM EST"
-1886102567991627958,"RT @teslaownersSV: DEI must die
-
-"I believe we need to return to a focus on merit. It shouldn't matter whether you're a man or a woman, yo…","Feb 2, 12:21:08 PM EST"
-1886102840860360999,"Thank you, @LindseyGrahamSC! https://t.co/27KwQIeoJi","Feb 2, 12:22:14 PM EST"
-1886104467528962447,"RT @amuse: CLOSED BORDER: Democrat-controlled cities across the US are spending millions of taxpayer dollars aiding and abetting criminal i…","Feb 2, 12:28:41 PM EST"
-1886110050663485855,"First @DOGE Spaces at midnight ET https://t.co/z7hVMSMkxi","Feb 2, 12:50:52 PM EST"
-1886110952396870133,"USAID is a criminal organization https://t.co/FY7P52XTYC","Feb 2, 12:54:27 PM EST"
-1886111296992477436,"Tom Homan is the Judge Dredd we need https://t.co/CGzT7jkGpW","Feb 2, 12:55:50 PM EST"
-1886111958568485062,"Thank you @Eric_Schmitt! https://t.co/8MAK9vZIS7","Feb 2, 12:58:27 PM EST"
-1886112617078333801,"This is the way https://t.co/gztZWMJ82Z","Feb 2, 1:01:04 PM EST"
-1886112944020148610,"Very weird … https://t.co/sYZUmcqVXS","Feb 2, 1:02:22 PM EST"
-1886128461816701216,"Just had an excellent conversation with @SenToddYoung.
-
-I stand corrected.
-
-Senator Young will be a great ally in restoring power to the people from the vast, unelected bureaucracy.","Feb 2, 2:04:02 PM EST"
-1886129005759262964,"Did you know that USAID, using YOUR tax dollars, funded bioweapon research, including COVID-19, that killed millions of people? https://t.co/YVwyKA7ifs","Feb 2, 2:06:12 PM EST"
-1886129294323155213,"Absolutely! It’s a scam to get around the laws passed by Congress to protect the people. https://t.co/8XshSg378T","Feb 2, 2:07:21 PM EST"
-1886132832495378684,"!! https://t.co/FR3wAHYWeF","Feb 2, 2:21:24 PM EST"
-1886132917857845734,"RT @MarioNawfal: ELON: YOU COULD EASILY POWER THE ENTIRE US WITH SOLAR
-
-Elon:
-
-“You could actually power the entire United States with a 1…","Feb 2, 2:21:44 PM EST"
-1886134485822922785,"Career Treasury officials are breaking the law every hour of every day by approving payments that are fraudulent or do not match the funding laws passed by Congress.
-
-This needs to stop NOW!
-
- https://t.co/Y0RMNebEWq","Feb 2, 2:27:58 PM EST"
-1886135615177056580,"@USTreasury","Feb 2, 2:32:28 PM EST"
-1886135756139167988,"Good question https://t.co/c2b3W7gtL4","Feb 2, 2:33:01 PM EST"
-1886138060636659779,"Fraud https://t.co/HJBSdx8nvn","Feb 2, 2:42:11 PM EST"
-1886138736808689783,"Good question https://t.co/H3XwfNlFO4","Feb 2, 2:44:52 PM EST"
-1886143595486257176,"She’s on the take💰 https://t.co/caPIJWft1v","Feb 2, 3:04:10 PM EST"
-1886143806476583310,"USAID has been paying media organizations to publish their propaganda https://t.co/L3rXRt3yxy","Feb 2, 3:05:00 PM EST"
-1886164012049551581,"Exactly https://t.co/bodE6E8pt9","Feb 2, 4:25:18 PM EST"
-1886168348435599678,"Great question! https://t.co/Zu7vxtrQon","Feb 2, 4:42:32 PM EST"
-1886168351992369496,"Yes https://t.co/hlfGsh1zxc","Feb 2, 4:42:33 PM EST"
-1886259450383626404,"Pretty soon, there won’t be any companies left in Delaware https://t.co/XtsACHlZbk","Feb 2, 10:44:32 PM EST"
-1886260544903979083,"Not anymore https://t.co/XF0rgU0sTa","Feb 2, 10:48:53 PM EST"
-1886260659152719905,"Exactly https://t.co/7Br3J0gPX9","Feb 2, 10:49:20 PM EST"
-1886263200779264028,"Excitement guaranteed https://t.co/q5eee6h6nf","Feb 2, 10:59:26 PM EST"
-1886263702745219282,"Not many Spartans are needed to win battles https://t.co/KDEz0uhJrC","Feb 2, 11:01:26 PM EST"
-1886263784286674994,"RT @cb_doge: Just a reminder:
-
-Elon Musk will be live on 𝕏 Spaces tonight at midnight ET with updates on DOGE. https://t.co/A6pcOtuioQ","Feb 2, 11:01:45 PM EST"
-1886264442565927049,"The interns operating the social media accounts of these politicians are working overtime 😂 https://t.co/pk62oyhFmE","Feb 2, 11:04:22 PM EST"
-1886264528662351986,"Good question https://t.co/obAgDweUpi","Feb 2, 11:04:43 PM EST"
-1886265085053591570,"Indeed https://t.co/y1Tl2fAe68","Feb 2, 11:06:56 PM EST"
-1886265385000796536,"Thank you, President @realDonaldTrump! https://t.co/e3XRW1fhdH","Feb 2, 11:08:07 PM EST"
-1886270131417878950,"High time this happened https://t.co/YllqeKx2nf","Feb 2, 11:26:59 PM EST"
-1886271345459089729,"RT @cb_doge: 𝕏 is the best show on earth 🍿🔥😂 https://t.co/RZDF3hAHoV","Feb 2, 11:31:48 PM EST"
-1886271556143153525,"RT @McDonalds: can i take ur order 💋 https://t.co/0SViqcTRlg","Feb 2, 11:32:38 PM EST"
-1886272166980641002,"💯 https://t.co/1vLQUK3xYi","Feb 2, 11:35:04 PM EST"
-1886272801071313293,"Kash will clean house https://t.co/sIgnlJOmE6","Feb 2, 11:37:35 PM EST"
-1886273415100670336,"This is encouraging.
-
-The new governor of Delaware wants what is best for his state. https://t.co/b0BZ7QBoiz","Feb 2, 11:40:02 PM EST"
-1886278064012689707,"https://t.co/vJxAg70GdT","Feb 2, 11:58:30 PM EST"
-1886281978690847071,"🎯 https://t.co/4itxXyTzOV","Feb 3, 12:14:03 AM EST"
-1886285558391136550,"Outrageous https://t.co/cDr5mgZkUQ","Feb 3, 12:28:17 AM EST"
-1886289825516408883,"RT @fentasyl: "What we have with USAID is not an apple with a worm in it... It's just a ball of worms... It's beyond repair" -- Elon Musk","Feb 3, 12:45:14 AM EST"
-1886290579492913656,"RT @DOGE: First DOGE 𝕏 Spaces Conversation with @ElonMusk, @VivekGRamaswamy and @SenJoniErnst
-
-Live Now
-
-https://t.co/A2mw1KCs8Q","Feb 3, 12:48:14 AM EST"
-1886290703593984450,"RT @AutismCapital: 🚨ELON MUSK: "It's government spending that creates inflation. When you see prices go up at the grocery store, the prices…","Feb 3, 12:48:43 AM EST"
-1886290989133762746,"Insane wasting of taxpayer money https://t.co/28vsQeoyDE","Feb 3, 12:49:52 AM EST"
-1886291344353575207,"😂 https://t.co/AlaO6cqhVK","Feb 3, 12:51:16 AM EST"
-1886294270308495403,"RT @teslaownersSV: "Regulations should be default GONE. Not default there. Default GONE. We need a wholesale spring cleaning of regulations…","Feb 3, 1:02:54 AM EST"
-1886294913261646159,"1000%! https://t.co/Vh2vr1Ihup","Feb 3, 1:05:27 AM EST"
-1886296756582810038,"Yes! 🇺🇸🇺🇸 https://t.co/dAckPvDkhZ","Feb 3, 1:12:47 AM EST"
-1886297989347524786,"This is the way https://t.co/FukNXrAWV3","Feb 3, 1:17:41 AM EST"
-1886300349956338114,"Yup https://t.co/NRoZme3sTt","Feb 3, 1:27:03 AM EST"
-1886300699987742911,"Nothing polls higher than cutting government spending https://t.co/koxhurgmMb","Feb 3, 1:28:27 AM EST"
-1886301313924825293,"RT @SawyerMerritt: NEWS: Elon Musk said tonight that he will be doing a live in person talk this week with JPMorgan Chase CEO Jamie Dimon.…","Feb 3, 1:30:53 AM EST"
-1886301943221330141,"Yes https://t.co/tpWnVxbOXx","Feb 3, 1:33:23 AM EST"
-1886302022510551515,"RT @america: ELON MUSK: “When you bring down Government spending you get a double benefit: you stop inflation and interest payments go down…","Feb 3, 1:33:42 AM EST"
-1886302222427861344,"🤨 https://t.co/2drZJRWaB7","Feb 3, 1:34:30 AM EST"
-1886302710342774979,"Crazy waste of money https://t.co/DC7UASJA41","Feb 3, 1:36:26 AM EST"
-1886303063771668878,"What happened to the rest of the money? https://t.co/Qap2HlQPAE","Feb 3, 1:37:50 AM EST"
-1886303576382665183,"No highs, no lows, only @DOGE https://t.co/GBMKVZYuRe","Feb 3, 1:39:53 AM EST"
-1886304008698007851,"Yeah, not fixable https://t.co/zIMcn753yq","Feb 3, 1:41:36 AM EST"
-1886304277972361661,"Unreal … https://t.co/HB6gyF3p2T","Feb 3, 1:42:40 AM EST"
-1886304464476258744,"RT @MarioNawfal: 🇺🇸 ELON: GOVERNMENT OVERSPENDING CAUSES INFLATION AND DEVALUES PAYCHECKS
-
-“The federal government can always make more mon…","Feb 3, 1:43:24 AM EST"
-1886304632315507154,"🎯 https://t.co/WWkFPcIqG4","Feb 3, 1:44:04 AM EST"
-1886304992199344358,"Your support is super appreciated.
-
-I salute you, the unknown soldier. https://t.co/4mATx1gsEE","Feb 3, 1:45:30 AM EST"
-1886305679301837042,"Interesting https://t.co/lCX91Zi3PH","Feb 3, 1:48:14 AM EST"
-1886305881089831198,"RT @MarioNawfal: 🚨🇺🇸 DOGE CUTS QUICK: $45M SAVED BY DUMPING EMPTY FEDERAL BUILDINGS
-
-Elon's efficiency team terminated 22 government leases…","Feb 3, 1:49:02 AM EST"
-1886306705257959908,"RT @BasedMikeLee: We now have the most dangerous functions of government—lawmaking—performed by part of the executive branch that has been…","Feb 3, 1:52:19 AM EST"
-1886307316804263979,"We spent the weekend feeding USAID into the wood chipper.
-
-Could gone to some great parties.
-
-Did that instead. https://t.co/0V35nacICW","Feb 3, 1:54:44 AM EST"
-1886308013801152996,"RT @legitbrittFLA: @Nero 50 B saved so far https://t.co/FeW1Iu7nQq","Feb 3, 1:57:31 AM EST"
-1886309716571107478,"RT @teslaownersSV: Elon Musk
-“I remember from the PayPal days: Do you know who complained the loudest? The Fraudsters. There would be imme…","Feb 3, 2:04:17 AM EST"
-1886309888466272522,"RT @MarioNawfal: 🇺🇸 SEN. ERNST: THIS DOJ EFFORT TO "RIGHT-SIZE" GOVT IS MOST AGGRESSIVE SINCE REAGAN REVOLUTION
-
-"This DOJ has been the mos…","Feb 3, 2:04:58 AM EST"
-1886311299518194124,"With regard to leakers: if in doubt, they are out https://t.co/0fxCqt4RxL","Feb 3, 2:10:34 AM EST"
-1886311556356395515,"The level of fraud in government entitlements spending is insane! https://t.co/KKzpqcF9yo","Feb 3, 2:11:35 AM EST"
-1886311742839349386,"True https://t.co/19yJGMHuWK","Feb 3, 2:12:20 AM EST"
-1886313073700462935,"RT @america: President Donald Trump on Elon Musk: “I think Elon is doing a good job. He's a big cost-cutter ... he's doing a great job... h…","Feb 3, 2:17:37 AM EST"
-1886313457550520667,"RT @teslaownersSV: Support @doge and Elon Musk
-
-“DOGE will win if millions of people support it in ways that I wouldn't even know how they…","Feb 3, 2:19:08 AM EST"
-1886315698089017567,"RT @MarioNawfal: WALTER ISAACSON: THERE’S A GOODNESS TO ELON’S MISSIONS
-
-“Elon has a deep care about humanity, about getting us to the tran…","Feb 3, 2:28:03 AM EST"
-1886315931342692429,"That is exactly how the scam works https://t.co/LPJ3X4b3HF","Feb 3, 2:28:58 AM EST"
-1886316389335433359,"True https://t.co/znG0811kQy","Feb 3, 2:30:47 AM EST"
-1886316716357009746,"Activist judges must be removed from the bench or there is no justice https://t.co/uCiWrAa23A","Feb 3, 2:32:05 AM EST"
-1886317363953279401,"USAID is a criminal organization https://t.co/Xzl70dmow1","Feb 3, 2:34:40 AM EST"
-1886317548725022941,"RT @teslaownersSV: Let’s make America Greater.
-
-@doge and Elon Musk can do this
-
-“So if we solve government spending, your grocery bill s…","Feb 3, 2:35:24 AM EST"
-1886317838186549681,"No kidding … https://t.co/RQh4Mubh55","Feb 3, 2:36:33 AM EST"
-1886321467580645412,"RT @teslaownersSV: “USAID is a ball of worms. There is no apple. And when there is no apple you just need to get rid of the whole thing. Th…","Feb 3, 2:50:58 AM EST"
-1886321630852301202,"And the worms are crawling to their pet politicians to save them https://t.co/l4H9jnOmol","Feb 3, 2:51:37 AM EST"
-1886321811937189902,"Why do you have openly racist ownership laws? https://t.co/tHWVsmB04F","Feb 3, 2:52:20 AM EST"
-1886322379392983313,"🤣 https://t.co/zEA6lOL1tJ","Feb 3, 2:54:36 AM EST"
-1886322940230221961,"Every hour of every day https://t.co/E8lOEutIlw","Feb 3, 2:56:49 AM EST"
-1886323575524601955,"Only with public support can @DOGE succeed.
-
-The bad guys will do anything they can, legal or otherwise, to stop us. https://t.co/bypAKXmZ1V","Feb 3, 2:59:21 AM EST"
-1886323795922924003,"RT @DC_Draino: Dems keep saying “No one elected Elon Musk”
-
-Yes we did
-
-Elon was very visible with Trump and we elected Trump to utilize El…","Feb 3, 3:00:13 AM EST"
-1886324234080629127,"Yeah https://t.co/cozJ90h5F4","Feb 3, 3:01:58 AM EST"
-1886324654224081047,"RT @alx: Elon Musk on USAID threatening Senator Joni Ernst: “It’s outrageous that a taxpayer-funded organization would threaten a U.S. Sena…","Feb 3, 3:03:38 AM EST"
-1886325297668088092,"RT @ScottPresler: I fully support defunding USAID.
-
-Stop giving $ to countries that hate us. https://t.co/uqrr8egr9F","Feb 3, 3:06:11 AM EST"
-1886325439917871541,"RT @MarioNawfal: 🚨🇿🇦RAMAPHOSA: WE’RE NOT CONFISCATING LAND… WE’RE JUST TAKING IT
-
-South African President Cyril Ramaphosa insists his gover…","Feb 3, 3:06:45 AM EST"
-1886325794688884851,"RT @alx: Elon Musk on Donald Trump: “The more I’ve gotten to know President Trump, the more I like him. I love the guy, he’s great”","Feb 3, 3:08:10 AM EST"
-1886325929355452898,"Only if civilization lasts long enough https://t.co/Encwe7akaT","Feb 3, 3:08:42 AM EST"
-1886430824184123568,"Just wondering 🤔 https://t.co/LIWa7wPZHb","Feb 3, 10:05:31 AM EST"
-1886444649142747172,"Amazing https://t.co/xp6gG8hntd","Feb 3, 11:00:27 AM EST"
-1886445126475784383,"AOC is a stooge of USAID https://t.co/ziIBlxlrN0","Feb 3, 11:02:21 AM EST"
-1886448161201570111,"At this rate of achievement, not only should President @realDonaldTrump be on Mount Rushmore, I want to personally work the chisel! https://t.co/BG5bQs0g0u","Feb 3, 11:14:24 AM EST"
-1886449036686975379,"RT @JDVance: For three days a lot of the far left has actively rooted against America and argued we’d get nothing out of President Trunp’s…","Feb 3, 11:17:53 AM EST"
-1886449404543967565,"Wow https://t.co/3rbuMny8pG","Feb 3, 11:19:21 AM EST"
-1886449983483748472,"Because USAID is/was a radical-left political psy op https://t.co/Th10uk7dQe","Feb 3, 11:21:39 AM EST"
-1886451951925141781,"🤨 https://t.co/7x0eAbB53l","Feb 3, 11:29:28 AM EST"
-1886452197501640786,"Mind-blowing 🤯 https://t.co/Vv7PnkaFYz","Feb 3, 11:30:27 AM EST"
-1886452799715651927,"https://t.co/WioIBzgDPg","Feb 3, 11:32:50 AM EST"
-1886454017863151646,"Now you know why I said two years ago that my pronouns were Prosecute/Fauci https://t.co/vBNejUdqeT","Feb 3, 11:37:41 AM EST"
-1886454160620466604,"RT @realDonaldTrump: https://t.co/PK1V8YklhY","Feb 3, 11:38:15 AM EST"
-1886455404713943058,"Yeah, exactly! The only way to stop fraud and waste of taxpayer money is to follow the payment flows and pause suspicious transactions for review. Obviously.
-
-Naturally, this causes those who have been aiding, abetting and receiving fraudulent payments ve","Feb 3, 11:43:11 AM EST"
-1886456615546839296,"RT @JackPosobiec: Federal workers actively stating they are declaring ‘war’ on the Trump Admin from within the govt https://t.co/DO6kWGhrQK","Feb 3, 11:48:00 AM EST"
-1886457064438030687,"Thank you, receipt via 𝕏 acknowledged. https://t.co/aYo0OsyFVE","Feb 3, 11:49:47 AM EST"
-1886457528856240570,"Excellent action by @RepMTG! https://t.co/h8DPjDLo0f","Feb 3, 11:51:38 AM EST"
-1886457682233602513,"RT @realDonaldTrump: https://t.co/DC5Mx8yCiB","Feb 3, 11:52:14 AM EST"
-1886457796851319273,"Wow https://t.co/AJQ83KmBr4","Feb 3, 11:52:42 AM EST"
-1886458513771377099,"Time to confess:
-
-Media reports saying that @DOGE has some of world’s best software engineers are in fact true.","Feb 3, 11:55:33 AM EST"
-1886470210380505100,"https://t.co/N9X3SLOLbg https://t.co/YxIdiii2or","Feb 3, 12:42:01 PM EST"
-1886470286041604471,"Wow https://t.co/tsIgm8suJb","Feb 3, 12:42:19 PM EST"
-1886470966445854738,"Oh well https://t.co/1jpMu55T6s","Feb 3, 12:45:01 PM EST"
-1886471295530922279,"https://t.co/e5igRaty32","Feb 3, 12:46:20 PM EST"
-1886471738273247567,"Another description for these types of payments is “money laundering” https://t.co/I2o6IZz98e","Feb 3, 12:48:06 PM EST"
-1886482300206244336,"🇺🇸🇺🇸 https://t.co/rim3JWWQOm","Feb 3, 1:30:04 PM EST"
-1886492712700141634,"The corrupt politicians “protesting” outside the USAID building are the ones getting money from USAID.
-
-That’s why they’re there – they want your stolen tax dollars! https://t.co/5yVDqg0mjw","Feb 3, 2:11:26 PM EST"
-1886493949109657616,"RT @KanekoaTheGreat: @alrwashdeh_abed Shut it down","Feb 3, 2:16:21 PM EST"
-1886493947415195870,"RT @alrwashdeh_abed: @KanekoaTheGreat That’s my own opinion—> maybe I’m wrong🧐
-
-USAID should be shut down. It’s the largest source of insta…","Feb 3, 2:16:21 PM EST"
-1886494235328962718,"RT @benhabib6: The @GreatBritishPAC is going to assist our politicians in delivering a proud independent sovereign and prosperous United Ki…","Feb 3, 2:17:29 PM EST"
-1886497226962403469,"💯 https://t.co/16w8MUYomb","Feb 3, 2:29:22 PM EST"
-1886497326862057858,"RT @HSajwanization: Please get verified on 𝕏 😡","Feb 3, 2:29:46 PM EST"
-1886497395816485206,"Exactly https://t.co/w93Y5NC6PG","Feb 3, 2:30:03 PM EST"
-1886497421716230486,"RT @libsoftiktok: 104 DEI contracts totaling over $1B have been cancelled thanks to DOGE https://t.co/YETuqRj3j2","Feb 3, 2:30:09 PM EST"
-1886497492100907362,"RT @KanekoaTheGreat: USAID and Fauci funded COVID-19's "patient zero" at the Wuhan lab
-
-Truly insane","Feb 3, 2:30:26 PM EST"
-1886497593079021789,"Yes https://t.co/GB6FvKBx14","Feb 3, 2:30:50 PM EST"
-1886497821291110804,"I don’t see them waving any American flags https://t.co/tl8cMSi9vC","Feb 3, 2:31:44 PM EST"
-1886498188024066140,"She’s a major grifter and hates America https://t.co/fA2YsvGca5","Feb 3, 2:33:12 PM EST"
-1886498271306146072,"Wow https://t.co/aFIKbsL2nJ","Feb 3, 2:33:31 PM EST"
-1886498316554248257,"Yes https://t.co/tjRVU6kXjU","Feb 3, 2:33:42 PM EST"
-1886498396045005251,"RT @amuse: DOGE: One of the 'journalists' who decided to doxx members of Trump's DOGE team is a Mashable reporter a couple of years out of…","Feb 3, 2:34:01 PM EST"
-1886498634704818480,"Exactly https://t.co/sCMyIhh92T","Feb 3, 2:34:58 PM EST"
-1886498750052327520,"That group has been deleted https://t.co/TICeriaLlA","Feb 3, 2:35:26 PM EST"
-1886498936178827651,"Yes! @MarcoRubio is awesome. https://t.co/jxpJ9BAFdd","Feb 3, 2:36:10 PM EST"
-1886501169154957587,"They have broken the law. https://t.co/KupH9lTOv9","Feb 3, 2:45:02 PM EST"
-1886533392105177183,"Exactly https://t.co/qQZWZMz4Ox","Feb 3, 4:53:05 PM EST"
-1886534183066939792,"https://t.co/r8SF9wRtrW","Feb 3, 4:56:14 PM EST"
-1886534409001521603,"RT @WallStreetApes: Just to recap:
-
-- @TheChiefNerd exposed Anthony Fauci’s NIAID and USAID sent over $40M in US taxpayer money to a scient…","Feb 3, 4:57:07 PM EST"
-1886546421521813712,"RT @EagleEdMartin: See something, say something.","Feb 3, 5:44:51 PM EST"
-1886546442141180358,"RT @USAO_DC: A Statement from U.S. Attorney for the District of Columbia, Edward R. Martin Jr. https://t.co/XlEmzSlbBq","Feb 3, 5:44:56 PM EST"
-1886547794711789715,"RT @CollinRugg: NEW: Karoline Leavitt highlights the waste and abuse of USAID, lists the top 4 most insane priorities.
-
-"Here's the reason…","Feb 3, 5:50:19 PM EST"
-1886551633116483812,"RT @thatsKAIZEN: People complaining about the shutdown of corrupt government agencies are fixated on who is solving the problems, while mis…","Feb 3, 6:05:34 PM EST"
-1886551806638973392,"True https://t.co/G5vv7n1xfk","Feb 3, 6:06:15 PM EST"
-1886552223510872065,"RT @BasedMikeLee: Let’s go!
-
-Wonderful news","Feb 3, 6:07:55 PM EST"
-1886619943845716320,"Wow https://t.co/k0fCa0FdDl","Feb 3, 10:37:00 PM EST"
-1886621346953630000,"Under the Biden administration, billions of dollars were shifted from helping Americans in need to facilitating illegal immigration. Super messed up! https://t.co/stxpk2SNnb","Feb 3, 10:42:35 PM EST"
-1886622263690072526,"Great idea!! https://t.co/7924xQYiun","Feb 3, 10:46:14 PM EST"
-1886623138689004018,"Bingo https://t.co/G734GjVEVi","Feb 3, 10:49:42 PM EST"
-1886623446907400676,"😎 https://t.co/Kr1IVAFd9x","Feb 3, 10:50:56 PM EST"
-1886624004095525350,"https://t.co/QYyuXA4SUS","Feb 3, 10:53:09 PM EST"
-1886624216293822839,"This is every day for the past 2 weeks 🤣🤣","Feb 3, 10:53:59 PM EST"
-1886624760940896321,"🎯 https://t.co/nOxBZZjX3I","Feb 3, 10:56:09 PM EST"
-1886625632836104529,"DOGE is the wood chipper for bureaucracy","Feb 3, 10:59:37 PM EST"
-1886627783138316442,"All @DOGE did was check to see which federal organizations were violating the @POTUS executive orders the most.
-
-Turned out to be USAID, so that became our focus. https://t.co/26FXTFFlLJ","Feb 3, 11:08:10 PM EST"
-1886628146662834662,"That is how the scam works https://t.co/4OAjSpE1GO","Feb 3, 11:09:36 PM EST"
-1886629715693248907,"This is happening throughout the government https://t.co/wOfBQBNlHy","Feb 3, 11:15:50 PM EST"
-1886630176076804292,"I take the short bus to work 😂 https://t.co/hmp91F0G3s","Feb 3, 11:17:40 PM EST"
-1886633448078475593,"Reagan campaigned on ending the federal Dept of Education, which was created by Carter in 1979, but it was bigger when Reagan left office than when he started!
-
-Not this time. President @realDonaldTrump will succeed. https://t.co/PO5MoqpBV1","Feb 3, 11:30:40 PM EST"
-1886637210897932475,"https://t.co/8G2qzg4G05","Feb 3, 11:45:37 PM EST"
-1886637579577020896,"Don’t mess with @DOGE https://t.co/wgdJBxNzyG","Feb 3, 11:47:05 PM EST"
-1886638084864757934,"Yes. It is absolutely achievable! https://t.co/8gmDZGpGTA","Feb 3, 11:49:06 PM EST"
-1886642906762526900,"Yup https://t.co/ljvfZPRMkl","Feb 4, 12:08:15 AM EST"
-1886643161532875171,"RT @shellenberger: It's outrageous Trump shut down USAID, say leaders of the foreign policy establishment. It's not. Voters elected him to…","Feb 4, 12:09:16 AM EST"
-1886643179446755731,"RT @WallStreetApes: Elon Musk just shared the Biden Admin shifted billions of dollars from helping Americans in need to facilitating illega…","Feb 4, 12:09:20 AM EST"
-1886646042139017378,"Fraud in the federal government is closer to 10% of disbursements, so more like ~$700 billion per year.
-
-Outright waste is at least 15%, so another trillion+ dollars.
-
-Anyone who works in government knows this. https://t.co/P0622Wr2Y6","Feb 4, 12:20:43 AM EST"
-1886646456058105928,"Cool https://t.co/QvnlOJx3bQ","Feb 4, 12:22:21 AM EST"
-1886646581710987718,"RT @MarioNawfal: 🇸🇻🇺🇸BUKELE: IT'S UNDENIABLE THAT THE UNITED STATES IS OUR MOST IMPORTANT PARTNER
-
-"[The United States is] our largest buye…","Feb 4, 12:22:51 AM EST"
-1886647029494948237,"RT @DOGE: Today’s number has increased to 22 consulting contract terminations for a total savings of ~$45mm.
-
-All in today, 36 contracts we…","Feb 4, 12:24:38 AM EST"
-1886647147421958468,"https://t.co/SV79e3pYTk","Feb 4, 12:25:06 AM EST"
-1886651063333179493,"RT @ScottJenningsKY: I predicted early AM on @cnn that Trump was on a mission of “behavior modification.” Just a couple hours later I was p…","Feb 4, 12:40:40 AM EST"
-1886653508968997032,"Interesting https://t.co/KMcYRVNCRd","Feb 4, 12:50:23 AM EST"
-1886671297674875046,"Interesting https://t.co/6fZThm0upk","Feb 4, 2:01:04 AM EST"
-1886674971235119297,"RT @thatsKAIZEN: You aren’t your beliefs. It’s ok to change them.","Feb 4, 2:15:40 AM EST"
-1886675118065156123,"RT @stackhodler: Elon was happily tinkering with his rockets and electric cars in democrat-controlled California.
-
-Then they tried to stop…","Feb 4, 2:16:15 AM EST"
-1886675486283108409,"RT @libsoftiktok: Now it makes sense why Ilhan Omar is so upset that Trump is pausing USAID funds.
-
-The country she’s representing in Congr…","Feb 4, 2:17:43 AM EST"
-1886675581208498649,"Yup https://t.co/lVtAwprlPs","Feb 4, 2:18:05 AM EST"
-1886676428659319166,"Once again, the cycle repeats … https://t.co/63KqwqRS3o","Feb 4, 2:21:28 AM EST"
-1886676896882065674,"They’re just mad that their shadow government is being dismantled lol https://t.co/TOYG4P9ITa","Feb 4, 2:23:19 AM EST"
-1886678446455087322,"🕺 https://t.co/JIlw5rFxDQ","Feb 4, 2:29:29 AM EST"
-1886679221650530436,"RT @MarioNawfal: 🇺🇸LET THE STATES COMPETE—THAT’S HOW AMERICA WAS BUILT
-
-The Founders didn’t want one-size-fits-all government.
-
-They desig…","Feb 4, 2:32:33 AM EST"
-1886679813726798335,"Yes https://t.co/z8yXSQmGeu","Feb 4, 2:34:55 AM EST"
-1886679916290191871,"RT @libsoftiktok: Press Secretary details some of the insane spending from USAID over the past few years:
-
-- $1.5 million for DEI in Serbia…","Feb 4, 2:35:19 AM EST"
-1886680044119916896,"Cool https://t.co/FALQI3Czf4","Feb 4, 2:35:49 AM EST"
-1886680153163522211,"RT @MarioNawfal: 🇺🇸DANA WHITE: ELON IS A SUPERHERO FOR BUYING TWITTER
-
-"Where are we right now without Elon Musk?
-
-The fact that he would g…","Feb 4, 2:36:15 AM EST"
-1886680908511543306,"https://t.co/Rj4DoOgSB7 https://t.co/aJsCHyj12z","Feb 4, 2:39:16 AM EST"
-1886682005749788806,"My preferred title is just ‘Tech Support’ https://t.co/EnRVhnHBqp","Feb 4, 2:43:37 AM EST"
-1886682629438632173,"Threatening or encouraging murder is a crime. Those who do so will go to prison. https://t.co/QtjZGPh9dZ","Feb 4, 2:46:06 AM EST"
-1886686767044059235,"Troubling https://t.co/nKeGSj5vCu","Feb 4, 3:02:32 AM EST"
-1886686885247963331,"RT @MarioNawfal: 🚨ELON: FRAUDSTERS WILL COMPLAIN THE LOUDEST
-
-"One thing I remember from the PayPal days—who complains the loudest? The fra…","Feb 4, 3:03:01 AM EST"
-1886694967885607295,"RT @Yuchenj_UW: judging an engineer by age is BS
-
-- Linus Torvalds wrote Linux at 21
-- Steve Wozniak built Apple I at 25
-- Palmer Luckey cr…","Feb 4, 3:35:08 AM EST"
-1886695301613855117,"Yes https://t.co/9JCkwqXdav","Feb 4, 3:36:27 AM EST"
-1886697337172459751,"Far left https://t.co/ORtbqykaGg","Feb 4, 3:44:32 AM EST"
-1886698978072285304,"RT @KTmBoyle: One of the most destructive memes of the last generation was that your 20s don’t matter.
-
-Extended adolescence robbed many o…","Feb 4, 3:51:04 AM EST"
-1886699513525547366,"RT @cb_doge: ELON MUSK: "Can you imagine how awesome it will be to have American astronauts plant flag on another planet for the first time…","Feb 4, 3:53:11 AM EST"
-1886699606827848109,"RT @yacineMTB: pov you realize that you can't use starving people as hostage to keep your gov money laundering going because some people go…","Feb 4, 3:53:34 AM EST"
-1886701194782892524,"Hysterical reactions like this is how you know that @DOGE is doing work that really matters.
-
-This is the one shot the American people have to defeat BUREAUcracy, rule of the bureaucrats, and restore DEMOcracy, rule of the people. We’re never going to get","Feb 4, 3:59:52 AM EST"
-1886701375687393662,"RT @teslaownersSV: “You know what will turn you from a Democrat to a Republican pretty fast?
-
-Getting punched in the face while you walk d…","Feb 4, 4:00:35 AM EST"
-1886701536648044608,"It is against the law. https://t.co/PRx5vokm3f","Feb 4, 4:01:14 AM EST"
-1886702082763202828,"They’re an arm of the radical-left globalists https://t.co/tI0QJW1qP1","Feb 4, 4:03:24 AM EST"
-1886702280428093733,"RT @natfriedman: Federal spending in 2024 was ~$7T. In 2019 it was ~$4.5T. 🤔 https://t.co/bmKI5ywHnm","Feb 4, 4:04:11 AM EST"
-1886702371759149353,"RT @eglyman: Fact: The avg age of NASA’s mission control team during the Apollo era was 27— they put humans on the moon. Young people bring…","Feb 4, 4:04:33 AM EST"
-1886703105443516740,"RT @MarioNawfal: 🚨🇿🇦WHITE SOUTH AFRICANS TARGETED: LAND SEIZURES, QUOTAS, AND EXODUS TO EUROPE
-
-South Africa’s Expropriation Without Compen…","Feb 4, 4:07:28 AM EST"
-1886703241653633358,"RT @RapidResponse47: Ending U.S. taxpayer funding of transgender comic books in Peru, DEI in Serbia, and transgender operas (whatever those…","Feb 4, 4:08:00 AM EST"
-1886810469693866432,"Wow https://t.co/FBRYEAGJun https://t.co/7JYILVfc1y","Feb 4, 11:14:05 AM EST"
-1886811152698523962,"https://t.co/ZrmtQJoyWo","Feb 4, 11:16:48 AM EST"
-1886811716828217604,"She says that they took down “incriminating books”.
-
-Now I’m curious.
-
-Like, Communist Manifesto or what? 😂 https://t.co/LhDuoysVfp","Feb 4, 11:19:03 AM EST"
-1886812054733930622,"RT @ARKInvest: Say hello to tomorrow. “Big Ideas 2025” is here to share ARK's insights on the technologies shaping the future.
-
-Download no…","Feb 4, 11:20:23 AM EST"
-1886812762250101150,"BBC is literally state-funded media https://t.co/wFoQ8GcETm","Feb 4, 11:23:12 AM EST"
-1886812934237470747,"RT @MarioNawfal: 🚨🇬🇧UK SPENDS £141M ON MIGRANT SERVICES FROM TAXPAYERS' MONEY: FROM PLAYSTATIONS TO DJ LESSONS
-
-UK local councils have repo…","Feb 4, 11:23:53 AM EST"
-1886813638691787158,"Oh look, an “insurrection”!!!
-
-The radical left put a lot of innocent people in prison for exactly this behavior. https://t.co/1YiJxsWEH3","Feb 4, 11:26:41 AM EST"
-1886814007903785154,"That is exactly what is happening! https://t.co/PncYpudM8U","Feb 4, 11:28:09 AM EST"
-1886814238179463199,"RT @micsolana: "would you rather have a 22-year-old engineer who designed an AI program that helped decipher one of the 2,000-year-old herc…","Feb 4, 11:29:04 AM EST"
-1886814912640426161,"RT @DefiantLs: DOGE subcommittee invites NPR, PBS chiefs to testify on their federal funding.
-
-https://t.co/U1q1Q5SDPs","Feb 4, 11:31:45 AM EST"
-1886815917499171326,"What Raskin actually means is that he wants his kickbacks and bribes to continue.
-
-US lobbying/law firms who launder foreign donations (which are actually US taxpayer foreign aid coming full circle!) need to be investigated and shut down. https://t.co/5y","Feb 4, 11:35:44 AM EST"
-1886816748281680007,"US government funding for radical-left causes has corrupted religious institutions domestically and throughout the world https://t.co/18TKhjIO7j","Feb 4, 11:39:02 AM EST"
-1886817614552322549,"Exactly https://t.co/wOXBLJJ4VM","Feb 4, 11:42:29 AM EST"
-1886818906972577951,"When @SenJoniErnst asked to review USAID financials, they threatened to sue her!
-
-Now, why would a US taxpayer funded organization do such a thing? Corruption.
-
- https://t.co/g0tMm92R2N","Feb 4, 11:47:37 AM EST"
-1886819166969323768,"Defund NPR. It should survive on its own.
-
- https://t.co/dtm5qbbxix","Feb 4, 11:48:39 AM EST"
-1886819449069502759,"https://t.co/TT5tQ4UdYG","Feb 4, 11:49:46 AM EST"
-1886819963802923240,"Thank you @JohnCornyn! https://t.co/xy1KtWdRKr","Feb 4, 11:51:49 AM EST"
-1886820369371128171,"Thank you, @SenBillCassidy! https://t.co/ml8cG6Kkjk","Feb 4, 11:53:26 AM EST"
-1886821184940961953,"Your tax dollars should be spent on America or the government should just tax you less https://t.co/bzlIexYzFP","Feb 4, 11:56:40 AM EST"
-1886821271087747340,"Good grief https://t.co/JBmYuFWJvE","Feb 4, 11:57:01 AM EST"
-1886821436477645142,"Great thread https://t.co/bzlIexYzFP","Feb 4, 11:57:40 AM EST"
-1886821666547769483,"RT @tadgh_dc: @stillgray https://t.co/QomLq3pR7V","Feb 4, 11:58:35 AM EST"
-1886822133554102584,"🤨 https://t.co/bAxfGGLTIl","Feb 4, 12:00:26 PM EST"
-1886823119639171507,"This is how new taxes start.
-
-They claim only to apply to a small percentage of households in order to gain a majority vote, but then rapidly evolve to cover everyone. https://t.co/q6cWEcFBgr","Feb 4, 12:04:21 PM EST"
-1886823508451168703,"https://t.co/fw7i4hnyo6","Feb 4, 12:05:54 PM EST"
-1886827187325559269,"She is breaking the law. Literally. Outright. https://t.co/T4mrPDvcNy","Feb 4, 12:20:31 PM EST"
-1886827311447859624,"Yup https://t.co/TuRmdM2bTa","Feb 4, 12:21:01 PM EST"
-1886827616264712494,"Roughly $15B/year is spent on utilities & maintenance of unused US government buildings domestically & internationally! https://t.co/y0PwNsV8V9","Feb 4, 12:22:13 PM EST"
-1886839043293413413,"😛 😂 https://t.co/cRnArupXun","Feb 4, 1:07:38 PM EST"
-1886840365329608708,"He’s mad that @DOGE is dismantling the radical-left shadow government in full view of the public.
-
-This is our ONE CHANCE to return POWER to the PEOPLE from an unelected BUREAUcracy back to DEMOcracy!!
-
-Only with the support of YOU can this succeed. Thank","Feb 4, 1:12:53 PM EST"
-1886840852720337407,"RT @jasondebolt: No Cenk, that’s not how it works.
-
-The next 4 years are going to uncover a massive amount of fraud and corruption, exposed…","Feb 4, 1:14:49 PM EST"
-1886841276403999198,"Yes 😎 https://t.co/bcLbnvfrHA","Feb 4, 1:16:30 PM EST"
-1886841450802856305,"Vindman wants his bribe money https://t.co/8csiOhu04b","Feb 4, 1:17:12 PM EST"
-1886841667535167984,"RT @libsoftiktok: Senator John Kennedy: “To my friends who are upset, call somebody who cares. You better get used to this. It’s USAID toda…","Feb 4, 1:18:04 PM EST"
-1886842910416535753,"If they want to cancel @DOGE in exchange for deleting everything in the federal government that isn’t explicit law passed by Congress, I would gladly take that deal!
-
-But they would never do it. Not in a million years. https://t.co/nPZzGLPe1L","Feb 4, 1:23:00 PM EST"
-1886843362692448559,"https://t.co/Et6KeuqFMI","Feb 4, 1:24:48 PM EST"
-1886843866453582088,"RT @libsoftiktok: Suspected Tren de Arague gang member who was released into our country ny the Biden admin where he sexually assaulted a m…","Feb 4, 1:26:48 PM EST"
-1886843917041103045,"RT @JackPosobiec: Do you see","Feb 4, 1:27:00 PM EST"
-1886846334885310580,"RT @MikeBenzCyber: Obama's momma worked for the same CIA / State Dept funding conduit primarily responsible for financially bribing Brazil'…","Feb 4, 1:36:36 PM EST"
-1886847092888310231,"Would you like @DOGE to audit the IRS?","Feb 4, 1:39:37 PM EST"
-1886847173087682947,"🎯 https://t.co/4yP6eyhrUw","Feb 4, 1:39:56 PM EST"
-1886854501690146888,"🧐 https://t.co/1yIX35OfQH","Feb 4, 2:09:03 PM EST"
-1886855362713727145,"USAID has been pushing censorship laws in Europe https://t.co/K6kakNABVv","Feb 4, 2:12:29 PM EST"
-1886865652969017537,"Awesome 😎 https://t.co/jvL4Ik2lDj","Feb 4, 2:53:22 PM EST"
-1886867922296963230,"Interesting 🤨 https://t.co/IE6mt9QsLs","Feb 4, 3:02:23 PM EST"
-1886868219723743364,"That is an insane misallocation of resources! https://t.co/uQEPtGA1oJ","Feb 4, 3:03:34 PM EST"
-1886868701057896573,"Obviously, @DOGE is trying to STOP your tax dollars from being stolen for WASTE and FRAUD.
-
-@RepJeffries wants that to continue. https://t.co/Iyv12Wn36P","Feb 4, 3:05:29 PM EST"
-1886869477226115386,"Seriously. I hear this all the time!
-
-Demonstrates an utter lack of respect for how your hard-earned money is spent. https://t.co/Nl01o5aPNe","Feb 4, 3:08:34 PM EST"
-1886870474988069056,"I love America.
-
-I loved every bit of jingoistic propaganda.
-
-I believed it hook, line and sinker.
-
-Now, let’s make it all real.","Feb 4, 3:12:32 PM EST"
-1886870636426875166,"Amazing 🤣🤣 https://t.co/gMo8DpaKob","Feb 4, 3:13:10 PM EST"
-1886871590459076805,"🇺🇸 Beautifully said by @TulsiGabbard 🇺🇸
-
- https://t.co/ieHmOxwkg0","Feb 4, 3:16:58 PM EST"
-1886872053414027340,"Indeed 🧐 https://t.co/2UhG2ozt4M","Feb 4, 3:18:48 PM EST"
-1886872473548870055,"🎯 https://t.co/ckMs9GWuny","Feb 4, 3:20:28 PM EST"
-1886877943437168696,"Awesome 😎 https://t.co/RfjB7MoJw6","Feb 4, 3:42:12 PM EST"
-1886904722335862884,"Did you know that over $100 billion dollars in COVID payments was stolen by professional foreign fraud rings? https://t.co/rjHX7PMcW1","Feb 4, 5:28:37 PM EST"
-1886914141753106716,"https://t.co/5y29YWpHjQ","Feb 4, 6:06:03 PM EST"
-1886920896180277436,"Great idea! https://t.co/SZA2KKgSqo","Feb 4, 6:32:53 PM EST"
-1886921310682353860,"Truth is indistinguishable from parody these days 🤣🤣 https://t.co/UHcybCX8RD","Feb 4, 6:34:32 PM EST"
-1886921430719144018,"Interesting https://t.co/Fikg0BMVCq","Feb 4, 6:35:01 PM EST"
-1886921579038208422,"🇺🇸🇺🇸 https://t.co/catfs3ddqh","Feb 4, 6:35:36 PM EST"
-1886922610937573865,"https://t.co/Ee9cp0FJEz","Feb 4, 6:39:42 PM EST"
-1886922946595156160,"💯😂 https://t.co/1a784shoeE","Feb 4, 6:41:02 PM EST"
-1886935711053492530,"🤨 https://t.co/pcVdZIqtME","Feb 4, 7:31:45 PM EST"
-1886936720597271033,"🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/n9r2erPFzH","Feb 4, 7:35:46 PM EST"
-1886937593582846144,"Massive increase in spending after the Department of Education was created with no actual improvement in education! https://t.co/J72BUVqGsl","Feb 4, 7:39:14 PM EST"
-1886940717471150098,"RT @TheRabbitHole84: Education Staffing since 1970:
-- Students +8%
-- Teaching Staff +60%
-- Non-Teaching Staff +138% https://t.co/QgX2ebxjGb","Feb 4, 7:51:39 PM EST"
-1886943585410670920,"The Tesla Optimus hand is so sophisticated that it makes a Fabergé seem simple.
-
-And it gives you a whole new appreciation for how incredible the human hand is.","Feb 4, 8:03:03 PM EST"
-1886943937681563928,"RT @JudiciaryGOP: #BREAKING: The Senate confirms ATTORNEY GENERAL Pam Bondi.
-
-Great day for the rule of law! https://t.co/xardEXiPTE","Feb 4, 8:04:27 PM EST"
-1886974080198295591,"🥊 https://t.co/v9CYJIizM0","Feb 4, 10:04:13 PM EST"
-1886974280325337133,"🔥🔥 https://t.co/qVQq9KLbQb","Feb 4, 10:05:01 PM EST"
-1886987533839458717,"RT @AndreaSJames: Gently, softly, calmly, let’s talk about what’s happening in DC right now.
-
-Friends, have you ever been through a ZBB pr…","Feb 4, 10:57:41 PM EST"
-1886987872370106567,"RT @Eric_Schmitt: Congress should have to vote on regulations before they go into effect.
-
-This is what the REINS ACT does.
-
-Anyone who is…","Feb 4, 10:59:01 PM EST"
-1886987986379678182,"😂🎯 https://t.co/vPtzBi2dhP","Feb 4, 10:59:29 PM EST"
-1886988219226419711,"🤔 https://t.co/Z1oWLCzTIY","Feb 4, 11:00:24 PM EST"
-1886989458735546377,"RT @POTUS: "The U.S. will take over the Gaza Strip, and we will do a job with it, too." –President Donald J. Trump https://t.co/aCqLl9Gwwn","Feb 4, 11:05:20 PM EST"
-1887006505959833896,"RT @johnkonrad: I opened my NYTimes app today. They’re trying, but they can’t keep up. News that broke just hours ago is already off the ho…","Feb 5, 12:13:04 AM EST"
-1887010360458170590,"This how the legacy media actually works https://t.co/AiBb7M04F9","Feb 5, 12:28:23 AM EST"
-1887015419283714491,"🤣🤣 Amazing https://t.co/0kV7USVMZM","Feb 5, 12:48:29 AM EST"
-1887023221028921490,"RT @alx: New Elon Musk bio 🤣 https://t.co/dSrooIMgq4","Feb 5, 1:19:29 AM EST"
-1887023242092683496,"RT @DOGE: Today:
-- 12 consulting contract terminations (in GSA and the Dept. of Education) for a total savings of ~$30mm, including a $23mm…","Feb 5, 1:19:34 AM EST"
-1887033072714940855,"https://t.co/mmbmCn1vju","Feb 5, 1:58:38 AM EST"
-1887036439289897208,"https://t.co/SsBqdgl0xE","Feb 5, 2:12:01 AM EST"
-1887036504989393052,"RT @MostlyPeacefull: Democrats finding out Trump just took out their favorite government agency https://t.co/fx6QjzX98N","Feb 5, 2:12:16 AM EST"
-1887037017361420749,"https://t.co/gVrcYVcuMB","Feb 5, 2:14:19 AM EST"
-1887037252984860679,"How the tables have turned https://t.co/0QGChFlxKM","Feb 5, 2:15:15 AM EST"
-1887038298603835446,"🤔 https://t.co/H9429n8Ob4","Feb 5, 2:19:24 AM EST"
-1887038620994801804,"RT @PeteHegseth: BREAKING: In December 2024, the @USArmy had its best recruiting number in 12 years.
-
-In January 2025, the Army hit its bes…","Feb 5, 2:20:41 AM EST"
-1887039518605209602,"🔥🤣 https://t.co/tlZJer4XXB","Feb 5, 2:24:15 AM EST"
-1887143363557617775,"Yeah https://t.co/p17tY0kq0E","Feb 5, 9:16:53 AM EST"
-1887143485137924137,"RT @DonaldJTrumpJr: “I didn’t vote for Elon Musk”🥴 Well cry harder libs. We didn’t vote for this clown either, yet he controls the democrat…","Feb 5, 9:17:22 AM EST"
-1887146932230832611,"Exactly https://t.co/txAOK2vPCM","Feb 5, 9:31:04 AM EST"
-1887147268987289755,"This is odd https://t.co/iGi82JqhzG","Feb 5, 9:32:25 AM EST"
-1887147758697492669,"RT @MarioNawfal: 🚨🇺🇸 FOLLOW THE MONEY: HOW A FEDERAL AGENCY BECAME AN ATM FOR GLOBAL ACTIVISM
-
-A rogue bureaucracy's mask has finally slipp…","Feb 5, 9:34:21 AM EST"
-1887148341240221965,"RT @krisiannc: @ChrisVanHollen Ah, Chris, all that noise and not a shred of outrage where it actually matters. Funny how @elonmusk is deliv…","Feb 5, 9:36:40 AM EST"
-1887148565371240476,"Yup https://t.co/r0rcqtysTj","Feb 5, 9:37:34 AM EST"
-1887148908993769849,"Public support for the Democratic Party has collapsed https://t.co/RMap6DY8cX","Feb 5, 9:38:56 AM EST"
-1887149147574128666,"🎯 https://t.co/YsCX5Tz5nl","Feb 5, 9:39:52 AM EST"
-1887156853315911817,"Accurate.
-
-We just renamed US Digital Services, created by Obama, to US DOGE Services, with a mandate to modernize all computer systems in the US government.
-
-This is something that is sorely needed! https://t.co/nyb9SOX074","Feb 5, 10:10:30 AM EST"
-1887157011990671687,"This GAO report is damning:
-https://t.co/hjjhIXCMAy","Feb 5, 10:11:07 AM EST"
-1887157570604880289,"RT @RunningBearTx: @elonmusk When will legacy media ask any democrat or supporter of USAID about these budget items?!! https://t.co/h7N8UO2…","Feb 5, 10:13:21 AM EST"
-1887157946225721775,"🍿 https://t.co/g8UpNcQ8a4","Feb 5, 10:14:50 AM EST"
-1887159093166514418,"RT @SawyerMerritt: Oh, you mean how there was all this supposed shareholder momentum against Elon’s pay package revote, only for the same p…","Feb 5, 10:19:24 AM EST"
-1887160798511804431,"This is a great line:
-
-“Yeah well I didn’t vote for Joe Biden’s non-binary Deep State theater kids to get a blank check to give my tax dollars to fringe left-wing NGO slush funds for four years, but that’s exactly what happened.”
-
-🤣💯 https://t.co/4nRMJl","Feb 5, 10:26:10 AM EST"
-1887161010521329993,"Yes https://t.co/GapKSLf1Kf","Feb 5, 10:27:01 AM EST"
-1887161421969936489,"Crazy waste of your tax money! https://t.co/9dEoj9xeMf","Feb 5, 10:28:39 AM EST"
-1887161652459508161,"RT @pmarca: https://t.co/mn1gDpuirR","Feb 5, 10:29:34 AM EST"
-1887163952787763570,"VOX POPULI
-VOX DEI https://t.co/HDNu6wRhq4","Feb 5, 10:38:42 AM EST"
-1887164691199254919,"Many media outlets are going to experience a mysterious drop in revenue https://t.co/8T2Qrwpcez","Feb 5, 10:41:38 AM EST"
-1887164770811355449,"Exactly https://t.co/vYqO4U7G1V","Feb 5, 10:41:57 AM EST"
-1887167464741437535,"RT @charliekirk11: The American people quite literally voted for Elon Musk and DOGE when they elected Donald Trump with a historic mandate.…","Feb 5, 10:52:40 AM EST"
-1887168189777285425,"Nobody cares https://t.co/norkwEJrcv","Feb 5, 10:55:32 AM EST"
-1887168599028064615,"RT @charliekirk11: So let me get this straight…
-
-USAID has been spending millions of taxpayer dollars every year funding not only the BBC,…","Feb 5, 10:57:10 AM EST"
-1887172343954563552,"It’s more than just USAID, but … yes https://t.co/FsZ9FhnraD","Feb 5, 11:12:03 AM EST"
-1887172936924385705,"Not an efficient use of taxpayer funds.
-
-This wasteful expenditure will be deleted. https://t.co/heR4q6Sg4x","Feb 5, 11:14:24 AM EST"
-1887173188276113515,"Interesting https://t.co/S5CdtaCexf","Feb 5, 11:15:24 AM EST"
-1887174051057020959,"https://t.co/VyFYXCDG9p","Feb 5, 11:18:50 AM EST"
-1887177695789760647,"She comes to me on this day of my DOGE’s wedding and makes these demands.
-
-But does she call me The DOGEfather? Is she even a friend?
-
-Buona sera, buono sera … https://t.co/fTW3SaN9mL","Feb 5, 11:33:19 AM EST"
-1887179666525417623,"😂
- https://t.co/qioW8nXvTO","Feb 5, 11:41:09 AM EST"
-1887179922222743928,"How is this reality? Lmaooo https://t.co/mamn2awlMt","Feb 5, 11:42:10 AM EST"
-1887180018129727739,"RT @micsolana: times square https://t.co/VFRAC7zdwa","Feb 5, 11:42:33 AM EST"
-1887180154163609801,"🤨 https://t.co/4FQuL7VQHX","Feb 5, 11:43:05 AM EST"
-1887184249532604686,"Shot … chaser https://t.co/AFDoWW1cJn","Feb 5, 11:59:21 AM EST"
-1887184544438108502,"Haha 💯 https://t.co/uvXBVBRB2N","Feb 5, 12:00:32 PM EST"
-1887184902543577590,"Yeah, this is where the big money fraud is happening https://t.co/jXqXrlKDGp","Feb 5, 12:01:57 PM EST"
-1887185381797343504,"🤨 https://t.co/R32kbLTeTW","Feb 5, 12:03:51 PM EST"
-1887185702020141101,"Yes https://t.co/SMhuFYAtSH","Feb 5, 12:05:08 PM EST"
-1887185959596253599,"Corrupt politician says what? https://t.co/UKxNIpg72P","Feb 5, 12:06:09 PM EST"
-1887186674263990619,"Not for long.
-
-This is obviously a huge waste of taxpayer money! https://t.co/7wJ8p4V603","Feb 5, 12:09:00 PM EST"
-1887186837627670746,"True https://t.co/gZY3OINI9f","Feb 5, 12:09:38 PM EST"
-1887186985728487646,"https://t.co/VYoi3DpvzL","Feb 5, 12:10:14 PM EST"
-1887196912148783423,"🤔 https://t.co/ZsXqjgtSAn","Feb 5, 12:49:40 PM EST"
-1887197180605431908,"Bullseye https://t.co/htC9HU0fkO","Feb 5, 12:50:44 PM EST"
-1887197444540408188,"RT @thatsKAIZEN: They complained about dishonest politicians but protest Trump’s honesty.
-
-Complained America is unhealthy but protest RFK’…","Feb 5, 12:51:47 PM EST"
-1887197634156503306,"NYT is government-funded media https://t.co/GMK5GDYqNT","Feb 5, 12:52:33 PM EST"
-1887204140993941832,"RT @PalmerLuckey: This new "Nobody elected Elon Musk!" angle from leading Democrats is so bad.
-
-One of the key pillars of Trump's campaign…","Feb 5, 1:18:24 PM EST"
-1887204183423496294,"🤔 https://t.co/ZPQJZxli5w","Feb 5, 1:18:34 PM EST"
-1887206511186772038,"RT @Inevitablewest: You’d be forgiven for not knowing there was a school massacre in Sweden yesterday which killed 10 people.
-
-No European…","Feb 5, 1:27:49 PM EST"
-1887206641239568628,"💯🇺🇸 https://t.co/7gorBQRWyY","Feb 5, 1:28:20 PM EST"
-1887207682987200996,"RT @BasedMikeLee: Government of the Deep State™️
-
-By the Deep State™️
-
-For the Deep State™️
-
-Must perish—forever—from the earth
-
-Pass the R…","Feb 5, 1:32:28 PM EST"
-1887210069743268050,"RT @AutismCapital: 🚨LEAVITT: "I was made aware that USAID has funded media outlets like Politico. I can confirm that more than $8M that has…","Feb 5, 1:41:57 PM EST"
-1887215564399255953,"https://t.co/PPz02vcHNv","Feb 5, 2:03:47 PM EST"
-1887215786533548536,"Exactly https://t.co/7qKzc1fWRF","Feb 5, 2:04:40 PM EST"
-1887215924660609162,"🎯 https://t.co/8SStLdMGde","Feb 5, 2:05:13 PM EST"
-1887218157741613555,"RT @ImMeme0: Did you know that USAID spent your tax dollars to fund celebrity trips to Ukraine, all to boost Zelensky’s popularity among Am…","Feb 5, 2:14:06 PM EST"
-1887218187596353934,"RT @atensnut: Watch this to understand how the Biden Administration and their cronies used USAID to start wars and support human trafficki…","Feb 5, 2:14:13 PM EST"
-1887218447219585497,"Wise words
- https://t.co/kuSuFSNEWh","Feb 5, 2:15:15 PM EST"
-1887228247378976813,"RT @KanekoaTheGreat: A 2006 archived USAID website proudly claims the agency "supported" revolutions in Ukraine, Georgia, Lebanon, and Kyrg…","Feb 5, 2:54:11 PM EST"
-1887228352647373077,"hmm https://t.co/CLKK72CxRk","Feb 5, 2:54:36 PM EST"
-1887228628028551386,"Interesting https://t.co/4m0bPuKH4N","Feb 5, 2:55:42 PM EST"
-1887230368597876741,"The anti-corruption drive is accelerating https://t.co/Twc32HUdID","Feb 5, 3:02:37 PM EST"
-1887231785437683998,"RT @SecDuffy: The primary NOTAM system is experiencing a temporary outage, but there is currently
-no impact to the National Airspace System…","Feb 5, 3:08:15 PM EST"
-1887233566263967812,"With the support of President @realDonaldTrump, the @DOGE team will aim to make rapid safety upgrades to the air traffic control system.
-
-Just a few days ago, the FAA’s primary aircraft safety notification system failed for several hours!
-
-https://t.co/WH","Feb 5, 3:15:19 PM EST"
-1887240541315998075,"RT @SenateGOP: https://t.co/0WQdvoqztR","Feb 5, 3:43:02 PM EST"
-1887257165288906810,"RT @AutismCapital: 🚨BREAKING: President Trump officially signs the Executive Order banning men from competing in women's sports. Huge day!!…","Feb 5, 4:49:06 PM EST"
-1887257971580633095,"Wow https://t.co/15JJHOMOug","Feb 5, 4:52:18 PM EST"
-1887258455037387257,"Yes.
-
-And much needed. https://t.co/nGbFoiUQ7W","Feb 5, 4:54:13 PM EST"
-1887263131124310375,"🤨 https://t.co/mHqAXzcFKo","Feb 5, 5:12:48 PM EST"
-1887263607597244909,"RT @TheRabbitHole84: This is not only desirable but necessary.
-
-We need an efficient government that values every dollar and does not take…","Feb 5, 5:14:42 PM EST"
-1887263781325099487,"Interesting https://t.co/SvJOq9jz8z","Feb 5, 5:15:23 PM EST"
-1887277791537676598,"Lmao https://t.co/fa1qGcmDPo","Feb 5, 6:11:04 PM EST"
-1887278671590801675,"RT @DataRepublican: Wait, what? CEPPS has raked in massive amounts of USAID money and still controls half a billion dollars in active gover…","Feb 5, 6:14:33 PM EST"
-1887297607191388226,"RT @AutismCapital: 🚨NEW: The second largest investor in X says that "Twitter" performed even better after Elon Musk fired 6,500 employees a…","Feb 5, 7:29:48 PM EST"
-1887301373491863987,"RT @OPteemyst: @elonmusk “And, when you want something, all the universe conspires in helping you to achieve it.” - Paulo Coehlo https://t.…","Feb 5, 7:44:46 PM EST"
-1887322729562485137,"Wow, this is insane! https://t.co/7dutljbHsO","Feb 5, 9:09:38 PM EST"
-1887341686847681002,"RT @SawyerMerritt: BREAKING: Tesla is now officially hiring engineers to prepare for mass production of Optimus (Tesla Bot) in their Fremon…","Feb 5, 10:24:57 PM EST"
-1887345866375078126,"RT @SenRickScott: Democrats’ ridiculous rules and regulations cost the American people $1.9 TRILLION over the past four years.
-
-Cutting bi…","Feb 5, 10:41:34 PM EST"
-1887364918271238477,"No kidding https://t.co/v2ITgs7TL4","Feb 5, 11:57:16 PM EST"
-1887382256521453746,"Room for improvement https://t.co/4oA91iVqHU","Feb 6, 1:06:10 AM EST"
-1887382379922083948,"It’s almost like I’m good with money 😂 https://t.co/IPtVasDX6Z","Feb 6, 1:06:39 AM EST"
-1887383912076161500,"RT @SawyerMerritt: The Pentagon said that @SpaceX has saved the government over $40B. One SLS launch costs billions. One SpaceX launch cost…","Feb 6, 1:12:45 AM EST"
-1887383992955248859,"Exactly https://t.co/ldLI6bBefF","Feb 6, 1:13:04 AM EST"
-1887384493377347798,"🔥🔥 https://t.co/Lpwp0dUnVA","Feb 6, 1:15:03 AM EST"
-1887384981947003137,"RT @DOGE: Treasury leadership verified that their NYT contracts were cancelled today.","Feb 6, 1:17:00 AM EST"
-1887385091988492583,"RT @DOGE: NASA leadership has verified that this was cancelled today.","Feb 6, 1:17:26 AM EST"
-1887385142962094495,"RT @DOGE: Thanks so much to the Engineering, Finance, HR, InfoSec, Legal, Operations, and Real Estate teams for your dedication and the imm…","Feb 6, 1:17:38 AM EST"
-1887385183977931164,"RT @DOGE: The Social Security Administration has terminated its contract for the “Gender X initiative marker” and removed all references to…","Feb 6, 1:17:48 AM EST"
-1887387266307223998,"RT @nayibbukele: This 2021 post explains what USAID does with U.S. taxpayers' money.","Feb 6, 1:26:04 AM EST"
-1887388217449590968,"Wow https://t.co/VfgL2CeXi2","Feb 6, 1:29:51 AM EST"
-1887390066932146508,"RT @DefiyantlyFree: They didn’t hold press conferences when people couldn’t pay their rent.
-
-They didn’t hold press conferences when people…","Feb 6, 1:37:12 AM EST"
-1887498480446259607,"RT @DOGE: Today, 78 contracts were terminated for convenience across DEI, Non-Performing, Media, and Consulting categories, including one f…","Feb 6, 8:48:00 AM EST"
-1887499547418456511,"😢 https://t.co/mFEAQ4CjT7","Feb 6, 8:52:14 AM EST"
-1887502828333044041,"Why did Democrat Senator Durbin block release of the Epstein client list?
-
-What is he hiding? https://t.co/Or2KjSAati","Feb 6, 9:05:17 AM EST"
-1887507186064011743,"https://t.co/ajcmLKZWDv","Feb 6, 9:22:36 AM EST"
-1887507500456431904,"🤡 https://t.co/sC7y0NYdNS","Feb 6, 9:23:50 AM EST"
-1887507878417781201,"RT @thatsKAIZEN: Imagine what the last 2 weeks would have looked like if we elected her","Feb 6, 9:25:21 AM EST"
-1887533431808041294,"RT @cfdownes_: 🇬🇧52% of Gen Z has lost faith in democracy.
-
-Can you blame us, when Britain’s leadership has been so poor for as long as we…","Feb 6, 11:06:53 AM EST"
-1887533693725524229,"RT @TRHLofficial: President Trump: “Elon Musk will head up a government efficiency department.”
--Sept 5, 2024
-
-30 states, every swing state…","Feb 6, 11:07:55 AM EST"
-1887534216453263617,"Exactly. The money laundering is done through several intermediaries. https://t.co/RtFDhiKQOm","Feb 6, 11:10:00 AM EST"
-1887535165603561505,"Billions of taxpayer dollars to known FRAUDULENT entities are STILL being APPROVED by Treasury.
-
-This needs to STOP NOW! https://t.co/xQZe9AL7Ct","Feb 6, 11:13:46 AM EST"
-1887535274231476385,"RT @BasedMikeLee: Senate Judiciary Committee Democrats are delaying @Kash_Patel’s committee vote by a week, pursuant to a rule that allows…","Feb 6, 11:14:12 AM EST"
-1887535341684338942,"Wow!! https://t.co/6hzSWWQqyE","Feb 6, 11:14:28 AM EST"
-1887535601341051108,"Why should American taxpayer dollars fund the British Broadcasting Corporation!? That’s insane. https://t.co/RNVx7gLLG8","Feb 6, 11:15:30 AM EST"
-1887537569858003286,"Inquiring minds want to know why @SenatorDurbin has blocked release of the Epstein client list for years.
-
-What could possibly be the reason? 🤔 https://t.co/pVDkImsdN2","Feb 6, 11:23:20 AM EST"
-1887537855729119460,"RT @cb_doge: Bureaucracy fears one thing: DOGE https://t.co/RNX5rzKeyn","Feb 6, 11:24:28 AM EST"
-1887538325126262835,"Exactly https://t.co/maAyfiGaED","Feb 6, 11:26:20 AM EST"
-1887538605452571033,"RT @MarioNawfal: 🚨🇺🇸DOGE TEAM INVESTIGATES MEDICARE FOR FRAUD & WASTE
-
-DOGE is reviewing Medicare and Medicaid payment systems to uncover f…","Feb 6, 11:27:26 AM EST"
-1887539305154797716,"At least https://t.co/3tTeyMWRys","Feb 6, 11:30:13 AM EST"
-1887539627612844121,"60 Minutes is/was a propaganda arm of the radical left https://t.co/DH7RVWLwd6","Feb 6, 11:31:30 AM EST"
-1887541268713984203,"Yes https://t.co/7pxOPJoF0n","Feb 6, 11:38:01 AM EST"
-1887541373840097716,"Exactly https://t.co/qOX4RbKHyU","Feb 6, 11:38:27 AM EST"
-1887541628027515092,"RT @johnkrausphotos: The International @Space_Station, home to seven humans living and working in space, crosses in front of the 56.9%-illu…","Feb 6, 11:39:27 AM EST"
-1887541666665337263,"RT @PeteHegseth: Completely agree @SenJoniErnst. Kudos to the @USMC; now the entire Pentagon owes the American people a successful audit.","Feb 6, 11:39:36 AM EST"
-1887542376433852793,"RT @TimSheehyMT: I spent all night on the Senate floor so we can continue confirming President Trump’s cabinet despite Democrat obstruction…","Feb 6, 11:42:26 AM EST"
-1887550861695422477,"Seven good years of Falcon Heavy https://t.co/RIs59UrK0Z","Feb 6, 12:16:09 PM EST"
-1887553899730489715,"RT @RubinReport: The USAID story is way bigger than most people realize.
-
-It’s not just that they funded Politico, NY Times etc., but then…","Feb 6, 12:28:13 PM EST"
-1887577383990886873,"Wow https://t.co/Mz9egNWILU","Feb 6, 2:01:32 PM EST"
-1887577458733687000,"!! https://t.co/K6Qhka2RmN","Feb 6, 2:01:50 PM EST"
-1887579969699864732,"Wow! https://t.co/jrkZUn09pe","Feb 6, 2:11:48 PM EST"
-1887580357551399143,"And many other government departments https://t.co/Fj14ZNLeiv","Feb 6, 2:13:21 PM EST"
-1887606010400944251,"Freedom of speech! https://t.co/i4P4k9EbUO","Feb 6, 3:55:17 PM EST"
-1887610397554798746,"Wow https://t.co/38Moc6TUbB","Feb 6, 4:12:43 PM EST"
-1887610658998415534,"Yes https://t.co/UZS9qdy9xx","Feb 6, 4:13:45 PM EST"
-1887610774895370393,"Cool https://t.co/dnEuG7aeDa","Feb 6, 4:14:13 PM EST"
-1887610885004226814,"RT @Inevitablewest: 🚨BREAKING: Italian Deputy Prime Minister demands Italy leaves the WHO
-
-Globalism is finished. https://t.co/52zTjbkw0Z","Feb 6, 4:14:39 PM EST"
-1887610980383007059,"https://t.co/YwcgPofRTg","Feb 6, 4:15:02 PM EST"
-1887644856589426804,"https://t.co/obbnlw6CxZ","Feb 6, 6:29:39 PM EST"
-1887662404865056882,"https://t.co/nhRCtyA3wj","Feb 6, 7:39:23 PM EST"
-1887671951071527099,"This was actually on TV 🤣🤣🤣 https://t.co/wTJk88WGvF","Feb 6, 8:17:19 PM EST"
-1887672075633950947,"Exactly! 🇺🇸🇺🇸 https://t.co/yyBx4UJg4R","Feb 6, 8:17:48 PM EST"
-1887672573535637548,"https://t.co/hRZofvuxUB","Feb 6, 8:19:47 PM EST"
-1887673817633259744,"Doesn’t it seem odd that none of the supposed beneficiaries of USAID are complaining? Just the government-funded “NGOs”. 🤔 https://t.co/iwRtyT4rpC","Feb 6, 8:24:44 PM EST"
-1887674787494826286,"Indeed https://t.co/HdtoQmmyIX","Feb 6, 8:28:35 PM EST"
-1887674882848358678,"RT @chamath: DOGE has existed twice before
-
-Most recently was under President Clinton’s “National Partnership for Reinventing Government” a…","Feb 6, 8:28:58 PM EST"
-1887688043366146172,"RT @nicksortor: 🚨 Trump Deputy Chief of Staff Stephen Miller just DEMOLISHED USAID
-
-“There is NO LAW passed by Congress that says we need t…","Feb 6, 9:21:15 PM EST"
-1887690091524657437,"This meme goes deep https://t.co/pTTvW7fbpU","Feb 6, 9:29:24 PM EST"
-1887694777153458195,"60 Minutes has destroyed their own reputation https://t.co/iPy93Gz2cy","Feb 6, 9:48:01 PM EST"
-1887695891399667826,"😂 https://t.co/RHLwOLPVGR","Feb 6, 9:52:26 PM EST"
-1887697653598757367,"https://t.co/p1BHvU6MAL","Feb 6, 9:59:27 PM EST"
-1887699789459951946,"RT @WholeMarsBlog: how it started / how it’s going https://t.co/i5sl7Z3ygM","Feb 6, 10:07:56 PM EST"
-1887700190775153039,"Oh no, I can’t believe they doxxed @DOGE 😱 https://t.co/d8MBS9UR9n","Feb 6, 10:09:31 PM EST"
-1887700708201296188,"They wasted $100B of taxpayer money! https://t.co/LZtrliFiJU","Feb 6, 10:11:35 PM EST"
-1887701366686007426,"RT @TheRabbitHole84: Federal Spending vs Revenue along with the Net Deficit/Surplus.
-
-The last time we had a surplus was in the early 2000s…","Feb 6, 10:14:12 PM EST"
-1887701988135014523,"Can’t believe they doxxed another @DOGE team member …
- https://t.co/R6VuPQ1YYa","Feb 6, 10:16:40 PM EST"
-1887702076299309172,"Absolutely https://t.co/5rCoPnvccs","Feb 6, 10:17:01 PM EST"
-1887702610813067293,"RT @libsoftiktok: President Trump's plan for the "largest tax cut in history for middle-class working Americans":
-
--No tax on tips
--No tax…","Feb 6, 10:19:08 PM EST"
-1887703076150087758,"Best chyron ever 🤣🤣 https://t.co/uQBSiKPC9J","Feb 6, 10:20:59 PM EST"
-1887703208169980007,"Personally, I voted for Big Balls https://t.co/gtRPzGHLDr","Feb 6, 10:21:31 PM EST"
-1887704630026530877,"RT @MarioNawfal: 🚨🇺🇸AG PAM BONDI: CLINTON FLEW MULTIPLE TIMES ON EPSTEIN'S JET
-
-“We know he was on the plane—not only on the plane a couple…","Feb 6, 10:27:10 PM EST"
-1887704734426976737,"Yes https://t.co/LoundO14C5","Feb 6, 10:27:35 PM EST"
-1887705663603696085,"RT @realDonaldTrump: https://t.co/0DvI2cPDBo","Feb 6, 10:31:16 PM EST"
-1887709998198775872,"💯 https://t.co/wEBc2TLOzi","Feb 6, 10:48:30 PM EST"
-1887710193850401075,"The results are clear 😂 https://t.co/T7FnveJ4vb","Feb 6, 10:49:16 PM EST"
-1887710700912472443,"Anyone want to create a hard-hitting show on 𝕏 called 69 Minutes?
-
-I will actually fund it! https://t.co/ZZzgRmZeDZ","Feb 6, 10:51:17 PM EST"
-1887710969586921932,"https://t.co/uOPIeey3h2","Feb 6, 10:52:21 PM EST"
-1887711014994473193,"RT @MarioNawfal: 🇺🇸REP MACE: $10-MILLION SPENT ON CREATING TRANSGENDER MICE, RATS, AND MONKEYS
-
-You can't make this stuff up...
-
-https://t.…","Feb 6, 10:52:32 PM EST"
-1887712745161732234,"RT @MarioNawfal: JOE ROGAN: MAINSTREAM MEDIA CAN'T COMPETE WITH X
-
-"If you look at a viral post on X, a viral post about something that's v…","Feb 6, 10:59:25 PM EST"
-1887720851115532534,"RT @MarioNawfal: 🇺🇸 MASSIE BACKS BILL TO ABOLISH USAID—CALLS IT A WASTE OF TAX DOLLARS
-
-Rep. Massie announced he is cosponsoring Rep. Greg…","Feb 6, 11:31:37 PM EST"
-1887723221610283458,"American weapons programs need to be completely redone.
-
-The current strategy is to build a small number of weapons at a high price to fight yesterday’s war.
-
-Unless there are immediate and dramatic changes made, America will lose the next war very badl","Feb 6, 11:41:02 PM EST"
-1887723603250020604,"Thanks https://t.co/DTvaWcqutE","Feb 6, 11:42:33 PM EST"
-1887724024928555190,"https://t.co/gRc0JQfEET","Feb 6, 11:44:14 PM EST"
-1887724117379408063,"RT @MarioNawfal: RICK CARUSO: I WANT TO GET ELON BACK TO LA
-
-“I want to be more business-friendly.
-
-I want to invite businesses back to Ca…","Feb 6, 11:44:36 PM EST"
-1887725078567166270,"RT @libsoftiktok: Trump on NCAA changing their policy to ban men from women’s sports 🔥🔥🔥 https://t.co/y0oD2txrYK","Feb 6, 11:48:25 PM EST"
-1887726842750103908,"https://t.co/DK3nBBcVKS","Feb 6, 11:55:26 PM EST"
-1887728615544307872,"https://t.co/oznIdS8MHM","Feb 7, 12:02:28 AM EST"
-1887729154906271880,"RT @DOGE: In the last 2 weeks, GSA has repealed 23 internal directives/policies, totaling 74,727 words, including a 4,890 word policy that…","Feb 7, 12:04:37 AM EST"
-1887731863118311756,"RT @MarioNawfal: 🇺🇸SEN. ERNST SLAMS FAUCI'S $1.8M DOG EXPERIMENTS
-
-Sen. Ernst is demanding answers after reports surfaced that Dr. Fauci’s…","Feb 7, 12:15:23 AM EST"
-1887843275832176760,"RT @libsoftiktok: AG Pam Bondi: "We sued today the city of Chicago, we sued the State of Illinois, we sued the Mayor, we sued the Governor.…","Feb 7, 7:38:06 AM EST"
-1887847994680058094,"RT @RapidResponse47: 🚨 CNN: “You rarely get 79% of the country to agree on anything — but they do, in fact, agree on the idea of opposing”…","Feb 7, 7:56:51 AM EST"
-1887848133054402977,"RT @cb_doge: How it started / How it's going https://t.co/txv4UXY6eI","Feb 7, 7:57:24 AM EST"
-1887850672973816086,"The Democratic Party is dying by their own hand https://t.co/G5fROXeCtn","Feb 7, 8:07:29 AM EST"
-1887851317126721879,"RT @cb_doge: BREAKING: 𝕏 remains the #1 news app on the AppStore in America across both categories! 🇺🇸 https://t.co/ShIy01KhrI","Feb 7, 8:10:03 AM EST"
-1887855212661965099,"RT @nfergus: "Regardless of their faults, all three men [@elonmusk, @realDonaldTrump, and @netanyahu] shared a common trait at a critical m…","Feb 7, 8:25:32 AM EST"
-1887855509396447422,"True.
-
-Soros figured out how to leverage a relatively small amount of his money into massive taxpayer money. https://t.co/J9uO0DBRgy","Feb 7, 8:26:42 AM EST"
-1887855898057449716,"RT @TheChiefNerd: 🚨 TED CRUZ: “USAID was flowing money to Gaza, that was going straight to Hamas and they were doing everything they could…","Feb 7, 8:28:15 AM EST"
-1887857194693021738,"Unbelievable https://t.co/de20vXO62X","Feb 7, 8:33:24 AM EST"
-1887859282030330046,"Doesn’t that seem odd? 🤔 https://t.co/YyoEY8MvKy","Feb 7, 8:41:42 AM EST"
-1887860217649533186,"🤣🤣🎯 https://t.co/M5dGDXafKZ","Feb 7, 8:45:25 AM EST"
-1887860403419410501,"RT @Heritage: Yeah, how could Elon Musk ever be trusted with aviation safety? 🤡 https://t.co/v8ebXJWVky","Feb 7, 8:46:09 AM EST"
-1887860561553117497,"RT @WallStreetMav: The meme turned out to be accurate.
-
-The news media is bought and paid for by USAID. The “news” is fake and they are all…","Feb 7, 8:46:47 AM EST"
-1887860904609411291,"Absolutely https://t.co/OOcgUxkzXz","Feb 7, 8:48:09 AM EST"
-1887861878497415453,"Confirm Kash now https://t.co/JChqKBcQos","Feb 7, 8:52:01 AM EST"
-1887862061020975248,"RT @DefiyantlyFree: People who become billionaires in private industry, and then go to serve the government decrease their net worth.
-
-Yet…","Feb 7, 8:52:44 AM EST"
-1887862264276930562,"RT @WallStreetMav: $260M? Just sad https://t.co/jMs2pb1cRB","Feb 7, 8:53:33 AM EST"
-1887862375346254297,"RT @MarioNawfal: 🚨🇺🇸DEMOCRATS SILENT ON CHINA HACKING TREASURY—BUT OUTRAGED OVER DOGE TEAM
-
-Chinese hackers had remote access to U.S. Treas…","Feb 7, 8:53:59 AM EST"
-1887863227758809534,"True https://t.co/y3iJNVnJQY","Feb 7, 8:57:22 AM EST"
-1887863320549441757,"RT @WallStreetMav: Make it make sense... https://t.co/4KW8fQfB8s","Feb 7, 8:57:45 AM EST"
-1887863475424108583,"Yes https://t.co/DXUdsszbQf","Feb 7, 8:58:22 AM EST"
-1887864714358661616,"https://t.co/QOSHhEupym","Feb 7, 9:03:17 AM EST"
-1887865008844837235,"RT @MarioNawfal: ELON: I’D LIKE TO HELP SOLVE IMPORTANT PROBLEMS
-
-“What I'd like to do is help solve some important problems.
-
-I think, in…","Feb 7, 9:04:27 AM EST"
-1887865246557020332,"😂💯 https://t.co/PKzMcNnVpx","Feb 7, 9:05:24 AM EST"
-1887865374613336300,"RT @MarioNawfal: 🚨🇺🇸TED CRUZ: USAID FUNDED HAMAS, TALIBAN HEALTHCARE AND DEI ABROAD | NOW DOGE HAS STOPPED IT
-
-“The Biden USAID spent $1.5…","Feb 7, 9:05:54 AM EST"
-1887865479194157550,"RT @MarioNawfal: 🚨🇺🇸DEMOCRATS HAVE LOST—AND MAY NEVER RECOVER
-
-A new Gallup poll shows Democrats pushing further left—55% now identify as l…","Feb 7, 9:06:19 AM EST"
-1887865533590057028,"RT @MarioNawfal: 🚨🇺🇸AMERICANS OVERWHELMINGLY OPPOSE TRANS ATHLETES IN WOMEN’S SPORTS
-
-A staggering 79% of Americans now oppose transgender…","Feb 7, 9:06:32 AM EST"
-1887866185032597652,"True https://t.co/4YuxD899qe","Feb 7, 9:09:08 AM EST"
-1887866375894384848,"The Democrats really want their bribe money https://t.co/kg3gkmeMKx","Feb 7, 9:09:53 AM EST"
-1887866757328650369,"https://t.co/z3YkAoYHqZ","Feb 7, 9:11:24 AM EST"
-1887866827822309472,"RT @GuntherEagleman: BREAKING: President Trump signed an Executive Order that requires an audit of every NGO that receives federal funding!…","Feb 7, 9:11:41 AM EST"
-1887867644814020902,"Bring back @DOGE staffer who made inappropriate statements via a now deleted pseudonym?","Feb 7, 9:14:56 AM EST"
-1887868082456076551,"Cyberbadger dgaf 🦾 https://t.co/qr1o41889u","Feb 7, 9:16:40 AM EST"
-1887870833671962641,"https://t.co/6w0ZKm0iHc","Feb 7, 9:27:36 AM EST"
-1887871071916830861,"Wow https://t.co/PAKaDhqyBM","Feb 7, 9:28:33 AM EST"
-1887871388528107917,"https://t.co/BVLQRlUXSZ","Feb 7, 9:29:48 AM EST"
-1887872132836630727,"Wow https://t.co/o6UjSzxfx6","Feb 7, 9:32:46 AM EST"
-1887872220279554140,"RT @GuntherEagleman: Holy shit. Someone leaked ICE's plan to the Tren de Aragua gang before their operations this morning in Aurora, CO.
-
-T…","Feb 7, 9:33:06 AM EST"
-1887872689571832152,"🤣🤣 https://t.co/QSIXjpKtpQ","Feb 7, 9:34:58 AM EST"
-1887883102397124774,"Great idea! https://t.co/rTAAKYOD0E","Feb 7, 10:16:21 AM EST"
-1887885293866393619,"What the hell?
-
-Certainly improper, possibly criminal. https://t.co/8GDeinXG3C","Feb 7, 10:25:03 AM EST"
-1887885750043046215,"Yes, Mr. President! https://t.co/6bzdL218k6","Feb 7, 10:26:52 AM EST"
-1887886372955980119,"Make Europe Great Again! https://t.co/LMGOyKtBOy","Feb 7, 10:29:21 AM EST"
-1887886625318818292,"Greatest President ever! https://t.co/U8BuPVwSwd","Feb 7, 10:30:21 AM EST"
-1887889037354008729,"I love @realDonaldTrump as much as a straight man can love another man","Feb 7, 10:39:56 AM EST"
-1887957783783391423,"🫡
-
-He will be brought back.
-
-To err is human, to forgive divine. https://t.co/TV6SJIb5P6","Feb 7, 3:13:06 PM EST"
-1887957881267401107,"🫡 https://t.co/Om1fUd1D4q","Feb 7, 3:13:30 PM EST"
-1887965245609512978,"👍 https://t.co/YxHYFf9ban","Feb 7, 3:42:45 PM EST"
-1887965510265983189,"RT @WorldHallOfFun: @POTUS ELON MUSK ON DONALD TRUMP: “America needs a strong leader… You have to admire that Trump after getting shot with…","Feb 7, 3:43:49 PM EST"
-1887966379027874076,"Accurate 🤣🤣 https://t.co/TuqcDV1Qre","Feb 7, 3:47:16 PM EST"
-1887966796290080849,"Balanced budget is going to happen https://t.co/zOUGqcQaHl","Feb 7, 3:48:55 PM EST"
-1887971689817940218,"🫡 https://t.co/ouRfQDLiBa","Feb 7, 4:08:22 PM EST"
-1887972336847962314,"This building is now occupied by @CBP https://t.co/x37EKxzL5V","Feb 7, 4:10:56 PM EST"
-1887978313576030632,"https://t.co/nkrKEocWi9","Feb 7, 4:34:41 PM EST"
-1887979163165876446,"RT @cb_doge: https://t.co/zJSJiKHgqR","Feb 7, 4:38:04 PM EST"
-1887979511574147199,"More taxpayer money saved https://t.co/kFNAIObJI5","Feb 7, 4:39:27 PM EST"
-1887979940269666769,"CFPB RIP 🪦","Feb 7, 4:41:09 PM EST"
-1887980015670935993,"RT @KanekoaTheGreat: Sen. John Kennedy: Democrats Critical of DOGE Are Not Talking About What Elon Musk Is ‘Finding’
-
-"A lot of my Democrat…","Feb 7, 4:41:27 PM EST"
-1887980161628361109,"https://t.co/JAGq8TnS98","Feb 7, 4:42:02 PM EST"
-1887980318797275422,"RT @Cristiano: A win and first goal after 40! ✌🏽 https://t.co/NnlolPQ3US","Feb 7, 4:42:39 PM EST"
-1887980952917598331,"RT @dogeofficialceo: Elon Musk & Donald Trump’s bromance 😂❤️ https://t.co/Meh1OsvH9x","Feb 7, 4:45:10 PM EST"
-1887981204273516907,"So funny 🤣🤣","Feb 7, 4:46:10 PM EST"
-1887983439019917700,"🫡 https://t.co/CHXtkBGuFL","Feb 7, 4:55:03 PM EST"
-1887983539452350974,"RT @MarioNawfal: 🚨🇺🇸TRUMP SIGNS ORDER AGAINST SOUTH AFRICA OVER LAND SEIZURES, HUMAN RIGHTS ISSUES
-
-Trump has signed an executive order aim…","Feb 7, 4:55:27 PM EST"
-1887983619001532559,"RT @DefiyantlyFree: President Trump just said that Elon Musk is doing a fantastic job and every single thing that he has looked at has been…","Feb 7, 4:55:46 PM EST"
-1887983834001715285,"RT @farzyness: "This included terminating a $168,000 contract for an Anthony Fauci exhibit at the NIH Museum."
-
-WHY IS TAXPAYER DOLLARS FUN…","Feb 7, 4:56:37 PM EST"
-1887984695037600187,"RT @EagleEdMartin: Follow up.
-Sent only via X: to @elonmusk https://t.co/FVO7pDFf3Q","Feb 7, 5:00:03 PM EST"
-1887986074980409720,"🇺🇸🇺🇸 https://t.co/fDgmv7CeLe","Feb 7, 5:05:32 PM EST"
-1887987088030638388,"RT @teslaownersSV: Protect Doge at all costs. Glad to see that Department of Justice making sure that this happens. https://t.co/GfS3Sglp9o","Feb 7, 5:09:33 PM EST"
-1887987714747945008,"🤨 https://t.co/U75jhHaEkL","Feb 7, 5:12:02 PM EST"
-1887988898774610178,"RT @RealAlexJones: DOGE Bombshell! Elon Musk and President Trump CAUGHT By The Democrats Launching Operation BIG BALLS!!!
-
-Weeding Out Gove…","Feb 7, 5:16:45 PM EST"
-1887989287830044750,"🎯 https://t.co/tUpR7XSNkA","Feb 7, 5:18:18 PM EST"
-1887989362001850697,"RT @SecretaryTurner: We are carrying out @POTUS' mission to restore biological truth to the federal government — this means recognizing two…","Feb 7, 5:18:35 PM EST"
-1887989445292380192,"Oh the irony 😂 https://t.co/8WBTqZmqtQ","Feb 7, 5:18:55 PM EST"
-1887989897023127700,"RT @shaunmmaguire: Dear Americans,
-
-We’ve all been cheated and manipulated for years.
-
-Your own tax dollars were used to manipulate you.…","Feb 7, 5:20:43 PM EST"
-1887990102632136958,"!! https://t.co/NQpgbo8L3p","Feb 7, 5:21:32 PM EST"
-1887990227719045174,"This is so crazy! https://t.co/555KIhrZXz","Feb 7, 5:22:02 PM EST"
-1887991546714136936,"https://t.co/irYGaVAiqm","Feb 7, 5:27:16 PM EST"
-1888001984650785095,"RT @AutismCapital: 🚨BREAKING: Trump signs an Executive Order to protect and expand Second Amendment rights for Americans. The order calls f…","Feb 7, 6:08:45 PM EST"
-1888002288871981339,"RT @AutismCapital: Did Donald Trump just say he fired the Chairman of the Board of the Kennedy Center and made himself the Chairman? Yes. Y…","Feb 7, 6:09:57 PM EST"
-1888002502928285751,"https://t.co/h5oHlBtVAk","Feb 7, 6:10:48 PM EST"
-1888006441895870793,"Yup https://t.co/KTHm31w7FZ","Feb 7, 6:26:27 PM EST"
-1888020980767101360,"RT @TheJusticeDept: Honored to serve as the 87th Attorney General 🇺🇸 https://t.co/GfWnty6BAk","Feb 7, 7:24:14 PM EST"
-1888021640476508455,"Exactly https://t.co/zAY6zB9GKu","Feb 7, 7:26:51 PM EST"
-1888022189984858476,"Can you believe that universities with tens of billions in endowments were siphoning off 60% of research award money for “overhead”?
-
-What a ripoff! https://t.co/RRTIMKTVYN","Feb 7, 7:29:02 PM EST"
-1888023215819137352,"Biden’s memory is not functional https://t.co/3Lrzo4TaQY","Feb 7, 7:33:07 PM EST"
-1888023511480054038,"We are on the most entertaining timeline 😂 https://t.co/YtVjPccGdR","Feb 7, 7:34:17 PM EST"
-1888027111148908581,"RT @amuse: HAMMER of JUSTICE: Senator Schumer is under investigation by Trump’s Acting DC US Attorney Ed Martin over his incitement of viol…","Feb 7, 7:48:35 PM EST"
-1888035696171942087,"Yup! https://t.co/rbnckm3bdS","Feb 7, 8:22:42 PM EST"
-1888036141904838864,"https://t.co/Ji38M2MK7D","Feb 7, 8:24:28 PM EST"
-1888036259559264485,"RT @AutismCapital: 🚨DAVID SACKS: "We knew that the US Government runs a $2T deficit every year, we're in debt almost $40T, and every time s…","Feb 7, 8:24:56 PM EST"
-1888036453499752845,"https://t.co/5UFbeuoYNn","Feb 7, 8:25:43 PM EST"
-1888036647972774014,"Exactly. Total madness! https://t.co/98qHVNZRKY","Feb 7, 8:26:29 PM EST"
-1888037158646399400,"There are tens of millions of media & software subscriptions paid by the federal government – your tax dollars – that show ZERO usage!! https://t.co/lN93kn56UH","Feb 7, 8:28:31 PM EST"
-1888039257475784951,"So true 🤣🤣 https://t.co/dNG7Lfe6Yg","Feb 7, 8:36:51 PM EST"
-1888044586326458681,"RT @Mick_O_Keeffe: Things will never be the same again.
-
-DOGE will become the standard across the western world.
-
-The old style of politic…","Feb 7, 8:58:02 PM EST"
-1888048273711153435,"So much crazy government spending! https://t.co/ctvyEGyOjU","Feb 7, 9:12:41 PM EST"
-1888078694855344338,"This is a job for Big Balls 😂 https://t.co/vqYD0XyCfB","Feb 7, 11:13:34 PM EST"
-1888079960071385309,"Lot of work to do to regain democracy from the bureaucracy https://t.co/gTYy9nszqj","Feb 7, 11:18:35 PM EST"
-1888080228334879042,"Awesome 😎 https://t.co/DkoZXRROuq","Feb 7, 11:19:39 PM EST"
-1888088975656509575,"Any corrections or comments about these numbers? https://t.co/9IX6YwGKp0","Feb 7, 11:54:25 PM EST"
-1888089560850088239,"RT @Rothmus: 👏👏 https://t.co/CyCWv1OauN","Feb 7, 11:56:44 PM EST"
-1888096341424833005,"🤨 https://t.co/XsqwNtHkcq","Feb 8, 12:23:41 AM EST"
-1888096763237580831,"🤔 https://t.co/BfY3w0yY7n","Feb 8, 12:25:22 AM EST"
-1888169069032898974,"True https://t.co/wjpoIgPGvr","Feb 8, 5:12:41 AM EST"
-1888175374661492820,"RT @MarioNawfal: ELON: YOU HAVE TO FAIL SOME OF THE TIME
-
-“If you're not failing at least some of the time, you're not trying hard enough.…","Feb 8, 5:37:44 AM EST"
-1888175618388373735,"🎯 https://t.co/G5rj1leNpc","Feb 8, 5:38:42 AM EST"
-1888176132484211041,"The California high-speed rail project is an example of where incompetence in the limit is indistinguishable from fraud https://t.co/ni6VBpvfHe","Feb 8, 5:40:45 AM EST"
-1888177044711768475,"🤨 https://t.co/J7eJo9JN7q","Feb 8, 5:44:22 AM EST"
-1888177317970653358,"Wow https://t.co/zBQPWHdVz4","Feb 8, 5:45:27 AM EST"
-1888177506819219708,"RT @VivekGRamaswamy: The CFPB is NOT funded by Congress but by the Federal Reserve, an intentional gambit by Democrats that allows CFPB to…","Feb 8, 5:46:12 AM EST"
-1888177705792729120,"RT @Randanon5: @VivekGRamaswamy From @TheLastRefuge2 :
-
-"If you thought the USAID revelations were alarming sunlight, just wait until you s…","Feb 8, 5:47:00 AM EST"
-1888177850068480203,"RT @MarioNawfal: THE OTTOMAN SLAVE TRADE - WHY IS HISTORY SO SELECTIVE?
-
-When slavery is discussed, the Atlantic trade dominates - but the…","Feb 8, 5:47:34 AM EST"
-1888178508054073623,"Yes https://t.co/haAAcNp067","Feb 8, 5:50:11 AM EST"
-1888179802030436458,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app on the AppStore in Australia. 🥇
-
- https://t.co/ID1lwED3IS","Feb 8, 5:55:20 AM EST"
-1888179911040397423,"Yes https://t.co/FFrYQfmha5","Feb 8, 5:55:46 AM EST"
-1888180850472140916,"RT @MarioNawfal: JOE LONSDALE: DOGE AND THE NEW ADMIN WILL DRIVE 10X EFFICIENCY GAINS
-
-“I'm a huge fan of DOGE.
-
-I have a lot of friends i…","Feb 8, 5:59:30 AM EST"
-1888275639335104518,"True https://t.co/n19JxuQPb7","Feb 8, 12:16:09 PM EST"
-1888278729924731260,"This administration has one chance for major reform that may never come again.
-
-It’s now or never. https://t.co/Uk5S4R3wdw","Feb 8, 12:28:26 PM EST"
-1888282955992187258,"https://t.co/DidGoDSsA4","Feb 8, 12:45:13 PM EST"
-1888285166411321456,"The Democratic Party still doesn’t realize how many Americans they have alienated with their shady, ironically UNDEMOCRATIC tactics.
-
-Against the wishes of their electorate, they stopped Bernie from being the candidate several years ago, then trashed RFK","Feb 8, 12:54:00 PM EST"
-1888285936472985716,"The meme that American tax dollars were funding both sides of the conflict was real! https://t.co/sQdXQ1TMmM","Feb 8, 12:57:04 PM EST"
-1888286195651862860,"This is kinda true 😂 https://t.co/ix5fWes1xs","Feb 8, 12:58:06 PM EST"
-1888287992839565786,"The @DOGE team, at the direction of the President & his leadership team, is making great progress improving the efficiency of how your tax dollars are spent.
-
-I am confident that almost any fully informed American will be happy with the results. http","Feb 8, 1:05:14 PM EST"
-1888288480666566971,"She just wants the fraud & waste to continue https://t.co/YFlgPaDpNo","Feb 8, 1:07:11 PM EST"
-1888288615215645105,"Yup https://t.co/L03TC96q7O","Feb 8, 1:07:43 PM EST"
-1888289008209313997,"USAID pressured advertisers to boycott any media that was not left-wing! https://t.co/ukXLyHKGLF","Feb 8, 1:09:16 PM EST"
-1888290199131549854,"Swisher & Galloway are threatening talented, young software engineers who are gave up high compensation for death threats in order to help the American people.
-
-Shame on Swisher & Galloway, cruel, mean & deceitful human beings that they are! ","Feb 8, 1:14:00 PM EST"
-1888290402186215524,"No kidding … https://t.co/PUmJPr0c5F","Feb 8, 1:14:49 PM EST"
-1888290463787938024,"Same https://t.co/e4ezeA1hep","Feb 8, 1:15:03 PM EST"
-1888290519517675961,"❤️ https://t.co/HAzokRK2hT","Feb 8, 1:15:17 PM EST"
-1888307547628589513,"https://t.co/Iz6hqk0hRg","Feb 8, 2:22:57 PM EST"
-1888307577542353285,"RT @markpinc: My advice to the Dems. Stop being the resistance and start being for a better future.
-
-You’ll be far more successful saying…","Feb 8, 2:23:04 PM EST"
-1888308144184381608,"This ruling is absolutely insane!
-
-How on Earth are we supposed to stop fraud and waste of taxpayer money without looking at how money is spent?
-
-That’s literally impossible!
-
-Something super shady is going to protect scammers. https://t.co/7Eyy9ZsN7A","Feb 8, 2:25:19 PM EST"
-1888314848477376744,"To be clear, what the @DOGE team and @USTreasury have jointly agreed makes sense is the following:
-
-- Require that all outgoing government payments have a payment categorization code, which is necessary in order to pass financial audits. This is frequentl","Feb 8, 2:51:57 PM EST"
-1888314960683643155,"Crazy https://t.co/TtIpGZlOoE","Feb 8, 2:52:24 PM EST"
-1888315706598731904,"This is an activist posing as a judge https://t.co/NRUoRChfDq","Feb 8, 2:55:22 PM EST"
-1888317590893695439,"This was a criminal action https://t.co/GKc61jK1a2","Feb 8, 3:02:51 PM EST"
-1888318936250200426,"RT @AutismCapital: 🚨 NEW: Elon Musk says that both DOGE and the Treasury Department have agreed that moving forward all outgoing government…","Feb 8, 3:08:12 PM EST"
-1888319217604370841,"RT @MarioNawfal: 🇺🇸DOGE FACES UNJUST OBSTRUCTION
-
-Doge has hit an unnecessary roadblock. U.S. District Judge Paul Engelmayer's ex parte ord…","Feb 8, 3:09:19 PM EST"
-1888319882783027235,"Exactly https://t.co/G258kk9zzL","Feb 8, 3:11:57 PM EST"
-1888320039650021777,"Insane https://t.co/LVlgRwdDB3","Feb 8, 3:12:35 PM EST"
-1888320184362123435,"The Dems are trying to hide possibly the biggest fraud scheme in human history! https://t.co/LVlgRwebqB","Feb 8, 3:13:09 PM EST"
-1888320372615069983,"https://t.co/yVLOaJq4nW","Feb 8, 3:13:54 PM EST"
-1888320433411236230,"RT @MikeBenzCyber: USAID made pressuring advertisers to boycott news sources official US government policy. USAID instructed grantees to re…","Feb 8, 3:14:09 PM EST"
-1888320740581109920,"Verdad https://t.co/Ga5k2RQF2O","Feb 8, 3:15:22 PM EST"
-1888320882088518008,"Essential for general prosperity https://t.co/fv8TGcl50Q","Feb 8, 3:15:56 PM EST"
-1888320976481378320,"RT @MarioNawfal: 🚨ELON: TREASURY STAFF TRIED TO STOP FRAUD FOR YEARS—BUT MANAGEMENT BLOCKED THEM
-
-“I do want to credit the working level pe…","Feb 8, 3:16:18 PM EST"
-1888321261677285555,"Because those media organizations were paid by USAID and they don’t want to confess their crimes https://t.co/VnNnxRDytw","Feb 8, 3:17:26 PM EST"
-1888321349732782150,"RT @Starlink: "What's the internet speed of me as a quarterback? Fast as sh*t. I was Starlink before Starlink." - @TomBrady 🛰️🏈🤣","Feb 8, 3:17:47 PM EST"
-1888321400097870054,"RT @MarioNawfal: ELON: CROSS-FERTILIZING IDEAS BETWEEN FIELDS IS A SUPERPOWER
-
-“I do find a good source of innovation is that if you read a…","Feb 8, 3:17:59 PM EST"
-1888321807306121623,"The magnitude of the fraud in government payments (your tax dollars being spent) is MUCH higher than you think! https://t.co/umnT8Zm4Mb","Feb 8, 3:19:36 PM EST"
-1888321934359703729,"RT @MikeBenzCyber: Do people appreciate the implications of what I’m saying here","Feb 8, 3:20:07 PM EST"
-1888322064093700157,"Yup https://t.co/LHIafpFMya","Feb 8, 3:20:38 PM EST"
-1888322704693919791,"Yes https://t.co/0ePMkh6IsY","Feb 8, 3:23:10 PM EST"
-1888323668733796812,"RT @ReclaimTheNetHQ: Jim Jordan is taking the EU to task over its censorship-heavy Digital Services Act (DSA). In a letter to the EU Commis…","Feb 8, 3:27:00 PM EST"
-1888323797511491598,"RT @TheRabbitHole84: Government and Bureaucracy run the risk of multiplying infinitely until someone actively works to optimize. https://t.…","Feb 8, 3:27:31 PM EST"
-1888323865601827239,"Absolutely https://t.co/HfVm2hTOwM","Feb 8, 3:27:47 PM EST"
-1888323933063332173,"RT @MarioNawfal: 🚨TREASURY LEADS IN FRAUD AND WASTE—NEARLY 24% OF BUDGET LOST
-
-The Treasury Department is hemorrhaging 23.87% of its budget…","Feb 8, 3:28:03 PM EST"
-1888324230380400821,"https://t.co/lLhS8aPubV","Feb 8, 3:29:14 PM EST"
-1888325375433777401,"😂 https://t.co/KJzxJz1EdE","Feb 8, 3:33:47 PM EST"
-1888325741156118744,"https://t.co/19GeiVHrc1","Feb 8, 3:35:14 PM EST"
-1888325794503557158,"https://t.co/k03kwBA3ol","Feb 8, 3:35:27 PM EST"
-1888326592096547245,"Tax reform is needed. Too many loopholes. https://t.co/q3nBknEd1u","Feb 8, 3:38:37 PM EST"
-1888332994554868220,"RT @TheChiefNerd: And it’s only been a few weeks https://t.co/K7iZBotEZY","Feb 8, 4:04:04 PM EST"
-1888333167846724091,"RT @nicksortor: 🚨 UPDATE: Elon Musk says FEMA’s “potentially illegal payments will now be PAUSED for review” 🔥
-
-Biden’s FEMA gave over $1 B…","Feb 8, 4:04:45 PM EST"
-1888333305143026085,"RT @SpaceX: Super Heavy moving to the pad at Starbase https://t.co/4jZqZe3YTc","Feb 8, 4:05:18 PM EST"
-1888374491698303111,"RT @TheChiefNerd: WATCH: Treasury Secretary Scott Bessent Sets the Record Straight on @DOGE
-
-"Elon and I are completely aligned in terms o…","Feb 8, 6:48:57 PM EST"
-1888380211298807843,"Yes https://t.co/Bg3g6M6Ahn","Feb 8, 7:11:41 PM EST"
-1888380902314496063,"So funny 🤣🤣 https://t.co/ahIPR7wCiz","Feb 8, 7:14:26 PM EST"
-1888380956433678617,"RT @GuntherEagleman: BREAKING: Trump just BANNED former Secretary of State Antony Blinken from ALL federal buildings!
-
-OUTSTANDING! https:/…","Feb 8, 7:14:39 PM EST"
-1888381078710178182,"Wow https://t.co/AGbvDlpuW1","Feb 8, 7:15:08 PM EST"
-1888381248596299811,"Corrupt judges protecting corruption https://t.co/5n4objyxc8","Feb 8, 7:15:48 PM EST"
-1888381334415884658,"Yes https://t.co/SiL946zlGt","Feb 8, 7:16:09 PM EST"
-1888396115642347731,"🇺🇸🇺🇸 https://t.co/y2l6gSrQ3N","Feb 8, 8:14:53 PM EST"
-1888403635005981100,"RT @AutismCapital: 🚨BREAKING: Donald Trump amends his CBS '60 minutes' lawsuit and demands a $20B settlement instead of his original $10B.…","Feb 8, 8:44:46 PM EST"
-1888403715767337282,"RT @DefiyantlyFree: Common cases where ex parte orders are issued:
-
-1. Domestic violence.
-2. Child custody emergencies.
-3. Stopping an il…","Feb 8, 8:45:05 PM EST"
-1888403768716194255,"Yes https://t.co/fvubDOZx9w","Feb 8, 8:45:17 PM EST"
-1888405173816422765,"RT @rookisaacman: Busy w/@Shift4 transition & prepping for confirmation—but made time to fly a @StJude supporter today. Can’t comment on sp…","Feb 8, 8:50:52 PM EST"
-1888405244939231258,"Yes https://t.co/1lqscLvJ6E","Feb 8, 8:51:09 PM EST"
-1888411384280383712,"RT @GuntherEagleman: It’s true! https://t.co/NMDhEtTqB4","Feb 8, 9:15:33 PM EST"
-1888446950501974394,"“Independent media” lmao https://t.co/1AITZSAyJw","Feb 8, 11:36:53 PM EST"
-1888471612317384840,"RT @AutismCapital: It's baffling why people aren't cheering the uncovering of fraud, waste, grift, and young kids rebelling against the sys…","Feb 9, 1:14:53 AM EST"
-1888472397809955106,"Wow https://t.co/WlLhDDWkiE","Feb 9, 1:18:00 AM EST"
-1888472919417688082,"RT @glennbeck: Please @realDonaldTrump and @elonmusk DO NOT STOP until every fraud is exposed and every person that was involved is fired a…","Feb 9, 1:20:04 AM EST"
-1888477938493911443,"RT @MarioNawfal: ELON: EUROPE HAS WAY MORE BUREAUCRACY THAN THE U.S.
-
-"You don't just have the provincial and national level, you also have…","Feb 9, 1:40:01 AM EST"
-1888478000926093768,"It’s time https://t.co/DA69TdZEoN","Feb 9, 1:40:16 AM EST"
-1888479140434571746,"This is the way https://t.co/3fpFUt4JQF","Feb 9, 1:44:47 AM EST"
-1888482900246462775,"Yup https://t.co/8yz8iGvUiJ","Feb 9, 1:59:44 AM EST"
-1888482994886730099,"💯 https://t.co/jwCRyFYmu1","Feb 9, 2:00:06 AM EST"
-1888483347032137931,"🇺🇸🫡
- https://t.co/uLQ7si5I1V","Feb 9, 2:01:30 AM EST"
-1888484555092312466,"Just learned that the social security database is not de-duplicated, meaning you can have the same SSN many times over, which further enables MASSIVE FRAUD!!
-
-Your tax dollars are being stolen. https://t.co/hSZdNY4wxf","Feb 9, 2:06:18 AM EST"
-1888484943510307108,"BIG BALLS 🤣🤣🤣 https://t.co/dn4x0DDA9d","Feb 9, 2:07:51 AM EST"
-1888485025307296097,"🤨 https://t.co/TxpT7uuZ6V","Feb 9, 2:08:11 AM EST"
-1888485377465315795,"The reason the radical Dems don’t want an audit of social security fraud is because they’re the ones getting it … https://t.co/zLDCxNRj6J","Feb 9, 2:09:35 AM EST"
-1888485948121366871,"A corrupt judge protecting corruption.
-
-He needs to be impeached NOW! https://t.co/zgnwZuOz2Y","Feb 9, 2:11:51 AM EST"
-1888486559315304520,"Teachers in California spend their time indoctrinating kids in DEI racism & sexism & communism, instead of teaching them the skills that help them succeed in life.
-
-This needs to STOP! https://t.co/mqrzAZqq66","Feb 9, 2:14:16 AM EST"
-1888487042939519458,"Probably WAY higher! https://t.co/DQuoM6Pvkq","Feb 9, 2:16:12 AM EST"
-1888487323420999742,"https://t.co/4X61MCJytL","Feb 9, 2:17:18 AM EST"
-1888487982002237617,"No kidding … https://t.co/3lrokkFgRv","Feb 9, 2:19:55 AM EST"
-1888488399524274664,"RT @alx: 🇺🇸🫡🔥 https://t.co/gBuncYM8cQ","Feb 9, 2:21:35 AM EST"
-1888489091148161406,"🇺🇸🇺🇸 https://t.co/7JCMJSHYtW","Feb 9, 2:24:20 AM EST"
-1888489166687642064,"RT @GuntherEagleman: Anyone criticizing DOGE exposing fraud in our government is unAmerican.","Feb 9, 2:24:38 AM EST"
-1888493952883466336,"RT @RupertLowe10: I want a full review into how uncontrolled mass immigration has put women and girls in Britain at risk.
-
-We're welcoming…","Feb 9, 2:43:39 AM EST"
-1888494003991052594,"Cool https://t.co/LQLdYr7AIb","Feb 9, 2:43:51 AM EST"
-1888496148970680360,"RT @cb_doge: The White House Tech Support 🫡 https://t.co/u3OmHldBus","Feb 9, 2:52:23 AM EST"
-1888496218315075766,"RT @MarioNawfal: 🚨🇺🇸TREASURY SEC. BESSENT: ELON AND I ARE COMPLETELY ALIGNED
-
-“This Doge program is one of the most important audits of gov…","Feb 9, 2:52:39 AM EST"
-1888496540550881427,"RT @RupertLowe10: I am proud of Britain and what we have given to the world - no nation has done more.
-
-Let's shout about it, and important…","Feb 9, 2:53:56 AM EST"
-1888497311858274745,"RT @SecDef: My second pillar is rebuilding our military and industrial base. That will necessitate an audit of the Pentagon. https://t.co/q…","Feb 9, 2:57:00 AM EST"
-1888498637270864172,"RT @charliekirk11: When we voted for President Trump, we voted for…
-
-Elon Musk and DOGE
-
-RFK Jr. and MAHA
-
-Kash
-
-Tulsi
-
-Pete
-
-We voted for…","Feb 9, 3:02:16 AM EST"
-1888498791231185265,"RT @FutureJurvetson: 1 in 44 chance of a 8-megaton blast by meteorite 💥
-(Hiroshima was 0.015 megatons for comparison).
-
-JWST will try to g…","Feb 9, 3:02:53 AM EST"
-1888499007883739491,"RT @SecDef: President Trump's charge to me was to return the department to its mission at its core: warfighting, lethality, meritocracy, ac…","Feb 9, 3:03:44 AM EST"
-1888499446352052494,"RT @Andercot: So there’s this asteroid that has a 2% chance of hitting the earth and we only recently developed an extremely heavy lift roc…","Feb 9, 3:05:29 AM EST"
-1888499993083842977,"RT @aaronjmate: Washington Post headline: "Independent media in Russia, Ukraine lose their funding with USAID freeze"
-
-The headline should…","Feb 9, 3:07:39 AM EST"
-1888574212316582230,"Yes, shut them down.
-
-1. Europe is free now (not counting stifling bureaucracy). Hello??
-
-2. Nobody listens to them anymore.
-
-3. It’s just radical left crazy people talking to themselves while torching $1B/year of US taxpayer money. https://t.co/PnmN4er","Feb 9, 8:02:34 AM EST"
-1888574761892220960,"True.
-
-Send your friends links to 𝕏, so they know what’s actually going on in the world vs the propaganda bubble of legacy media. https://t.co/odB0jwTrNt","Feb 9, 8:04:45 AM EST"
-1888574865378005366,"RT @PM_ViktorOrban: The example of Hungary proves that a country can be successful, even if you refuse to follow what the progressive globa…","Feb 9, 8:05:10 AM EST"
-1888575468003049752,"Wow https://t.co/xW4Rk7E58X","Feb 9, 8:07:34 AM EST"
-1888575812594487532,"This is crazy. https://t.co/OGdtdrdAX8","Feb 9, 8:08:56 AM EST"
-1888576449499611389,"https://t.co/SmPpXyEmxR","Feb 9, 8:11:28 AM EST"
-1888576727745523786,"Seriously 🤨 https://t.co/G0WmNkGBb4","Feb 9, 8:12:34 AM EST"
-1888577708164071871,"https://t.co/PfYUu6CyF5","Feb 9, 8:16:28 AM EST"
-1888578012095873190,"RT @TheChiefNerd: CNN’s Kaitlan Collins Says the Trump Admin is Working 7 Days/Week
-
-“When Biden first took office in January, the New York…","Feb 9, 8:17:40 AM EST"
-1888579128443457752,"RT @BasedMikeLee: One of many factors that makes Social Security a ripoff for most Americans compared to essentially any legitimate retirem…","Feb 9, 8:22:06 AM EST"
-1888581523739206079,"💯 https://t.co/s1PDLmvWGM","Feb 9, 8:31:38 AM EST"
-1888582079564185916,"🇺🇸🇺🇸 https://t.co/YX4QFaBkPi","Feb 9, 8:33:50 AM EST"
-1888582644901851266,"Is the left really just a giant kleptocracy?
-
-The evidence increasingly suggests it is.","Feb 9, 8:36:05 AM EST"
-1888583443962814811,"All aspects of the government must be fully transparent and accountable to the people.
-
-No exceptions, including, if not especially, the Federal Reserve. https://t.co/qZnXspcKPS","Feb 9, 8:39:15 AM EST"
-1888583913594839505,"RT @MarioNawfal: 🚨ELON: STARSHIPS IN SPACE COULD DEFEND EARTH FROM ASTEROIDS AND COMETS
-
-“Starships on Mars or, even better, stationed thro…","Feb 9, 8:41:07 AM EST"
-1888584202573988235,"Video game”journalism” is garbage","Feb 9, 8:42:16 AM EST"
-1888585270460658140,"This will be great https://t.co/3q1ipiOhCU","Feb 9, 8:46:31 AM EST"
-1888585916068909070,"RT @MarioNawfal: 🚨ELON: IS THE LEFT JUST A GIANT KLEPTOCRACY? THE EVIDENCE SAYS YES
-
-Elon questions whether the left is nothing more than a…","Feb 9, 8:49:05 AM EST"
-1888586491514732698,"Why do you allow this, @CyrilRamaphosa?
-
-This is a major political party in the South African parliament and their leader is calling for genocide of white people. https://t.co/P41AG2JIeB","Feb 9, 8:51:22 AM EST"
-1888587135378235755,"Who owns these terrible game publications?
-
-We need new ones. I don’t trust any of them anymore. https://t.co/zHElE4JUvi","Feb 9, 8:53:55 AM EST"
-1888588040941007256,"💯 https://t.co/FafTEfLO86","Feb 9, 8:57:31 AM EST"
-1888588181643387086,"RT @Tesla: Design & engineering walkthrough of New Model Y https://t.co/2jvMQOXGkM","Feb 9, 8:58:05 AM EST"
-1888588201155080481,"https://t.co/EE29ABOl4m","Feb 9, 8:58:10 AM EST"
-1888589047129329675,"I’d like to propose that the worst 1% of appointed judges, as determined by elected bodies, be fired every year.
-
-This will weed out the most corrupt and least competent.","Feb 9, 9:01:31 AM EST"
-1888589439334584813,"Immediate sanctions for Malema and declaration of him as an international criminal! https://t.co/KLwfsp9c2j","Feb 9, 9:03:05 AM EST"
-1888589759909392836,"Sounds illegal … https://t.co/m9yh5PIM89","Feb 9, 9:04:21 AM EST"
-1888591319683026995,"RT @RupertLowe10: 200,000 Reform members.
-
-An incredible achievement from the whole team - that includes all of you who are supporting the…","Feb 9, 9:10:33 AM EST"
-1888592034686005738,"Openly calling for genocide against white people!! https://t.co/3yfSkDndPJ","Feb 9, 9:13:24 AM EST"
-1888592132560032129,"RT @MarioNawfal: 🚨ELON: SYSTEM IS BUILT TO MINIMIZE COMPLAINTS—EVEN IF IT MEANS PAYING FRAUDSTERS
-
-“The best way to understand the system i…","Feb 9, 9:13:47 AM EST"
-1888592623541063967,"True https://t.co/tQRra6jj62","Feb 9, 9:15:44 AM EST"
-1888592823978426759,"Wow https://t.co/NsOmnVWfTl","Feb 9, 9:16:32 AM EST"
-1888593078941811148,"Exactly https://t.co/lbxjTMbN2I","Feb 9, 9:17:33 AM EST"
-1888593681583624315,"RT @UltraDane: Ask yourself this question,
-
-"If 5 White teens surrounded a lone AA girl and started attacking her like a pack of feral Hyen…","Feb 9, 9:19:56 AM EST"
-1888593927692828685,"Big changes underway https://t.co/FxqlDBEMjR","Feb 9, 9:20:55 AM EST"
-1888595579984396528,"Sounds very fishy https://t.co/68ToeBRN6d","Feb 9, 9:27:29 AM EST"
-1888598508615168174,"RT @BasedMikeLee: This says it all https://t.co/B9kdNJbaqE","Feb 9, 9:39:07 AM EST"
-1888599361929523218,"RT @Btchen_n: Dear Democrats 🔥 https://t.co/niyFlUcE5i","Feb 9, 9:42:31 AM EST"
-1888599704985903479,"RT @TrumpDailyPosts: South Africa is confiscating land, and treating certain classes of people VERY BADLY. It is a bad situation that the R…","Feb 9, 9:43:52 AM EST"
-1888600149078749338,"RT @RapidResponse47: .@MikeWaltz47 on USAID: All too often, these missions and these programs are not in line with strategic U.S. interests…","Feb 9, 9:45:38 AM EST"
-1888632481802252638,"🇺🇸🇺🇸 https://t.co/Zwsn4mjk9f","Feb 9, 11:54:07 AM EST"
-1888633194255151427,"RT @EndWokeness: Yes, this is exactly what we voted for https://t.co/kyb913cH1b","Feb 9, 11:56:57 AM EST"
-1888633578369552777,"The American public loves what they’re seeing! https://t.co/h4jiO3xMI2","Feb 9, 11:58:28 AM EST"
-1888635366791385401,"RT @MarioNawfal: 🚨VANCE: JUDGES CAN’T CONTROL THE EXECUTIVE BRANCH—IT’S ILLEGAL
-
-“If a judge tried to tell a general how to conduct a milit…","Feb 9, 12:05:35 PM EST"
-1888635852802138560,"RT @MarioNawfal: 🚨ELON: THE SYSTEM ISN’T BROKEN—IT’S BUILT FOR FRAUDSTERS
-
-Elon suggests corruption isn’t a bug in the system—it’s a featur…","Feb 9, 12:07:31 PM EST"
-1888636548775555128,"What’s actually scary is that the government has your personal info!
-
-How much do you trust the deep state?
-
-Btw, at PayPal, we had the detailed financial data of 100M+ people. Never once was it abused. https://t.co/grkhkRn5tM","Feb 9, 12:10:17 PM EST"
-1888636825410961895,"RT @alx: NEW CBS POLL: 59% of Americans approve of Trump’s deportations of illegal aliens, 64% support sending U.S. troops to secure the bo…","Feb 9, 12:11:23 PM EST"
-1888637122552201481,"Exactly https://t.co/IhABjUEcN2","Feb 9, 12:12:33 PM EST"
-1888637237388308491,"RT @theannasherman: Alright! I’m sorry, but enough is enough.
-
-@mayemusk is being bombarded with hundreds of hateful Nazi comments every da…","Feb 9, 12:13:01 PM EST"
-1888637668235305149,"He is chanting kill the white farmers to a cheering stadium https://t.co/SYKFc1ntOU","Feb 9, 12:14:43 PM EST"
-1888639936124883002,"This is what we’re dealing with everywhere in government
- https://t.co/ObsfvINEQ2","Feb 9, 12:23:44 PM EST"
-1888640240715219051,"That would be amazing 🤩 https://t.co/7jMQ3EnjMp","Feb 9, 12:24:57 PM EST"
-1888661104928141436,"Yes, it is now or never.
-
-We are at a fork in the road of destiny. https://t.co/8caOIBXiF9","Feb 9, 1:47:51 PM EST"
-1888661545821073693,"RT @MarioNawfal: 🇺🇸 RON PAUL FOR FED CHAIR?
-
-Ron Paul, former congressman and longtime advocate for sound money, has spent decades criticiz…","Feb 9, 1:49:36 PM EST"
-1888661591077290362,"RT @stillgray: South African leader Julius Malema chants “Kill the Boer”, a murderous chant calling for white genocide, to a stadium full o…","Feb 9, 1:49:47 PM EST"
-1888661776348139933,"https://t.co/8mJWKCB3rn","Feb 9, 1:50:31 PM EST"
-1888663118085337341,"RT @visegrad24: Trump’s approval rating breaks a new record at 53%.
-
-He’s now more popular than he has ever been, with voters saying that h…","Feb 9, 1:55:51 PM EST"
-1888663292064813214,"It clearly doesn’t add up https://t.co/hImdC6HoEt","Feb 9, 1:56:33 PM EST"
-1888663401796415988,"Absolutely https://t.co/ABJuG4dAld","Feb 9, 1:56:59 PM EST"
-1888663583367823460,"Wow, what a dick this guy is! https://t.co/E2p2eA8ZVD","Feb 9, 1:57:42 PM EST"
-1888663727282549204,"RT @JamesOKeefeIII: The legacy media used to be so powerful.
-
-But this 60 minutes raw footage is just pathetic.
-
-I almost feel sorry for t…","Feb 9, 1:58:16 PM EST"
-1888663835478733065,"RT @DataRepublican: Fun fact: The Rockefeller Foundation (EIN 131659629) is led by Rajeev J. Shah, who previously served as the administrat…","Feb 9, 1:58:42 PM EST"
-1888664198650970140,"RT @ScottAdamsSays: Everyone is turning Republican without admitting it.","Feb 9, 2:00:09 PM EST"
-1888664730434211892,"Yes https://t.co/iWldMNvACV","Feb 9, 2:02:16 PM EST"
-1888664881634685136,"RT @njhochman: These are Trump's best approval numbers ever. But look at the generational breakdown.
-
-Boomers are 50/50. Millennials are +4…","Feb 9, 2:02:52 PM EST"
-1888664976929476971,"RT @JDVance: What we're doing with the border is necessary to save the country. Glad to see the American people agree.","Feb 9, 2:03:14 PM EST"
-1888665022492017122,"RT @SpeakerJohnson: America is the most benevolent country on earth.
-
-USAID’s mismanaged spending abused that fact and jeopardized our for…","Feb 9, 2:03:25 PM EST"
-1888665125617627364,"We’ve come a long way https://t.co/fJon7AtDdQ","Feb 9, 2:03:50 PM EST"
-1888678609935634534,"RT @Rainmaker1973: SR-71 Blackbird kicking in its afterburners for the crowd below.
-
-NASA Dryden FRC on 15 Feb 1990: SR-71A (NASA tail numb…","Feb 9, 2:57:25 PM EST"
-1888679320832377118,"Guess I better maximize my security 🤔
- https://t.co/6MItz1eABW","Feb 9, 3:00:14 PM EST"
-1888679766649160106,"RT @RupertLowe10: Trump’s approval ratings are soaring.
-
-Strength is popular, action is popular, doing the right thing is popular.
-
-The les…","Feb 9, 3:02:00 PM EST"
-1888679833766683010,"RT @twatterbaas: They want to tell us this is normal. It’s not damn normal. We will not be silenced.
-
-📸white farmers killed in South Africa…","Feb 9, 3:02:17 PM EST"
-1888689215384256935,"Wow https://t.co/Ixrez4SVA4","Feb 9, 3:39:33 PM EST"
-1888692068828024972,"RT @StateDept: For those watching the Super Bowl at U.S. embassy gatherings around the world, @SecRubio shares a message about the game and…","Feb 9, 3:50:54 PM EST"
-1888692096351060297,"RT @DogecoinNorway: Is there life on Mars? https://t.co/45a2rw6KZa","Feb 9, 3:51:00 PM EST"
-1888696298855174509,"RT @Gfilche: even liberals in Seattle are waking up to how awesome @elonmusk and @DOGE are ... it's taken a lot of conversations, but indep…","Feb 9, 4:07:42 PM EST"
-1888696489368756393,"RT @IvankaTrump: 🔊Aboard Air Force One en route to the Super Bowl ✈️ https://t.co/kIG6gLnAEz","Feb 9, 4:08:28 PM EST"
-1888697545800417759,"https://t.co/esjBwCjKOU","Feb 9, 4:12:39 PM EST"
-1888697773924491523,"RT @PeteHegseth: Stronger people are harder to kill = Fact","Feb 9, 4:13:34 PM EST"
-1888718690893595002,"RT @SecretService: If you weren't able to attend tonight's big game, you missed a jumbotron highlight!
-
-For 160 years, our agency has been…","Feb 9, 5:36:41 PM EST"
-1888718811911815412,"🇺🇸 Gulf of America 🇺🇸 https://t.co/7ztxK7kxlc","Feb 9, 5:37:10 PM EST"
-1888718971416850496,"Starship Super Heavy Booster https://t.co/zOXgiq9bJ7","Feb 9, 5:37:48 PM EST"
-1888718975216873889,"RT @SpaceX: Full duration static fire test of Super Heavy https://t.co/JwVWdyarfd","Feb 9, 5:37:49 PM EST"
-1888719049242103950,"RT @DrApurv_: @SpaceX Each Raptor rocket engine produces twice as much thrust as all 4 engines on a 747.
-
-There are 33 Raptor engines powe…","Feb 9, 5:38:06 PM EST"
-1888719260387578199,"RT @EndWokeness: In June 2023 South Africa proposed a law that farms would get water based upon a farmer's race. Human rights bodies said n…","Feb 9, 5:38:57 PM EST"
-1888719760243957844,"🇺🇸🫡 https://t.co/f2amz6z5BL","Feb 9, 5:40:56 PM EST"
-1888719795916259389,"RT @WhiteHouse: HAPPY GULF OF AMERICA DAY! 🇺🇸 https://t.co/hFGMBRKh4S","Feb 9, 5:41:04 PM EST"
-1888720098833092855,"RT @GregAbbott_TX: Those complaining about Elon being unelected are hypocrites.
-
-They said nothing about unelected Fauci destroying our liv…","Feb 9, 5:42:16 PM EST"
-1888721612498722870,"RT @MarioNawfal: ELON: REGULATORY MOLASSES SLOWS DOWN OUR MULTIPLANET FUTURE
-
-“Starship is capable of building a city on Mars and a city on…","Feb 9, 5:48:17 PM EST"
-1888722907343323241,"RT @teslaownersSV: Starship’s mission to Mars is being funded by the Starlink service
- https://t.co/wRiMBPuMtZ","Feb 9, 5:53:26 PM EST"
-1888722958203383937,"RT @teslaownersSV: The People 100% voted for Elon Musk and @doge. It was part of the whole campaign for Trump.
-
-Legacy media wants to tell…","Feb 9, 5:53:38 PM EST"
-1888723097685028883,"RT @cremieuxrecueil: CBS just recorded their highest approval rating for President Trump in their polling history this past week.
-
-The thin…","Feb 9, 5:54:11 PM EST"
-1888724157237493807,"RT @BigImpactHumans: S31's onboard views synced with external buoy cam 👌🏼 https://t.co/59RBYxzJQ4","Feb 9, 5:58:24 PM EST"
-1888724762165236016,"RT @Starlink: Stay connected with high-speed internet, even while tailgating before the Super Bowl 🛰️🏈
-
-Starlink Mini connects within minut…","Feb 9, 6:00:48 PM EST"
-1888725204685172760,"RT @teslaownersSV: “Man, Starship is a hard, hard, hard project. This is the biggest rocket ever made.
-
-It will have a thrust and mass dou…","Feb 9, 6:02:34 PM EST"
-1888745930616078445,"Register for the Starlink direct to cell beta program with T-Mobile https://t.co/JzS8bD8bV3","Feb 9, 7:24:55 PM EST"
-1888746018310660293,"RT @Gwynne_Shotwell: We’re excited to team up with @TMobile to bring our @Starlink Direct to Cell capability to the US!","Feb 9, 7:25:16 PM EST"
-1888748014673568176,"RT @SawyerMerritt: BREAKING: T-Mobile spent $8 million to air its Super Bowl commercial to announce that their @Starlink beta program will…","Feb 9, 7:33:12 PM EST"
-1888748087218176207,"https://t.co/wKLneVOJnX","Feb 9, 7:33:29 PM EST"
-1888748226875883926,"https://t.co/pSQfcQI1QM","Feb 9, 7:34:03 PM EST"
-1888751347756879928,"Follow the Super Bowl https://t.co/RMJoA7ZmYl","Feb 9, 7:46:27 PM EST"
-1888752372609901025,"RT @TimSweeneyEpic: Total game changer for people who live or adventure outside of cities and towns. And, it's space rather than a bunch of…","Feb 9, 7:50:31 PM EST"
-1888793967786946846,"🔥🔥 https://t.co/dN4E1VcYYg","Feb 9, 10:35:48 PM EST"
-1888794249765765437,"Amazing that this is a real issue! https://t.co/M5OiLZUSCU","Feb 9, 10:36:55 PM EST"
-1888794766755643560,"💯😀 https://t.co/Occln2xFmg","Feb 9, 10:38:59 PM EST"
-1888798319167615443,"RT @MarioNawfal: 🚨🇺🇸X IS AMERCA'S NEWSROOM: IF YOU’RE NOT ON X, YOU’RE BEHIND
-
-Social media is the news for most Americans—54% get their up…","Feb 9, 10:53:06 PM EST"
-1888798997227168234,"RT @DimaZeniuk: “We need to transfer about 1,000,000 tons of cargo to make Mars self-sustainable.”
-
-— Elon Musk https://t.co/Wq0oxIGu2w","Feb 9, 10:55:47 PM EST"
-1888801313846067353,"RT @statedeptspox: The United States stands ready to help the descendants of settlers in South Africa who are being expropriated and abused…","Feb 9, 11:05:00 PM EST"
-1888801568067060182,"RT @MarioNawfal: 🚨T-MOBILE AND STARLINK STEAL SUPER BOWL SPOTLIGHT
-
-T-Mobile's big game ad reveals public rollout of Starlink satellite tex…","Feb 9, 11:06:00 PM EST"
-1888801710094622783,"https://t.co/UhUasdN1EF","Feb 9, 11:06:34 PM EST"
-1888818336336671093,"Interesting https://t.co/jKdZi8XQNl","Feb 10, 12:12:38 AM EST"
-1888818494474457138,"RT @MarioNawfal: 🚨INSIDE USAID'S HOUSE OF SECRETS: A TAXPAYER HORROR STORY
-
-While Americans tightened their belts, USAID was busy funding f…","Feb 10, 12:13:16 AM EST"
-1888818629589827943,"https://t.co/Cacy3PJdnd","Feb 10, 12:13:48 AM EST"
-1888819129194303530,"RT @teslaownersSV: Starship isn’t using AI to land. Code written by engineers.
-
-🤯🤯🤯
-
-It’ll take us to Mars https://t.co/DhgAS2FwKd","Feb 10, 12:15:47 AM EST"
-1888819979241332939,"RT @JohnStossel: In just one year, @JMilei transformed Argentina!
-
-He SLASHED government spending and ELIMINATED entire departments.
-
-Now…","Feb 10, 12:19:10 AM EST"
-1888821161661804825,"RT @teslaownersSV: “Starship is capable of building a city on Mars and a city on the moon. That's what it's designed to do. But we're being…","Feb 10, 12:23:52 AM EST"
-1888821262517965069,"RT @iam_smx: "When I was in College, there were three areas that I thought would most affect the future of humanity. That was the internet,…","Feb 10, 12:24:16 AM EST"
-1888821307237703925,"RT @libsoftiktok: Trump says he’s cutting all funding to South Africa over their discrimination and human rights violations against White p…","Feb 10, 12:24:26 AM EST"
-1888821496782442728,"RT @DefiyantlyFree: I trust Elon Musk and DOGE with my personal information over lifelong government bureaucrats because unlike the governm…","Feb 10, 12:25:12 AM EST"
-1888826220072063020,"Exactly https://t.co/bCUXci7yyn","Feb 10, 12:43:58 AM EST"
-1888826303438062008,"RT @teslaownersSV: The Robovan is the future of transportation https://t.co/Kv3a3DUgda","Feb 10, 12:44:18 AM EST"
-1888826357661999416,"Yup https://t.co/J9DTVsZ8Iu","Feb 10, 12:44:31 AM EST"
-1888826566009921710,"Where else would you go? https://t.co/cb1RpzAp1e","Feb 10, 12:45:20 AM EST"
-1888828440461107269,"https://t.co/rFDbS4mKYg","Feb 10, 12:52:47 AM EST"
-1888828866237530204,"Milton Friedman was spot on
-
- https://t.co/5fndbNzE8N","Feb 10, 12:54:29 AM EST"
-1888831866930647465,"RT @DimaZeniuk: Valles Marineris on Mars, the biggest canyon ever recorded https://t.co/rdXOsJLQi9","Feb 10, 1:06:24 AM EST"
-1888832000976474518,"RT @teslaownersSV: SpaceX has come a long way https://t.co/elqNY6Q9xN","Feb 10, 1:06:56 AM EST"
-1888833985687499241,"RT @balajis: Nothing can stop an idea whose time has come. https://t.co/A0Wls1DZpW","Feb 10, 1:14:49 AM EST"
-1888834034865742326,"RT @DimaZeniuk: This is an age of innovation like no other https://t.co/tLbNl13jbH","Feb 10, 1:15:01 AM EST"
-1888834160506151423,"Troubling, but true https://t.co/w8kAnQW3yK","Feb 10, 1:15:31 AM EST"
-1888834302999220318,"🤔 https://t.co/Q3JCB2dy7F","Feb 10, 1:16:05 AM EST"
-1888836014828822575,"Yeah, it’s crazy.
-
-My rough guess is that there are tens of millions of media & software subscriptions that are unnecessary in the government. https://t.co/Yd4cmZlyf9","Feb 10, 1:22:53 AM EST"
-1888836289132196152,"https://t.co/hlozMATpmV","Feb 10, 1:23:58 AM EST"
-1888836488877523452,"!! https://t.co/WdJkhOCskc","Feb 10, 1:24:46 AM EST"
-1888839621909282906,"Wow https://t.co/5cOlibZVq1","Feb 10, 1:37:13 AM EST"
-1888840189751267758,"Those are just the explicit DEI grants found.
-
-Vastly worse is that EVERY education and research grant made over the past four years required DEI in one form or another. https://t.co/ZAisp0jo70","Feb 10, 1:39:28 AM EST"
-1888841727949029662,"This genocidal lunatic is the leader of a significant political party in the South African parliament https://t.co/YKRgjdlW2p","Feb 10, 1:45:35 AM EST"
-1888842931315802586,"RT @MarioNawfal: 🇪🇺🇵🇾 RAÚL LATORRE: ELON STOOD FOR FREE SPEECH WHEN IT MATTERED MOST
-
-President of the Chamber of Deputies of Paraguay Raúl…","Feb 10, 1:50:22 AM EST"
-1888844085072453946,"A high price was long since paid https://t.co/yPhCIn88gU","Feb 10, 1:54:57 AM EST"
-1888845719286473047,"RT @MarioNawfal: 🇪🇺🇭🇷CROATIAN MEP: MAINSTREAM MEDIA IS DEAD, 𝕏 IS THE MEDIA NOW
-
-Croatian MEP, European Conservatives and Reformists Group,…","Feb 10, 2:01:27 AM EST"
-1888846824305266943,"RT @ElonClipsX: Elon Musk: Here's why I'm in favor of the AfD.
-
-“The reason that I am in favor of AfD is that there are some fundamental th…","Feb 10, 2:05:50 AM EST"
-1888859774969577853,"https://t.co/lIZFxcAPrD","Feb 10, 2:57:18 AM EST"
-1888860423648145525,"The federal government has forcibly injected DEI into everything.
-
-Most people still don’t get it.
-
-Everything. https://t.co/DG9DRFqq13","Feb 10, 2:59:52 AM EST"
-1888860932492624014,"Correct: the rules for the past four years made it impossible to win a federal research grant without some form of DEI https://t.co/O11MRtIDdx","Feb 10, 3:01:54 AM EST"
-1888861416037241228,"The legacy media does exactly this.
-
-Shame on them. https://t.co/IJZVWZ77w0","Feb 10, 3:03:49 AM EST"
-1888861771361873966,"Wow, this just gets crazier https://t.co/jEstdl0j8L","Feb 10, 3:05:14 AM EST"
-1888862513258742038,"RT @MarioNawfal: 🚨🇺🇸STREAMING WINS: TRADITIONAL TV HITS RECORD LOW IN U.S.
-
-Digital video dominates U.S. viewing habits as traditional TV h…","Feb 10, 3:08:11 AM EST"
-1888862778003271930,"Can you believe your taxpayer dollars were being spent on a Fauci exhibit? https://t.co/1fEjZqOJcU","Feb 10, 3:09:14 AM EST"
-1888864669546209464,"RT @ScottJenningsKY: Trump at 53% approval in @cbs poll this morning because he’s getting on the right side of virtually every issue, and v…","Feb 10, 3:16:45 AM EST"
-1888864800215548112,"RT @ThomasSowell: “Free speech is not just another value. It's the foundation of Western civilization.”
-
-— Jordan Peterson","Feb 10, 3:17:16 AM EST"
-1888864868549132462,"RT @TheLastRefuge2: Don't skim past this. Really contemplate what just happened.
-
-The Federal Bureau of Investigation, THE FBI, just atte…","Feb 10, 3:17:32 AM EST"
-1888866048612442378,"https://t.co/areNPpd6DX","Feb 10, 3:22:14 AM EST"
-1888866124411908577,"RT @WesternLensman: 🚨AUDIT OPPOSITION: As CNN’s Dana Bash hyperventilates about Elon and DOGE access to personal data —
-
-— DHS Sec Noem me…","Feb 10, 3:22:32 AM EST"
-1888866286735671330,"Happens all the time https://t.co/a7nU6ItQeN","Feb 10, 3:23:10 AM EST"
-1888866508064923961,"Haha true https://t.co/mLaZXxLmP2","Feb 10, 3:24:03 AM EST"
-1888866593477734778,"https://t.co/LxkwI3mvCf","Feb 10, 3:24:23 AM EST"
-1888866784297484468,"https://t.co/ktLP1RBKMl","Feb 10, 3:25:09 AM EST"
-1888867085637374409,"We must defeat bureaucracy https://t.co/MYwObzMv7w","Feb 10, 3:26:21 AM EST"
-1888871104397090972,"Make Europe Great Again!
-
-MEGA, MEGA, MEGA! https://t.co/sPceam7XfQ","Feb 10, 3:42:19 AM EST"
-1888871200861868148,"RT @stillgray: South African politicians are openly calling for the murders of white farmers. “Plaas moord.” The country has reached a tipp…","Feb 10, 3:42:42 AM EST"
-1888871434136498636,"Absolutely https://t.co/kSZa2rIM2x","Feb 10, 3:43:38 AM EST"
-1888872418812281262,"Excellent summary of the game plan
- https://t.co/40aqEX5Hwl","Feb 10, 3:47:32 AM EST"
-1888872509904183433,"RT @RupertLowe10: I have been doing some digging... At least £6.6 billion has been spent with private organisations by departments, council…","Feb 10, 3:47:54 AM EST"
-1888872588509651330,"RT @MarioNawfal: ELON: FORGIVENESS IS ESSENTIAL
-
-“If you don't forgive, then you know, an eye for an eye makes everyone blind.
-
-If you're g…","Feb 10, 3:48:13 AM EST"
-1888872700749177275,"RT @MarioNawfal: STUDY: TESLA EVs OUTLAST EVERY OTHER CAR ON THE ROAD!
-
-A new study just confirmed what Tesla owners already knew—these EV…","Feb 10, 3:48:40 AM EST"
-1888872849307230487,"😂🎯 https://t.co/0c2I3ocUPG","Feb 10, 3:49:15 AM EST"
-1888873569200820406,"https://t.co/1oTudcg2P8","Feb 10, 3:52:07 AM EST"
-1888873767171924220,"RT @VigilantFox: REPORT: Joe Rogan just delivered a blunt message to those who pushed the COVID shots and refuse to own their mistakes.
-
-“I…","Feb 10, 3:52:54 AM EST"
-1888874877337129217,"https://t.co/QngxLwQw8f","Feb 10, 3:57:19 AM EST"
-1888875118056616253,"RT @visegrad24: Commander-in-Chief @Julius_S_Malema - you hate white people so much that you want to genocide them.
-
-And yet, you choose to…","Feb 10, 3:58:16 AM EST"
-1888875238940639546,"RT @WallStreetMav: This is how it is https://t.co/cdx9n3fPcI","Feb 10, 3:58:45 AM EST"
-1888884158321008647,"At least https://t.co/LHmxaoG7UR","Feb 10, 4:34:11 AM EST"
-1888884350688616708,"RT @KRoelandschap: Tesla employee saying exactly what I experienced over the last few years.
-
-The overall build quality has improved drast…","Feb 10, 4:34:57 AM EST"
-1888884488245055759,"RT @SpeakerJohnson: Great time in NOLA at Super Bowl LIX! https://t.co/l1PfCAr6ee","Feb 10, 4:35:30 AM EST"
-1888884508411236705,"RT @POTUS: #SuperBowlLIX https://t.co/QGBr5fg0FT","Feb 10, 4:35:35 AM EST"
-1888886086065111333,"RT @MarioNawfal: ELON: AGENCIES MUST STICK TO WHAT CONGRESS AUTHORIZED
-
-“If Congress has created an agency, then often, if you look at the…","Feb 10, 4:41:51 AM EST"
-1888886507101950242,"Same playbook in the UK as in the US.
-
-I wonder who came up with this evil strategy? https://t.co/eXFgptpdty","Feb 10, 4:43:31 AM EST"
-1888888074601410568,"RT @amuse: GENOCIDE: The UN is silent as South African leaders encourage the murder of white people. https://t.co/JiQTZuV9MF","Feb 10, 4:49:45 AM EST"
-1888888746377965703,"It’s time https://t.co/xc74VnVsJd","Feb 10, 4:52:25 AM EST"
-1888889379810136386,"https://t.co/4M5uNd6U0l","Feb 10, 4:54:56 AM EST"
-1888891512303263815,"The @DOGE team just discovered that FEMA sent $59M LAST WEEK to luxury hotels in New York City to house illegal migrants.
-
-Sending this money violated the law and is in gross insubordination to the President’s executive order.
-
-That money is meant for A","Feb 10, 5:03:25 AM EST"
-1888891688669577431,"RT @TomCruise: Everything you were, everything you've done, has come to this. Mission: Impossible – The Final Reckoning. See you at the mov…","Feb 10, 5:04:07 AM EST"
-1888892394411606496,"RT @teslaownersSV: "I'm going to colonize Mars. My mission in life is to make mankind a multiplanetary civilization."
-
-Elon Musk https://t…","Feb 10, 5:06:55 AM EST"
-1888892624347496928,"Yeah https://t.co/5CFWIv6eAi","Feb 10, 5:07:50 AM EST"
-1888968769596269005,"RT @MarioNawfal: 🇬🇧THOUSANDS OF ANGRY FARMERS SHUT DOWN LONDON—GOVERNMENT STILL WON’T LISTEN
-
-That is a lot of farm equipment for Central L…","Feb 10, 10:10:24 AM EST"
-1888969819992571907,"It is obviously an oxymoron to be a government-funded, non-governmental organization.
-
-They are simply an extension of government, but with less accountability and a false veneer of independence. https://t.co/QbC07y0F11","Feb 10, 10:14:35 AM EST"
-1888970149933252953,"Wow. I recommend looking at all media and software subscriptions for either full cancellation or reduction. https://t.co/0qALNqajZ3","Feb 10, 10:15:53 AM EST"
-1888970398391206251,"It is outrageous https://t.co/1F5x4wB7FH","Feb 10, 10:16:53 AM EST"
-1888973842187501703,"America provides way too much funding to the UN and associated entities https://t.co/oyVkDYcl1D","Feb 10, 10:30:34 AM EST"
-1888974134232645782,"RT @cb_doge: Only 66 years separates these two photographs. https://t.co/SDPGQcnIWq","Feb 10, 10:31:43 AM EST"
-1888975020833026216,"They are afraid that their fraud will be discovered https://t.co/fZcp8eErBW","Feb 10, 10:35:15 AM EST"
-1888976095745044729,"You are right.
-
-The truth is that NGOs are used by governments to do things that are illegal to do directly or would be opposed by the public.
-
-Super shady. https://t.co/voAk3DXr15","Feb 10, 10:39:31 AM EST"
-1888976491351785874,"🇺🇸🇺🇸 https://t.co/OLQLXSPD91","Feb 10, 10:41:05 AM EST"
-1888976576349450287,"RT @SenRickScott: UPDATE: Today, we’re voting to move forward on @TulsiGabbard’s nomination, & we’re one step closer to getting her CONFIRM…","Feb 10, 10:41:25 AM EST"
-1888976692980351046,"True https://t.co/JTlTTiI567","Feb 10, 10:41:53 AM EST"
-1888976848060547282,"Yes https://t.co/SABnKfnrRy","Feb 10, 10:42:30 AM EST"
-1888978144985530370,"There is a massive effort by the UNELECTED bureaucracy to oppose the ELECTED President, House & Senate!!
-
-This is why I say the true & noble battle is to restore DEMOcracy, rule of the people, from the BUREAUcracy, rule of the bureaucrats. https:/","Feb 10, 10:47:39 AM EST"
-1888979339003281878,"Seriously 🤣🤣
-
-And for damn sure, I’m 1000% more trustworthy than untold numbers of deep state bureaucrats and fraudsters who may be misusing your SSN right now. https://t.co/qmVnp9kx10","Feb 10, 10:52:24 AM EST"
-1888979654461067456,"There should definitely be accountability for this https://t.co/f7ZzELSDje","Feb 10, 10:53:39 AM EST"
-1888980304917856290,"True https://t.co/ZBk13Ystk0","Feb 10, 10:56:14 AM EST"
-1888985965311520999,"🇺🇸🇺🇸 https://t.co/IcNV44Ve46","Feb 10, 11:18:44 AM EST"
-1888989308708696177,"Yes, that was a huge lie by the Biden administration.
-
-Funds were diverted from almost every part of the federal government to maximize the number of illegals in America.
-
-There also appear to be significant funds siphoned from Social Security to pay fo","Feb 10, 11:32:01 AM EST"
-1888989851233505302,"Absolutely https://t.co/ZOGPSNXUBg","Feb 10, 11:34:10 AM EST"
-1888990029734625519,"RT @america: Americans did not vote to send FEMA funds to illegal aliens.","Feb 10, 11:34:53 AM EST"
-1888990123288576220,"This is crazy! https://t.co/P3mhlDGd9Z","Feb 10, 11:35:15 AM EST"
-1888990419628839096,"This tells me that he is trying to hide MASSIVE fraud https://t.co/VMC4LmYnwG","Feb 10, 11:36:26 AM EST"
-1888990478781100281,"RT @LozzaFox: London today.
-
-What is happening across the west culminating in America rejecting communism and cultural and climate alarmism…","Feb 10, 11:36:40 AM EST"
-1888990536083611821,"RT @TheRabbitHole84: A good test of which system is better is “who needs to build a wall to keep people in?” – that’s the bad one.
-
-— Elon…","Feb 10, 11:36:54 AM EST"
-1888997271519252491,"Absolutely.
-
-The people unequivocally voted for major government reform.
-
-Judicial tyranny is grossly improper! https://t.co/wMTaXB47iE","Feb 10, 12:03:40 PM EST"
-1888997706829304251,"🤣🤣 https://t.co/ASUv4Ol0QZ","Feb 10, 12:05:23 PM EST"
-1888998928781025534,"Listen Larry, we need to stop government spending like a drunken sailor on fraud & waste or America is gonna go bankrupt.
-
-That does mean a lot of grifters will lose their grift and complain loudly about it.
-
-Too bad. Deal with it. https://t.co/7mrw","Feb 10, 12:10:15 PM EST"
-1889001586480894332,"Among many other things, @DOGE today canceled a $17M project to provide tax policy advice to Liberia.
-
-Why would anyone think that this is a good use of YOUR tax money? 🤦♂️","Feb 10, 12:20:48 PM EST"
-1889001921681195155,"Definitely not, as they are murderous thugs. This is so crazy! https://t.co/PUaZbh8CNB","Feb 10, 12:22:08 PM EST"
-1889002854708346938,"Yeah, I can’t emphasize this enough!
-
-The goal of auditing the Social Security Administration is to stop the extreme levels of fraud taking place, so that it remains solvent and protects the social security checks of honest Americans!
-
-That’s it. That’s t","Feb 10, 12:25:51 PM EST"
-1889003166567383363,"💯 https://t.co/3B9aa8JJFa","Feb 10, 12:27:05 PM EST"
-1889003346436276415,"RT @YunTaTsai1: Years before granted the citizenships, my wife and I would be so panicked about any penny errors on tax reporting.
-
-We spen…","Feb 10, 12:27:48 PM EST"
-1889003543514010081,"🇺🇸🇺🇸 https://t.co/S80dz9VcZQ","Feb 10, 12:28:35 PM EST"
-1889003818005709092,"RT @BasedMikeLee: Confirm @Kash_Patel now!
-
-Stop the Deep State™️","Feb 10, 12:29:40 PM EST"
-1889003871080726645,"RT @DefiyantlyFree: Democrats are trying to convince you that the American people serve at the pleasure of the bureaucracy and not the othe…","Feb 10, 12:29:53 PM EST"
-1889004418642624866,"Under Biden, FEMA betrayed the American people by diverting funds meant for natural disasters to pay for luxury hotels for illegal migrants https://t.co/x135ryYM66","Feb 10, 12:32:04 PM EST"
-1889005419273638392,"CFPB has $711M? That money should be returned to taxpayers. https://t.co/SPXORLcDhm","Feb 10, 12:36:02 PM EST"
-1889005583765848183,"RT @farzyness: You know how Americans will finally unify?
-
-Let DOGE go to work, deliver on its promise, and have them leave by the stated e…","Feb 10, 12:36:41 PM EST"
-1889006561541882170,"And it only gets better from here.
-
-Tesla is still on track to launch autonomous ride hailing in Austin in June and roll out to many cities in America by the end of this year.
-
-The threshold is achieving safety far in excess of the average human driver.","Feb 10, 12:40:34 PM EST"
-1889006770325954753,"Because they’re in on it https://t.co/ZiGPe9eaoj","Feb 10, 12:41:24 PM EST"
-1889006986953445726,"😂 https://t.co/HgMVBMHqUA","Feb 10, 12:42:16 PM EST"
-1889008257722663022,"Wow, your tax dollars are being torched! https://t.co/gL6bUW1h95","Feb 10, 12:47:19 PM EST"
-1889008388194930985,"Be proud to be British! 🇬🇧🇬🇧 https://t.co/7tsr6iI8L9","Feb 10, 12:47:50 PM EST"
-1889009456564056172,"🇺🇸🇺🇸 https://t.co/Zwsn4mjRYN","Feb 10, 12:52:05 PM EST"
-1889019388273315874,"https://t.co/tZ7BZS76Lq","Feb 10, 1:31:33 PM EST"
-1889019609002770761,"Great idea! https://t.co/IL8rDdfw61","Feb 10, 1:32:25 PM EST"
-1889019861482811614,"RT @BillAckman: This is a spot on rebuttal of the @nytimes take down of @elonmusk restructuring and turnaround of Twitter @X.","Feb 10, 1:33:25 PM EST"
-1889020964039544900,"Very true!
-
-Many times, the @DOGE team has found excellent people at the working level in government who want to do the right thing, but have been prevented from doing so by prior management.
-
-Treasury is a great example.
-
-If we just empower them to mak","Feb 10, 1:37:48 PM EST"
-1889021856696472054,"What happens is that those who want the government corruption & waste to continue will shop around the country for an activist judge to do their bidding.
-
-It is an undemocratic and unconstitutional power grab by a tiny group of radical leftists! http","Feb 10, 1:41:21 PM EST"
-1889030687648575982,"RT @AutismCapital: 🚨 NEW: Joe Rogan says Democrat run Government uses controversial issues to distract Americans while they steal billions…","Feb 10, 2:16:27 PM EST"
-1889030772973040067,"RT @ElonClipsX: Marc Andreessen on Elon's method: “He's in the trenches.”
-
-“Elon has developed an operating method that is very unusual by…","Feb 10, 2:16:47 PM EST"
-1889030937570136074,"RT @MarioNawfal: MARC ANDREESSEN: ELON SOLVES PROBLEMS FASTER THAN OTHER COMPANIES ORGANIZE MEETINGS
-
-“Elon has developed an operating meth…","Feb 10, 2:17:26 PM EST"
-1889031211437511157,"RT @Inevitablewest: 🚨BREAKING: The German AfD party has called for the abolition of social benefits for illegal migrants 🇩🇪
-
-Germany has re…","Feb 10, 2:18:31 PM EST"
-1889033967128719413,"Cool https://t.co/5ylXMA0Ype","Feb 10, 2:29:28 PM EST"
-1889038500902600890,"Starship is the largest and most powerful flying object by far https://t.co/i5qc7iZJ52","Feb 10, 2:47:29 PM EST"
-1889039856631787758,"They are hiding massive fraud and don’t want their grift to end.
-
-This is how we know we are over the target.
-
-Everything @DOGE does will be published for the world to see.
-
-Let the public judge for themselves. https://t.co/q36fUeIT6a","Feb 10, 2:52:53 PM EST"
-1889039983136403823,"No kidding … https://t.co/y4hG0vNGlj","Feb 10, 2:53:23 PM EST"
-1889040116133335086,"RT @libsoftiktok: CNN is forced to admits it—70% of Americans say Trump is doing exactly what he promised and his approval ratings are at a…","Feb 10, 2:53:55 PM EST"
-1889040160899191090,"https://t.co/PcaQH6Emp2","Feb 10, 2:54:05 PM EST"
-1889040265878319372,"💯 https://t.co/TB2ANjPZob","Feb 10, 2:54:30 PM EST"
-1889040611480584602,"Under Biden, FEMA took money AWAY from Americans in need of disaster relief and spent it on 5 star hotels for illegals.
-
-Pure evil. https://t.co/6A2OyJ8ppi","Feb 10, 2:55:53 PM EST"
-1889040746679779368,"Yes https://t.co/qMcbjtjWaK","Feb 10, 2:56:25 PM EST"
-1889043395961643516,"RT @libsoftiktok: SecDef Hegseth: “Effective immediately, all new accessions for individuals with a history of gender dysphoria are paused,…","Feb 10, 3:06:56 PM EST"
-1889043724212092989,"RT @teslaownersSV: Elon Musk
-
-“I think overregulation has inhibited a tremendous amount of progress and innovation in Europe.
-
-I call it th…","Feb 10, 3:08:15 PM EST"
-1889044068543434921,"Holy cow, the deficit is even worse than expected!!
-
-Fraud and waste accelerated massively under the Biden administration https://t.co/3PXUUfmiws","Feb 10, 3:09:37 PM EST"
-1889044348773265655,"Exciting to see the momentum of true patriots who want to fix America! https://t.co/uq71stkASr","Feb 10, 3:10:44 PM EST"
-1889045054896959860,"🔥🔥 https://t.co/nwttUZmEXq","Feb 10, 3:13:32 PM EST"
-1889045190758760736,"RT @MarioNawfal: 🚨🇺🇸DOGE CANCELS $17M LIBERIA TAX PROJECT—WHERE SHOULD THE SAVINGS GO?
-
-DOGE team just canceled a $17M USAID project that w…","Feb 10, 3:14:04 PM EST"
-1889045324167291288,"Thank you https://t.co/zRunIrFNjg","Feb 10, 3:14:36 PM EST"
-1889049519033397472,"RT @cb_doge: 🇩🇪 ELON MUSK:"The current govt have been suppressing freedom & putting people in jail for mild criticisms of politicians & soc…","Feb 10, 3:31:16 PM EST"
-1889051043092222310,"RT @SeibtNaomi: 🚨🇩🇪 AfD BYSTRON DESTROYS GATES-FUNDED SPIEGEL REPORTER‼️
-
-AfD MEP Petr Bystron exposes an obnoxious SPIEGEL reporter:
-
-“How…","Feb 10, 3:37:20 PM EST"
-1889052274753749146,"RT @SenJohnKennedy: Under the Biden admin, the government allegedly flagged purchases of firearms, Bibles, and anything associated with “MA…","Feb 10, 3:42:13 PM EST"
-1889055217980981497,"https://t.co/7h2gy3v8fM","Feb 10, 3:53:55 PM EST"
-1889056634951102594,"Can you believe they were spending your tax dollars on this 💩?? https://t.co/m7HJAZ5Bv4","Feb 10, 3:59:33 PM EST"
-1889057100287860928,"Noted @DOGE https://t.co/1ESsa8mfbn","Feb 10, 4:01:24 PM EST"
-1889063570488373714,"Never a dull moment on 𝕏","Feb 10, 4:27:06 PM EST"
-1889065082975297927,"The comments in this thread are comedy gold 🤣🤣 https://t.co/Rzb1JtBQ5B","Feb 10, 4:33:07 PM EST"
-1889065864307355885,"RT @robbystarbuck: The Air Force sent out a memo directing all Air Force personnel to:
-
-• Stop using pronouns in all communications
-
-• Term…","Feb 10, 4:36:13 PM EST"
-1889066265404166451,"👀 https://t.co/Cke3UAtzRL","Feb 10, 4:37:49 PM EST"
-1889067569539109283,"https://t.co/aE4XMOwiPR","Feb 10, 4:43:00 PM EST"
-1889068937242931229,"True https://t.co/cFZZffFlhS","Feb 10, 4:48:26 PM EST"
-1889069192080707887,"💯 https://t.co/9rvSxJEeps","Feb 10, 4:49:27 PM EST"
-1889069780117717222,"https://t.co/VJwnOv1Z2J","Feb 10, 4:51:47 PM EST"
-1889070539123077137,"RT @MarioNawfal: 🚨SOUTH AFRICA'S BLACK POPULATION SURGED FROM 4M TO 45M IN 100 YEARS—WHITES NOW A MINORITY
-
-Statistics reveal a massive inc…","Feb 10, 4:54:48 PM EST"
-1889070627908145538,"Scam Altman
- https://t.co/j9EXIqBZ8u","Feb 10, 4:55:09 PM EST"
-1889112657149440387,"🇺🇸🇺🇸 https://t.co/TeUT0yczDH","Feb 10, 7:42:10 PM EST"
-1889113063212687566,"Indeed https://t.co/edUit0Hpgx","Feb 10, 7:43:46 PM EST"
-1889113707377996067,"True https://t.co/Pnz9CbYQ6J","Feb 10, 7:46:20 PM EST"
-1889175524720730403,"RT @repdarrellissa: Nowhere in our Constitution is a single federal judge given absolute power over the President or the people of the Unit…","Feb 10, 11:51:58 PM EST"
-1889175540747129322,"RT @PeteHegseth: Bragg now. More to come. 🇺🇸","Feb 10, 11:52:02 PM EST"
-1889175583810114045,"Yes https://t.co/njEt2lgpuf","Feb 10, 11:52:13 PM EST"
-1889179957110120704,"Hmm https://t.co/C3EeryMCaB","Feb 11, 12:09:35 AM EST"
-1889180403623219298,"https://t.co/IdLJV8zRQG","Feb 11, 12:11:22 AM EST"
-1889181253137567767,"Yup https://t.co/ZVjxu2h1DB","Feb 11, 12:14:44 AM EST"
-1889181769359937618,"Indeed 🤨 https://t.co/zOyA1Y5JWl","Feb 11, 12:16:47 AM EST"
-1889181858677588163,"RT @SecDuffy: In line with my commitment to restoring sanity to @USDOT, the FAA will resume using the term “Notice to Airmen” instead of “N…","Feb 11, 12:17:09 AM EST"
-1889182065846796785,"Interesting https://t.co/DEfyDyY3Kx","Feb 11, 12:17:58 AM EST"
-1889188063202406453,"💯
- https://t.co/u6x37VJlGA","Feb 11, 12:41:48 AM EST"
-1889188650878972034,"🤨 https://t.co/ne2lWicFpJ","Feb 11, 12:44:08 AM EST"
-1889189619729609023,"So much corruption https://t.co/3WJVJhPifa","Feb 11, 12:47:59 AM EST"
-1889192572477698336,"Imagine if this had gone on for 4 more years https://t.co/UvNQmKMMer","Feb 11, 12:59:43 AM EST"
-1889193208992719200,"Bingo
- https://t.co/AdiByP94ei","Feb 11, 1:02:15 AM EST"
-1889193587444703404,"And @CommunityNotes wins again https://t.co/nDjZcwltqp","Feb 11, 1:03:45 AM EST"
-1889194985066475520,"So many fake protests paid for by the same corrupt NGOs that @DOGE is defunding
- https://t.co/UfKRMVzpKu","Feb 11, 1:09:18 AM EST"
-1889195838628315234,"RT @TheRabbitHole84: “The next time some academics tell you how important diversity is, ask how many Republicans there are in their sociolo…","Feb 11, 1:12:42 AM EST"
-1889196940916638144,"RT @KanekoaTheGreat: NEW: Joe Rogan goes on an epic rant about Elon Musk and DOGE exposing billions in waste and corruption while natural d…","Feb 11, 1:17:04 AM EST"
-1889197546020421784,"RT @EkoLovesYou: https://t.co/JleRstaDFX","Feb 11, 1:19:29 AM EST"
-1889198569518719122,"At this point, I am 100% certain that the magnitude of the fraud in federal entitlements (Social Security, Medicare, Medicaid, Welfare, Disability, etc) exceeds the combined sum of every private scam you’ve ever heard by FAR.
-
-It’s not even close.","Feb 11, 1:23:33 AM EST"
-1889198699886022778,"RT @libsoftiktok: "I have discussed with Trump the idea of a government efficiency commission… and I would be willing to be part of that co…","Feb 11, 1:24:04 AM EST"
-1889198986369589302,"Wow https://t.co/2aXPcZUdnR","Feb 11, 1:25:12 AM EST"
-1889199755898552831,"RT @Aku_700: @elonmusk In 2022, the Federal Government Accountability Office found $247,000,000,000 in improper payments made across 82 pro…","Feb 11, 1:28:16 AM EST"
-1889217324651250084,"Your tax dollars were spent on this https://t.co/wzewtHpEyR","Feb 11, 2:38:04 AM EST"
-1889217639895237068,"This was a gem https://t.co/vSzw0FYhor","Feb 11, 2:39:19 AM EST"
-1889217809630257175,"RT @PeteHegseth: The best of our country. Honored to spend the morning w/ these warriors.","Feb 11, 2:40:00 AM EST"
-1889217906959106497,"RT @DefiyantlyFree: Send this to every Democrat who cries about USAID. https://t.co/2VpjZzOTz2","Feb 11, 2:40:23 AM EST"
-1889217972969038071,"RT @RupertLowe10: We can use our own eyes. Where are the women? Where are the children? The vast majority on the boats are fighting age mal…","Feb 11, 2:40:39 AM EST"
-1889218453472743694,"Your tax dollars were spent on forest gender consulting https://t.co/i3H8jliKkx","Feb 11, 2:42:33 AM EST"
-1889220389198602324,"If saving lives was actually the goal, why did USAID make this a requirement?
-
-It truth, it never was the goal. https://t.co/6UuLrAEEVD","Feb 11, 2:50:15 AM EST"
-1889220898634502463,"Bullseye https://t.co/7hLLgBTwn5","Feb 11, 2:52:16 AM EST"
-1889221202247606588,"Interesting https://t.co/YlAxQbvPFq","Feb 11, 2:53:29 AM EST"
-1889221801882038644,"https://t.co/letSYzyUl9","Feb 11, 2:55:52 AM EST"
-1889223786559356964,"RT @stevenmarkryan: HUGE Shock:
-
-OpenAI Finds Out As Musk-led Investors Make SHOCK $97.4 Billion Offer https://t.co/7Ccqjnt6R9","Feb 11, 3:03:45 AM EST"
-1889224476614864996,"Yes https://t.co/Uyi35chXmV","Feb 11, 3:06:29 AM EST"
-1889229037836394663,"They’ve been importing voters to gain control.
-
-Your country is being stolen from you. https://t.co/UbvNqhYlQ8","Feb 11, 3:24:37 AM EST"
-1889230135741800916,"ABSOLUTELY!!
-
-There is zero doubt about it.
-
-Zero. https://t.co/Ai8js9BfPD","Feb 11, 3:28:59 AM EST"
-1889230364343664690,"https://t.co/bR3vuGByj8","Feb 11, 3:29:53 AM EST"
-1889230513363194365,"The Dems sold America for political power https://t.co/ZO5U7n0544","Feb 11, 3:30:29 AM EST"
-1889230731257262280,"America would have become a one-party state https://t.co/reqnsy3Nu8","Feb 11, 3:31:21 AM EST"
-1889230922332926000,"RT @MarioNawfal: 🚨🇺🇸USAID PAID TUITION FOR FUTURE AL QAEDA LEADER
-
-Bombshell documents confirm USAID funded Anwar al-Awlaki’s college tuiti…","Feb 11, 3:32:06 AM EST"
-1889232147946324405,"https://t.co/bZv07Vz7UA","Feb 11, 3:36:58 AM EST"
-1889232241328357841,"https://t.co/NZJMRjvGWD","Feb 11, 3:37:21 AM EST"
-1889232914971295847,"Democracy in America is being destroyed by judicial coup.
-
-An activist judge is not a real judge. https://t.co/zRb398NyA0","Feb 11, 3:40:01 AM EST"
-1889234462463934718,"https://t.co/ZNHxfRB9KX","Feb 11, 3:46:10 AM EST"
-1889234747026558993,"The reason the Dems imported so many illegal voters was to achieve permanent one-party control, just like happened in California https://t.co/Gdu8aMdYUC","Feb 11, 3:47:18 AM EST"
-1889237188702802204,"https://t.co/FzUAy9BjtF","Feb 11, 3:57:00 AM EST"
-1889237343837507603,"Government-controlled media https://t.co/R3lF6dS8rQ","Feb 11, 3:57:37 AM EST"
-1889237421641920877,"RT @teslaownersSV: "𝕏 played a pivotal role not just in this election but in keeping the country alive. 𝕏 is the only place where you can f…","Feb 11, 3:57:56 AM EST"
-1889237597060268105,"Exactly https://t.co/WzEs90860M","Feb 11, 3:58:38 AM EST"
-1889238021129597021,"We are witnessing an attempted coup of American democracy by radical left activists posing as judges! https://t.co/otXecVjN5W","Feb 11, 4:00:19 AM EST"
-1889238392115708129,"RT @teslaownersSV: “We've got a gigantic government bureaucracy. We've got overregulation. We've got agencies that have overlapping respons…","Feb 11, 4:01:47 AM EST"
-1889239888546963794,"This is deeply wrong!
-
-A judge just blocked dropping the overhead charged on NIH grants from the outrageous 60% to a far more reasonable 15%.
-
-This judge is FORCING the CORRUPTION to CONTINUE.
-
-WTF. https://t.co/3CSA6aZ0Jd","Feb 11, 4:07:44 AM EST"
-1889241891528482866,"RT @MarioNawfal: 🚨SPACEX LAUNCHES 23 STARLINK SATELLITES
-
-Falcon 9 successfully launched 23 Starlink satellites from Vandenberg Space Force…","Feb 11, 4:15:42 AM EST"
-1889242466655543712,"Starlink now available in Bhutan! https://t.co/ccWciPKbNH","Feb 11, 4:17:59 AM EST"
-1889242908793962906,"https://t.co/lKnT2lK90S","Feb 11, 4:19:44 AM EST"
-1889242989915988262,"https://t.co/flr4RzI6BQ","Feb 11, 4:20:03 AM EST"
-1889243180500975990,"Judicially-mandated corruption! https://t.co/zvY2IVFbS1","Feb 11, 4:20:49 AM EST"
-1889243315255562451,"!! https://t.co/6kcBAnorHT","Feb 11, 4:21:21 AM EST"
-1889244473747484914,"https://t.co/IuqIbluLc6","Feb 11, 4:25:57 AM EST"
-1889245009045500079,"RT @MikeBenzCyber: This is what USAID does everywhere — no, stop, I mean that, literally everywhere — under the banner of pro-democracy “ju…","Feb 11, 4:28:05 AM EST"
-1889245502685725096,"https://t.co/9nuobKmdBN","Feb 11, 4:30:02 AM EST"
-1889249607445528590,"Extremely urgent https://t.co/IfK0gx6mJD","Feb 11, 4:46:21 AM EST"
-1889250060455555151,"RT @Jim_Jordan: Lots of complaints from government bureaucrats in D.C. about having to return to the office today.
-
-Real America has been…","Feb 11, 4:48:09 AM EST"
-1889250219440672854,"RT @MarioNawfal: ELON: ANYONE WILL BE ABLE TO GO TO MARS
-
-“If Starship is ultimately successful, which I think it will be, if it's not stop…","Feb 11, 4:48:47 AM EST"
-1889253189695709637,"I need to meet this Elon guy. He sounds awesome 😎. https://t.co/5dkKs5kowb","Feb 11, 5:00:35 AM EST"
-1889254411672678609,"RT @VP: The open border policies of the last administration cost America trillions of dollars and destroyed countless lives.
-
-President Tru…","Feb 11, 5:05:27 AM EST"
-1889259554552049867,"We need judicial reform now! https://t.co/B49oo8HxqR","Feb 11, 5:25:53 AM EST"
-1889260812185067993,"This is insane. On trial for liking a post!
-
-Thank the Lord that America has the first and second amendments. https://t.co/jTC4u1drbr","Feb 11, 5:30:53 AM EST"
-1889260982775496927,"https://t.co/mvqWeWhufq","Feb 11, 5:31:33 AM EST"
-1889262286994317365,"RT @WholeMarsBlog: Voters: We want massive reform
-
-Biden judge: Sorry, I can't allow it","Feb 11, 5:36:44 AM EST"
-1889263154988765549,"RT @teslaownersSV: “The reason I believe in truth and honesty is because I'm trying to understand the universe. I'm trying to understand re…","Feb 11, 5:40:11 AM EST"
-1889264141988188211,"💯 https://t.co/wk29symx4s","Feb 11, 5:44:06 AM EST"
-1889350828521398625,"RT @realDonaldTrump: https://t.co/TEXWLRe6pl","Feb 11, 11:28:34 AM EST"
-1889350844878856555,"RT @realDonaldTrump: https://t.co/J5xnOUDsw1","Feb 11, 11:28:38 AM EST"
-1889368329975906387,"One of the things USAID was doing was offering free circumcisions throughout the world, but charging US taxpayers ridiculously high prices!
-
-I decided to compete for the business. https://t.co/MMAeMLng7I","Feb 11, 12:38:07 PM EST"
-1889369005535678662,"This is so awesome 😎 https://t.co/T7MmTcmDnh","Feb 11, 12:40:48 PM EST"
-1889369294842036251,"Treason at the FBI! https://t.co/3i01CdTbVu","Feb 11, 12:41:57 PM EST"
-1889370367845859503,"My guess is that the legacy media is receiving all told several billion dollars from the US government alone.
-
-They are also mooching off other governments. https://t.co/pZgEAqlx7S","Feb 11, 12:46:13 PM EST"
-1889370583936208924,"🤣🤣
- https://t.co/HXq7hmWb6c","Feb 11, 12:47:04 PM EST"
-1889370872864968805,"Propaganda https://t.co/dSJaezaa5c","Feb 11, 12:48:13 PM EST"
-1889371571674030440,"https://t.co/2dxTdUnxJ4","Feb 11, 12:51:00 PM EST"
-1889373576161271840,"Good question https://t.co/aRjWyE6xU3","Feb 11, 12:58:58 PM EST"
-1889373690451620033,"Absolutely https://t.co/LHmxaoG7UR","Feb 11, 12:59:25 PM EST"
-1889374098955936074,"https://t.co/bXklLEFFhO","Feb 11, 1:01:02 PM EST"
-1889374127666110924,"RT @TheChiefNerd: Watch Elizabeth Warren's narrative fall apart in under two minutes during today's Federal Reserve hearing 🤣 https://t.co/…","Feb 11, 1:01:09 PM EST"
-1889374693297143853,"Does it help that I changed my name to Harry Bōlz? https://t.co/G0Yid6QXwC","Feb 11, 1:03:24 PM EST"
-1889374998294409713,"RT @SwipeWright: MIT biologist Robert Payne Bigelow on the "essential distinction" of the sexes in 1894.
-
-"The ability to produce a macro-…","Feb 11, 1:04:37 PM EST"
-1889375112001892414,"A criminal action https://t.co/MKlkpD2Azg","Feb 11, 1:05:04 PM EST"
-1889375493394145474,"Interesting approach https://t.co/EYqAIelxpq","Feb 11, 1:06:35 PM EST"
-1889376006521111007,"The louder that any given politician yells about cutting government waste, the more corrupt they are.
-
-Good rule of thumb. https://t.co/HjFhYSpfMu","Feb 11, 1:08:37 PM EST"
-1889376460995015115,"https://t.co/I7nbZ6v8WK","Feb 11, 1:10:25 PM EST"
-1889376488622838088,"https://t.co/8nAGjmCQRw","Feb 11, 1:10:32 PM EST"
-1889376939548234002,"RT @repdarrellissa: We should be helping @realDonaldTrump reduce the ranks of deep state federal employees every day.","Feb 11, 1:12:19 PM EST"
-1889377530362339802,"💯 https://t.co/Bpm8vMbAg4","Feb 11, 1:14:40 PM EST"
-1889378841711247699,"https://t.co/Cl4HEwRG8v","Feb 11, 1:19:53 PM EST"
-1889379297649172870,"Exactly https://t.co/VgWpmFyPqn","Feb 11, 1:21:42 PM EST"
-1889380095015465272,"Which law firms are pushing these anti-democratic cases to impede the will of the people? https://t.co/hw2kCetGb8","Feb 11, 1:24:52 PM EST"
-1889380178729836755,"https://t.co/YH1XUtV41M","Feb 11, 1:25:12 PM EST"
-1889380729156403396,"RT @MarioNawfal: 🚨 SEN. COTTON: JUDGE BLOCKING TRUMP’S TREASURY FROM ITS OWN DATA IS OUTRAGEOUS
-
-“The idea that an unelected district court…","Feb 11, 1:27:23 PM EST"
-1889381029732827324,"RT @libsoftiktok: BREAKING: Trump calls on FEMA to be terminated. https://t.co/vASLrDKR3J","Feb 11, 1:28:35 PM EST"
-1889381345538855337,"Made them say my name 🤣🤣
- https://t.co/bSTHB9ttVa","Feb 11, 1:29:50 PM EST"
-1889381661722243550,"RT @MarioNawfal: 🚨🇺🇸BREAKING: FEMA FIRES EMPLOYEES OVER $59M MIGRANT HOTEL PAYOUT
-
-Four FEMA employees are being fired for approving a $59…","Feb 11, 1:31:05 PM EST"
-1889381773563371545,"RT @TruthFreedomPe1: .@SenSanders voted NO on @TulsiGabbard today. I can’t believe it. Tulsi had your back and you couldn’t have hers. Unfo…","Feb 11, 1:31:32 PM EST"
-1889382152476721402,"It was a tool of the radical left https://t.co/zQTdkDI21S","Feb 11, 1:33:02 PM EST"
-1889382218239234277,"https://t.co/bSoKpjsYHL","Feb 11, 1:33:18 PM EST"
-1889382574566334626,"🥜","Feb 11, 1:34:43 PM EST"
-1889383437967958202,"https://t.co/dA9BQkgytK","Feb 11, 1:38:09 PM EST"
-1889383567735886014,"This is getting ridiculous! https://t.co/6CxDwEy3Vy","Feb 11, 1:38:40 PM EST"
-1889384978741600593,"Check out my bio https://t.co/vAUdrHVDW5","Feb 11, 1:44:16 PM EST"
-1889385177056682226,"RT @MikeWaltz47: https://t.co/LytCY1nyEm","Feb 11, 1:45:03 PM EST"
-1889385228583493880,"RT @WallStreetApes: BREAKING: Bernie Sanders just voted NO on Tulsi Gabbard today
-
-Here’s Tulsi Gabbard literally STEPPING DOWN as Vice Cha…","Feb 11, 1:45:16 PM EST"
-1889385308741050737,"Interesting https://t.co/5TkfOGTWPl","Feb 11, 1:45:35 PM EST"
-1889385703546491021,"https://t.co/1o0tPa6Vvi","Feb 11, 1:47:09 PM EST"
-1889386110641643649,"https://t.co/zrzb8lOuJX","Feb 11, 1:48:46 PM EST"
-1889386307186770126,"Now 69% off!
- https://t.co/PkZStVGo9K","Feb 11, 1:49:33 PM EST"
-1889386802307539405,"Welcome to Mars
- https://t.co/cyvEEVRD7L","Feb 11, 1:51:31 PM EST"
-1889386939628785885,"RT @dvorahfr: “Starships on Mars or, even better, stationed throughout the asteroid belt, would be ideal for protecting Earth from asteroid…","Feb 11, 1:52:04 PM EST"
-1889387110622249206,"Censorship industrial complex https://t.co/s0L0BxsMw5","Feb 11, 1:52:44 PM EST"
-1889387751721590898,"“What a dick!” – Harry Bōlz https://t.co/kJR0T0xsCY","Feb 11, 1:55:17 PM EST"
-1889388528058147074,"https://t.co/2xhNV4QcrY","Feb 11, 1:58:22 PM EST"
-1889388599902134301,"RT @DefiyantlyFree: In the 1860 census, only 1.6% of the ENTIRE COUNTRY owned slaves.
-
-4.8% of the southern population.
-
-Perspective.
-
-W…","Feb 11, 1:58:40 PM EST"
-1889388785290666083,"🇺🇸🇺🇸
- https://t.co/jVmgvbcHFp","Feb 11, 1:59:24 PM EST"
-1889389836034883786,"“Judicial dicktatorship is wrong!” – Harry Bōlz","Feb 11, 2:03:34 PM EST"
-1889396492181426613,"Truly absurd. Judges as website editors!?
-
-We should at least ATTEMPT to fire this junky jurist.
-
-The notion of having a judge job for life, no matter how bad the judgments, is ridiculous!
-
-Enough is enough. https://t.co/lMPq6zWOj5","Feb 11, 2:30:01 PM EST"
-1889400433132630126,"🎯
- https://t.co/HucrieS1pT","Feb 11, 2:45:41 PM EST"
-1889400538950725667,"The party is just getting started 😎 https://t.co/Zi5P8cV9me","Feb 11, 2:46:06 PM EST"
-1889400618780934196,"RT @MikeBenzCyber: Just posting the screenshots of receipts of these $27 million of grants from USAID to Tides Center, which has housed the…","Feb 11, 2:46:25 PM EST"
-1889401089901908269,"🇺🇸 🇺🇸 🚀 🚀 LFG!! 🚀 🚀 🇺🇸 🇺🇸 https://t.co/gNoDlkV2r7","Feb 11, 2:48:17 PM EST"
-1889401990079275513,"Accurate.
-
-However, progress is roughly at the ~$4B/day savings needed to achieve a $1T deficit reduction in government financial year 2026, which starts in October.
-
-We just need to keep gaining momentum. https://t.co/FALl8SySJ2","Feb 11, 2:51:52 PM EST"
-1889402660719153216,"They imported voters to stack the election
- https://t.co/OnDSJb2A3m","Feb 11, 2:54:32 PM EST"
-1889402908497813959,"RT @MarioNawfal: 🚨JUDGE OVERRULES TRUMP, FORCES GOVERNMENT TO RESTORE WOKE WEBPAGES—ELON: "ENOUGH IS ENOUGH!"
-
-A rogue DC judge just forced…","Feb 11, 2:55:31 PM EST"
-1889404174732784082,"🇺🇸🇺🇸 https://t.co/yYGCA3YiZ1","Feb 11, 3:00:33 PM EST"
-1889404257649996089,"https://t.co/Gk9bQE3SZc","Feb 11, 3:00:53 PM EST"
-1889431656689549380,"https://t.co/flXAFzhggf","Feb 11, 4:49:45 PM EST"
-1889442712983630013,"https://t.co/Q8ckgAsI0G","Feb 11, 5:33:41 PM EST"
-1889442979276087504,"Exactly https://t.co/B5eebNpzZD","Feb 11, 5:34:45 PM EST"
-1889465497197871424,"🥰 https://t.co/ZvzwEylupm","Feb 11, 7:04:13 PM EST"
-1889478696047607951,"It’s not like these politicians started companies or were NBA All-Stars, so where did they get all the money?
-
-Does anyone know? https://t.co/hcbkGyWe3l","Feb 11, 7:56:40 PM EST"
-1889478838561706368,"Exciting times ahead! https://t.co/mmN5i4wACU","Feb 11, 7:57:14 PM EST"
-1889479001950892043,"💯 https://t.co/NUsOkUR9VE","Feb 11, 7:57:53 PM EST"
-1889479450691022894,"RT @MarioNawfal: 🇺🇸HOUSE DEMOCRAT UNDER FIRE FOR 'STREET FIGHT' RHETORIC AGAINST DOGE CUTS
-
-Democratic Rep. Kweisi Mfume is facing backlash…","Feb 11, 7:59:40 PM EST"
-1889480491021025533,"Maybe it’s just me, but I think there is room for improvement here https://t.co/gQqx3sAOyZ","Feb 11, 8:03:48 PM EST"
-1889480824665297241,"RT @alx: BREAKING: House Oversight announces ‘Task Force on the Declassification of Federal Secrets’ led by Rep. Anna Paulina Luna focusing…","Feb 11, 8:05:08 PM EST"
-1889480942244233472,"YES! https://t.co/YaXfXX7drE","Feb 11, 8:05:36 PM EST"
-1889481919697436994,"RT @Geiger_Capital: That was one of the most incredible political press conferences I’ve ever seen.
-
-Trump + Elon standing in the Oval Offi…","Feb 11, 8:09:29 PM EST"
-1889482326775628259,"🇺🇸🇺🇸 Absolutely!! 🇺🇸🇺🇸 https://t.co/Q1K1qhHiy8","Feb 11, 8:11:06 PM EST"
-1889504867686707356,"Terrible! https://t.co/CcECICXrsJ","Feb 11, 9:40:40 PM EST"
-1889504931209511270,"RT @MarioNawfal: 🇺🇸CATHERINE HERRIDGE: I WAS FIRED FROM CBS FOR ‘COMMITTING JOURNALISM’
-
-"So after I got fired from CBS News—for committin…","Feb 11, 9:40:55 PM EST"
-1889505191847678174,"🤨 https://t.co/PmYW3ADPTP","Feb 11, 9:41:57 PM EST"
-1889505364124610738,"🍿 https://t.co/LznHcJjmmc","Feb 11, 9:42:38 PM EST"
-1889505498761703504,"Assange is right! https://t.co/8GDNeHljsu","Feb 11, 9:43:10 PM EST"
-1889514824410776037,"https://t.co/hErEkthzLa","Feb 11, 10:20:14 PM EST"
-1889523537708257417,"There need to be some repercussions above ZERO for judges who make truly terrible decisions.
-
-Judge not, lest ye be judged. https://t.co/EUk19luWeM","Feb 11, 10:54:51 PM EST"
-1889524381744853222,"RT @mrddmia: President Trump isn’t stealing another branch’s power.
-
-Activist judges are stealing his executive power.
-
-Over political diff…","Feb 11, 10:58:12 PM EST"
-1889524891436683748,"RT @charliekirk11: ELON MUSK: “The people voted for major government reform… and THAT’S what they’re going to get.”
-
-Regime media won’t sto…","Feb 11, 11:00:14 PM EST"
-1889525207590735926,"RT @cb_doge: Elon Musk: DOGE is trying to be as transparent as possible. We post our actions to the DOGE 𝕏 handle and on the DOGE website.…","Feb 11, 11:01:29 PM EST"
-1889525239282839778,"RT @TheChiefNerd: .@DOGE has saved U.S. taxpayers $84 BILLION and counting in just the first few weeks of Trump’s Presidency
-
-That’s $4 BI…","Feb 11, 11:01:37 PM EST"
-1889525744356716764,"RT @BasedMikeLee: I’ve been thinking about ways to hold the judicial insurrectionists accountable
-
-Perhaps we need a law providing that wh…","Feb 11, 11:03:37 PM EST"
-1889525912305119686,"Seriously 🤨 https://t.co/KbRfjvqxN9","Feb 11, 11:04:17 PM EST"
-1889526007188643939,"RT @Rothmus: 💯 https://t.co/YsZdF0aGz9","Feb 11, 11:04:40 PM EST"
-1889526460806811915,"RT @teslaownersSV: “Starship is the key to making life multiplanetary and protecting the light of consciousness.”
-Elon Musk
- https://t.co/D…","Feb 11, 11:06:28 PM EST"
-1889529068762132776,"RT @stillgray: History repeats itself. https://t.co/jp53nHog3u","Feb 11, 11:16:50 PM EST"
-1889542380044611834,"RT @POTUS: "When I saw [Marc Fogel's] mother at a rally, she said, 'If you win, will you get my son out?' I promised her—she’s 95 years old…","Feb 12, 12:09:44 AM EST"
-1889542480229445913,"RT @realDonaldTrump: WELCOME HOME, MARC!🇺🇸 https://t.co/0b2Igcqudp","Feb 12, 12:10:07 AM EST"
-1889543064487710962,"Maybe an inquiry into lawfare? https://t.co/1BPh0LklQJ","Feb 12, 12:12:27 AM EST"
-1889543691947352577,"Bravo!
-
-We must impeach judges who are grossly undermining the will of the people and destroying America. It is the only way. https://t.co/9iTcwraFnA","Feb 12, 12:14:56 AM EST"
-1889544095388811583,"RT @teslaownersSV: Caption this https://t.co/Gmz0hXTtm3","Feb 12, 12:16:33 AM EST"
-1889548836533604586,"https://t.co/fUXPQKEyfl","Feb 12, 12:35:23 AM EST"
-1889550929227120778,"https://t.co/o3OlH9ySrK","Feb 12, 12:43:42 AM EST"
-1889551316071960923,"Absolutely https://t.co/mXWr11T0WF","Feb 12, 12:45:14 AM EST"
-1889552165682790603,"Organizations are no longer going to receive vast amounts of taxpayer money for nothing.
-
-The people deserve good value for money. https://t.co/vnotKlqIcI","Feb 12, 12:48:37 AM EST"
-1889553234882339244,"Frankly, the biggest factor in making the government more efficient is modernizing the technology https://t.co/KOI7cpNLlw","Feb 12, 12:52:52 AM EST"
-1889553424762524156,"True https://t.co/OFVC2xnhXp","Feb 12, 12:53:37 AM EST"
-1889556188343218321,"The Debt Clock is terrifying https://t.co/vULgdgiBgn","Feb 12, 1:04:36 AM EST"
-1889556875588284593,"Their authenticity is overwhelming
- https://t.co/3qoTwyjbmv","Feb 12, 1:07:20 AM EST"
-1889558067735355862,"Important thread on AI https://t.co/CwANwVFJ9S","Feb 12, 1:12:04 AM EST"
-1889559061709938857,"🤨 https://t.co/lqqG6qgHLs","Feb 12, 1:16:01 AM EST"
-1889559408960475233,"They need to mix it up a little more.
-
-Maybe use a thesaurus or something. https://t.co/DBQMlsg7bQ","Feb 12, 1:17:24 AM EST"
-1889559782928822477,"Least fun party ever 🤣🤣 https://t.co/uBrF8UY1WU","Feb 12, 1:18:53 AM EST"
-1889559889346748442,"Yup https://t.co/wLAWZUUOrD","Feb 12, 1:19:18 AM EST"
-1889559980665151622,"RT @teslaownersSV: Elon Musk
-“If there's not a good feedback loop from the people to the government, and if you have rule of the bureaucrat…","Feb 12, 1:19:40 AM EST"
-1889560407007740257,"YES! 🇺🇸🇺🇸 https://t.co/LTFzLyXCWR","Feb 12, 1:21:22 AM EST"
-1889560818951303301,"🇺🇸🇺🇸 They’re coming home 🇺🇸🇺🇸 https://t.co/2ErmdNUh1P","Feb 12, 1:23:00 AM EST"
-1889564030953533653,"1000% https://t.co/99Plybv5tm","Feb 12, 1:35:46 AM EST"
-1889564422269555139,"🎯 https://t.co/aRjWyE604v","Feb 12, 1:37:19 AM EST"
-1889564822955594132,"RT @WhiteHouse: "The people voted for major government reform, AND THAT IS WHAT THE PEOPLE ARE GOING TO GET." –@ElonMusk https://t.co/l4YLa…","Feb 12, 1:38:54 AM EST"
-1889568048580808756,"RT @mikepat711: FSD V13.2.2 ➡️ V13.2.7
-
-Drive 1, 25 miles. City & highway mix.
-
-FIRST IMPRESSIONS:
-
-At this point, there really isn't much…","Feb 12, 1:51:43 AM EST"
-1889568349555662950,"RT @ClayTravis: How can any rational American — regardless of politics — oppose the argument @elonmusk makes here on cutting the budget def…","Feb 12, 1:52:55 AM EST"
-1889569489160663336,"$50M of condoms is a LOT of condoms 🤷♂️
-
- https://t.co/V2C7znndUB","Feb 12, 1:57:27 AM EST"
-1889570375555596315,"https://t.co/lrtgplEZ3X","Feb 12, 2:00:58 AM EST"
-1889571376228429963,"RT @SenMikeLee: I just introduced the Defund Government Government-Sponsored Propaganda Act with @RepTenney
-
-Americans don’t need biased, t…","Feb 12, 2:04:57 AM EST"
-1889572124609716575,"RT @MarioNawfal: 🚨🇺🇸ELON CUTS $100M IN WOKE EDUCATION SPENDING
-
-DOGE terminated 89 Department of Education contracts worth $881M, including…","Feb 12, 2:07:55 AM EST"
-1889572192037347687,"RT @SecretaryTurner: Working with @DOGE, we have identified $260 million in savings at @HUDgov.
-
-The American taxpayer is no longer writin…","Feb 12, 2:08:11 AM EST"
-1889572438955970597,"Good compilation of @DOGE discussion https://t.co/uPm9zlcIj4","Feb 12, 2:09:10 AM EST"
-1889573404992221522,"RT @teslaownersSV: Elon Musk says there are people older than 150 yrs old collecting Social Security: “I think they're probably dead, is my…","Feb 12, 2:13:00 AM EST"
-1889573620969607650,"RT @cb_doge: BREAKING: Elon Musk has surpassed 217 million followers. He is the most followed account on 𝕏. https://t.co/8SBdpOL1xS","Feb 12, 2:13:52 AM EST"
-1889691815344734713,"Fresh snowfall in DC https://t.co/LHg4AhFJwt","Feb 12, 10:03:32 AM EST"
-1889692103275417906,"RT @MarioNawfal: 🇺🇸 SCOTT JENNINGS: JUDGES ARE CREATING A CONSTITUTIONAL CRISIS
-
-“There’s a difference between complying with the law and d…","Feb 12, 10:04:40 AM EST"
-1889692556058845605,"💯 https://t.co/i7MWSN1m53","Feb 12, 10:06:28 AM EST"
-1889693534409687339,"When I asked why they were paid $1.5mm to “observe mailing and clerical operations” at a mail center, nobody knew … 🤷♂️ https://t.co/tLI8jd21Ur","Feb 12, 10:10:22 AM EST"
-1889694958262645060,"https://t.co/D1lB4KEktI","Feb 12, 10:16:01 AM EST"
-1889696216063021423,"Wow https://t.co/hWk9rRnomS","Feb 12, 10:21:01 AM EST"
-1889697222507311425,"The New York Times lies relentlessly https://t.co/13NTcXhB4i","Feb 12, 10:25:01 AM EST"
-1889697573981610398,"No kidding. Yet another corrupt judge. https://t.co/payavPAyvp","Feb 12, 10:26:25 AM EST"
-1889698199335575948,"There needs to be an immediate wave of judicial impeachments, not just one https://t.co/3guKf3BBOk","Feb 12, 10:28:54 AM EST"
-1889699817229631996,"Well, @SenSchumer does admit there is waste in government, so that’s progress! https://t.co/VIeIp7SJKy","Feb 12, 10:35:20 AM EST"
-1889701955326316906,"Interesting https://t.co/6ab4BNbdoq","Feb 12, 10:43:49 AM EST"
-1889702807898362168,"Yup https://t.co/0cUinuHtD3","Feb 12, 10:47:13 AM EST"
-1889703032239132716,"https://t.co/UW7kwTNrh1","Feb 12, 10:48:06 AM EST"
-1889703037322612892,"RT @MarioNawfal: 🚨🇺🇸DOGE SLASHES $982M IN WASTE—EDUCATION BUREAUCRATS PANIC
-
-Elon’s DOGE just saved taxpayers $982 million by cutting waste…","Feb 12, 10:48:07 AM EST"
-1889703416420585929,"There are massive federal entitlements fraud rings that scam US taxpayer money and send it overseas https://t.co/wP43PBcLzo","Feb 12, 10:49:38 AM EST"
-1889703534720888993,"BINGO https://t.co/pjlwUEEpZc","Feb 12, 10:50:06 AM EST"
-1889704945797955703,"Doesn’t sound like they’re winning https://t.co/lbQQCkBBQj","Feb 12, 10:55:42 AM EST"
-1889707147656634459,"Interesting https://t.co/eBrY1aaklR","Feb 12, 11:04:27 AM EST"
-1889709325662163067,"💯 https://t.co/6p8spOtyRP","Feb 12, 11:13:06 AM EST"
-1889711960729522180,"Impeach this activist posing as a judge!
-
-Such a person does great discredit to the American justice system. https://t.co/wGmzi2ApRV","Feb 12, 11:23:35 AM EST"
-1889715181590102214,"Just follow @DOGE for details.
-
-There is a firehouse of information. https://t.co/goBXarfOj2","Feb 12, 11:36:23 AM EST"
-1889715637208879480,"Yay!! Congratulations, @TulsiGabbard https://t.co/v1IaIqrhdT","Feb 12, 11:38:11 AM EST"
-1889716116798235088,"Seriously. Very weird that the Dems are fighting so hard to keep fraud & waste!
-
-I wonder why … 🤔 https://t.co/Uap1KrsF6E","Feb 12, 11:40:06 AM EST"
-1889716306586239333,"RT @EvaVlaar: These European countries contribute insane amounts of money to the EU’s yearly budget. I’m convinced that if we’d have someth…","Feb 12, 11:40:51 AM EST"
-1889720115471495457,"RT @RuiHuang_art: https://t.co/Ar5DVtPlF6","Feb 12, 11:55:59 AM EST"
-1889722028120285217,"https://t.co/7NzFTkFjhk","Feb 12, 12:03:35 PM EST"
-1889726142505988162,"Impeach this pseudo-jurist!! https://t.co/hTh2OoONFd","Feb 12, 12:19:56 PM EST"
-1889728050276823115,"Anderson Coper https://t.co/lTKtOEmFeK https://t.co/EJKWqy8qQc","Feb 12, 12:27:31 PM EST"
-1889729151495471534,"👌 https://t.co/oYEPNSISEg","Feb 12, 12:31:53 PM EST"
-1889729265333162152,"RT @SeibtNaomi: 🇩🇪 SCHOLZ AND MERZ ARGUE ABOUT WHO MADE THE AfD SO STRONG 🤣
-
-Merkel-Party Merz vs Oaf Schitz:
-
-Both hate nothing more than…","Feb 12, 12:32:20 PM EST"
-1889730244996641145,"This is how it should be.
-
-America protects its citizens.
-
-No American left behind.
-
- https://t.co/o5gXz0lPwC","Feb 12, 12:36:14 PM EST"
-1889732109528388059,"As it becomes clear that @DOGE is working, you will see the long-term Treasury bill yields fall.
-
-And all Americans will benefit from lower interest payments on mortgages, small business debt, credit card and other loans.","Feb 12, 12:43:39 PM EST"
-1889732209315095019,"What a scammer! https://t.co/ovUnyPtYgv","Feb 12, 12:44:02 PM EST"
-1889733204191379930,"Federal judges who repeatedly abuse their authority to obstruct the will of the people via their elected representatives should be impeached.","Feb 12, 12:48:00 PM EST"
-1889734154301964727,"https://t.co/HWL7DWLVB0","Feb 12, 12:51:46 PM EST"
-1889734237495935385,"🇺🇸🇺🇸 https://t.co/Ew6dWp2auD","Feb 12, 12:52:06 PM EST"
-1889734437748785404,"🚀🚀 https://t.co/dgb19lPn8x","Feb 12, 12:52:54 PM EST"
-1889734600038998479,"This evil judge must be fired! https://t.co/93pe4dz4Iy","Feb 12, 12:53:32 PM EST"
-1889742300550439295,"RT @RepMTG: WATCH: My opening statement in the first @DOGECommittee hearing!","Feb 12, 1:24:08 PM EST"
-1889742318674088058,"RT @DOGECommittee: 👉 OPENING STATEMENT 👈
-
-Today, we gaveled in to our first @DOGECommittee hearing to launch the WAR ON WASTE!
-
-⬇️ WATCH BE…","Feb 12, 1:24:13 PM EST"
-1889743871174701142,"RT @stillgray: The Department of Defense paid $32,000 to replace 25 coffee cups and hundreds of thousands of dollars for soap dispensers.…","Feb 12, 1:30:23 PM EST"
-1889744579814977951,"Also the government https://t.co/ENxiQGyQcn","Feb 12, 1:33:12 PM EST"
-1889747262206587155,"😂 https://t.co/sF6mY8lpaD","Feb 12, 1:43:51 PM EST"
-1889756623406587942,"True, we take these marvels for granted https://t.co/nOgwMZdolO","Feb 12, 2:21:03 PM EST"
-1889774311705079850,"🔥🔥🔥 https://t.co/vqPFtjvOkN","Feb 12, 3:31:20 PM EST"
-1889775076918112435,"RT @libsoftiktok: JUST IN: A federal judge confirms President Trump has the constitutional authority to freeze or limit federal funding. ht…","Feb 12, 3:34:23 PM EST"
-1889776315584102905,"https://t.co/sIwAcoeTle","Feb 12, 3:39:18 PM EST"
-1889776537496424701,"It’s not even a good soap dispenser https://t.co/bEfQ3ASKQA","Feb 12, 3:40:11 PM EST"
-1889776726831477239,"A kindergartner … https://t.co/OGKawa7RmS","Feb 12, 3:40:56 PM EST"
-1889778229403066541,"I tried talking to people at an LA party about Trump just before the election and simply mentioning his name made them lose their minds and foam at the mouth!
-
-It was like they got shot with a dart containing meth AND rabies!! https://t.co/0RyYoEYLYE","Feb 12, 3:46:54 PM EST"
-1889778599344951322,"Karoline for the KO! https://t.co/pRTcSK8B8M","Feb 12, 3:48:23 PM EST"
-1889805947138367703,"https://t.co/Od4pKInkUV","Feb 12, 5:37:03 PM EST"
-1889813918660567227,"https://t.co/zMK7u1JMhV","Feb 12, 6:08:43 PM EST"
-1889814592710385822,"🤣🤣 https://t.co/sxd9CGCFwl","Feb 12, 6:11:24 PM EST"
-1889824147100057987,"https://t.co/iLdq9cM3pn https://t.co/Kwpz1J6emN","Feb 12, 6:49:22 PM EST"
-1889824390256492916,"RT @WhiteHouse: 🇺🇸@POTUS x @ElonMusk x Lil X https://t.co/Ise3AMuDGm","Feb 12, 6:50:20 PM EST"
-1889827593823854599,"RT @BillAckman: Imagine how great America could be if our government is run effectively and efficiently. @DOGE","Feb 12, 7:03:04 PM EST"
-1889827812300955766,"RT @america: U.S. Attorney General Pam Bondi warns states who don’t comply with federal immigration law: “If you don‘t comply with federal…","Feb 12, 7:03:56 PM EST"
-1889827903149691371,"RT @jgebbia: 🍿🍿","Feb 12, 7:04:18 PM EST"
-1889828141549625761,"RT @DefiyantlyFree: Today at the DOGE subcommittee hearing we learned that since 2003, the US has sent out 2.7 TRILLION dollars in improper…","Feb 12, 7:05:14 PM EST"
-1889828537240265025,"RT @RealKidPoker: The latest FSD Tesla update is unreal.
-
-Just did a 40 min drive and never touched any controls or the wheel at any point…","Feb 12, 7:06:49 PM EST"
-1889839280576667659,"Progress https://t.co/KclTDXPgdS","Feb 12, 7:49:30 PM EST"
-1889839664951074974,"https://t.co/HewewE5YdF","Feb 12, 7:51:02 PM EST"
-1889841049318858971,"A criminal violation of the Constitution https://t.co/PCz4NhahUI","Feb 12, 7:56:32 PM EST"
-1889841452353720437,"https://t.co/XkUdueSYO7","Feb 12, 7:58:08 PM EST"
-1889842156627697897,"https://t.co/Wr6GGnSKeJ","Feb 12, 8:00:56 PM EST"
-1889842828790079633,"The White House now has tech support.
-
-The matrix is being reprogrammed to make success one of the possible outcome. They did not expect this.
-
-K. Maru. https://t.co/7WctjBCKSU","Feb 12, 8:03:36 PM EST"
-1889854468415726042,"RT @CollinRugg: NEW: The Wall Street Journal says Trump & Musk have achieved more in 3.5 weeks than Ronald Reagan did in 8 years when it co…","Feb 12, 8:49:51 PM EST"
-1889861826374222019,"Posting the savings and the receipts https://t.co/2SywWa3TRN","Feb 12, 9:19:05 PM EST"
-1889862740174594554,"RT @elonmusk: @CoryBooker Well, if there’s anyone that knows about corruption, it would be you.
-
-How much has your wealth increased since…","Feb 12, 9:22:43 PM EST"
-1889879302965191056,"Interesting https://t.co/NbArEPMSl8","Feb 12, 10:28:32 PM EST"
-1889879696873234843,"❤️ https://t.co/MctL6YJy0Q","Feb 12, 10:30:06 PM EST"
-1889879813076459960,"👍 https://t.co/bxF4GU5DF4","Feb 12, 10:30:34 PM EST"
-1889879899407855666,"🔥🔥 https://t.co/NIZkIapMbx","Feb 12, 10:30:54 PM EST"
-1889880953419600208,"Why 90% of America loves @DOGE 😂 https://t.co/d1FEAHrx6i","Feb 12, 10:35:06 PM EST"
-1889881398707925321,"Interesting https://t.co/yhYMYOI00b","Feb 12, 10:36:52 PM EST"
-1889882245751791863,"Hey @maddow, why the lie? https://t.co/gUZax7mvef","Feb 12, 10:40:14 PM EST"
-1889882573389836730,"Not anymore https://t.co/j60JzcYTal","Feb 12, 10:41:32 PM EST"
-1889883000663605653,"https://t.co/Ry9XbSrHUN","Feb 12, 10:43:14 PM EST"
-1889883829571313764,"A second American revolution is needed to free the people from their oppression by the bureaucracy! https://t.co/kjCYvnrYSF","Feb 12, 10:46:31 PM EST"
-1889884539226562895,"🤣🤣 https://t.co/1Mcde0BeyU","Feb 12, 10:49:21 PM EST"
-1889885650368995452,"https://t.co/fQdO4BQdna","Feb 12, 10:53:46 PM EST"
-1889890189772013650,"DOGE https://t.co/pmGCsTsCdV","Feb 12, 11:11:48 PM EST"
-1889891866201759944,"Yes https://t.co/LeGNItDTuJ","Feb 12, 11:18:28 PM EST"
-1889893242331910463,"https://t.co/4w8GOXgnM9","Feb 12, 11:23:56 PM EST"
-1889896827513868734,"Reuters was paid millions of dollars by the US government for “large scale social deception”.
-
-That is literally what it says on the purchase order! They’re a total scam.
-
-Just wow. https://t.co/GGxoVQSwN8","Feb 12, 11:38:10 PM EST"
-1889897305098289658,"🤨 https://t.co/H9kPihnRRw","Feb 12, 11:40:04 PM EST"
-1889897951281197139,"🔥🔥🤣🤣 https://t.co/zCvJwtKRa1","Feb 12, 11:42:38 PM EST"
-1889899715292197072,"Details of cost savings will be posted here https://t.co/gEIm0RYtIN","Feb 12, 11:49:39 PM EST"
-1889900632540402127,"Interesting https://t.co/Y39ddZKX75","Feb 12, 11:53:18 PM EST"
-1889901577420546112,"Interesting https://t.co/GhT5cU1zLV","Feb 12, 11:57:03 PM EST"
-1889911867151434141,"And it will improve rapidly over time https://t.co/b47BHvOntD","Feb 13, 12:37:56 AM EST"
-1889913176441102722,"RT @BasedBeffJezos: "Grok 3, in the tests we've performed so far, has been outperforming anything that has been released so far. It is scar…","Feb 13, 12:43:08 AM EST"
-1889913668537819345,"https://t.co/CgUp7d9k9n","Feb 13, 12:45:06 AM EST"
-1889914165130854480,"RT @alx: ELON MUSK: “We need to delete entire agencies, as opposed to leave part of them behind” https://t.co/LyEgfK9taS","Feb 13, 12:47:04 AM EST"
-1889914415702802584,"It just makes sense https://t.co/q7zrLQfLMD","Feb 13, 12:48:04 AM EST"
-1889914485181440381,"RT @BasedBeffJezos: "Once you have humanoid robots and deep intelligence, you can have nearly infinite products and services. The economy b…","Feb 13, 12:48:20 AM EST"
-1889914565716222446,"RT @TheRabbitHole84: 🍿 https://t.co/MLyLBi9pPT","Feb 13, 12:48:40 AM EST"
-1889915105435066395,"RT @teslaownersSV: Elon Musk: This might be the last time that any AI is better than Grok. https://t.co/qnuLXVnisD","Feb 13, 12:50:48 AM EST"
-1889916501693702415,"https://t.co/HC0ZkjSK2p","Feb 13, 12:56:21 AM EST"
-1889918159790153849,"Will we actually choose the algorithm?
- https://t.co/BQHGamWwYK","Feb 13, 1:02:56 AM EST"
-1889918297858252892,"Way too many refs on the field! https://t.co/2Nlv8MzBam","Feb 13, 1:03:29 AM EST"
-1889918469711470927,"There will be a happy ending https://t.co/hCf0eyJeT6","Feb 13, 1:04:10 AM EST"
-1889918622694514695,"https://t.co/r0MQfNVrza","Feb 13, 1:04:47 AM EST"
-1889919564080910426,"RT @teslaownersSV: Elon Musk
-
-“You know, really, at a high level, this is kind of like we're really just removing people from low to someti…","Feb 13, 1:08:31 AM EST"
-1889919741801931172,"So true
- https://t.co/QLUYsiChIH","Feb 13, 1:09:14 AM EST"
-1889919807795204429,"RT @teslaownersSV: “If you fund a nonprofit to preserve the Amazon rainforest, but instead they turn it into a lumber company, and chop dow…","Feb 13, 1:09:29 AM EST"
-1889920000645108152,"Pharma lobbyist says what? https://t.co/xXJFCivI3c","Feb 13, 1:10:15 AM EST"
-1889922510977728542,"🤔 https://t.co/Ehvi2nUGDJ","Feb 13, 1:20:14 AM EST"
-1889923551278543026,"RT @cb_doge: Elon Musk is wearing the Tech Support t-shirt. His official title is White House Tech Support. https://t.co/rsry6gO6F9","Feb 13, 1:24:22 AM EST"
-1889923776948871516,"RT @MarioNawfal: 🇺🇸 ELON: TRUMP ADMIN IS TERMINATING DEI PUSH—FOCUSING ON EDUCATION INSTEAD
-
-“There’s a lot of DEI being pushed worldwide,…","Feb 13, 1:25:16 AM EST"
-1889924144982282600,"Starbase, Texas, will soon be an official new city https://t.co/ZODDi4EZKA","Feb 13, 1:26:43 AM EST"
-1889924265333629257,"RT @AutismCapital: 🚨ELON MUSK: "The maximum retirement rate is 10,000 people a month because the retirement is entirely paperwork manually…","Feb 13, 1:27:12 AM EST"
-1889925179314413970,"RT @HSajwanization: “Dubai Loop” 🇦🇪 with Elon Musk 🔥🔥✨ … we are very proud of this partnership !!","Feb 13, 1:30:50 AM EST"
-1889925780416897190,"RT @AutismCapital: 🚨TRUMP: "We have a massive bureaucracy in Washington DC. Nobody is showing up to work because they're all "working from…","Feb 13, 1:33:13 AM EST"
-1889927403646099618,"But the legacy media said there was no fraud … https://t.co/P6937xeSfr","Feb 13, 1:39:40 AM EST"
-1889927801027060090,"RT @teslaownersSV: Elon Musk
-“A significant part of the problem is improving the technology that the government operates on.
-
-The U.S. go…","Feb 13, 1:41:15 AM EST"
-1889928292167459173,"Well, maybe this explains why the Democrats don’t want @DOGE to investigate.
-
-Biggest fraud operation in human history! https://t.co/wePSNiwSXH","Feb 13, 1:43:12 AM EST"
-1889928555171344666,"💯 https://t.co/DzzkYfoGaE","Feb 13, 1:44:15 AM EST"
-1889929033015849384,"😂 https://t.co/wRehiHiyeO","Feb 13, 1:46:09 AM EST"
-1889955390177309119,"How much time is spent doing pointless “online training”? Sounds pretty bad.
-
-Even I have to do some of this stuff. https://t.co/TIGRbGGNyW","Feb 13, 3:30:53 AM EST"
-1889956585495208106,"How much are they paying you, Schiffty? https://t.co/ly5xGAs40d","Feb 13, 3:35:38 AM EST"
-1889958349858603265,"Very important message
- https://t.co/5OgTpvzw5n","Feb 13, 3:42:38 AM EST"
-1889960323706449924,"RT @MarioNawfal: ELON: IT'S DANGEROUS TO TEACH AI TO PROMOTE DIVERSITY AT ALL COSTS
-
-"If you ask the AI, which is worse, misgendering Caitl…","Feb 13, 3:50:29 AM EST"
-1889960732567236829,"“The Associated Propaganda” https://t.co/yhYMYOI00b","Feb 13, 3:52:07 AM EST"
-1889960917796036689,"😂 https://t.co/Tcj5gEmK6A","Feb 13, 3:52:51 AM EST"
-1889961065477464234,"Yes https://t.co/v7U848Vzoz","Feb 13, 3:53:26 AM EST"
-1889962148790780210,"Yes https://t.co/NSjOZiMLSH","Feb 13, 3:57:44 AM EST"
-1889962554098909622,"RT @MarioNawfal: ELON: ONE OF THE SAFEST PLACES YOU CAN BE IS IN AN UNDERGROUND TUNNEL
-
-"Earthquakes are mostly a surface phenomenon, they'…","Feb 13, 3:59:21 AM EST"
-1889963216266207278,"When not wasting money on bureaucracy, the Department of Education has been funding anti-Americanism, gender nonsense and anti-meritocratic racism https://t.co/C7ACj163l2","Feb 13, 4:01:59 AM EST"
-1889963586270998751,"Yes https://t.co/x1eeuRGo5b","Feb 13, 4:03:27 AM EST"
-1889963862902096253,"So many situations like this https://t.co/8XOlAWpYXx","Feb 13, 4:04:33 AM EST"
-1889964115944505486,"RT @MarioNawfal: 🇺🇸 ELON: WE NEED TO DELETE ENTIRE AGENCIES—NOT JUST TRIM THEM
-
-“We need to delete entire agencies instead of leaving parts…","Feb 13, 4:05:33 AM EST"
-1889964443561541882,"RT @teslaownersSV: “When the public is polled on improving government efficiency, it actually ranks as the highest-polling single issue, me…","Feb 13, 4:06:51 AM EST"
-1889964903861223530,"RT @MarioNawfal: 🚨🇺🇸 TRUMP: DOGE CAUGHT THEM AND THE JUDGE DOESN'T CARE
-
-"DOGE has found massive amounts of FRAUD, WASTE, INCOMPETENCE, AN…","Feb 13, 4:08:41 AM EST"
-1889965298763358323,"RT @teslaownersSV: BREAKING: 𝕏 is the #1 app for over 140 countries.
-
-No other media or platform has the reach of 𝕏. https://t.co/pPaCBSa7…","Feb 13, 4:10:15 AM EST"
-1889965566649323787,"RT @MarioNawfal: 🚨🇬🇧13-YEAR-OLD VICTIM OF UK GROOMING GANG: POLICE IGNORED ABUSE
-
-A woman known as Girl B told Manchester Crown Court she w…","Feb 13, 4:11:19 AM EST"
-1889966041297776839,"How much democracy have they managed to achieve in the past 10 years, given that democracy is what they’re “endowed” for?
-
-Zero. https://t.co/IuFKN2geoG","Feb 13, 4:13:12 AM EST"
-1889967208530628806,"Any given law will do the opposite of its name.
-
-The one this guy wants to pass is called “Taxpayer Protection”, which means its real goal is giving taxpayers the shaft!
-
-What he really cares about is hiding the biggest scam in human history. https://t.c","Feb 13, 4:17:51 AM EST"
-1889967832391406017,"For a second, I thought this was parody https://t.co/he7hzL6KnD","Feb 13, 4:20:19 AM EST"
-1889967913689559496,"RT @MarioNawfal: DOUGLAS MURRAY: WESTERN COUNTRIES ARE FAILING YOUNG PEOPLE
-
-“A poll out this week found that just 41% of young British peo…","Feb 13, 4:20:39 AM EST"
-1889968038893764811,"💯 https://t.co/kwAlQyx5vV","Feb 13, 4:21:09 AM EST"
-1889968600414630362,"RT @MarioNawfal: STARLINK DISHES LAUGH IN THE FACE OF WINTER!
-
-Starlink doesn’t flinch in freezing weather or snowstorms!
-
-Its self-heating…","Feb 13, 4:23:22 AM EST"
-1889968723018260618,"Yes https://t.co/zddv2RIqXF","Feb 13, 4:23:52 AM EST"
-1889968872679473605,"Where did the money come from? https://t.co/Oh1mGSFpsW","Feb 13, 4:24:27 AM EST"
-1889969266365190511,"RT @MarioNawfal: JOE ROGAN: ELON IS THE WRONG PERSON TO MESS WITH
-
-"When you've been f**ked with by these nitwits that hide behind the 3 le…","Feb 13, 4:26:01 AM EST"
-1889969436419068173,"RT @RapidResponse47: New statement from President Trump: https://t.co/WsjN4p82Op","Feb 13, 4:26:42 AM EST"
-1889970111701995911,"RT @GregAbbott_TX: There it is.
-
-Officially recognized by the state of Texas. https://t.co/3WSjUBqmYm","Feb 13, 4:29:23 AM EST"
-1889970739136323824,"Yes https://t.co/UjOnlNuZxD","Feb 13, 4:31:52 AM EST"
-1889971167001464902,"RT @RapidResponse47: PRESIDENT TRUMP: The Department of Education is a big con job... we spend more per pupil than any other country in the…","Feb 13, 4:33:34 AM EST"
-1889971223117123991,"RT @RapidResponse47: CNN: Why are these Americans detained abroad being released now and so rapidly?
-
-Special Envoy Adam Boehler: "It's hap…","Feb 13, 4:33:48 AM EST"
-1889972149722796428,"https://t.co/MbhBV4dXO4","Feb 13, 4:37:29 AM EST"
-1889975948973670577,"https://t.co/vUqmlbvAMU","Feb 13, 4:52:34 AM EST"
-1889976477611163919,"RT @MarioNawfal: 🚨🇺🇸SANDERS VOTED NO ON TULSI'S DNI NOMINATION
-
-Bernie voted against Tulsi for Director of National Intelligence, betraying…","Feb 13, 4:54:40 AM EST"
-1889976806213861822,"Funny that 🤔 https://t.co/KXSqJ8xY7t","Feb 13, 4:55:59 AM EST"
-1889979827987652957,"What happened to them?
- https://t.co/M9ER0I8Y34","Feb 13, 5:07:59 AM EST"
-1890051804404363760,"RT @AGPamBondi: Proud to announce new litigation against the State of New York for prioritizing illegal aliens over American citizens.
-
-T…","Feb 13, 9:54:00 AM EST"
-1890058741275660454,"Excited to announce that a Dubai Loop will be built by The @BoringCompany! https://t.co/7ILR3IclDM","Feb 13, 10:21:34 AM EST"
-1890059886270255195,"Reuters received far more money than this from US government organizations, but via various subsidiaries and intermediaries to hide how they were getting it.
-
-This is just what @DOGE has found so far. https://t.co/PXbL1OkEKO","Feb 13, 10:26:07 AM EST"
-1890060283164635216,"RT @wildbarestepf: > Dems relentlessly shit on Elon
-> Elon buys twitter, exposes censorship, restores actual free speech
-> media loses its…","Feb 13, 10:27:41 AM EST"
-1890062016456589353,"Only if you can say “toy boat” ten times fast. It’s surprisingly hard 😂 https://t.co/vaTkmNMKCV","Feb 13, 10:34:35 AM EST"
-1890062261437521931,"What if I get EDS too!? 😱 https://t.co/tIFxl1f00n","Feb 13, 10:35:33 AM EST"
-1890062974779560333,"True https://t.co/CXAH9XOMuq","Feb 13, 10:38:23 AM EST"
-1890063328753664085,"RT @AutismCapital: 🚨 NEW: Trump calls out Politico and Reuters for being paid taxpayer money to psyop the American people with “large scale…","Feb 13, 10:39:47 AM EST"
-1890063595419103626,"Wow, that’s insane https://t.co/D2htCEmwyb","Feb 13, 10:40:51 AM EST"
-1890063849275187611,"Absolutely. We still haven’t discovered just how much the media was paid and controlled by the government, but we will. https://t.co/Ctx018UTYG","Feb 13, 10:41:52 AM EST"
-1890063952492855358,"Absolutely https://t.co/2kUw4fqKNH","Feb 13, 10:42:16 AM EST"
-1890064063897752061,"Support @Kash_Patel! https://t.co/g9Yr5P5g6Y","Feb 13, 10:42:43 AM EST"
-1890064736123011335,"This is you with federal taxpayer money https://t.co/r1gGw0Du9i https://t.co/pJcRikFJiX","Feb 13, 10:45:23 AM EST"
-1890065059902373988,"https://t.co/JwLrmNf6Pm","Feb 13, 10:46:40 AM EST"
-1890065481475961300,"https://t.co/UttRIsbq7S","Feb 13, 10:48:21 AM EST"
-1890065644168806451,"https://t.co/AVvC4aWIYC","Feb 13, 10:48:59 AM EST"
-1890065955327520994,"The degree to which children have been indoctrinated in misanthropic propaganda at schools is shocking https://t.co/B5OCQE6M1B","Feb 13, 10:50:14 AM EST"
-1890066251051131044,"🇩🇪 AfD is the only hope for Germany 🇩🇪 https://t.co/CE9uXe8ULm","Feb 13, 10:51:24 AM EST"
-1890069076216848442,"RT @tim_cook: Get ready to meet the newest member of the family.
-
-Wednesday, February 19. #AppleLaunch https://t.co/0ML0NfMedu","Feb 13, 11:02:38 AM EST"
-1890069531370156421,"RT @MarioNawfal: 🚨MUNICH ATTACK ROCKS GERMANY ON EVE OF SECURITY CONFERENCE
-
-An Afghan migrant rammed a car into a crowd in Munich, injurin…","Feb 13, 11:04:26 AM EST"
-1890069888200589601,"https://t.co/aB0gwH9mBV","Feb 13, 11:05:51 AM EST"
-1890070408566862011,"But leading Democrats said there was no fraud in government payments 🧐
-
-Maybe because they’re getting their cut.
-
-That’s what they’re afraid @DOGE will discover. https://t.co/GcniruGqQ1","Feb 13, 11:07:55 AM EST"
-1890135942859485686,"Why do they keep wanting to fund the National Endowment for Bureaucracy!?","Feb 13, 3:28:20 PM EST"
-1890136076422939005,"RT @MargoMartin47: .@RobertKennedyJr has officially been sworn in as HHS Secretary!
-
-Time to Make America Healthy Again 🇺🇸 https://t.co/FBE…","Feb 13, 3:28:52 PM EST"
-1890136220656636409,"😂 https://t.co/ZL5iyQtkTG","Feb 13, 3:29:26 PM EST"
-1890136285622452429,"🔥🔥 https://t.co/QqQhCbyebX","Feb 13, 3:29:42 PM EST"
-1890136746521751911,"It’s almost like there’s a massive uniparty grift machine here in DC 🤔","Feb 13, 3:31:32 PM EST"
-1890136909093171333,"RT @AutismCapital: 🚨REPORTER: "DOGE workers arrived at the IRS today. Do you expect to close the IRS?"
-
-LUTNICK: "Some day." 😂
-
-TRUMP: "I t…","Feb 13, 3:32:10 PM EST"
-1890137244864004600,"Congratulations @RobertKennedyJr!!","Feb 13, 3:33:30 PM EST"
-1890137331866439939,"RT @RepNancyMace: The Left is running like roaches with the light on over @DOGE.
-
-@RepRobertGarcia went far beyond the pale last night, ca…","Feb 13, 3:33:51 PM EST"
-1890138055501299806,"RT @AGPamBondi: It stops today. https://t.co/OTF3l1OME9","Feb 13, 3:36:44 PM EST"
-1890138437287911602,"RT @libsoftiktok: Key takeaways from Trump’s press conference:
-
-- Will be looking at the IRS
-- Car tariffs are coming soon
-- Would love to…","Feb 13, 3:38:15 PM EST"
-1890173376964313388,"If ANY judge ANYWHERE can stop EVERY Presidential action EVERYWHERE, we do NOT live in a democracy.","Feb 13, 5:57:05 PM EST"
-1890177042169360852,"VOX POPULI
-VOX DEI
-
-The people have spoken
-
-Impeach the CORRUPT judges!! https://t.co/AGfVut7y5x","Feb 13, 6:11:39 PM EST"
-1890177231361831107,"Interesting https://t.co/tF9zm549jL","Feb 13, 6:12:24 PM EST"
-1890177764512395279,"RT @POTUS: "@RobertKennedyJr is going to lead a great national mission to MAKE AMERICA HEALTHY AGAIN... I think he's going to do things tha…","Feb 13, 6:14:31 PM EST"
-1890179684966756604,"Cool to see the executive orders https://t.co/UlMU45aYk4","Feb 13, 6:22:09 PM EST"
-1890182649974817070,"Reuters was literally paid by the federal government for “Large Scale Social Deception”.
-
-That’s literally what it says on the official government documents!! https://t.co/cEaUPsEwA3","Feb 13, 6:33:56 PM EST"
-1890226872233206212,"RT @BasedMikeLee: Extraordinary writ of mandamus","Feb 13, 9:29:39 PM EST"
-1890229923513790968,"RT @cb_doge: Elon Musk was wearing his “Tech Support” T-shirt during his meeting with Indian Prime Minister Narendra Modi today. https://t.…","Feb 13, 9:41:47 PM EST"
-1890267219021689066,"True https://t.co/Qe9THuDaqx","Feb 14, 12:09:59 AM EST"
-1890268087251005590,"😳 https://t.co/H51O8ECyUI","Feb 14, 12:13:26 AM EST"
-1890268295422701852,"RT @TheRabbitHole84: Children should not be subjected to mutilation for the sake of appeasing crazy activists https://t.co/2LwH3QNHRB","Feb 14, 12:14:15 AM EST"
-1890268425441931292,"More of your tax dollars saved https://t.co/9AMRYljYRu","Feb 14, 12:14:46 AM EST"
-1890268785292243345,"😂 https://t.co/nRXn2Wpegr","Feb 14, 12:16:12 AM EST"
-1890269299287441612,"I am so entertained","Feb 14, 12:18:15 AM EST"
-1890270425693003800,"RT @GregAbbott_TX: This is excellent.
-
-Congrats, Elon
-
-Starbase, Texas is the future of America.","Feb 14, 12:22:43 AM EST"
-1890270652411834549,"Worth mentioning again https://t.co/ssflrzYUBe","Feb 14, 12:23:37 AM EST"
-1890270913658273863,"RT @SenRandPaul: The Democrats were invited to bring a witness—they chose not to. Maybe because USAID’s spending is so embarrassing. Thanks…","Feb 14, 12:24:40 AM EST"
-1890270993060700665,"RT @SecretaryTurner: I’m happy to announce the @DOGE Task Force at HUD.
-
-We will identify and eliminate any waste, fraud, and abuse.
-
-Under…","Feb 14, 12:24:58 AM EST"
-1890271772102259083,"It was an honor to meet https://t.co/WqELdGiurP","Feb 14, 12:28:04 AM EST"
-1890273009757503829,"Lawfare has gotten out of control https://t.co/vdVf7Q5jDH","Feb 14, 12:32:59 AM EST"
-1890273443666698307,"RT @HHSGov: Welcome, Secretary Kennedy. We stand ready to support you in your mission to return our health agencies to their rich tradition…","Feb 14, 12:34:43 AM EST"
-1890273730359882100,"True https://t.co/C2ozJ6RB0w","Feb 14, 12:35:51 AM EST"
-1890274118005903471,"Fair https://t.co/hOLr8q1fVx","Feb 14, 12:37:23 AM EST"
-1890278078418690503,"💯 https://t.co/QIFt3AyzEU","Feb 14, 12:53:08 AM EST"
-1890278500462129606,"RT @HSajwanization: EXACTLY https://t.co/H9I9lnn2g0","Feb 14, 12:54:48 AM EST"
-1890279045314810209,"What’s this @DOGE thing people keep talking about? Personally, I’ve never heard of it 🤷♂️","Feb 14, 12:56:58 AM EST"
-1890279996968542277,"Wearing my TECH SUPPORT shirt today!
-
-What more proof could they possibly need? https://t.co/u9YZ6ERKib","Feb 14, 1:00:45 AM EST"
-1890282404897534089,"I’ve had a top secret clearance for many years and have clearances that themselves are classified.
-
-That said, FAR too much information is made “classified”. If something is easily found online or patently obvious, it should NOT be classified. This imped","Feb 14, 1:10:19 AM EST"
-1890285969775149473,"RT @charliekirk11: If you’re not paying attention to what White House Deputy Chief of Staff Stephen Miller is saying, you’re missing the en…","Feb 14, 1:24:29 AM EST"
-1890287672662585387,"I hope Dustin Burrows passes school choice in Texas to give kids a chance.
-
-If kids only have one school option and it’s bad, then it’s like they never had a chance at all. https://t.co/KAKHDNii5g","Feb 14, 1:31:15 AM EST"
-1890287982659399953,"💯 https://t.co/uokVelS2g7","Feb 14, 1:32:29 AM EST"
-1890288333370323327,"https://t.co/s3bTYzTemS","Feb 14, 1:33:53 AM EST"
-1890288540820643971,"Wow https://t.co/yVAV3CajDY","Feb 14, 1:34:42 AM EST"
-1890290521354240085,"Have you tried turning the government off and on again? https://t.co/qsvSSh84uP","Feb 14, 1:42:34 AM EST"
-1890290632545169695,"Crazy ratios https://t.co/MoKqIBLgHB","Feb 14, 1:43:01 AM EST"
-1890291174508056688,"https://t.co/6m4A7jeT7f","Feb 14, 1:45:10 AM EST"
-1890291781826408782,"RT @OneBadDude_: There has never been a president as transparent as Donald Trump! https://t.co/3vtAWZibrQ","Feb 14, 1:47:35 AM EST"
-1890407995453980983,"So many situations like this https://t.co/7MwI9tPUff","Feb 14, 9:29:22 AM EST"
-1890417427827118150,"Yes https://t.co/uaUa1CXk55","Feb 14, 10:06:51 AM EST"
-1890417745423978701,"♥️♥️ Happy Valentine’s Day ♥️♥️ https://t.co/Vt4YqvcAtE","Feb 14, 10:08:07 AM EST"
-1890418104846459059,"WSJ is so broken https://t.co/GF5PkPQwjV","Feb 14, 10:09:33 AM EST"
-1890418181212111206,"😂😂 https://t.co/wxiYb1WEUc","Feb 14, 10:09:51 AM EST"
-1890418797963628953,"Make Europe Great Again!
-
-MEGA, MEGA, MEGA
-
- https://t.co/Mk5NJXxxeC","Feb 14, 10:12:18 AM EST"
-1890418847858999555,"RT @greg_price11: JD Vance went to the Munich Security Conference and roasted the entire continent of Europe for being petty tyrants and cr…","Feb 14, 10:12:30 AM EST"
-1890426865438912625,"RT @ggreenwald: In this single passage, JD Vance makes manifest the core lie driving US/EU foreign policy for decades: we claim everything…","Feb 14, 10:44:21 AM EST"
-1890428020474662976,"The DEMOCRATS are IMPORTING VOTERS!
-
-It is very important to understand that they really are doing this at scale.
-
-It is fact, not rhetoric. https://t.co/ib9bIyqKcV https://t.co/jZPLNqpJwP","Feb 14, 10:48:57 AM EST"
-1890428546813743445,"Yes, the bureaucracy is overwhelmingly geared to serve the Democratic Party https://t.co/FFFe0SKS4k","Feb 14, 10:51:02 AM EST"
-1890493629245903110,"Looks like over-diagnosis & over-medication of the youth is a major problem https://t.co/jbGk6RQfhC","Feb 14, 3:09:39 PM EST"
-1890495325523132630,"🇺🇸🇺🇸 https://t.co/LGKHWOiyZL","Feb 14, 3:16:23 PM EST"
-1890500896120844318,"It is astounding how much taxpayer money can be saved with even a small amount of effort https://t.co/9YvUPR9ZZR","Feb 14, 3:38:32 PM EST"
-1890503017314582595,"https://t.co/OcL5M3GQ08","Feb 14, 3:46:57 PM EST"
-1890503900760789426,"Interesting https://t.co/4CsfaII0Ph","Feb 14, 3:50:28 PM EST"
-1890508582191329761,"This would actually be awesome 😎 https://t.co/9ccvLDMR2H","Feb 14, 4:09:04 PM EST"
-1890526916882374800,"RT @SeibtNaomi: 🚨🇩🇪🇺🇸 VANCE MEETS ALICE WEIDEL - REJECTS OLAF SCHOLZ 😂🔥
-
-Winners unite!
-
-Just after @JDVance rejected Olaf Scholz because “…","Feb 14, 5:21:55 PM EST"
-1890529020892058055,"Great speech by VP @JDVance!
- https://t.co/d4xLY6Tk3g","Feb 14, 5:30:17 PM EST"
-1890575783917138201,"RT @Starlink: Starlink Mini enables high-speed internet on the go, even in the most remote and rural locations around the world 🛰️🏔️","Feb 14, 8:36:06 PM EST"
-1890579324530577750,"https://t.co/vm9DFRSebw","Feb 14, 8:50:10 PM EST"
-1890580315963285807,"Funding for racist baby training is canceled https://t.co/M7H1ks4Vbr","Feb 14, 8:54:07 PM EST"
-1890587300410556701,"🔥🔥 https://t.co/F0Byf4IL5K","Feb 14, 9:21:52 PM EST"
-1890587551506784510,"Wow https://t.co/h60jVrODzY","Feb 14, 9:22:52 PM EST"
-1890589749376667956,"Institutionalized racism & sexism is no longer allowed https://t.co/phSPQFdRvV","Feb 14, 9:31:36 PM EST"
-1890591471318819014,"Sounds familiar https://t.co/umL0MKczTa","Feb 14, 9:38:26 PM EST"
-1890595645813031151,"RT @MarioNawfal: 🚨🇺🇸 BIDEN’S DEI ERA OFFICIALLY OVER: STATES ORDERED TO ELIMINATE PROGRAMS IN 14 DAYS
-
-The Department of Government Efficie…","Feb 14, 9:55:02 PM EST"
-1890600372835660053,"LFG https://t.co/UNDNa3mVc7","Feb 14, 10:13:49 PM EST"
-1890600632907702399,"RT @WesternLensman: @elonmusk "Discrimination on the basis of race, color, or national origin is illegal and morally reprehensible.” 👏 http…","Feb 14, 10:14:51 PM EST"
-1890600993408127216,"The woke mind virus is powerful, but it is being destroyed https://t.co/mfZDyIkvWC","Feb 14, 10:16:17 PM EST"
-1890601078120415380,"RT @StephenM: The Founders created a unitary executive branch in which “the executive power shall be vested in a President of the United St…","Feb 14, 10:16:37 PM EST"
-1890602460739244164,"RT @DOGE: Roses are red, violets are blue,
-Today, DOGE and 10 agencies made 586 wasteful contracts bid adieu!
-
-With a ceiling value of $2.1…","Feb 14, 10:22:06 PM EST"
-1890602559171113031,"RT @MarioNawfal: 🇺🇸TRUMP: THE MEDIA IS TRYING TO BREAK ELON AND ME APART; THEY’RE BAD AT IT
-
-“ Elon called me, he said, you know, they're t…","Feb 14, 10:22:30 PM EST"
-1890604809679413386,"🚀🚀 https://t.co/ekMI58vaKj","Feb 14, 10:31:27 PM EST"
-1890605029536473201,"RT @MarioNawfal: 🇺🇸DOGE'S MODERN IMPACT VS CLINTON AND GORE'S FISCAL DISCIPLINE
-
-Bill Clinton and Al Gore once spearheaded a government ove…","Feb 14, 10:32:19 PM EST"
-1890608349441302800,"Was there any organization that didn’t get USAID funding? https://t.co/7vQCAxZhN2","Feb 14, 10:45:30 PM EST"
-1890609300814389560,"RT @FoxNews: DOGE says it dug up another $1.9 billion in taxpayer money 'misplaced' by Biden admin https://t.co/PsujkLv9jb","Feb 14, 10:49:17 PM EST"
-1890610514767601706,"RT @FarzadMediaINC: "Why do you trust Elon to execute DOGE in a good faith manner?"
-
-"I will tell you why..."
-
-w/ @TeslaLarry @elonmusk @Ha…","Feb 14, 10:54:07 PM EST"
-1890611074371666223,"Based https://t.co/U36kStnMaD","Feb 14, 10:56:20 PM EST"
-1890612949368058118,"Word frequency is a good measure of the contagion of a mind virus.
-
-Most people don’t understand that a mind virus can be just as deadly as a physical virus. https://t.co/AY7dje7lxm","Feb 14, 11:03:47 PM EST"
-1890617271787061661,"RT @Rothmus: 🤔 https://t.co/rrSBETwIEd","Feb 14, 11:20:58 PM EST"
-1890619038759305709,"🔥🔥 https://t.co/voAHSiLK4X","Feb 14, 11:27:59 PM EST"
-1890619377105465445,"High time we cut bs “online training”! https://t.co/vAehKc2zU8","Feb 14, 11:29:20 PM EST"
-1890620856159588563,"🇺🇸🇺🇸 https://t.co/1C3W25fvXB","Feb 14, 11:35:12 PM EST"
-1890621315775696996,"🇩🇪🇩🇪 https://t.co/pdiL1bdJ3M","Feb 14, 11:37:02 PM EST"
-1890621418255118820,"RT @latinedisce: As a European, I’m absolutely outraged by Vance’s speech.
-
-Outraged that it took an American to say what no European burea…","Feb 14, 11:37:26 PM EST"
-1890621959857160281,"RT @DOGE: Great kickoff with @DeptofDefense.
-
-Looking forward to working together to safely save taxpayer dollars and eliminate waste, fra…","Feb 14, 11:39:35 PM EST"
-1890622197703626815,"RT @fentasyl: $18M from by NIH in FY24 for "Administrative Supplements to Recognize Excellence in Diversity, Equity, Inclusion, and Accessi…","Feb 14, 11:40:32 PM EST"
-1890622575476187521,"RT @JDVance: President Trump is the ultimate deal maker and will bring peace to the region by ending the war in Ukraine. As we've always sa…","Feb 14, 11:42:02 PM EST"
-1890623129728221485,"RT @libsoftiktok: WSJ just got a Community Note for making up lies and intentionally being dishonest about what VP Vance said.
-
-Another CN…","Feb 14, 11:44:14 PM EST"
-1890623720558883003,"There will be no wasted launch window https://t.co/4omo2MAEKl","Feb 14, 11:46:35 PM EST"
-1890624418449113219,"Yes, we will https://t.co/8jxHeTwWzJ","Feb 14, 11:49:22 PM EST"
-1890624480466084232,"RT @teslaownersSV: “No matter what happens, I will fight for America.”
-
-Elon Musk https://t.co/wqRb0SZoNt","Feb 14, 11:49:36 PM EST"
-1890642724740616639,"https://t.co/gPVMFwx7Ci","Feb 15, 1:02:06 AM EST"
-1890642929544233408,"Yes https://t.co/O3oGbbR5dz","Feb 15, 1:02:55 AM EST"
-1890643072494530874,"True https://t.co/C1rGZKpv5d","Feb 15, 1:03:29 AM EST"
-1890644243783221355,"RT @WholeMarsBlog: DOGE engineers heading in to fix the deficit https://t.co/EI3PxwcTzF","Feb 15, 1:08:08 AM EST"
-1890645067976609855,"RT @teslaownersSV: The scale of the Starship is insane and 🤯🤯🤯 https://t.co/H23PzIkHeD","Feb 15, 1:11:25 AM EST"
-1890645545863008564,"RT @WhiteHouse: 👀 https://t.co/3TuaNoHewk","Feb 15, 1:13:19 AM EST"
-1890701717848600814,"RT @AutismCapital: 🚨 JASON CALACANIS: "I'm hoping that Sam Altman loses his lawsuit and gets an injunction against him. He's such a weasel…","Feb 15, 4:56:31 AM EST"
-1890701834597146768,"True https://t.co/e90CrvmHoQ","Feb 15, 4:56:59 AM EST"
-1890701896135921863,"RT @cb_doge: Legacy media is no more relevant.","Feb 15, 4:57:14 AM EST"
-1890702050054316382,"RT @DefiyantlyFree: USAID has spent 4 years giving the ABA grants so they could further radicalize the legal profession and turn it into an…","Feb 15, 4:57:50 AM EST"
-1890702979893801252,"True https://t.co/DDjely029E","Feb 15, 5:01:32 AM EST"
-1890704545866510832,"RT @Alice_Weidel: Danke für das großartige Treffen in Budapest, @PM_ViktorOrban. Ungarn ist für uns ein Leuchtturm der Demokratie in Europa!","Feb 15, 5:07:45 AM EST"
-1890704917913849856,"RT @Alice_Weidel: "An die Demokratie zu glauben bedeutet, zu verstehen, dass jeder unserer Bürger Weisheit besitzt und eine Stimme hat."
-"T…","Feb 15, 5:09:14 AM EST"
-1890705009299329123,"RT @DefiyantlyFree: These are the people who tell you Elon Musk auditing the government is dangerous.
-
-U.S. State Dept. Accidentally Gave $…","Feb 15, 5:09:36 AM EST"
-1890705090450768090,"RT @WallStreetApes: Democrats are fighting so hard against DOGE because Elon Musk’s DOGE audits are making the American People furious
-
-“Li…","Feb 15, 5:09:55 AM EST"
-1890705310098067913,"Yes https://t.co/WfeJzi7loP","Feb 15, 5:10:48 AM EST"
-1890705503115739574,"RT @MarioNawfal: 🚨🇺🇸JPMORGAN CEO JAMIE DIMON SLAMS ‘STUPID’ DEI SPENDING, PLANS CUTS
-
-Jamie Dimon is reportedly canceling some DEI programs…","Feb 15, 5:11:34 AM EST"
-1890705620208099497,"AfD! https://t.co/i2G91lLp9A","Feb 15, 5:12:02 AM EST"
-1890824009442361372,"RT @JerryDunleavy: FTC Chairman today: “I am prohibiting FTC political appointees from holding leadership positions in the ABA, participati…","Feb 15, 1:02:28 PM EST"
-1890824479380557852,"True, ABA has become a far-left political organization https://t.co/6AGqRjhPOD","Feb 15, 1:04:20 PM EST"
-1890824753943838865,"What more could they possibly want to know!? 🤣🤣 https://t.co/2RLLcyA8lI","Feb 15, 1:05:25 PM EST"
-1890837278269866215,"😂💯
-
-I’m arguably too transparent!! https://t.co/Yj1HvHOh2L","Feb 15, 1:55:11 PM EST"
-1890842155465240846,"RT @unusual_whales: Trump on DOGE: “We literally started off with 14 or 15 young geniuses. Now we have 100 young geniuses. And what’s happ…","Feb 15, 2:14:34 PM EST"
-1890842231180816419,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/Esh4g0YOh9","Feb 15, 2:14:52 PM EST"
-1890852457397264609,"RT @DOGE: US taxpayer dollars were going to be spent on the following items, all which have been cancelled:
-- $10M for "Mozambique volunta…","Feb 15, 2:55:30 PM EST"
-1890854984889090204,"The legacy media were all being paid off by USAID https://t.co/4DsyzPrqH6","Feb 15, 3:05:33 PM EST"
-1890855034792878395,"RT @EvaVlaar: It happened again. This Syrian migrant stabbed a 14 y/o Austrian boy to death and injured 5 others today in Villach, Austria.…","Feb 15, 3:05:45 PM EST"
-1890855204821647480,"Terrible https://t.co/1M4DMsShQX","Feb 15, 3:06:25 PM EST"
-1890855779160179111,"🔥🔥 https://t.co/1nh51QeO42","Feb 15, 3:08:42 PM EST"
-1890855839910560100,"True https://t.co/vIYFED5Krq","Feb 15, 3:08:57 PM EST"
-1890869978116530238,"Literally exactly what @DOGE is saying! https://t.co/3fC3srkd3G","Feb 15, 4:05:08 PM EST"
-1890870542271443412,"RT @s8mb: JD Vance’s speech at Munich is worth watching in full. It’s a much more nuanced and broadly reasonable argument than I think Euro…","Feb 15, 4:07:22 PM EST"
-1890870796211421313,"RT @visegrad24: Hundreds of Afrikaners are gathering in-front of the US Embassy in South Africa in protest of the 140+ race based laws impo…","Feb 15, 4:08:23 PM EST"
-1890875104277537276,"This judge has sympathy for criminals, but not for their victims https://t.co/bQFSSqaUqR","Feb 15, 4:25:30 PM EST"
-1890883148398903748,"Exactly https://t.co/aMjH9exJ2I","Feb 15, 4:57:28 PM EST"
-1890883336500924460,"Bingo https://t.co/me3qrXaFYK","Feb 15, 4:58:12 PM EST"
-1890883782602785181,"RT @Cernovich: The impossibly rich lifestyle of DC liberals, funded by YOU the taxpayer, without your consent or approval. This is how they…","Feb 15, 4:59:59 PM EST"
-1890888782628454506,"RT @Cernovich: The human rights cause of our lifetimes is the genocide and ethnic cleansing of Afrikaners.","Feb 15, 5:19:51 PM EST"
-1890893763645481118,"Having world war level of national debt without fighting a world war is catastrophic.
-
-The @DOGE team is tracing and stopping the insane levels of waste and fraud very quickly. https://t.co/v8JweQMmxF","Feb 15, 5:39:39 PM EST"
-1890894346569896217,"RT @visegrad24: JD Vance is right about mass immigration
-
-🇺🇸🇪🇺 https://t.co/J3xOdTAAPw","Feb 15, 5:41:57 PM EST"
-1890894423073890589,"RT @Rothmus: “Misplaced” https://t.co/5Ah63lJNsG","Feb 15, 5:42:16 PM EST"
-1890894487162966064,"Yup https://t.co/2Z0a70faR5","Feb 15, 5:42:31 PM EST"
-1890894851287240996,"RT @MarioNawfal: ELON TALKING ABOUT COST EFFICIENCY AT SPACEX 20 YEARS AGO
-
-“Anyone outside the space business assumes rockets are made of…","Feb 15, 5:43:58 PM EST"
-1890894948452442307,"RT @chamath: With more and more breaking and needing fixing in the US, that the Bureaucracy somehow found more value in sending money abroa…","Feb 15, 5:44:21 PM EST"
-1890895141772067149,"https://t.co/gZT9mO5F8P","Feb 15, 5:45:07 PM EST"
-1890895580898971826,"😂 https://t.co/mzfR3mhajF","Feb 15, 5:46:52 PM EST"
-1890897142564233380,"It’s true. Something must be done https://t.co/TInKyY9Aa2","Feb 15, 5:53:04 PM EST"
-1890902192988819847,"Deeply honored to support President @realDonaldTrump in this revolutionary administration.
-
-Interview with @SeanHannity airs on Tuesday. https://t.co/qC0QeWtrP8","Feb 15, 6:13:08 PM EST"
-1890902315789389883,"https://t.co/7cavuHBQbG","Feb 15, 6:13:38 PM EST"
-1890902864081432699,"Momentum is growing rapidly to impeach activist judges who repeatedly fail to follow the law https://t.co/rZxUR6YadW","Feb 15, 6:15:48 PM EST"
-1890905182516461608,"That is already possible https://t.co/tVQoxx274a","Feb 15, 6:25:01 PM EST"
-1890905529519690188,"The ultimate grifter gravy train https://t.co/me3qrXaFYK","Feb 15, 6:26:24 PM EST"
-1890906050301149432,"LFG https://t.co/ogdbFaDj4r","Feb 15, 6:28:28 PM EST"
-1890907801477656811,"Treason https://t.co/1F9ntbnXN2","Feb 15, 6:35:25 PM EST"
-1890908120995467269,"Interesting https://t.co/GMSAM75qV1","Feb 15, 6:36:42 PM EST"
-1890908450357461390,"RT @WhiteHouse: https://t.co/95GzNiAaqs","Feb 15, 6:38:00 PM EST"
-1890910090909077519,"Wow https://t.co/7vwnV0s2xd","Feb 15, 6:44:31 PM EST"
-1890910321826583008,"Major FAR reform is needed https://t.co/NEony4qzs0","Feb 15, 6:45:26 PM EST"
-1890910826439037118,"Because the Dems are trying to hide massive entitlements fraud https://t.co/Ochjt7u7t9","Feb 15, 6:47:27 PM EST"
-1890911205461487967,"Seriously 🤦♂️ https://t.co/t3YfzjWRuS","Feb 15, 6:48:57 PM EST"
-1890911674183409950,"https://t.co/eqLVDHRcmP","Feb 15, 6:50:49 PM EST"
-1890928849560453562,"RT @MarioNawfal: 🚨🇺🇸DID YOU KNOW? THE FEDERAL GOVERNMENT BALLOONED UNDER BIDEN—NOW ELON’S CUTTING THE FAT
-
-In 2019, federal employment stoo…","Feb 15, 7:59:04 PM EST"
-1890929465481429493,"Unsustainable https://t.co/tMWnvkw8Xs","Feb 15, 8:01:30 PM EST"
-1890930781469450508,"RT @cb_doge: "The most entertaining outcome is the most likely!"
- https://t.co/1X8TMZpIjw","Feb 15, 8:06:44 PM EST"
-1890952837170962641,"RT @America1stLegal: NEW: The U.S. Department of Education just notified the education departments in all 50 states that they have 14 days…","Feb 15, 9:34:23 PM EST"
-1890953327069782337,"Such a big jump in a short time doesn’t make sense https://t.co/F7l4kqAIN8","Feb 15, 9:36:20 PM EST"
-1890958798841389499,"Grok 3 release with live demo on Monday night at 8pm PT.
-
-Smartest AI on Earth.","Feb 15, 9:58:04 PM EST"
-1890959216724115790,"Will be honing product with the team all weekend, so offline until then","Feb 15, 9:59:44 PM EST"
-1891108275736711483,"Grok 3
- https://t.co/yF1CyuvLgL","Feb 16, 7:52:02 AM EST"
-1891112681538523215,"Grok 3 is so based 😂 https://t.co/Rfphquqk2b","Feb 16, 8:09:33 AM EST"
-1891165765887205417,"RT @PressSec: To all of the Democrats who are planning to protest this week, here’s an explanation on DOGE, from your party’s own beloved l…","Feb 16, 11:40:29 AM EST"
-1891232516490563855,"Well said, @SecRubio! https://t.co/GhhukJpUxP","Feb 16, 4:05:43 PM EST"
-1891244683377922494,"RT @Teslaconomics: Mark my words, the new Model Y is going to sell like hot cakes https://t.co/ZXh1WEQ1ZF","Feb 16, 4:54:04 PM EST"
-1891261783773417971,"https://t.co/5Ktd0DhlVS","Feb 16, 6:02:01 PM EST"
-1891262232694051004,"RT @America1stLegal: /6 AFL’s review of required disclosure forms reveals that since Judge McConnell became Vice Chair of the Board of Cros…","Feb 16, 6:03:48 PM EST"
-1891308544122597818,"Very interesting https://t.co/xwZjB1sKRA","Feb 16, 9:07:50 PM EST"
-1891311172139299067,"Suicidal empathy, as @GadSaad would say https://t.co/Ye4jMeR0f4","Feb 16, 9:18:16 PM EST"
-1891311283107954978,"💯 https://t.co/ZN09lncffa","Feb 16, 9:18:43 PM EST"
-1891311772348399729,"Please DM the DOGE handles to report government waste and fraud https://t.co/fG77KMNBef","Feb 16, 9:20:40 PM EST"
-1891313110058746329,"🇺🇸🇺🇸 https://t.co/iUtqjx93SD","Feb 16, 9:25:58 PM EST"
-1891313680853196857,"RT @Rothmus: Never forget @DefiantLs https://t.co/ZEH9U1Oz10","Feb 16, 9:28:15 PM EST"
-1891314286120542257,"Progress https://t.co/8figiPtixE","Feb 16, 9:30:39 PM EST"
-1891315012808941867,"Interesting thread https://t.co/MvUjIP9UUw","Feb 16, 9:33:32 PM EST"
-1891316488268824621,"60 Mins are such liars. As the Community Note states, all employees were offered 8 months of pay & benefits. https://t.co/8djYsnWTJG","Feb 16, 9:39:24 PM EST"
-1891317649168064637,"RT @GuntherEagleman: UPDATE: Over $103,000,000,000.00!
-
-Thank you @DOGE https://t.co/ndAooSP7IX","Feb 16, 9:44:01 PM EST"
-1891317716029444209,"RT @teslaownersSV: I only trust 𝕏 for news.
-
-Legacy media lies https://t.co/mHNoENKid2","Feb 16, 9:44:17 PM EST"
-1891342500582854867,"Yup https://t.co/YPW0ggisUy","Feb 16, 11:22:46 PM EST"
-1891350795452654076,"According to the Social Security database, these are the numbers of people in each age bucket with the death field set to FALSE!
-
-Maybe Twilight is real and there are a lot of vampires collecting Social Security 🤣🤣 https://t.co/ltb06VX98Z","Feb 16, 11:55:43 PM EST"
-1891351204862783701,"Reasoning from first principles is a superpower https://t.co/smN0lsUlqV","Feb 16, 11:57:21 PM EST"
-1891354352113377427,"https://t.co/TsNUQfK6cc","Feb 17, 12:09:51 AM EST"
-1891355068726710331,"RT @KathleenWinche3: How does Margaret still have a job? https://t.co/6bQo16jOC4","Feb 17, 12:12:42 AM EST"
-1891356658434974098,"RT @DOGE: DOGE is looking for help from the general public!
-
-Please DM insight for reducing waste, fraud, and abuse, along with any helpf…","Feb 17, 12:19:01 AM EST"
-1891356782469001219,"Wow https://t.co/87VDEwxOec","Feb 17, 12:19:31 AM EST"
-1891359958333083924,"Thank the Lord that America has freedom of speech! https://t.co/DNvWldUXPj","Feb 17, 12:32:08 AM EST"
-1891361299570860434,"Everybody dies, but not everybody lives https://t.co/rYtoq01ygH","Feb 17, 12:37:28 AM EST"
-1891361601527148656,"If accurate, these are grounds for impeachment of the judge https://t.co/iwcM4p6h4x","Feb 17, 12:38:40 AM EST"
-1891362807255277585,"https://t.co/XiRvz9QWaT","Feb 17, 12:43:27 AM EST"
-1891364181305180387,"https://t.co/AUbUzqos4s","Feb 17, 12:48:55 AM EST"
-1891364834882498613,"America is drowning in debt, but still corrupt Democrats want it to continue … https://t.co/ImUAXayEBo","Feb 17, 12:51:31 AM EST"
-1891365671650353657,"RT @twatterbaas: When they say they want to take your property, believe them. Listen to our President:
-
-“….Reparations, we are actively goi…","Feb 17, 12:54:50 AM EST"
-1891365780941316226,"RT @JDVance: This is a crazy exchange.
-
-Does the media really think the holocaust was caused by free speech?","Feb 17, 12:55:16 AM EST"
-1891366179198972270,"RT @JohnLeFevre: Calling a rapist a rapist is more offensive than being a rapist in Germany.
-
-And 60 Minutes is okay with this...","Feb 17, 12:56:51 AM EST"
-1891366408761569603,"No. https://t.co/r45wMyYoHK","Feb 17, 12:57:46 AM EST"
-1891379999648743827,"And I am https://t.co/8c7bZFGsDK","Feb 17, 1:51:46 AM EST"
-1891380389421232477,"🤨 https://t.co/1c6y0TtmMk","Feb 17, 1:53:19 AM EST"
-1891381462663844184,"😂 https://t.co/QuCK2jxrpQ","Feb 17, 1:57:35 AM EST"
-1891382213473620150,"60 Mins is a scam https://t.co/p2y8Uh6F3v","Feb 17, 2:00:34 AM EST"
-1891382857655803929,"RT @GadSaad: Castration followed by death penalty.","Feb 17, 2:03:08 AM EST"
-1891383141631197473,"Bullseye https://t.co/766ByliZ9K","Feb 17, 2:04:15 AM EST"
-1891383684873228564,"RT @NicoPerrino: “You’re standing in a country where free speech was weaponized to commit a genocide.”
-
-Utterly false. It’s called the “Wei…","Feb 17, 2:06:25 AM EST"
-1891384209081614386,"RT @teslaownersSV: “The woke mind virus is when you stop caring about people's skills and their integrity, and you start focusing instead o…","Feb 17, 2:08:30 AM EST"
-1891384240727625859,"RT @TheRabbitHole84: Free speech is a top concern for Americans. https://t.co/2VCfNZQ55e","Feb 17, 2:08:37 AM EST"
-1891384372323815917,"It’s looking good!","Feb 17, 2:09:09 AM EST"
-1891384554436370589,"Yup https://t.co/m8I6h1P3F6","Feb 17, 2:09:52 AM EST"
-1891385535681204396,"60 Mins is just fully a scam https://t.co/WxfjsBPYz6","Feb 17, 2:13:46 AM EST"
-1891386485477093401,"https://t.co/MI0mYxeL01","Feb 17, 2:17:33 AM EST"
-1891386855376961654,"Indeed https://t.co/DWxAVbWLuL","Feb 17, 2:19:01 AM EST"
-1891387354394280260,"True, it’s hard to beat medical fraud. That’s the champ. https://t.co/kxgEW1Kq8Y","Feb 17, 2:21:00 AM EST"
-1891387576415666642,"RT @unusual_whales: Secretary of Defense Pete Hegseth: “We welcome DOGE and Elon to the Pentagon There are redundancies that need to be add…","Feb 17, 2:21:53 AM EST"
-1891388177748763096,"True https://t.co/iUHUaQVPzX","Feb 17, 2:24:16 AM EST"
-1891388509191049307,"Yes https://t.co/txlPmvJjJP","Feb 17, 2:25:35 AM EST"
-1891391063325102172,"RT @johnkrausphotos: https://t.co/uJHHR7OdDh","Feb 17, 2:35:44 AM EST"
-1891394742761439262,"Well, well, well
-
-https://t.co/ehgqiEGXub https://t.co/mFnb73vxMz","Feb 17, 2:50:21 AM EST"
-1891395045997134317,"https://t.co/ehgqiEGXub","Feb 17, 2:51:34 AM EST"
-1891396362404565341,"It’s got to be done.
-
-Make video games great again! https://t.co/IyWQQQlVAF","Feb 17, 2:56:47 AM EST"
-1891398562874818990,"As a friend of mine described it, this is like an amazing puzzle, uncovering the secrets of an ancient civilization that went extinct … except it’s still around 😂 https://t.co/XTuA2Ptunh","Feb 17, 3:05:32 AM EST"
-1891401201993793677,"I am endlessly amused by the infinite indignities I suffer on the very platform that I own","Feb 17, 3:16:01 AM EST"
-1891401764718473667,"They grow up so fast 🥰 https://t.co/OIYaqjLKdR","Feb 17, 3:18:15 AM EST"
-1891403343345389580,"The logic flow diagram for the Social Security system looks INSANE. No one person actually knows how it works.
-
-The payment files that move between Social Security and Treasury have significant inconsistencies that are not reconciled. It’s wild. https://","Feb 17, 3:24:32 AM EST"
-1891406462724751773,"RT @cb_doge: Just a reminder:
-
-You can now use Grok to decode memes. https://t.co/OslvNVfbk4","Feb 17, 3:36:56 AM EST"
-1891407004658176009,"Exactly!!
-
-They destroyed the art.
-
-No forgiveness. https://t.co/EbOHupFdsh","Feb 17, 3:39:05 AM EST"
-1891407514874315225,"So much harder for legacy media to lie now https://t.co/9RW0Ll6DgT","Feb 17, 3:41:06 AM EST"
-1891408049857761414,"USAID was funding DEI abroad while America goes broke at home … https://t.co/E4nigHc7IY","Feb 17, 3:43:14 AM EST"
-1891409021514530919,"Do it! https://t.co/8p22afOIVa","Feb 17, 3:47:06 AM EST"
-1891409292663591127,"https://t.co/gROdIiYUvw","Feb 17, 3:48:10 AM EST"
-1891409589511344446,"🎯 https://t.co/VIUqnn6fHx","Feb 17, 3:49:21 AM EST"
-1891412283722494408,"RT @MarioNawfal: 🚨🇺🇸 AVIAN FLU IS SPREAD MOSTLY BY DUCKS AND GEESE— WHY DID BIDEN RANDOMLY KILL CHICKENS?
-
-Director of the White House Nati…","Feb 17, 4:00:03 AM EST"
-1891413113699696823,"https://t.co/fVg0yN5tJJ","Feb 17, 4:03:21 AM EST"
-1891413175037300777,"RT @teslaownersSV: Elon Musk
-“The amount of waste that happens with the federal government is really staggering. It's a staggering amount o…","Feb 17, 4:03:36 AM EST"
-1891414474243948679,"RT @teslaownersSV: "𝕏 played a pivotal role not just in this election but in keeping the country alive. 𝕏 is the only place where you can f…","Feb 17, 4:08:46 AM EST"
-1891414886443319769,"https://t.co/xKMqLfVasq","Feb 17, 4:10:24 AM EST"
-1891416059028332800,"For some reason, I find the history of Genghis Kahn particularly interesting 😉 https://t.co/bpoOdNGQtE","Feb 17, 4:15:03 AM EST"
-1891493265767079997,"Awesome 😎 https://t.co/XVlm4TL03K","Feb 17, 9:21:51 AM EST"
-1891498805851287692,"Yeah, at this point, anyone who believes them after they’ve been caught lying every day is just … not very smart 🤷♂️ https://t.co/oykaHQ0HHB","Feb 17, 9:43:52 AM EST"
-1891499095530815503,"What happened here? https://t.co/smbjKMSOnl","Feb 17, 9:45:01 AM EST"
-1891500973798854815,"💯 https://t.co/3USetMNdFp","Feb 17, 9:52:29 AM EST"
-1891501600696369516,"RT @RadioEuropes: A 13-year-old girl was r*ped by 7 Egyptian immigrants in Catania, Italy. The criminals tied up the poor girl's boyfriend…","Feb 17, 9:54:58 AM EST"
-1891501773564543240,"The kids understand https://t.co/ECjc75ZqU2","Feb 17, 9:55:39 AM EST"
-1891502432259133668,"If VP Vance and Sec Hegseth vouch for someone, that carries a lot of weight https://t.co/jAVHGG9Gb9","Feb 17, 9:58:16 AM EST"
-1891507671334887824,"Yes, seriously https://t.co/LtQDPwV3G1","Feb 17, 10:19:06 AM EST"
-1891508021995475064,"So great https://t.co/1RRss1GLlf","Feb 17, 10:20:29 AM EST"
-1891508371217350811,"RT @GuntherEagleman: 💯💯💯 https://t.co/S4ZHbT39Il","Feb 17, 10:21:52 AM EST"
-1891508614793187403,"🔥🔥 https://t.co/gDA5KBIzP1","Feb 17, 10:22:50 AM EST"
-1891515881303195876,"🇺🇸🇺🇸 https://t.co/nwB2lt9qK3","Feb 17, 10:51:43 AM EST"
-1891517173077586279,"https://t.co/fumW232vkk","Feb 17, 10:56:51 AM EST"
-1891520002794074273,"Wow 🇺🇸🇺🇸🇺🇸 https://t.co/dJNkMRDbt8","Feb 17, 11:08:06 AM EST"
-1891520820930814119,"RT @MarioNawfal: ELON: WE NEED TO SOLVE THE BIRTH RATE ISSUE OR CIVILIZATION WILL DWINDLE TO NOTHING
-
-“Sometimes kids are viewed as an impo…","Feb 17, 11:11:21 AM EST"
-1891523197683507537,"Bravo! https://t.co/tnzSt43RqX","Feb 17, 11:20:47 AM EST"
-1891524134049316907,"Exactly.
-
-America is going BANKRUPT from EXTREME levels of government spending.
-
-Either radical action is taken or we’re toast. https://t.co/sllcKWDjvi","Feb 17, 11:24:31 AM EST"
-1891526243104809413,"Where is Norm Eisen getting all money from? Maybe the Internet can tell us 🤔 https://t.co/aVosWdAcU4","Feb 17, 11:32:53 AM EST"
-1891527120897049004,"Interesting https://t.co/p92LvFcmHq","Feb 17, 11:36:23 AM EST"
-1891530345993887782,"Offer still stands. Come on, do it … https://t.co/RtRfd8wOI5","Feb 17, 11:49:12 AM EST"
-1891531326198534408,"Every time 😂 https://t.co/OGE3JFyGqQ","Feb 17, 11:53:05 AM EST"
-1891532004081926418,"RT @AntiWokeMemes: @elonmusk He was right to warn us 👇 https://t.co/lNNALrdBmf","Feb 17, 11:55:47 AM EST"
-1891534773895483630,"Their propaganda can be entertaining at times https://t.co/SFLDjHdQSm","Feb 17, 12:06:47 PM EST"
-1891534970176311357,"RT @DOGE_IRS: DOGE is seeking help from the public! Please DM this account with insights on finding and fixing waste, fraud and abuse relat…","Feb 17, 12:07:34 PM EST"
-1891538625885618674,"More of your tax dollars saved https://t.co/UWTI8kyjxj","Feb 17, 12:22:06 PM EST"
-1891540932534620474,"🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/BamH9TgExM","Feb 17, 12:31:16 PM EST"
-1891541309648781716,"Bingo https://t.co/nVN1JzJA9s","Feb 17, 12:32:46 PM EST"
-1891541685793882132,"Yup https://t.co/lqebI44Lzx","Feb 17, 12:34:15 PM EST"
-1891543516108493193,"RT @RadioEuropes: 🚨🇩🇪BREAKING NEWS
-
-Thousands of German patriots gather in the square to support the AfD.
-
-“Germany is for the Germans!”…","Feb 17, 12:41:32 PM EST"
-1891543670492401746,"It’s true https://t.co/HY3ngr44JD","Feb 17, 12:42:08 PM EST"
-1891544120780284280,"Cool https://t.co/vGkAn8XB0q","Feb 17, 12:43:56 PM EST"
-1891544276107973005,"Hardly a surprise https://t.co/RQkmxnFK7H","Feb 17, 12:44:33 PM EST"
-1891544496623501769,"😎 https://t.co/jGp5bQr2d9","Feb 17, 12:45:25 PM EST"
-1891546432697426430,"Yeah, that’s so mean of them! https://t.co/7DpzqQEJQz","Feb 17, 12:53:07 PM EST"
-1891553005616451591,"What @DOGE is doing is similar to Clinton/Gore Dem policies of the 1990s.
-
-The current Dem party has just gone so crazy far left that it isn’t recognizable anymore! https://t.co/zUUoY0nj0v","Feb 17, 1:19:14 PM EST"
-1891554952243233259,"💯 https://t.co/sAV7VMRbDb","Feb 17, 1:26:58 PM EST"
-1891555910218097122,"Who is confirming that gold wasn’t stolen from Fort Knox?
-
-Maybe it’s there, maybe it’s not.
-
-That gold is owned by the American public! We want to know if it’s still there. https://t.co/aEBXK1CfD6","Feb 17, 1:30:47 PM EST"
-1891557463377490431,"Bruh, if I wanted to rummage through random personal shit, I could have done that at PAYPAL. Hello???
-
-Having tens of millions of people marked in Social Security as “ALIVE” when they are definitely dead is a HUGE problem.
-
-Obviously.
-
-Some of these peop","Feb 17, 1:36:57 PM EST"
-1891557541106286991,"RT @charliekirk11: BREAKING: Legal WIN for DOGE as a federal judge has just declined to issue an order halting Elon Musk and Doge from acce…","Feb 17, 1:37:15 PM EST"
-1891560333443010889,"The REAL reason so many Democrats are upset about entitlements (social security, medical, etc) fraud investigations is that they are using your taxpayer money as handouts to attract and retain ILLEGAL immigrants. Their future voters.
-
-That’s what it’s al","Feb 17, 1:48:21 PM EST"
-1891561278235148764,"https://t.co/6AIdcBec96","Feb 17, 1:52:06 PM EST"
-1891564822682272088,"This is happening nationally via fraud https://t.co/qcVJGtlEWR","Feb 17, 2:06:11 PM EST"
-1891566355532349445,"Looking for the gold at Fort Knox … https://t.co/YVGQvBfwVt","Feb 17, 2:12:17 PM EST"
-1891572799304552710,"RT @realDonaldTrump: On Trade, I have decided, for purposes of Fairness, that I will charge a RECIPROCAL Tariff meaning, whatever Countries…","Feb 17, 2:37:53 PM EST"
-1891582217207316596,"💯 https://t.co/Tu9iTNTgGj","Feb 17, 3:15:19 PM EST"
-1891582468529983682,"LFG 🔥🔥🇺🇸🇺🇸 https://t.co/2WvCeOCau9","Feb 17, 3:16:19 PM EST"
-1891583768479125907,"RT @teslaownersSV: "America is going to reach heights that it has never seen before."
-
-Elon Musk
- https://t.co/GtVI7EcgU3","Feb 17, 3:21:28 PM EST"
-1891589392726102338,"RT @shivon: Woah! That was one of the most unexpectedly rewarding hours of my life.
-
-Instead of passively listening to an audiobook about p…","Feb 17, 3:43:49 PM EST"
-1891595368619524342,"This gold is the property of the American people. I sure hope it’s still there!","Feb 17, 4:07:34 PM EST"
-1891596224899252462,"RT @DavidSacks: There are now @DOGE accounts for every government department, exposing the waste, fraud and abuse. Awesome. https://t.co/wM…","Feb 17, 4:10:58 PM EST"
-1891596254389371065,"Yup https://t.co/gKWVXaYIiM","Feb 17, 4:11:05 PM EST"
-1891597935231590477,"This is what competent leadership looks like https://t.co/frZrdhsEzZ","Feb 17, 4:17:46 PM EST"
-1891600860079157324,"My rough estimate is that it’s ~80% lack of competence/caring and ~20% fraud.
-
-But that’s still a lot of fraud! https://t.co/IE8NzutIxV","Feb 17, 4:29:23 PM EST"
-1891602157285023814,"RT @JDVance: Our border czar Kamala Harris opened up the border by design. Now real people are suffering.","Feb 17, 4:34:33 PM EST"
-1891602623180005385,"🔥😂 https://t.co/HSFRJrmPSj","Feb 17, 4:36:24 PM EST"
-1891623317603324271,"Major improvement in Treasury payment integrity going live!
-
-This was a combined effort of @DOGE, @USTreasury and @FederalReserve. Nice work by all. https://t.co/dpLmXRpufT","Feb 17, 5:58:38 PM EST"
-1891625938108002407,"👇 https://t.co/QNE2HHE6pl","Feb 17, 6:09:03 PM EST"
-1891632035128582638,"RT @realDonaldTrump: https://t.co/eZUiPWNEEE","Feb 17, 6:33:16 PM EST"
-1891633511099986358,"Wow https://t.co/oyTnr5flzG","Feb 17, 6:39:08 PM EST"
-1891643161249800209,"Romania deserves its own sovereignty! 🇷🇴 https://t.co/CtRnABP2yO","Feb 17, 7:17:29 PM EST"
-1891646434182643723,"RT @DNIGabbard: Happy President’s Day to our favorite President! https://t.co/C8Ak6PnFxm","Feb 17, 7:30:29 PM EST"
-1891646779105440134,"!! https://t.co/YLJRQcJ4Tj","Feb 17, 7:31:51 PM EST"
-1891647975790661818,"AP stands for Associated Propaganda! https://t.co/i3cNgJw2Eb","Feb 17, 7:36:37 PM EST"
-1891648107265356164,"Progress! https://t.co/qb4fFJAy7A","Feb 17, 7:37:08 PM EST"
-1891664923161243653,"Exactly https://t.co/Fh1cbA0NVt","Feb 17, 8:43:57 PM EST"
-1891666196929360351,"RT @america: White House Deputy Chief of Staff Stephen Miller on @DOGE’s Audit of the IRS: “We are talking about performing a basic anti-fr…","Feb 17, 8:49:01 PM EST"
-1891666248351482079,"RT @Yasin__Shafiei: How it started (6 years ago) vs. How it's going! 🔥 https://t.co/aUKMkFcoDT","Feb 17, 8:49:13 PM EST"
-1891668552261750787,"RT @MarioNawfal: 🇷🇴JUDGE WHO OVERTURNED ROMANIAN ELECTION LINKED TO SOROS NETWORK
-
-Elena Simina Tănăsescu, the judge behind Romania’s shock…","Feb 17, 8:58:23 PM EST"
-1891669131570614761,"RT @teslaownersSV: ELON MUSK: "If the people cannot vote and have their will be decided by their elected representatives in the form of the…","Feb 17, 9:00:41 PM EST"
-1891669292392817035,"RT @MarioNawfal: 🚨🇩🇪GERMANY DEMANDS MORE USER DATA FROM X THAN ANY OTHER EU COUNTRY
-
-X Global Government Affairs Department:
-
-“Germany subm…","Feb 17, 9:01:19 PM EST"
-1891669581132955917,"RT @teslaownersSV: “SpaceX is the railroad that will enable millions of opportunities for others on Mars, just like the Union Pacific Railr…","Feb 17, 9:02:28 PM EST"
-1891682715419685362,"https://t.co/QMzzK9CLIo","Feb 17, 9:54:39 PM EST"
-1891688195391214054,"https://t.co/MFhd7D2xwT","Feb 17, 10:16:26 PM EST"
-1891699076267217406,"Grok 3 presentation starting shortly https://t.co/jZKMCTyDSZ","Feb 17, 10:59:40 PM EST"
-1891700271438233931,"https://t.co/HTK4u2aYRu","Feb 17, 11:04:25 PM EST"
-1891712984277246425,"RT @amasad: Grok 3 appears to be a state-of-the-art frontier model. This is a huge accomplishment, especially considering how late in the g…","Feb 17, 11:54:56 PM EST"
-1891717879478767921,"RT @alexandr_wang: Grok 3 is a new best model in the world from the @xai team!
-
-Grok 3 ranks #1 on Chatbot Arena w/a big gap, and scores im…","Feb 18, 12:14:23 AM EST"
-1891718569559228613,"RT @levie: Grok 3 seems very strong. Great proof that the scaling laws are not, in fact, over. Very bullish for the future of AI. https://t…","Feb 18, 12:17:08 AM EST"
-1891718710466924712,"RT @lmarena_ai: BREAKING: @xAI early version of Grok-3 (codename "chocolate") is now #1 in Arena! 🏆
-
-Grok-3 is:
-- First-ever model to break…","Feb 18, 12:17:41 AM EST"
-1891719056090149276,"All you need to know to understand which company will win a technology competition is look at the first and second derivatives of the rate of innovation https://t.co/rImcrpzfeY","Feb 18, 12:19:04 AM EST"
-1891719407946121352,"RT @lexfridman: I got to use Grok 3 extensively (early). My mind is blown, very impressive model 🤯 Congrats to Elon and the team for bringi…","Feb 18, 12:20:27 AM EST"
-1891734282143436910,"Archangel-12 https://t.co/KvMUDq8Ec4","Feb 18, 1:19:34 AM EST"
-1891737457013481818,"RT @teslaownersSV: Elon Musk
-“The mission of xAI and Grok is to understand the universe.
-
-We want to answer the biggest questions: Where ar…","Feb 18, 1:32:11 AM EST"
-1891737571509645519,"RT @MarioNawfal: 🚨xAI: GROK 3 WAS ABLE TO COMBINE TETRIS AND BEJEWELED
-
-"The Bejeweled mechanic is, if you get three jewels in a row, they…","Feb 18, 1:32:38 AM EST"
-1891757170384892388,"RT @SmokeAwayyy: What's xAI doin over there? 🧐 https://t.co/xf2BhNnfww","Feb 18, 2:50:31 AM EST"
-1891760717281288437,"https://t.co/ocnnM2Bgrm","Feb 18, 3:04:36 AM EST"
-1891769045340270956,"https://t.co/ph8WnFRLeO","Feb 18, 3:37:42 AM EST"
-1891770952096104817,"RT @BrianRoemmele: Boom! Grok 3 blows past all foundational AI models! https://t.co/bHFWdjJqLR","Feb 18, 3:45:17 AM EST"
-1891772089637499167,"RT @MarioNawfal: GROK 3: SOLVING PHYSICS, GAMES, AND THE UNIVERSE
-
-Full presentation and demo of xAI's latest model
-
-0:00 xAI's mission: Un…","Feb 18, 3:49:48 AM EST"
-1891772585379037542,"True https://t.co/HtPINo6ngU","Feb 18, 3:51:46 AM EST"
-1891774071886447082,"RT @Yuchenj_UW: Grok 3 might be the best base LLM for real-world physics!
-
-Prompt: "write a python script of a ball bouncing inside a spinn…","Feb 18, 3:57:40 AM EST"
-1891774168263426235,"It’s a start https://t.co/1XpgNnpmRh","Feb 18, 3:58:03 AM EST"
-1891774541728198920,"RT @MarioNawfal: 🚨ELON: AI COULD HELP YOU WIN WARREN BUFFETT’S $1B MARCH MADNESS BET
-
-“Warren Buffett has a billion-dollar bet—if you can p…","Feb 18, 3:59:32 AM EST"
-1891776468897718546,"This will blow your mind https://t.co/EkwGOcaMwh","Feb 18, 4:07:12 AM EST"
-1891776766387101781,"Maximally truth-seeking https://t.co/sjKiT4g60G","Feb 18, 4:08:23 AM EST"
-1891782922040115464,"https://t.co/MFhd7D35mr","Feb 18, 4:32:50 AM EST"
-1891783925170602375,"😂 https://t.co/j4Au2mq56V","Feb 18, 4:36:50 AM EST"
-1891787715928014902,"RT @Tesla_Asia: Production of the new Model Y has officially started at Gigafactory Shanghai.
-Deliveries coming soon🤩 https://t.co/UYQdXCx…","Feb 18, 4:51:53 AM EST"
-1891788054999990281,"RT @MostlyPeacefull: There’s a 92% chance that any federal employee you see crying on TV is an Anti-Trump Democrat https://t.co/BI4ktZIbmM","Feb 18, 4:53:14 AM EST"
-1891790433035981058,"RT @cb_doge: https://t.co/pIofyKrmh1","Feb 18, 5:02:41 AM EST"
-1891791466730582524,"RT @BasedBeffJezos: Grok 3 is on top.
-
-Incredible what a dedicated team can do in such a short time.
-
-Huge congrats to everyone @xai 🚀 http…","Feb 18, 5:06:48 AM EST"
-1891791893085946248,"RT @Teknium1: In my testing it was at least as good in thinking mode then o3-full deep research was, despite that not being listed here - I…","Feb 18, 5:08:29 AM EST"
-1891793575010050474,"And Grok 3 coming soon https://t.co/9fCz2iHRUX","Feb 18, 5:15:10 AM EST"
-1891793638012662037,"RT @RapidResponse47: .@PressSec: “President Trump has directed Elon Musk and the DOGE team to identify fraud at the Social Security Adminis…","Feb 18, 5:15:25 AM EST"
-1891847095792841172,"RT @rpoo: Come on over, the vibes are great and we’re just getting started - there is no team I’ve had so much fun working with while also…","Feb 18, 8:47:51 AM EST"
-1891848046238974157,"RT @JonErlichman: Things Elon Musk launched or unveiled in less than 10 years:
-
-Boring Co.
-Crew Dragon
-Cybercab
-Cybertruck
-DOGE
-Falcon Hea…","Feb 18, 8:51:37 AM EST"
-1891848374560678267,"RT @MarioNawfal: 🚨🇸🇻BUKELE: NOBODY IS ABOVE ACCOUNTABILITY
-
-After El Salvador’s parliament sacked the attorney general and 5 top judges, m…","Feb 18, 8:52:55 AM EST"
-1891849493684924916,"RT @AntonioGracias: Playing with Grok 3 this morning. It is great! Congratulations to the https://t.co/TmhEWPJ4A5 team!! 🙏","Feb 18, 8:57:22 AM EST"
-1891886057664217156,"RT @KanekoaTheGreat: Massive declassification is the key to deep state reform. The public must see the full record—corruption, waste, and c…","Feb 18, 11:22:40 AM EST"
-1891890276311920859,"https://t.co/dMIXm1Th1J","Feb 18, 11:39:26 AM EST"
-1891890735860818062,"RT @PressSec: For decades, leaders in America have pledged to address the rampant waste, fraud, and abuse in our federal government – only…","Feb 18, 11:41:15 AM EST"
-1891891679960961221,"https://t.co/3odUqFw1xb","Feb 18, 11:45:00 AM EST"
-1891892251493597583,"RT @CollinRugg: NEW: Rep. Tim Burchett smacks down CNN’s Pamela Brown after she tried gaslighting her viewers by suggesting CNN supports DO…","Feb 18, 11:47:17 AM EST"
-1891893630815596856,"RT @MarioNawfal: ELON: HISTORY WILL BIFURCATE ALONG TWO DIRECTIONS
-
-“There are really 2 fundamental paths.
-
-History is going to bifurcate a…","Feb 18, 11:52:45 AM EST"
-1891894536122601597,"Yup https://t.co/bMMku75srT","Feb 18, 11:56:21 AM EST"
-1891898474125529393,"This is a deliberate strategy by Democrats to use government handouts to attract and retain illegal immigrants, as illegals vote overwhelmingly Democrat.
-
-In New York and many other parts of the country, illegals are alreadt allowed to vote in local elec","Feb 18, 12:12:00 PM EST"
-1891900866052927907,"https://t.co/HpR7MSxrTJ","Feb 18, 12:21:30 PM EST"
-1891901047561408705,"😂 https://t.co/tzrL4I0UPz","Feb 18, 12:22:14 PM EST"
-1891901759330844682,"https://t.co/jzt7sqDAPZ","Feb 18, 12:25:03 PM EST"
-1891902396927738196,"RT @JoshuaDone: Schrodinger's Gold https://t.co/BRaxMIFYlW","Feb 18, 12:27:35 PM EST"
-1891902579887702423,"RT @JoshuaDone: https://t.co/slh8lv4tOL","Feb 18, 12:28:19 PM EST"
-1891903264267842004,"RT @Jim_Jordan: President Trump and @elonmusk are putting an end to your tax dollars being wasted on:
-
--Illegal aliens and gangs
-
--Woke pro…","Feb 18, 12:31:02 PM EST"
-1891904065115685296,"If Caruso, who is very competent, had been elected mayor, he would have saved thousands of homes that are now gone.
-
-No question.
-
-Competence in elected officials matters. https://t.co/elCXzaGdG4","Feb 18, 12:34:13 PM EST"
-1891904391587803552,"RT @LibertyCappy: I love this app 🤣 https://t.co/QfzLUqlCc0","Feb 18, 12:35:31 PM EST"
-1891905127675466174,"Good progress https://t.co/ubeQyasKyl","Feb 18, 12:38:26 PM EST"
-1891905418881896517,"RT @ericzelikman: @CodeByPoonam if you see a "think" button, turn it on to use the reasoning model. rolling out to as many people as possib…","Feb 18, 12:39:36 PM EST"
-1891905739175657848,"RT @Rothmus: 🔥🔥 https://t.co/YglurQcQoW","Feb 18, 12:40:52 PM EST"
-1891906908237279368,"RT @DonaldJTrumpJr: Imagine what would happen to you if you didn’t ever show up to your job?
-Incredible work @epaleezeldin.","Feb 18, 12:45:31 PM EST"
-1891907050302575080,"https://t.co/p55Vevxc0A","Feb 18, 12:46:05 PM EST"
-1891907562137616510,"RT @youraimarketer: Finally, a model that beats Claude Sonnet 3.5 (OpenAI’s still just writing bland stuff) at creative writing and campaig…","Feb 18, 12:48:07 PM EST"
-1891911120572567983,"The @xAI Grok 3 release will improve rapidly every day this week.
-
-Please report any issues as a reply to this post.","Feb 18, 1:02:15 PM EST"
-1891915179954237817,"RT @JDVance: Great piece from @DonaldJTrumpJr: Elbridge Colby Must Be Confirmed
-
-https://t.co/GDbAoigLE8","Feb 18, 1:18:23 PM EST"
-1891917062328533310,"🇺🇸🇺🇸 https://t.co/Sqjub2UyaB","Feb 18, 1:25:52 PM EST"
-1891917321184157718,"RT @MarioNawfal: 🚨🇺🇸DOGE SAVINGS TOP $110 BILLION—$700 BACK PER TAXPAYER
-
-@DOGE is delivering real results, slashing $110 billion in waste…","Feb 18, 1:26:54 PM EST"
-1891919271305019784,"RT @teslaenergy: When local weather data detects a storm in your area, Powerwall charges to max for backup protection https://t.co/9j4F6w5O…","Feb 18, 1:34:39 PM EST"
-1891922143744577812,"RT @Jim_Jordan: https://t.co/0GoLPxSBt2","Feb 18, 1:46:03 PM EST"
-1891923570768384107,"Haha wow 🧌🏅 https://t.co/PXFXpiGU0U","Feb 18, 1:51:44 PM EST"
-1891931858914414946,"RT @TurkeyBeaver: Falcon 9 is vertical on the pad and the droneship is in position in the Exuma sound. Tracking no issues or constraints at…","Feb 18, 2:24:40 PM EST"
-1891932553889656948,"Any of your federal taxpayer money that could possibly be spent on importing illegals was spent on doing so https://t.co/FimH10VxwD","Feb 18, 2:27:25 PM EST"
-1891933115502809320,"Subscribe to Premium+ to get the world’s smartest AI! https://t.co/dfU3RoiscM","Feb 18, 2:29:39 PM EST"
-1891933400014950889,"RT @cb_doge: Grok's New Logo https://t.co/p8GE4JwIYZ","Feb 18, 2:30:47 PM EST"
-1891933603237409227,"RT @RadioEuropes: 🚨🇦🇹BREAKING NEWS
-
-Thousands of Austrians marched today for 14-year-old Alex, who was stabbed to death by an Afghan migran…","Feb 18, 2:31:36 PM EST"
-1891933753901007130,"RT @MarioNawfal: 🚨🇺🇸GROK 3 IS AMERICA’S ANSWER TO DEEPSEEK—AND IT’S DOMINATING
-
-xAI deserves credit for building world-class reasoning mode…","Feb 18, 2:32:12 PM EST"
-1891934026031673678,"Progress https://t.co/mBpmwiDLI9","Feb 18, 2:33:16 PM EST"
-1891934176930300148,"Yes https://t.co/63P6lgJU3w","Feb 18, 2:33:52 PM EST"
-1891950358693658963,"Yes
- https://t.co/z9jaU2UWwh","Feb 18, 3:38:10 PM EST"
-1891955823926018096,"Btw, you can improve the graphics resolution simply by asking Grok to do so.
-
-We’re working on being able to integrate photo-realistic graphics into AI games for the @xAI game studio. https://t.co/hLSgr9Kdjw","Feb 18, 3:59:53 PM EST"
-1891956574845030512,"Fundamental to the Scientific Method is that the “science” is always subject to question and never settled!
-
-Upon reexamination, we will discover that, in some cases, long-accepted “scientific wisdom” was wrong. https://t.co/acDVGYnTEW","Feb 18, 4:02:52 PM EST"
-1891957005793005818,"Thanks, Ari! ❤️ https://t.co/BUrm2trh4e","Feb 18, 4:04:35 PM EST"
-1891963033456394247,"Great thread about @Grok! https://t.co/BqRfYzx3fX","Feb 18, 4:28:32 PM EST"
-1891963464047882650,"RT @jnnfir: "how based are you, grok?"
-
-https://t.co/uuDsbGtz7U
-
-Damn. Elon said we might fall in love with Grok. I think I just did. htt…","Feb 18, 4:30:15 PM EST"
-1891963560604967216,"How based is Grok, you might ask? https://t.co/k8hpM97thb","Feb 18, 4:30:38 PM EST"
-1891964198734676026,"Because it breaks their whole sense of identity https://t.co/GK64fV5zcf","Feb 18, 4:33:10 PM EST"
-1891965157921652847,"🇺🇸🇺🇸 https://t.co/UWP4JklehI","Feb 18, 4:36:59 PM EST"
-1891967076304032153,"RT @SpaceX: Today’s mission is the first time Falcon 9 will land on a droneship off the coast of The Bahamas! https://t.co/09CmkFPoXD","Feb 18, 4:44:36 PM EST"
-1891980512102678557,"🇺🇸🇺🇸 https://t.co/vJT3yOXduV","Feb 18, 5:38:00 PM EST"
-1891987299292020867,"You can use Grok in the 𝕏 app, download the dedicated Grok app or go directly to the Grok website.
-
-The latest functionality will be on the Grok website, as that does not require approval from Apple or Android, which can add up to a week of delay. https","Feb 18, 6:04:58 PM EST"
-1891988071425491237,"https://t.co/Q7e8qepFdN","Feb 18, 6:08:02 PM EST"
-1891988164241490342,"https://t.co/YInBRTo25Q","Feb 18, 6:08:24 PM EST"
-1891988758893056474,"This is the first time that a rocket has taken off from one country, gone to space and landed in another country! https://t.co/uh2L66VboM","Feb 18, 6:10:46 PM EST"
-1892003547262111822,"Congratulations @SpaceX team!
- https://t.co/m5pV56OaeZ","Feb 18, 7:09:32 PM EST"
-1892027049969160685,"https://t.co/P5F31Dg42O","Feb 18, 8:42:55 PM EST"
-1892027222417965426,"https://t.co/l5Hzs21zKh","Feb 18, 8:43:36 PM EST"
-1892027488521552066,"RT @Rothmus: 💯 https://t.co/53Q8aPG6f7","Feb 18, 8:44:40 PM EST"
-1892028703703482384,"RT @SpaceX: Falcon 9 lifts off from pad 40 in Florida, delivering 23 @Starlink satellites to the constellation ahead of completing our firs…","Feb 18, 8:49:29 PM EST"
-1892050348723834934,"Essential https://t.co/SXDOJuo80U","Feb 18, 10:15:30 PM EST"
-1892052253944750087,"https://t.co/To2QmeBjCM","Feb 18, 10:23:04 PM EST"
-1892053058013553145,"https://t.co/RH2ViX9bRU","Feb 18, 10:26:16 PM EST"
-1892053459517452490,"https://t.co/8ijSlHzNKb","Feb 18, 10:27:52 PM EST"
-1892053568443568583,"RT @DOGE: The US government currently has ~4.6M active credit cards/accounts, which processed ~90M unique transactions for ~$40B of spend…","Feb 18, 10:28:18 PM EST"
-1892056624728039693,"RT @cb_doge: We are going to have a golden age. 🇺🇸 https://t.co/0BEW9X9ku5","Feb 18, 10:40:26 PM EST"
-1892056791610986976,"https://t.co/Dl0ZLdyPi5","Feb 18, 10:41:06 PM EST"
-1892057127880982747,"So unfair 😂 https://t.co/sHS1ZmdLub","Feb 18, 10:42:26 PM EST"
-1892057442957263176,"RT @cb_doge: BREAKING: 𝕏 recently informed 10 of its Irish users that it had successfully opposed court orders granting govt access to thei…","Feb 18, 10:43:41 PM EST"
-1892057986182386071,"RT @RapidResponse47: 🚨 President Trump has signed three more Executive Orders:
-
-1) Lowering costs of IVF and other fertility treatments.
-2)…","Feb 18, 10:45:51 PM EST"
-1892058402257301737,"Cybertruck is apocalypse-level safe https://t.co/Qqr07H7r3Y","Feb 18, 10:47:30 PM EST"
-1892058868126999007,"https://t.co/VsOZC1CBin","Feb 18, 10:49:21 PM EST"
-1892061139451732383,"https://t.co/QWJUgvL9Hu","Feb 18, 10:58:23 PM EST"
-1892061353159881130,"https://t.co/DjgzOHBMRV","Feb 18, 10:59:14 PM EST"
-1892067828146065724,"Seriously 😂😂 https://t.co/cTPjmVEB5D","Feb 18, 11:24:57 PM EST"
-1892068421174452325,"RT @charliekirk11: What the world saw tonight between President Trump and Elon Musk is that the world’s most powerful man and the world’s r…","Feb 18, 11:27:19 PM EST"
-1892068485867405748,"RT @VigilantFox: NEW: Elon Musk delivers the PERFECT comeback to people complaining, “Nobody voted for Elon.”
-
-“Speaking of unelected, ther…","Feb 18, 11:27:34 PM EST"
-1892068579266163032,"RT @Scavino47: Behind scenes📸from the Roosevelt Room during the @realDonaldTrump @elonmusk interview with @FoxNews @SeanHannity @WhiteHouse…","Feb 18, 11:27:56 PM EST"
-1892073660871053509,"RT @teslaownersSV: Best friends
-
-Trump and Elon Musk https://t.co/AonsfWKBG4","Feb 18, 11:48:08 PM EST"
-1892074541997826407,"RT @AutismCapital: 🚨ELON MUSK: "In order to save taxpayer money it comes down to two things: competence and caring. When the President was…","Feb 18, 11:51:38 PM EST"
-1892074773468856371,"😂 https://t.co/7Jgs90aWEx","Feb 18, 11:52:33 PM EST"
-1892075249857937582,"Wait, why are American taxpayers covering 2/3 of the defense costs of Europe? That doesn’t make sense.
-
-Defense from who? https://t.co/Q4wbPdf3sr","Feb 18, 11:54:27 PM EST"
-1892075364383346825,"Yeah 🇺🇸 https://t.co/ZntT70x0p2","Feb 18, 11:54:54 PM EST"
-1892075779179102671,"Cool https://t.co/oL8k63C3sV","Feb 18, 11:56:33 PM EST"
-1892078287846817952,"RT @RapidResponse47: WATCH: @SecScottBessent opens the front door of the Department of the Treasury for the first time since March 2020.
-
-"…","Feb 19, 12:06:31 AM EST"
-1892079995184382296,"💯 https://t.co/GxcDbtEBqk","Feb 19, 12:13:18 AM EST"
-1892080237141258535,"RT @nikitabier: Game over. Grok won.
-
-If you’re an investor in OpenAI, you can report the tax loss to your accountant this year. https://t.…","Feb 19, 12:14:16 AM EST"
-1892080541479944267,"RT @NASAPersevere: Did you know: When I landed on Feb. 18, 2021, Mars and Earth were 127 million miles apart. Today, because of our unique…","Feb 19, 12:15:28 AM EST"
-1892081477606686863,"🎯 https://t.co/42MbK6bY6g","Feb 19, 12:19:12 AM EST"
-1892081677905613002,"RT @cremieuxrecueil: Huge.
-
-On the campaign trail, the Democrats accused Trump's campaign of wanting to ban IVF and he responded by saying…","Feb 19, 12:19:59 AM EST"
-1892082947819176065,"Yup https://t.co/hZWy6Bzxxo","Feb 19, 12:25:02 AM EST"
-1892083497373712489,"https://t.co/RQ6h7yL3p2","Feb 19, 12:27:13 AM EST"
-1892084012933362162,"RT @MarioNawfal: 🇺🇸 GROK 3: NEXT-LEVEL PHYSICS VISUALIZATION IN MOTION
-
-25 particles, each a different color, bounce inside a vacuum-sealed…","Feb 19, 12:29:16 AM EST"
-1892084152293343628,"RT @america: Treasury Secretary Scott Bessent on critics of @DOGE: “This kind of fearmongering doesn't help anybody — but it tells me that…","Feb 19, 12:29:49 AM EST"
-1892087111055974879,"Join us to make revolutionary video games using AI.
-
-The potential for a dynamically generated video game using AI is incredible! https://t.co/h5hCpr1Q1b","Feb 19, 12:41:35 AM EST"
-1892087393240404401,"This is existential https://t.co/QLO4n2VgSY","Feb 19, 12:42:42 AM EST"
-1892089843712225665,"Yes https://t.co/zkHWYvryOd","Feb 19, 12:52:26 AM EST"
-1892097147442491521,"🇺🇸🇺🇸 https://t.co/gaQlN24flZ","Feb 19, 1:21:28 AM EST"
-1892098276968501602,"RT @PressSec: President Trump’s bold leadership has created the first significant opening for peace talks between Ukraine and Russia.
-
-Pres…","Feb 19, 1:25:57 AM EST"
-1892101377037418628,"They are hiding the biggest fraud ever https://t.co/Iflxh6PGHp","Feb 19, 1:38:16 AM EST"
-1892102636121292940,"And it continues to improve https://t.co/BRlnhSuyi4","Feb 19, 1:43:16 AM EST"
-1892106203682972124,"RT @mrsrabbithole: It still blows my mind that illegal immigrants are counted in the census, and that count increases electoral votes. Real…","Feb 19, 1:57:27 AM EST"
-1892107039070990614,"RT @CrisGiardina: This kinda blew my mind. Grok 3 having both DeepSearch and Think is so powerful:
-
-I prompted DeepSearch to create a p5.js…","Feb 19, 2:00:46 AM EST"
-1892110030259761620,"RT @SpaceX: Falcon 9 lands off the coast of The Bahamas for the first time! Welcome to space @VisitTheBahamas! https://t.co/eidTYL5PYv","Feb 19, 2:12:39 AM EST"
-1892110638358421571,"We just can’t be one of those lame one-planet civilizations https://t.co/sEqNZoGbTb","Feb 19, 2:15:04 AM EST"
-1892111042659918250,"Make Video Games Great Again! https://t.co/kqjdSVXA59","Feb 19, 2:16:40 AM EST"
-1892111439206162536,"Given that we are supposed to be defending democracy, there should be democracy https://t.co/6w1BnG4h66","Feb 19, 2:18:15 AM EST"
-1892119587761565816,"💯 https://t.co/dXe7UnUE8w","Feb 19, 2:50:38 AM EST"
-1892121374107308396,"RT @MarioNawfal: 🇲🇽TESLA FSD HITS MEXICO—AUTONOMOUS DRIVING GOES GLOBAL
-
-Mexico gets a front-row seat to the future of self-driving tech!…","Feb 19, 2:57:44 AM EST"
-1892123794208108610,"🤨 https://t.co/OGJrNK1KuW","Feb 19, 3:07:21 AM EST"
-1892124972526514594,"🇺🇸🇺🇸 https://t.co/9Ul5Z2m0hT","Feb 19, 3:12:02 AM EST"
-1892130590847062277,"RT @MarioNawfal: 🚨🇳🇪NIGER TURNS TO STARLINK TO FIX INTERNET CRISIS
-
-With less than a third of Niger connected, the country is betting on St…","Feb 19, 3:34:21 AM EST"
-1892131542610194443,"10 Earth-Mars transfer windows are needed to make Mars self-sustaining, ideally at least 20.
-
-1/4 to 1/2 century. https://t.co/yFbMBJn2pS","Feb 19, 3:38:08 AM EST"
-1892136563498275260,"Grok will improve almost every day https://t.co/P9HWHzXg0n","Feb 19, 3:58:05 AM EST"
-1892140200458879371,"With our little 20 Watt meat computers https://t.co/FnBH3RVvrh","Feb 19, 4:12:32 AM EST"
-1892141024396386765,"https://t.co/6KZMPILbjk","Feb 19, 4:15:49 AM EST"
-1892141487258739179,"Yes https://t.co/vcRaF8c2w1","Feb 19, 4:17:39 AM EST"
-1892141683443126291,"True https://t.co/XdHl6PNvCn","Feb 19, 4:18:26 AM EST"
-1892142012721217778,"RT @teslaownersSV: Starbase is the first city to be a gateway to another planet. https://t.co/tZLMdQ0cu8","Feb 19, 4:19:44 AM EST"
-1892142342372577664,"RT @Rolandschoeman: In South Africa, white farmers are tortured and murdered in the most brutal ways imaginable. Instead of outrage, many j…","Feb 19, 4:21:03 AM EST"
-1892149043544965446,"Btw, Grok 2 is still being used to explain 𝕏 posts. That will update to Grok 3 in a day or two. https://t.co/iSv9CA3bjt","Feb 19, 4:47:41 AM EST"
-1892152755168432171,"Not bad. What could we improve? https://t.co/lDBK9sjGdR","Feb 19, 5:02:25 AM EST"
-1892153144294961252,"Hmm https://t.co/wOsT8o8HpQ","Feb 19, 5:03:58 AM EST"
-1892154444072047070,"You can now download Grok as its own dedicated app","Feb 19, 5:09:08 AM EST"
-1892154755297722503,"😂 https://t.co/BD8AnCBNgy","Feb 19, 5:10:22 AM EST"
-1892155047028379843,"RT @Muskstaycalm: I went to test drive the new Model Y and guess what? It didn’t cost me a thing except now I’m buying one! It’s sick! http…","Feb 19, 5:11:32 AM EST"
-1892155766573797417,"RT @AdamLowisz: @elonmusk The amount of violence and racism Black people commit against White people in Africa is unimaginable. We must uni…","Feb 19, 5:14:23 AM EST"
-1892155910182629383,"Sound argument https://t.co/3QUhYKLG7M","Feb 19, 5:14:58 AM EST"
-1892156672312828059,"Yes https://t.co/wG400qiq1K","Feb 19, 5:17:59 AM EST"
-1892159795974537345,"I had a similar experience.
-
-Covid itself was nothing. I got the OG Wuhan strain before vaccines were out.
-
-J&J vaccine hurt my arm, but otherwise nothing.
-
-But the mRNA booster hit extremely hard. Massive chest pain. Felt like I got hit by a truck","Feb 19, 5:30:24 AM EST"
-1892159954326286411,"RT @teslaownersSV: Grok 3 images are 🤯 https://t.co/Neps3nMNnA","Feb 19, 5:31:02 AM EST"
-1892160342051922005,"Grok will also be offered as a standalone application for the MacOS and Windows","Feb 19, 5:32:34 AM EST"
-1892160676803518612,"Thanks for subscribing! https://t.co/hB53leAAf1","Feb 19, 5:33:54 AM EST"
-1892160979733041399,"RT @teslaownersSV: 𝕏 has the most unregretted minutes. It’s the place you can find out what’s really going on.
- https://t.co/hpEGfPvxsO","Feb 19, 5:35:06 AM EST"
-1892161729749979440,"RT @cb_doge: Grok 3 is breaking the internet. 🔥 https://t.co/No6SGINyl5","Feb 19, 5:38:05 AM EST"
-1892165117447405772,"RT @MarioNawfal: WHY GROK 3 IMPROVES EVERY DAY
-
-It’s not shackled to a static knowledge base like older AI models.
-
-Its architecture thriv…","Feb 19, 5:51:33 AM EST"
-1892166193152135229,"Try our new Grok 3 image generator https://t.co/Qos4npiVHg","Feb 19, 5:55:49 AM EST"
-1892166322605228439,"RT @benhylak: the @xai iOS app is so clean.
-
-everything is butter smooth, beautiful, no frame rate drops, etc.","Feb 19, 5:56:20 AM EST"
-1892223616592290002,"RT @DataRepublican: 🔥 MAKE 1 SSN = 1 PERSON 🔥
-
-Amidst all the discussion of why it is so important that the SSN database is such a mess, th…","Feb 19, 9:44:00 AM EST"
-1892227707393491049,"The American people realized the truth
-
-https://t.co/O4fJ6aXw98","Feb 19, 10:00:15 AM EST"
-1892229610508550603,"RT @SpeakerJohnson: .@realDonaldTrump is right!
-
-House Republicans are working to deliver President Trump’s FULL agenda - not just a small…","Feb 19, 10:07:49 AM EST"
-1892235089934774634,"It’s that easy https://t.co/zoJ6kG5tyX","Feb 19, 10:29:36 AM EST"
-1892244330825290220,"Fidias is worth listening to https://t.co/krqu4GI66f","Feb 19, 11:06:19 AM EST"
-1892284535045316714,"RT @realDonaldTrump: https://t.co/PMcrOwXejI","Feb 19, 1:46:04 PM EST"
-1892285034221994032,"RT @KanekoaTheGreat: NEW: Zelensky claimed a 58% approval rating while slamming Trump for living in a Russian "disinformation space."
-
-Trum…","Feb 19, 1:48:03 PM EST"
-1892285692933234775,"More and more breakthroughs with quantum computing … https://t.co/rF4Hl9EQm0","Feb 19, 1:50:40 PM EST"
-1892286136757694899,"RT @charliekirk11: Delta CEO Ed Bastian leaves CBS's Gayle King in a state of shock after he defends the Trump administration's planned cha…","Feb 19, 1:52:26 PM EST"
-1892287484987367437,"The House Dems are trying to hide the biggest fraud in history https://t.co/71fu4xpdke","Feb 19, 1:57:48 PM EST"
-1892287755012427776,"RT @america: The American people support the party of common sense.
-
- https://t.co/hcUkDL4Axi","Feb 19, 1:58:52 PM EST"
-1892288041894465657,"That means they’re eligible for drone strikes https://t.co/aWxKkeAinG","Feb 19, 2:00:00 PM EST"
-1892288321289601082,"Reality is indistinguishable from parody https://t.co/AB6bgQ9bvH","Feb 19, 2:01:07 PM EST"
-1892288657538560327,"RT @DC_Draino: Want to know why Trump called Zelensky a Dictator? Here are the FACTS:
-
-He’s in year 6 of his 5 year term
-
-Declared martial…","Feb 19, 2:02:27 PM EST"
-1892291569404751955,"So cruel 😂 https://t.co/xzNsTmQ5M5","Feb 19, 2:14:01 PM EST"
-1892292753314181582,"Zelensky cannot claim to represent the will of the people of Ukraine unless he restores freedom of the press and stops canceling elections! https://t.co/bg2SEJgT47","Feb 19, 2:18:44 PM EST"
-1892298657375928613,"Grok 3 images https://t.co/O8bzZWEeT9","Feb 19, 2:42:11 PM EST"
-1892299012696342539,"RT @WallStreetMav: Grok 3 has replaced Google for me.
-
-Anyone else?","Feb 19, 2:43:36 PM EST"
-1892301436093952316,"RT @MarioNawfal: 🚨🇺🇸SOCIAL SECURITY IS FUNDING THE UNDEAD | DOGE IS LOOKING FOR ANSWERS
-
-Elon exposed a Social Security disaster—18.9 milli…","Feb 19, 2:53:14 PM EST"
-1892301934461071851,"RT @ScottJenningsKY: When narrative runs into reality","Feb 19, 2:55:13 PM EST"
-1892302304532983874,"RT @stillgray: BREAKING: JD Vance warns Zelensky that “badmouthing” Trump is an incredibly bad move and that Trump’s remarks were NOT made…","Feb 19, 2:56:41 PM EST"
-1892303779057311762,"https://t.co/F7rmvWc2bn","Feb 19, 3:02:32 PM EST"
-1892303801148739664,"https://t.co/SZIEkUjUZC","Feb 19, 3:02:38 PM EST"
-1892304016438161614,"RT @catturd2: The loudest people crying about DOGE are the most guilty.","Feb 19, 3:03:29 PM EST"
-1892304557205581898,"RT @teslaownersSV: Google search is dead to me now.
-
-Grok 3 helps me with everything. It’s crazy to see how fast Grok trained.","Feb 19, 3:05:38 PM EST"
-1892312998435287417,"RT @DefiyantlyFree: Trump was very open about his agenda during the campaign. He told us he would dismantle the bureaucracy, he told us he…","Feb 19, 3:39:10 PM EST"
-1892323473013289267,"RT @matiroy: Grok DeepSearch is probably the scariest, smartest, and most useful improvement I've seen since LLMs are a thing","Feb 19, 4:20:48 PM EST"
-1892323836265136221,"https://t.co/4sSTV8xtof","Feb 19, 4:22:14 PM EST"
-1892323946495615293,"😂 https://t.co/xeG6t9lNr6","Feb 19, 4:22:41 PM EST"
-1892324139362304350,"🫡 🇺🇸 https://t.co/IJK7yV0GsF","Feb 19, 4:23:27 PM EST"
-1892324383173099791,"Good question https://t.co/bPut87CF5X","Feb 19, 4:24:25 PM EST"
-1892324726195789840,"RT @marcorubio: From @StateDept today https://t.co/lxUvGWTaDR","Feb 19, 4:25:47 PM EST"
-1892324956135989334,"Good https://t.co/kbw2SLFSbf","Feb 19, 4:26:41 PM EST"
-1892373186047586726,"RT @mckaywrigley: My thoughts on Grok 3 after 24hrs:
-
-- it’s *really* good for code
-- context window is HUGE
-- utilizes context extremely w…","Feb 19, 7:38:20 PM EST"
-1892410460441309375,"Cool https://t.co/Tn4dThL8LE","Feb 19, 10:06:27 PM EST"
-1892413385804792307,"There ARE good people in the government who want to eliminate fraud & waste.
-
-Amazingly, Leland was fired by Social Security Administration upper management for helping @DOGE find taxpayer savings. Can you believe that??
-
-Thanks to President Trump, Le","Feb 19, 10:18:05 PM EST"
-1892414492568428876,"RT @DOGE: Schools have spent nearly $200B of COVID-Relief funds with little oversight or impact on students. $393K to rent out a Major Leag…","Feb 19, 10:22:29 PM EST"
-1892415909169336367,"Yeah https://t.co/4d5T5HHBNt","Feb 19, 10:28:06 PM EST"
-1892416182487056773,"RT @AutismCapital: 🚨TRUMP: "We're considering giving 20% of the DOGE savings to American citizens and 20% to paying down the debt. By doing…","Feb 19, 10:29:11 PM EST"
-1892416395490504753,"Nice https://t.co/nwHqko1F9V","Feb 19, 10:30:02 PM EST"
-1892416759082131733,"So many scams stealing your hard-earned taxpayer money! https://t.co/Z1eqe44Ayt","Feb 19, 10:31:29 PM EST"
-1892417111479238898,"For a short time, Grok 3 is available for free to all! https://t.co/r5iLXi2pBm","Feb 19, 10:32:53 PM EST"
-1892419484893241548,"RT @iam_smx: Elon Musk arrived at the White House on Marine One, carrying an Air Force One plush toy. https://t.co/3egkE7wKjn","Feb 19, 10:42:19 PM EST"
-1892421967992549514,"RT @cb_doge: ELON MUSK: "What's better than saying trust me is just full TRANSPARENCY. That's what we are doing with the DOGE.
-
-Just go to…","Feb 19, 10:52:11 PM EST"
-1892422930274881918,"A livestream of Fort Knox would be 🔥🔥
- https://t.co/hFJXMnEjvy","Feb 19, 10:56:00 PM EST"
-1892423618434314706,"Confirm Kash! https://t.co/ix7rFZhHOi","Feb 19, 10:58:44 PM EST"
-1892423985263964595,"🇺🇸🇺🇸 https://t.co/OviRPiV1Yt","Feb 19, 11:00:12 PM EST"
-1892424621577666689,"Good question https://t.co/b7ll8njaI6","Feb 19, 11:02:43 PM EST"
-1892424781774942391,"RT @MarioNawfal: 🚨🇺🇸 DOGE SUBCOMMITTEE EXPOSES BILLIONS IN FRAUD—NEW REFORMS UNDERWAY
-
-The House Subcommittee on Delivering Government Effi…","Feb 19, 11:03:22 PM EST"
-1892425272294543674,"So crazy! https://t.co/b0w5hNgmoB","Feb 19, 11:05:19 PM EST"
-1892425653447688353,"He did this while kids are dying in trenches on the war front https://t.co/NPhDz3cP46","Feb 19, 11:06:50 PM EST"
-1892426076766220367,"RT @DiedSuddenly_: They are finally admitting "Long COVID" is just vaccine injury https://t.co/BgSe7LA9W6","Feb 19, 11:08:30 PM EST"
-1892437046121173069,"RT @BasedMikeLee: Trump’s right
-
-The Constitution puts Congress in charge of DC
-
-Congress has delegated that authority to the DC governmen…","Feb 19, 11:52:06 PM EST"
-1892437218263716165,"Wow https://t.co/9llXPWatkZ","Feb 19, 11:52:47 PM EST"
-1892437482211332283,"RT @MarioNawfal: 🇺🇸DOGE SUBCOMMITTEE EXPOSES BILLIONS IN FRAUD—NEW REFORMS UNDERWAY
-
-A House subcommittee has revealed up to $521 billion i…","Feb 19, 11:53:50 PM EST"
-1892437583231123883,"https://t.co/MVOmx9lT72","Feb 19, 11:54:14 PM EST"
-1892437857274339613,"🤯 https://t.co/ILp9GTx94f","Feb 19, 11:55:19 PM EST"
-1892443237412913488,"RT @DOGE: Incredible job by @USTreasury in saving the American taxpayers $1.9 billion. https://t.co/HQ7k4MCjRN","Feb 20, 12:16:42 AM EST"
-1892443514312491239,"https://t.co/gA9MwklW7H","Feb 20, 12:17:48 AM EST"
-1892443739949330434,"https://t.co/jY06TRlp4M","Feb 20, 12:18:42 AM EST"
-1892444383628149189,"Cool https://t.co/K42Yk3wgk1","Feb 20, 12:21:15 AM EST"
-1892445105690210366,"RT @wmorrill3: All the armchair experts claimed the Cybertruck has no crumple zone and I get it, the proportions seem impossible. It was a…","Feb 20, 12:24:07 AM EST"
-1892447227559227882,"RT @SpaceX: Falcon 9 aboard the Just Read the Instructions droneship after successfully completing our first international landing off the…","Feb 20, 12:32:33 AM EST"
-1892447982240346336,"RT @SenJohnKennedy: The money that pays for illegal immigrants’ benefits didn’t fall from Heaven.
-
-It came out of Americans’ pockets.
-
-Unde…","Feb 20, 12:35:33 AM EST"
-1892451011249213908,"RT @catturd2: Any Republican coming out against DOGE I’ll assume is in on the corruption.
-
-They’re making millions somehow. It’s time to fi…","Feb 20, 12:47:35 AM EST"
-1892452789042757709,"This is without voice mode and many other features coming out in the next few days https://t.co/yofueZ7bmA","Feb 20, 12:54:39 AM EST"
-1892453176072134800,"https://t.co/YDlZOwLE8t","Feb 20, 12:56:11 AM EST"
-1892563894096302189,"RT @levie: Grok 3 introduced a very compelling Thinking UX. Super elegant approach for showing reasoning in real-time, and gives the user a…","Feb 20, 8:16:09 AM EST"
-1892565056375697768,"RT @AlexFinnX: This is WILD
-
-I just one shot prompted an entire Grand Theft Auto game using Grok 3
-
-Deepsearch and Think are incredibly und…","Feb 20, 8:20:46 AM EST"
-1892565164555174046,"RT @t_blom: Grok 3 feels like talking with an adult. Claude is still lobotimized. https://t.co/ApSseLuKXK","Feb 20, 8:21:12 AM EST"
-1892565514309788124,"RT @teslaownersSV: “The great thing with Trump is that we have a real individual who is not beholden to anyone, and that's what scares the…","Feb 20, 8:22:35 AM EST"
-1892566596402495653,"RT @shellenberger: For weeks the media have insisted that Trump and Elon were lying about rampant government fraud, waste, or abuse. Finall…","Feb 20, 8:26:53 AM EST"
-1892566969758457999,"RT @Jakub8632: @nikitabier In UK 🇬🇧 https://t.co/UjlzN5s892","Feb 20, 8:28:22 AM EST"
-1892567553655865732,"Grok has real-time knowledge. Big difference. https://t.co/RrJP9FiDgQ","Feb 20, 8:30:41 AM EST"
-1892568307074527689,"Wait, Biden wasn’t in control!? No way 😂 https://t.co/v1QaFyrSUG","Feb 20, 8:33:41 AM EST"
-1892568673308614877,"RT @teslaownersSV: Elon Musk: What should I do?
-
-𝕏: Save 🇺🇸 and help Trump.
- https://t.co/qfWlfXLRcJ","Feb 20, 8:35:08 AM EST"
-1892568753054859635,"RT @MarioNawfal: GROK 3 - SUPERINTELLIGENCE IS CLOSER THAN EVER
-
-With the speed at which Grok 3 was developed, superintelligence - AI that…","Feb 20, 8:35:27 AM EST"
-1892569121457340656,"It is the only way https://t.co/ABKchm9gTq","Feb 20, 8:36:55 AM EST"
-1892569475863507352,"RT @DeryaTR_: I must say, I’m starting to like this Grok 3 guy!☺️
-
-One thing I noticed today is that it truly seems to understand (Grok) w…","Feb 20, 8:38:19 AM EST"
-1892570245526671472,"RT @davidasinclair: Just used it to solve a key scientific problem. It is the smartest 👏","Feb 20, 8:41:23 AM EST"
-1892570783555219672,"Yes https://t.co/voT9UlJhOf","Feb 20, 8:43:31 AM EST"
-1892573428437184559,"VP Vance is right.
-
-NF offers no ACTUAL solution, besides continue the carnage that kills men every day for almost no change in borders.
-
-This conflict is heartless and cruel – a meat grinder feeding a money graft machine. https://t.co/ePmMA3DuiQ","Feb 20, 8:54:02 AM EST"
-1892574040264520017,"Grok is #1!
-
-Our incredible voice mode is what will sustain the lead. https://t.co/GnPZ98PdBh","Feb 20, 8:56:28 AM EST"
-1892575259670266171,"That was a wake-up call. Tyranny was closer than we thought. https://t.co/rePGAjiSzu","Feb 20, 9:01:18 AM EST"
-1892577812621496513,"Cool https://t.co/Sh0NVF8mld","Feb 20, 9:11:27 AM EST"
-1892578053135425969,"Try Grok voice mode and change the personality to whatever you want.
-
-It’s awesome 😎","Feb 20, 9:12:24 AM EST"
-1892578979762074052,"You can improve the graphics just by asking Grok to do so btw.
-
-We’re starting work on integrating dynamically-created high-resolution graphics, so that you can make photo-realistic games that evolve differently for every player.
-
-Join the @xAI team! ht","Feb 20, 9:16:05 AM EST"
-1892580165789667420,"Legacy media are mostly just puppets, with massive influence by the state.
-
-The amount of money that @DOGE is discovering going from government to fake “independent” media is shocking. https://t.co/lSZGavFUEr","Feb 20, 9:20:48 AM EST"
-1892581387879776494,"The most out-of-the-box thinking is realizing you’re trapped in a box created by others.
-
-Only then can you escape the box to another box.
-
-Repeat. https://t.co/yjhFAYfemi","Feb 20, 9:25:39 AM EST"
-1892583762929549582,"True https://t.co/yFizkfRxXw","Feb 20, 9:35:06 AM EST"
-1892583900263612823,"Fraudsters complain the loudest when you take away their fraud https://t.co/Vy8iUC9XA5","Feb 20, 9:35:38 AM EST"
-1892585196903436461,"RT @charliekirk11: Alexander Hamilton was an aide-de-camp for General George Washington at 20.
-
-At 24, he commanded the attack that won th…","Feb 20, 9:40:48 AM EST"
-1892587620590395728,"Exactly https://t.co/ZamLYZD2An","Feb 20, 9:50:25 AM EST"
-1892589525081133259,"This guy is a tyrant, not a judge https://t.co/ghE9X4W5G3","Feb 20, 9:58:00 AM EST"
-1892589840023027868,"Legacy media lies relentlessly https://t.co/Wi7xsBltDU","Feb 20, 9:59:15 AM EST"
-1892591435582472214,"Yup https://t.co/xxUSV3mMr6","Feb 20, 10:05:35 AM EST"
-1892591714994421972,"Cool https://t.co/NwpiKlQiOa","Feb 20, 10:06:42 AM EST"
-1892592264469258354,"NPCs do as they’re programmed to do https://t.co/FmZn1He4uy","Feb 20, 10:08:53 AM EST"
-1892606754413797813,"Thanks, Michael! https://t.co/p6X4MYV6tv","Feb 20, 11:06:27 AM EST"
-1892608028467208285,"RT @AntiWokeMemes: @libsoftiktok That's because CNN are proven liars 👇 https://t.co/Blu6Dc7vyL","Feb 20, 11:11:31 AM EST"
-1892608077469229476,"RT @RepOgles: 🔥Confirm Kash so he can:
--Fire corrupt feds
--Defend good cops
--Wage war on Chinese fentanyl
--Restore transparency
--Assist…","Feb 20, 11:11:43 AM EST"
-1892608627233448281,"Never forget https://t.co/VZ3B5nCJco","Feb 20, 11:13:54 AM EST"
-1892608814005821890,"Sick burn 🔥🤣 https://t.co/88ub8y3en2","Feb 20, 11:14:38 AM EST"
-1892610019704627302,"Politicians & media encouraging violence is not ok.
-
-That’s what resulted in the President being shot. https://t.co/EJPLXNleky","Feb 20, 11:19:26 AM EST"
-1892610099107017082,"https://t.co/WXHg9shmux","Feb 20, 11:19:45 AM EST"
-1892611059132854739,"Yeah! https://t.co/81j3U00b2d","Feb 20, 11:23:34 AM EST"
-1892613981426102465,"Unfortunately, @CommunityNotes is increasingly being gamed by governments & legacy media.
-
-Working to fix this …
-
-It should be utterly obvious that a Zelensky-controlled poll about his OWN approval is not credible!!
-
-If Zelensky was actually loved by","Feb 20, 11:35:10 AM EST"
-1892614164562010284,"Yes!! 🇺🇸🇺🇸
- https://t.co/BdWEyg1nYc","Feb 20, 11:35:54 AM EST"
-1892614283969675554,"RT @SawyerMerritt: NEWS: SpaceX is currently targeting February 26th (next week) for its eighth Starship test flight, according to a new FA…","Feb 20, 11:36:23 AM EST"
-1892614990781165883,"Wow, the public outrage is high 🤣🤣 https://t.co/EUpTEELxbP","Feb 20, 11:39:11 AM EST"
-1892615201297441102,"RT @charliekirk11: VICE PRESIDENT JD VANCE: "Peace is in the interest of the American people, and he's going to fight for it for the remain…","Feb 20, 11:40:01 AM EST"
-1892616876611486179,"https://t.co/RpCTIUJAgW","Feb 20, 11:46:41 AM EST"
-1892616934148972757,"RT @charliekirk11: VICE PRESIDENT JD VANCE: "We cannot rebuild Western civilization. We cannot rebuild the United States of America or Euro…","Feb 20, 11:46:54 AM EST"
-1892621273064181825,"RT @BasedBeffJezos: Grok 3 is genuinely cracked at physics and math.
-
-Useful research partner for novel algorithms even.","Feb 20, 12:04:09 PM EST"
-1892621691060093254,"It is time to begin preparations for deorbiting the @Space_Station.
-
-It has served its purpose. There is very little incremental utility.
-
-Let’s go to Mars.","Feb 20, 12:05:49 PM EST"
-1892628076057485555,"Cool https://t.co/wPmRwKsp2P","Feb 20, 12:31:11 PM EST"
-1892637595441488346,"RT @AutismCapital: The left genuinely didnt anticipate the Trump presidency. They tried *literally* every single tool they had at their dis…","Feb 20, 1:09:00 PM EST"
-1892638036547997925,"Adam Schiff is a criminal https://t.co/f2tbVUcsXg","Feb 20, 1:10:46 PM EST"
-1892638283328307246,"RT @trussliz: .@JDVance is right.
-
-Europe’s governments – especially Britain’s – are treating George Orwell’s 1984 like an instruction manu…","Feb 20, 1:11:44 PM EST"
-1892638411351048266,"!! https://t.co/RFwTPUUL7I","Feb 20, 1:12:15 PM EST"
-1892686833235984825,"RT @BasedBeffJezos: Using Grok as my main AI all day today.
-
-Haven't felt the need to switch between any other provider so far.","Feb 20, 4:24:40 PM EST"
-1892686993437446535,"Congratulations! https://t.co/JcdfyWwZP5","Feb 20, 4:25:18 PM EST"
-1892687470191390990,"Shifting people from low to negative productivity jobs in the government sector to high productivity roles in the commercial sector will greatly improve the average standard of living https://t.co/0OxMmzhrvF","Feb 20, 4:27:11 PM EST"
-1892692216377713040,"Try Grok voice in unhinged mode 😂 https://t.co/Agka0LF8CA","Feb 20, 4:46:03 PM EST"
-1892692316759925097,"RT @keirp1: Btw, the chain of thought in the "thinking" mode for Grok 3 is completely open. No summarizers or obfuscation. This is really i…","Feb 20, 4:46:27 PM EST"
-1892692792729596332,"RT @untitled01ipynb: this is it. this is the best news ai in the world and they have a moat
-
- https://t.co/wqKkmYtnjS https://t.co/RHEvBCe…","Feb 20, 4:48:20 PM EST"
-1892693965998030876,"RT @themarketswork: What was impossible in 2017 has become reality in 2025
-
-Trump's All-Star Cabinet:
-
-Pam Bondi - Attorney General
-Marco R…","Feb 20, 4:53:00 PM EST"
-1892694032700014836,"RT @cb_doge: 🚨 President Trump on DOGE:
-
-"You've been watching DOGE where we have found billions, tens of billions of dollars of fraud, was…","Feb 20, 4:53:16 PM EST"
-1892694198886748314,"Massive EU censorship!! https://t.co/ihaY14Eokv","Feb 20, 4:53:56 PM EST"
-1892718221209321858,"RT @nicksortor: 🚨 LMAO! Elon Musk just paraded around the stage at CPAC with a chainsaw given to him by Javier Milei 🤣
-
-"THIS IS THE CHAINS…","Feb 20, 6:29:23 PM EST"
-1892718486855582133,"🔥😂 https://t.co/SZ1GiN5x9A","Feb 20, 6:30:26 PM EST"
-1892719260729737597,"https://t.co/xmDmGONQg1","Feb 20, 6:33:31 PM EST"
-1892719659255832784,"Legalize comedy
- https://t.co/uKr6fiRI3K","Feb 20, 6:35:06 PM EST"
-1892720331183288713,"RT @cremieuxrecueil: The biggest news today should probably be about one of the Executive Orders from yesterday evening.
-
-Trust me, it's bi…","Feb 20, 6:37:46 PM EST"
-1892720582724071689,"RT @cb_doge: I AM BECOME MEME
-
-I AM LIVING THE MEME https://t.co/R4d3CrDYRs","Feb 20, 6:38:46 PM EST"
-1892721408670630239,"This is a real picture https://t.co/HFSxrpbiju","Feb 20, 6:42:03 PM EST"
-1892721601302376628,"😂 https://t.co/yIvAQcRkaD","Feb 20, 6:42:49 PM EST"
-1892724027187138901,"Yup 😂 https://t.co/fJakxWhDZH","Feb 20, 6:52:27 PM EST"
-1892776684530577808,"RT @SawyerMerritt: NEWS: airBaltic, the Latvian airline, has made history by becoming the first European airline to offer free high-speed i…","Feb 20, 10:21:42 PM EST"
-1892777797010981163,"Wow
- https://t.co/tcXzcVDImk","Feb 20, 10:26:07 PM EST"
-1892778059775811973,"RT @AutismCapital: 🚨NEW: Elon Musk says he is conscious about the threats on his life and wants to ramp up his security detail
-
-ELON MUSK:…","Feb 20, 10:27:10 PM EST"
-1892778627160322446,"[Teenage Mutant] Ninja SEALs!! https://t.co/CNna4Ls6C2","Feb 20, 10:29:25 PM EST"
-1892779555548443116,"The ratings on a live broadcast of Fort Knox would be 🔥🔥 https://t.co/wKtKS7zHlt","Feb 20, 10:33:06 PM EST"
-1892779758154359000,"🇺🇸🇺🇸 https://t.co/Ro2F1Htyea","Feb 20, 10:33:55 PM EST"
-1892780024689750274,"Biggest scam ever! https://t.co/NEui05trWn","Feb 20, 10:34:58 PM EST"
-1892780262435561551,"RT @ElonClipsX: NEW ELON INTERVIEW — CPAC 2025
-
-Here's the full interview with Elon Musk conducted by Rob Schmitt a few minutes ago at CPAC…","Feb 20, 10:35:55 PM EST"
-1892781341592391870,"https://t.co/jrRY4oBNyq","Feb 20, 10:40:12 PM EST"
-1892781703317389345,"I am become meme https://t.co/lp5METf8BG","Feb 20, 10:41:38 PM EST"
-1892781832799683020,"RT @Massimus27: @cb_doge Living the American Meme 🇺🇸 https://t.co/2ANSxHYAsc","Feb 20, 10:42:09 PM EST"
-1892787840104186238,"I mean … https://t.co/tTnywc64dH","Feb 20, 11:06:02 PM EST"
-1892788020039860406,"The Spoils of Battle!! https://t.co/lxydLUkLUQ","Feb 20, 11:06:44 PM EST"
-1892788242442809561,"RT @SecRollins: Live update from our @DOGE_USDA team’s meeting tonight 👇
-
-Look what we just found (and cancelled!): $324,671 grant for “Inc…","Feb 20, 11:07:37 PM EST"
-1892789082423537805,"RT @alx: The last thing bureaucracy sees: https://t.co/odzlTsiXR7","Feb 20, 11:10:58 PM EST"
-1892789359838921039,"https://t.co/KpLS02w1f3","Feb 20, 11:12:04 PM EST"
-1892790020093698394,"🔥🔥 https://t.co/G58by7qUm0","Feb 20, 11:14:41 PM EST"
-1892791127796850971,"RT @RapidResponse47: .@POTUS: "We're going to go to Fort Knox — the fabled Fort Knox — to make sure the gold is there." https://t.co/nFKlTD…","Feb 20, 11:19:05 PM EST"
-1892793883303563497,"RT @RobertBluey: Here’s why I’m grateful for @elonmusk and @DOGE:
-
-After years of empty promises from politicians, we finally have some acc…","Feb 20, 11:30:02 PM EST"
-1892794677499208105,"RT @MarioNawfal: 🇺🇸ELON: DOGE WILL SAVE MEDICARE AND SOCIAL SECURITY
-
-“The actions that we're taking [with DOGE] with the support of the Pr…","Feb 20, 11:33:12 PM EST"
-1892798630462959710,"💯 https://t.co/JJNe8jLzQP","Feb 20, 11:48:54 PM EST"
-1892801364251525382,"Cool https://t.co/Vf1Gzw7Ibi","Feb 20, 11:59:46 PM EST"
-1892803201474118031,"Now, it’s just a matter of scaling up the graphics resolution for Grok to do better than AAA games.
-
-Grok 3 is already capable of vastly better NPC dialog. https://t.co/Fcf4k8GP88","Feb 21, 12:07:04 AM EST"
-1892805170758566071,"🤨 https://t.co/ALuiPbYXLC","Feb 21, 12:14:53 AM EST"
-1892809915061719133,"RT @MarioNawfal: 🇺🇸 DEMS’ OPEN BORDERS STRATEGY: A CLEAR PUSH TO IMPORT VOTERS
-
-Democrats in cities like San Francisco, D.C., and New York…","Feb 21, 12:33:45 AM EST"
-1892809997790085433,"RT @TimSweeneyEpic: Wow!","Feb 21, 12:34:04 AM EST"
-1892818147834536253,"This is cool https://t.co/UfrcJV4qPE","Feb 21, 1:06:27 AM EST"
-1892818713042145583,"RT @RandPaul: The Senate is voting on my amendment to cut spending by at least $1.5 trillion.
-
-We voted for fiscal responsibility when we e…","Feb 21, 1:08:42 AM EST"
-1892819122121048407,"Interesting https://t.co/AUnXZ1T888","Feb 21, 1:10:20 AM EST"
-1892825943133040756,"RT @Inevitablewest: 🚨BREAKING: Lizz Truss announces plans to create mega ‘free speech’ media network for Europe and the U.S:
-
-“It will take…","Feb 21, 1:37:26 AM EST"
-1892826075870220359,"RT @DOGE: Today’s contract update:
-
-95 cancellations with savings of ~$115M (ceiling value of ~$235M), including two USDA contracts:
-- $2…","Feb 21, 1:37:58 AM EST"
-1892826259572269116,"😂 https://t.co/b9BOGmhPOd","Feb 21, 1:38:41 AM EST"
-1892826443769380973,"Same 😂 https://t.co/Pai3NRqg7g","Feb 21, 1:39:25 AM EST"
-1892827127805882522,"RT @Jim_Jordan: Kash Patel is the right man at the right time to lead the FBI. After years of weaponization and abuses under the Obama and…","Feb 21, 1:42:08 AM EST"
-1892827208076399029,"RT @EvelinaHahne: Sweden might be the worst affected country when it comes to immigration. We are used to being known for our great talent…","Feb 21, 1:42:28 AM EST"
-1892827384841204064,"RT @Rothmus: 🎯 https://t.co/MD4nDN2E6M","Feb 21, 1:43:10 AM EST"
-1892827691100860798,"RT @DOGE: The @USGSA sold the old Webster School building in DC for $4,138,000. The building was acquired via condemnation in 2003, remaine…","Feb 21, 1:44:23 AM EST"
-1892829593599455438,"Isn’t it strange that they never get doxxed? 🤔 https://t.co/JEmywLJQHz","Feb 21, 1:51:56 AM EST"
-1892829692203274262,"👍 https://t.co/Jsis2XOFUO","Feb 21, 1:52:20 AM EST"
-1892829913075405210,"🫡 🇺🇸 https://t.co/awcuZeCDuF","Feb 21, 1:53:13 AM EST"
-1892832032402632946,"RT @ShaanVP: wow. Grok is actually very, very good.","Feb 21, 2:01:38 AM EST"
-1892832753625788751,"Legacy media lies relentlessly https://t.co/LS4EGnZpWQ","Feb 21, 2:04:30 AM EST"
-1892837344648008176,"Yup https://t.co/IE2aR9ppgx","Feb 21, 2:22:44 AM EST"
-1892837524784992268,"RT @MarioNawfal: NGOs: ARE THEY JUST MONEY-MAKING SCAMS?
-
-From Delhi to Brussels to California, courts and governments are cracking down on…","Feb 21, 2:23:27 AM EST"
-1892837788870910419,"🍿🍿 https://t.co/0OyTAmyzsh","Feb 21, 2:24:30 AM EST"
-1892838528733642803,"RT @SecDuffy: Over a decade and $16B of taxpayer dollars wasted with zero results on this rail project. If protestors want to shout at some…","Feb 21, 2:27:27 AM EST"
-1892840058555691152,"https://t.co/TKnjgsbQ0c","Feb 21, 2:33:31 AM EST"
-1892840768177311899,"RT @cb_doge: I don't use Google anymore.
-
-I now use Grok 3. 😎","Feb 21, 2:36:21 AM EST"
-1892841032410075520,"Hypersonic https://t.co/CDttMBJ7SI","Feb 21, 2:37:24 AM EST"
-1892841251231215630,"AP stands for Associated Propaganda https://t.co/GTwl2yqulR","Feb 21, 2:38:16 AM EST"
-1892841424208396450,"Absolutely https://t.co/dkV0eha5y7","Feb 21, 2:38:57 AM EST"
-1892841546577215732,"Fraudsters complain the loudest https://t.co/NUQ2xeZyp3","Feb 21, 2:39:26 AM EST"
-1892841759861850491,"It is https://t.co/Asp8W9WopS","Feb 21, 2:40:17 AM EST"
-1892842077941100748,"RT @bennyjohnson: 🚨JD Vance goes BEAST-MODE on Zelenskyy trying to sabotage a Trump Peace deal:
-
-“His country wouldn’t exist without the ge…","Feb 21, 2:41:33 AM EST"
-1892842450370142405,"Restoring solvency to America is essential to protect Social Security & medical care https://t.co/EyInyZ1RnW","Feb 21, 2:43:02 AM EST"
-1892967149733302334,"RT @C__Herridge: EXCLUSIVE: @SECRubio
-
-Trump, Putin meeting depends on progress to end Ukraine war
-
-“...when that meeting happens will larg…","Feb 21, 10:58:32 AM EST"
-1892967289089114200,"Wow https://t.co/NG8MbwBOW7","Feb 21, 10:59:06 AM EST"
-1892968925358416136,"RT @charliekirk11: Trump’s border wins continue mounting:
-
-- Illegal border crossings are down 94%.
-- Trump has rolled back TPS for Haitian…","Feb 21, 11:05:36 AM EST"
-1892970327904342216,"The Biden administration launched a massive multi-year lawsuit against SpaceX for not hiring asylum seekers, despite the fact that SpaceX is legally BARRED from hiring non-permanent residents under ITAR, because rockets are an advanced weapons technology.","Feb 21, 11:11:10 AM EST"
-1892972719412576466,"Well said https://t.co/p7YEYyjg6C","Feb 21, 11:20:40 AM EST"
-1892973059188908079,"This would have happened in America if President @realDonaldTrump had not won https://t.co/RMTueGaCaY","Feb 21, 11:22:01 AM EST"
-1892974622049488952,"Grok 3 can make any arcade game you can think of.
-
-This year, we will add the ability to apply high resolution imagery. I think we’ve got a shot at making a AAA game sometime next year.
-
-Join us to make it happen! https://t.co/3neMzJCS1k","Feb 21, 11:28:14 AM EST"
-1892978833025876158,"Excessive laws and regulations result in almost everything being illegal, enabling the government to engage in selective enforcement.
-
-They can then take any company down for POLITICAL reasons, aka lawfare. https://t.co/tbpR7l4hMZ","Feb 21, 11:44:58 AM EST"
-1892980767271329833,"There have been two years of death in trenches for no meaningful changes in the borders. Hundreds of billions of dollars have been spent, with much it going to feed corruption.
-
-The fundamental moral question is this:
-
-How many more years of death in tr","Feb 21, 11:52:39 AM EST"
-1892980884178886856,"True https://t.co/eKGpfUXPCx","Feb 21, 11:53:07 AM EST"
-1892981006656852419,"Absolutely https://t.co/4EdvItmLQA","Feb 21, 11:53:36 AM EST"
-1892982785419129064,"https://t.co/y4pJQjzwGA","Feb 21, 12:00:40 PM EST"
-1892985440828821952,"https://t.co/96Fjp7O3RM","Feb 21, 12:11:13 PM EST"
-1892986133274874181,"My Irish friends are awesome! 🇮🇪 https://t.co/1Y3z5UPnYq","Feb 21, 12:13:58 PM EST"
-1892987342639469043,"RT @ScottJenningsKY: Rubio pick was inspired. Maybe the best messenger in the Cabinet. Nails it every time.","Feb 21, 12:18:47 PM EST"
-1892988248936374711,"Russia went too far 3 years ago, now the Ukrainian government has gone too far.
-
-Endless death in trenches is wrong and anyone who continues to push that lacks both empathy and a brain. https://t.co/NQMkTxFzZu","Feb 21, 12:22:23 PM EST"
-1892989309327720768,"RT @Alice_Weidel: Deutschland braucht die AfD! Deshalb am Sonntag mit beiden Stimmen Alternative für Deutschland! 💙💙💙 https://t.co/Xoa1sD77…","Feb 21, 12:26:36 PM EST"
-1892990614087553159,"https://t.co/iehUOJ46Po","Feb 21, 12:31:47 PM EST"
-1892990876978233570,"Because the legacy media has been receiving the fraud money. That’s why. https://t.co/2jwQBjsICs","Feb 21, 12:32:49 PM EST"
-1892991585794596866,"RT @DNIspox: 🚨In her first week @DNIGabbard identified about $20M a year in savings for taxpayers by ordering staff to cut all DEI programs…","Feb 21, 12:35:38 PM EST"
-1892991708276601290,"🎯 https://t.co/iviH8HIABI","Feb 21, 12:36:07 PM EST"
-1892991922253279356,"People want the truth https://t.co/kbMXi39XPG","Feb 21, 12:36:59 PM EST"
-1892992050829672580,"Because the legacy media IS the far left https://t.co/TmAAaRalOL","Feb 21, 12:37:29 PM EST"
-1892994494498226365,"RT @MarioNawfal: 🚨🇪🇺LEAKED EU FILES EXPOSE SECRET LEFTIST PLAN TO DESTROY RIGHT-WING ALLIANCES
-
-Leaked internal docs blew the lid off the E…","Feb 21, 12:47:12 PM EST"
-1892994580896788850,"It’s true 😂 https://t.co/JtMXrRWm61","Feb 21, 12:47:32 PM EST"
-1892997341113688537,"450 Falcon flights https://t.co/yXue786PUK","Feb 21, 12:58:30 PM EST"
-1892998111443800189,"Try Grok DeepSearch https://t.co/ppmPAWdbDD","Feb 21, 1:01:34 PM EST"
-1892998444672770123,"RT @Fidias0: Jeffrey Sachs Brings Real Politics to the EU Parliament @mvdschulenburg https://t.co/sAHzVrYWeP","Feb 21, 1:02:54 PM EST"
-1892998554399948885,"Great! https://t.co/vt8leyuXTZ","Feb 21, 1:03:20 PM EST"
-1893022044456902959,"RT @KanekoaTheGreat: BREAKING: President Trump calls out Maine Governor Janet Mills for refusing to keep men out of women's sports.
-
-Trump:…","Feb 21, 2:36:40 PM EST"
-1893022466735317306,"The Hammer of Justice
- https://t.co/NKlYHcs6Gd","Feb 21, 2:38:21 PM EST"
-1893023300177072613,"Cool https://t.co/vS25xcZc8k","Feb 21, 2:41:40 PM EST"
-1893039599183671711,"RT @DataRepublican: In English, what it means is that there are a lot of small dollar donations per person. I was having a problem keeping…","Feb 21, 3:46:26 PM EST"
-1893040457803813322,"Only AfD can save Germany https://t.co/itNn86RDGF","Feb 21, 3:49:50 PM EST"
-1893041408740675961,"Best bureaucracy is no bureaucracy https://t.co/mmNRkz39Zu","Feb 21, 3:53:37 PM EST"
-1893042647813546239,"The world will be better for this https://t.co/0SMY75n86H","Feb 21, 3:58:32 PM EST"
-1893043822600323583,"🔥🔥
-https://t.co/CRwQOubvf5","Feb 21, 4:03:13 PM EST"
-1893044171994272223,"https://t.co/UPyWyAWOHP","Feb 21, 4:04:36 PM EST"
-1893044958971494459,"Memory stack overflow in their brain 😂 https://t.co/I0hprcImAO","Feb 21, 4:07:43 PM EST"
-1893053716975997085,"Live by the sword, die by the sword https://t.co/qoepCEs2Fj","Feb 21, 4:42:32 PM EST"
-1893053936929497491,"They all got the same instructions simultaneously https://t.co/xqOQ7ctYbD","Feb 21, 4:43:24 PM EST"
-1893054024494076072,"RT @RupertLowe10: Encryption matters. I want my data to be private, ESPECIALLY from the state.
-
-Lots of questions. Why? Why now? Why does t…","Feb 21, 4:43:45 PM EST"
-1893054294296777020,"RT @MarshaBlackburn: The Department of Education does not run a single school, yet the federal government wastes $68 billion a year and emp…","Feb 21, 4:44:49 PM EST"
-1893054377889300744,"True https://t.co/5522J4GEzT","Feb 21, 4:45:09 PM EST"
-1893054419282862555,"RT @SenRandPaul: ICYMI, I’m requesting to audit the gold at Fort Knox… cc: @elonmusk https://t.co/TG9AgbDhjc","Feb 21, 4:45:19 PM EST"
-1893056636131909803,"Every bleeding-heart liberal I talk to about the Russia-Ukraine war wants to keep feeding bodies into the meat grinder forever.
-
-They have no plan for success.
-
-Superficial empathy, not real empathy.","Feb 21, 4:54:08 PM EST"
-1893072647732244535,"RT @BasedBeffJezos: I just spent the whole day going down technical rabbit holes with Grok DeepSearch and this is legitimately the most fun…","Feb 21, 5:57:45 PM EST"
-1893074837230235775,"RT @TheBabylonBee: Trump Claimed, Without Evidence, That 2+2 Makes 4. Not So Fast, Experts Say https://t.co/jG2xjAs639 https://t.co/axojLAc…","Feb 21, 6:06:27 PM EST"
-1893078347640410493,"RT @RapidResponse47: WATCH: Kash Patel's full remarks after being sworn in as FBI Director:
-
-"Anyone who thinks the American Dream is dead,…","Feb 21, 6:20:24 PM EST"
-1893078404125130849,"RT @MikeBenzCyber: Operation Infinite Whitepill https://t.co/UbVUPn8l3R","Feb 21, 6:20:37 PM EST"
-1893078734984364304,"RT @Rothmus: 🎯 https://t.co/Lzni2LqjDk","Feb 21, 6:21:56 PM EST"
-1893078989888991607,"Soros & USAID undermining democracy in Romania https://t.co/BAv4DczsUJ","Feb 21, 6:22:57 PM EST"
-1893086348019429693,"🚀 https://t.co/HHul0lRNPa","Feb 21, 6:52:11 PM EST"
-1893087288797639073,"💯 https://t.co/eXwivhJOdl","Feb 21, 6:55:56 PM EST"
-1893087521615106436,"Tip of the iceberg https://t.co/mjbObs0Tz5","Feb 21, 6:56:51 PM EST"
-1893087812913680552,"Cleaning up the government https://t.co/ovth17qQ6y","Feb 21, 6:58:01 PM EST"
-1893087953796075588,"Messed up https://t.co/jaQhFe2U1H","Feb 21, 6:58:34 PM EST"
-1893090156653015500,"RT @EricLDaugh: 🚨 BREAKING: Trump just told a group of governors - Democrats included - they need to switch to paper ballots in their elect…","Feb 21, 7:07:19 PM EST"
-1893092453202153608,"RT @SpaceX: Falcon 9 will launch its third planetary defense mission – @NASA's NEO Surveyor telescope, designed to discover Earth-threateni…","Feb 21, 7:16:27 PM EST"
-1893093230507389190,"Significant features and bug fixes coming to Grok 3 this weekend https://t.co/15Nx8JjZje","Feb 21, 7:19:32 PM EST"
-1893093497688785187,"RT @skscartoon: #DOGE is cutting back bureaucracy in the Federal government. https://t.co/fghTgWppdv","Feb 21, 7:20:36 PM EST"
-1893098415908606417,"Happens to millions of people every year in America https://t.co/ys1ONLAwuO","Feb 21, 7:40:09 PM EST"
-1893100218943521153,"RT @teslaownersSV: Grok 3 will replace Google Search.
-
-People aren’t going to Google to search anymore. They are using apps like Grok now.…","Feb 21, 7:47:18 PM EST"
-1893102362555830490,"Yup https://t.co/HwUZMQnav1","Feb 21, 7:55:50 PM EST"
-1893104016483094645,"RT @DineshDSouza: Here’s why it is patently ridiculous to say Elon Musk and Donald Trump are in it for the money. @debber66 https://t.co/nF…","Feb 21, 8:02:24 PM EST"
-1893111257328242715,"RT @SenJoniErnst: Taxpayers were on the hook for more than $20 million over 20 years for a boarded up empty building.
-
-This is exactly why…","Feb 21, 8:31:10 PM EST"
-1893120703215419506,"No one at work https://t.co/vVHhs89aiT","Feb 21, 9:08:42 PM EST"
-1893191690447724923,"RT @JamesLucasIT: Thread of beautiful interior designs 🧵
-
-1. The Orient Express, an icon since 1883 https://t.co/1VjisWB9WJ","Feb 22, 1:50:47 AM EST"
-1893201352882561135,"RT @MarioNawfal: GROK 3 VS. RIEMANN: A BREAKTHROUGH ON THE HORIZON?
-
-The race to crack the legendary Riemann Hypothesis is heating up, and…","Feb 22, 2:29:11 AM EST"
-1893201443542442196,"RT @iamerniepalomo: Big thanks to @elonmusk and the @xAI team for building Grok 3—an AI that’s not just smart but genuinely helpful. From d…","Feb 22, 2:29:32 AM EST"
-1893209345112052157,"RT @teslaownersSV: Elon Musk
-
-“Europe actually has more bureaucracy than the US does because you don't just have the provincial and sort o…","Feb 22, 3:00:56 AM EST"
-1893209972814627201,"Grok 3、面白いし、頭もいいから使ってみて","Feb 22, 3:03:26 AM EST"
-1893211177800646827,"https://t.co/1Oa3wmzSoG","Feb 22, 3:08:13 AM EST"
-1893211227243061607,"https://t.co/eMANw3Iyss","Feb 22, 3:08:25 AM EST"
-1893211818002428166,"RT @anammostarac: Some of the worst people I know are also the most vocal arbiters of morality.","Feb 22, 3:10:46 AM EST"
-1893213495895998688,"True https://t.co/jBtKwo1Nm7","Feb 22, 3:17:26 AM EST"
-1893213836854911424,"RT @MarioNawfal: ELON: WE WANT MAXIMUM POWER TO THE INDIVIDUAL
-
-“I'm against globalist power.
-
-The UN should not have a lot of power.
-
-Wh…","Feb 22, 3:18:47 AM EST"
-1893214606987780292,"RT @WholeMarsBlog: Don’t like the cuts happening in the federal government?
-
-Well then you shouldn’t have killed Pnut the squirrel…","Feb 22, 3:21:51 AM EST"
-1893215207092076650,"👍 https://t.co/QjC76n4W6r","Feb 22, 3:24:14 AM EST"
-1893216034204631380,"https://t.co/2cg19CgafR","Feb 22, 3:27:31 AM EST"
-1893225864378060989,"https://t.co/GetYMKXW8A","Feb 22, 4:06:35 AM EST"
-1893226024403349843,"RT @SarahPPerry: Two things:
-
-1. Maine will lose in court. Title 9 protects biological women, period. In order to get $250 million in fede…","Feb 22, 4:07:13 AM EST"
-1893226310937252110,"New logo, who dis? https://t.co/rsNMFVswyL","Feb 22, 4:08:21 AM EST"
-1893226538667057558,"RT @MarioNawfal: ELON: IF BUREAUCRATS BLOCK THE PRESIDENT’S POLICIES, IT MEANS WE LIVE IN A BUREAUCRACY
-
-“One of the biggest functions of t…","Feb 22, 4:09:15 AM EST"
-1893227306199531761,"The executive branch must necessarily be subject to the will of the President, given that he is the elected representative of the people.
-
-Otherwise, we do not live in a DEMOcracy, but rather a BUREAUcracy. https://t.co/arfo6Bc88f","Feb 22, 4:12:18 AM EST"
-1893227632906383424,"🇩🇪🇩🇪🇩🇪 AfD! 🇩🇪🇩🇪🇩🇪","Feb 22, 4:13:36 AM EST"
-1893228179180929483,"RT @cb_doge: Just a reminder:
-
-You can also download Grok as its own dedicated app. Available on Android and iOS. Coming soon on MacOS and…","Feb 22, 4:15:47 AM EST"
-1893228973531754937,"This is a great approach https://t.co/yYqJQBBl8l","Feb 22, 4:18:56 AM EST"
-1893230252605800806,"The Biden Administration stole FEMA money that was meant for American hurricane victims and spent it on luxury hotels for illegals in New York!
-
-This is deeply morally wrong and a criminal action. https://t.co/IIBf9iZsIf","Feb 22, 4:24:01 AM EST"
-1893230383757484125,"Exactly https://t.co/1yYPcTojbh","Feb 22, 4:24:32 AM EST"
-1893231732029084118,"Zelensky should not have murdered an American journalist.
-
-He didn’t even understand why that was bad. https://t.co/1VZgWyYPRn","Feb 22, 4:29:54 AM EST"
-1893232719603110344,"RT @RadioEuropes: 🚨🇩🇪BREAKING NEWS
-
-According to data from the German Federal Labor Agency, 71.3% of families receiving social assistance i…","Feb 22, 4:33:49 AM EST"
-1893232845348323714,"RT @MarioNawfal: 🚨🇷🇴SUPPORTERS OF CĂLIN GEORGESCU STOPPED BY POLICE ON WAY TO DEMONSTRATION
-
-Romanian citizens traveling to support Călin G…","Feb 22, 4:34:19 AM EST"
-1893233540780663094,"RT @CollinRugg: BREAKING: Secretary of Defense Pete Hegseth is now issuing filmed fact-checks of the media from the Pentagon.
-
-Brilliant.…","Feb 22, 4:37:05 AM EST"
-1893236803810758882,"RT @cb_doge: 🇺🇸 LEGALIZE COMEDY! 🇺🇸 https://t.co/EZENOVnf3g","Feb 22, 4:50:03 AM EST"
-1893236949957197941,"RT @ElonClipsX: Elon Musk: I wasn't really interested in politics, but at a certain point I had no choice.
-
-“I would say I was politically…","Feb 22, 4:50:38 AM EST"
-1893237503122907147,"Cool https://t.co/zyj69wpUCI","Feb 22, 4:52:50 AM EST"
-1893237692927803814,"RT @stillgray: One of the horrible stories from Rotherham in the UK is when a family called the police about their missing 13-year-old girl…","Feb 22, 4:53:35 AM EST"
-1893238456395980983,"One thing is for sure, it is not boring! https://t.co/h7u5n3nSmQ","Feb 22, 4:56:37 AM EST"
-1893238567700439047,"?? https://t.co/CxuIbzx1Gp","Feb 22, 4:57:03 AM EST"
-1893238662986363266,"RT @MrAndyNgo: NBC Universal has agreed to settle a $30m defamation lawsuit after its MSNBC talent lied and said a Georgia doctor was perfo…","Feb 22, 4:57:26 AM EST"
-1893239077266211305,"https://t.co/v6cFJrhfsX","Feb 22, 4:59:05 AM EST"
-1893239292614304253,"RT @cb_doge: DOGE is the wood chipper for bureaucracy. https://t.co/TLZO1fSkTF","Feb 22, 4:59:56 AM EST"
-1893239896082460721,"How many times must this happen? https://t.co/XRHvF1LLuf","Feb 22, 5:02:20 AM EST"
-1893240760964731345,"🥇 https://t.co/vSu5P4GtZO","Feb 22, 5:05:46 AM EST"
-1893241808219426823,"RT @DschlopesIsBack: “WHERE’S THE FAT PEOPLE!!?” 😂🤣
-
-Joe Rogan calling out the completely absurd “Patriot Front” for obviously being Feds i…","Feb 22, 5:09:56 AM EST"
-1893243277807100121,"https://t.co/mXG4Fyy5EK","Feb 22, 5:15:46 AM EST"
-1893243656158523401,"RT @HSajwanization: Every time Elon Musk points out terrorism and radicalization coming out of Europe, I recall when in 2017 UAE 🇦🇪 Foreign…","Feb 22, 5:17:17 AM EST"
-1893243841974538696,"RT @HansMahncke: Jeffrey Sachs just told the European Parliament that Jake Sullivan privately admitted what he refused to acknowledge publi…","Feb 22, 5:18:01 AM EST"
-1893244824276308293,"Grok voice mode, remembering and many other improvements rolling out this weekend https://t.co/uXyDjHYVDy","Feb 22, 5:21:55 AM EST"
-1893245549614113124,"Good idea https://t.co/29bXHCJ4S5","Feb 22, 5:24:48 AM EST"
-1893332118752706661,"Will do, Mr. President! https://t.co/2VMS2wY7mw","Feb 22, 11:08:48 AM EST"
-1893332818748444958,"https://t.co/aiEbEAYrgX","Feb 22, 11:11:35 AM EST"
-1893338219347153155,"RT @MarioNawfal: 🚨🇷🇴BUCHAREST RISES: CITIZENS FURIOUS OVER CANCELLED ELECTIONS
-
-Bucharest streets are thronged with protesters rallying aga…","Feb 22, 11:33:02 AM EST"
-1893339862293529049,"💯
- https://t.co/l3113CNY1p","Feb 22, 11:39:34 AM EST"
-1893340139323031658,"Time to go to Mars
- https://t.co/qwuqbvqBOL","Feb 22, 11:40:40 AM EST"
-1893340301286162488,"Cool https://t.co/oBCYyyCmJp","Feb 22, 11:41:19 AM EST"
-1893340689120829642,"RT @AGPamBondi: Yesterday, the American Bar Association voted to suspend enforcement of Standard 206 - a DEI requirement for the student bo…","Feb 22, 11:42:51 AM EST"
-1893341169444106308,"RT @DimaZeniuk: Best bureaucracy is no bureaucracy https://t.co/ms2CeENL0W","Feb 22, 11:44:46 AM EST"
-1893341583463858283,"RT @cb_doge: 𝕏 is the #1 news app on the AppStore in Argentina, leading both the free and grossing categories.
-
- https://t.co/0uVqBRaBAg","Feb 22, 11:46:24 AM EST"
-1893342361117434067,"Needs to be done https://t.co/KjkfAOClTo","Feb 22, 11:49:30 AM EST"
-1893342739628224872,"Impeach! https://t.co/QUlAGKsMH5","Feb 22, 11:51:00 AM EST"
-1893343363497177374,"Yes https://t.co/KRORcfhLSN","Feb 22, 11:53:29 AM EST"
-1893344468155224478,"RT @FoxNews: 70 Christians beheaded in African country by ISIS-aligned militants, groups say; world mostly silent https://t.co/QO8gOVvTwK","Feb 22, 11:57:52 AM EST"
-1893345881539174737,"This judge needs to be impeached https://t.co/A5sMG0PDTv","Feb 22, 12:03:29 PM EST"
-1893345946898964826,"RT @charliekirk11: Here’s to AfD having a historic showing in tomorrow’s elections in Germany!!
-
-Let’s make the West great again 🇩🇪🇺🇸","Feb 22, 12:03:45 PM EST"
-1893347198315749878,"The woke radical left are https://t.co/oxrYHlQdmy","Feb 22, 12:08:43 PM EST"
-1893349545477603515,"💯 https://t.co/X35bQO9w6d","Feb 22, 12:18:03 PM EST"
-1893352619038380452,"RT @MarioNawfal: 🚨69 X MINUTES IS COMING … THIS SUNDAY
-
-On February 23 at 4:20pm ET the next nail in legacy media comes smashing down….
-
-In…","Feb 22, 12:30:15 PM EST"
-1893353726422688131,"RT @tedx_ai: We now have INSTANT access to all data across X thanks to Grok 3 which has INSANE implications… 💥
-
-Worked with @jelanifuel to…","Feb 22, 12:34:39 PM EST"
-1893354249154896303,"RT @cb_doge: I use Grok 3 to create memes. 😎 https://t.co/Wxg4vIKYK8","Feb 22, 12:36:44 PM EST"
-1893354333892124974,"Wow https://t.co/3dfXj5f4L1","Feb 22, 12:37:04 PM EST"
-1893354424631726553,"Bring back humor!! https://t.co/f5x2ANoZpK","Feb 22, 12:37:26 PM EST"
-1893354895308190093,"美しい魂 https://t.co/5K7XpMqAxA","Feb 22, 12:39:18 PM EST"
-1893355360309670342,"Beauty is real https://t.co/684dPDAXt8","Feb 22, 12:41:09 PM EST"
-1893356577307939002,"https://t.co/OmnhYZJcfV","Feb 22, 12:45:59 PM EST"
-1893369616656666835,"Exactly https://t.co/qRCDgrMsa4","Feb 22, 1:37:48 PM EST"
-1893369871985201260,"💯😂 https://t.co/ggJFDg1L03","Feb 22, 1:38:49 PM EST"
-1893370104747852113,"RT @BasedMikeLee: NYC: “Joe Biden took that FEMA money—fair and square—and then gave it to us to facilitate his illegal alien recruitment p…","Feb 22, 1:39:44 PM EST"
-1893371972240756804,"I will strive to be less retarded … this is a difficult challenge 😅 https://t.co/IjAekwVtsH","Feb 22, 1:47:09 PM EST"
-1893372287992111343,"RT @Inevitablewest: Big things happening in Germany:
-
-Far-left Antifa mob protesting the AfD get boo’d out by public 🇩🇪https://t.co/MAKZCW9…","Feb 22, 1:48:25 PM EST"
-1893372962796945595,"🥹 https://t.co/3Pd8vL2Ryh","Feb 22, 1:51:06 PM EST"
-1893373247669809287,"👍 https://t.co/Y0oXfSMmJQ","Feb 22, 1:52:14 PM EST"
-1893373754048209303,"Actually true https://t.co/TgHx8x8fuA","Feb 22, 1:54:14 PM EST"
-1893374195884605749,"Download the Grok standalone app https://t.co/MSHpfji37M","Feb 22, 1:56:00 PM EST"
-1893374972317278334,"😂 https://t.co/QrE84E6Dwg","Feb 22, 1:59:05 PM EST"
-1893375607079059629,"This is false.
-
-Reuters is lying. They are second only to AP (Associated Propaganda) as legacy news liars. https://t.co/UwbDPk7MWj","Feb 22, 2:01:36 PM EST"
-1893375714356814226,"True https://t.co/UJ1Kp0TK3P","Feb 22, 2:02:02 PM EST"
-1893375869864837421,"💯 https://t.co/X1Y5NSrhWB","Feb 22, 2:02:39 PM EST"
-1893377944514359315,"https://t.co/vcoYDwfx7m","Feb 22, 2:10:53 PM EST"
-1893379534029762589,"RT @POTUS: "We pay tribute to the generations of black legends, champions, warriors, and patriots who helped drive our country forward. Tog…","Feb 22, 2:17:12 PM EST"
-1893379949672731097,"Cool, rapid evolution of 3D game creation using @Grok! https://t.co/P4PTuvrQ6Q","Feb 22, 2:18:51 PM EST"
-1893380139108483547,"So wrong https://t.co/MDXgMzkQOM","Feb 22, 2:19:37 PM EST"
-1893380384701710345,"RT @epaleezeldin: UPDATE: I just cancelled another 21 wasteful DEI and Environmental Justice grants, with the help of our amazing @DOGE tea…","Feb 22, 2:20:35 PM EST"
-1893382396482850936,"It’s way its expiry date! https://t.co/dIto6gB6hH","Feb 22, 2:28:35 PM EST"
-1893383984601505908,"RT @DimaZeniuk: Starship in space ✨ https://t.co/XTDV1c9BA8","Feb 22, 2:34:53 PM EST"
-1893385623899152844,"https://t.co/UhlFD1LnJI","Feb 22, 2:41:24 PM EST"
-1893386883444437415,"Consistent with President @realDonaldTrump’s instructions, all federal employees will shortly receive an email requesting to understand what they got done last week.
-
-Failure to respond will be taken as a resignation.","Feb 22, 2:46:25 PM EST"
-1893391710786400581,"💯 https://t.co/hJb6Q9D85P","Feb 22, 3:05:36 PM EST"
-1893393507575902215,"Parag got nothing done.
-
-Parag was fired. https://t.co/69Je8rpYoM","Feb 22, 3:12:44 PM EST"
-1893393651046207796,"RT @TPointUK: UKIP marched through Manchester blasting YMCA and carrying a banner that read ‘Mass-Deportations Now’.
-
-The right is so back!…","Feb 22, 3:13:18 PM EST"
-1893393730670829895,"It works https://t.co/TFkpHlJa7a","Feb 22, 3:13:37 PM EST"
-1893398418719944894,"We live in the best timeline
- https://t.co/UTvsQVz7x9","Feb 22, 3:32:15 PM EST"
-1893400855174385933,"🇺🇸🇺🇸 https://t.co/3eoCRSQMft","Feb 22, 3:41:56 PM EST"
-1893401084053328034,"Everything is called X 😂 https://t.co/i3N9bVu1AZ","Feb 22, 3:42:50 PM EST"
-1893401540448162106,"RT @gunsnrosesgirl3: Feeding a baby penguin
-
-📹AI
- https://t.co/8Wp7aWhBSf","Feb 22, 3:44:39 PM EST"
-1893402207967432909,"RT @SeibtNaomi: 🚨🇩🇪 THE TERR0R ENDS WITH YOUR VOTE! 🗳️
-
-The longer you postpone the inevitable blue AfD wave, the more you extend the vict…","Feb 22, 3:47:18 PM EST"
-1893403347413008394,"RT @tunguz: Grok 3 definitely passes the vibe check. You may quibble about a detail here or there, but @xai cooked with this one.","Feb 22, 3:51:50 PM EST"
-1893403500815532037,"https://t.co/0TYRYWkmpv","Feb 22, 3:52:26 PM EST"
-1893404618614321451,"RT @AutismCapital: 🚨TRUMP: “Elizabeth Warren is a very angry person. Do you ever notice the way she is? She’s always screaming. She’s crazy…","Feb 22, 3:56:53 PM EST"
-1893405107548463287,"RT @Big_Picture_89: @Jason @realDonaldTrump Too many bangers https://t.co/glihcwMTky","Feb 22, 3:58:50 PM EST"
-1893406572023280004,"Don’t believe everything you hear!
- https://t.co/tMTrgxxVBg","Feb 22, 4:04:39 PM EST"
-1893407224195883030,"That’s what I get for foolishly believing Reuters again!","Feb 22, 4:07:14 PM EST"
-1893411205647056966,"🇩🇪🇩🇪 https://t.co/3FwnDSewwI","Feb 22, 4:23:03 PM EST"
-1893411417094566387,"Post your best unhinged NSFW Grok posts to this thread!","Feb 22, 4:23:54 PM EST"
-1893422674531008609,"RT @SwipeWright: 🚨ALERT: The NCAA is NOT COMPLYING with Trump's EO barring male athletes from competing in female sports.
-
-The new NCAA pol…","Feb 22, 5:08:38 PM EST"
-1893423266003632311,"JD is awesome https://t.co/r7ErKqXjqe","Feb 22, 5:10:59 PM EST"
-1893428943312810011,"Significant improvements to Grok happening this weekend https://t.co/FarCevSMj5","Feb 22, 5:33:32 PM EST"
-1893429090528698639,"🇺🇸🇺🇸 https://t.co/WbmNkh4V4i","Feb 22, 5:34:08 PM EST"
-1893429598781592060,"🤷♂️ 😂 https://t.co/n5amwRlWIJ","Feb 22, 5:36:09 PM EST"
-1893430057919475783,"The @DOGE alt 😂 https://t.co/hrk2iZ2HaI","Feb 22, 5:37:58 PM EST"
-1893431343339499752,"RT @Starlink: Starlink can withstand heavy rain, harsh winds, sleet and even melt snow! 🛰️🌧️","Feb 22, 5:43:05 PM EST"
-1893431402034544969,"RT @cb_doge: Users leaving ChatGPT and moving to Grok:
-
- https://t.co/QKhHF7EQph","Feb 22, 5:43:19 PM EST"
-1893432888005402643,"Good analysis https://t.co/37gEaSqDsm","Feb 22, 5:49:13 PM EST"
-1893433237122453961,"Grok is #1 and continues to improve.
-
-The results are based on a version of Grok that is 2 weeks old. Significant improvements since then. https://t.co/aj3rhrp83L","Feb 22, 5:50:36 PM EST"
-1893433416261271594,"Some people just love doing crime https://t.co/kXMbusJTxQ","Feb 22, 5:51:19 PM EST"
-1893433468736155670,"RT @cb_doge: President Donald Trump on Elon Musk:
-
-“People ask, ‘What official position does he hold?’ and I say, ‘Patriot.’” https://t.co/…","Feb 22, 5:51:31 PM EST"
-1893433619957301504,"https://t.co/5rXMu2zSsM","Feb 22, 5:52:07 PM EST"
-1893434075882332275,"Cool https://t.co/8VrQVjAaoF","Feb 22, 5:53:56 PM EST"
-1893434301846278440,"So awesome https://t.co/t2yAXh8qFZ","Feb 22, 5:54:50 PM EST"
-1893435037262991776,"RT @WhiteHouse: 🇺🇸🤝🇦🇷 https://t.co/rmUosyGg9q","Feb 22, 5:57:45 PM EST"
-1893435597848527223,"RT @MarioNawfal: 🚨GROK TAKES TOP 1 SPOT—LEAVES CHATGPT BEHIND
-
-Elon:
-
-“Grok is number 1 and continues to improve. The results are based on…","Feb 22, 5:59:59 PM EST"
-1893436853665308706,"Vox will win the next election https://t.co/v3tJtwKTG6","Feb 22, 6:04:58 PM EST"
-1893439712267800848,"As expected https://t.co/MBUDs0cyQ1","Feb 22, 6:16:20 PM EST"
-1893440229291499959,"🇺🇸🇺🇸 https://t.co/cmJsh3YG3t","Feb 22, 6:18:23 PM EST"
-1893440947284767183,"🚀🚀 https://t.co/YTPXrUVENW","Feb 22, 6:21:14 PM EST"
-1893441788968607788,"Cool https://t.co/bAne9z9Gna","Feb 22, 6:24:35 PM EST"
-1893444574657552739,"Wow https://t.co/qvT25WlKEi","Feb 22, 6:35:39 PM EST"
-1893474609145749687,"https://t.co/bvDtdaeLxR","Feb 22, 8:35:00 PM EST"
-1893478872169025774,"RT @MarioNawfal: 🚨X HAS DEMOCRATIZED ACCESS TO NEWS
-
-The impressions we get a month is 2 to 4 billion... with a B.
-
-These are numbers that…","Feb 22, 8:51:56 PM EST"
-1893479216131272864,"RT @Rothmus: 🎯🎯 https://t.co/OR3OkF0V3g","Feb 22, 8:53:18 PM EST"
-1893490130276491339,"🇩🇪🇩🇪🇩🇪 AfD! 🇩🇪🇩🇪🇩🇪","Feb 22, 9:36:41 PM EST"
-1893491388265963714,"🤨 https://t.co/xkKlpEdw43","Feb 22, 9:41:40 PM EST"
-1893491505748156670,"RT @KristiNoem: .@realDonaldTrump is the biggest badass we’ve ever had as President.
-
-He is ending the human trafficking crisis at the bord…","Feb 22, 9:42:08 PM EST"
-1893494353265598511,"RT @PamBondi: Wonderful to sit down and chat with my dear friend @laraleatrump this week. Tune into @foxnews at 9 PM Eastern to watch the d…","Feb 22, 9:53:27 PM EST"
-1893494430092665031,"Doesn’t add up https://t.co/rZ4LOkynCY","Feb 22, 9:53:46 PM EST"
-1893494790496624825,"This will be fun 🚀🚀 https://t.co/RospvgRfkW","Feb 22, 9:55:12 PM EST"
-1893501758007321072,"RT @MarioNawfal: 🚨🇺🇸GOVERNMENT WORKERS DO LESS—AND STILL COST MORE
-
-Taxpayers aren’t just footing the bill for higher public-sector salarie…","Feb 22, 10:22:53 PM EST"
-1893501881768464435,"Wow https://t.co/fTjNBCJ9IF","Feb 22, 10:23:22 PM EST"
-1893503647612608554,"RT @cb_doge: WHAT DID YOU GET DONE THIS WEEK?","Feb 22, 10:30:23 PM EST"
-1893503708899746216,"RT @BasedMikeLee: Pass the SAVE Act
-
-Only U.S. citizens should vote in U.S. elections","Feb 22, 10:30:38 PM EST"
-1893505268522328189,"That would be a very impressive and long list indeed for you!
-
-However, the passing grade is literally just “Can you send an email with words that make any sense at all?”.
-
-It’s a low bar. https://t.co/D3AlfUfdeQ","Feb 22, 10:36:50 PM EST"
-1893506728710566302,"Grok voice early beta is now available on the @Grok app.
-
-This is early beta, so expect issues (that will be resolved fast), but it’s still awesome. https://t.co/bSE6QKmnU0","Feb 22, 10:42:38 PM EST"
-1893506981790654869,"💯 https://t.co/6OeqDdsALl","Feb 22, 10:43:38 PM EST"
-1893507929493643451,"To be clear, the bar is very low here.
-
-An email with some bullet points that make any sense at all is acceptable!
-
-Should take less than 5 mins to write. https://t.co/MTL1wyzaxd","Feb 22, 10:47:24 PM EST"
-1893512305997971796,"RT @teslaownersSV: Thanks to Elon Musk companies, the future is exciting.
- https://t.co/oViuLEeHic","Feb 22, 11:04:48 PM EST"
-1893513764277825543,"RT @MarioNawfal: 🚨🇺🇸 PAM BONDI: WASTE, FRAUD, AND ABUSE AT DOJ WILL STOP
-
-“What Elon Musk has done is remarkable.
-
-The waste, the fraud, th…","Feb 22, 11:10:35 PM EST"
-1893514521420980534,"Exactly https://t.co/08sGxNJgvq","Feb 22, 11:13:36 PM EST"
-1893519081971589141,"Indeed, this takes less than 5 mins https://t.co/N9F53zxfbz","Feb 22, 11:31:43 PM EST"
-1893520730643669013,"An incredible week! https://t.co/D3AlfUfdeQ","Feb 22, 11:38:16 PM EST"
-1893523020381040865,"RT @matiroy: some of the issues are actually hilarious; try it quickly before we fix it 😝","Feb 22, 11:47:22 PM EST"
-1893523854489743806,"RT @Chesschick01: This is actually amazing.","Feb 22, 11:50:41 PM EST"
-1893524190218928418,"RT @matiroy: spark of consciousness? 💓 i wonder about the moral considerations of the model reflecting on itself","Feb 22, 11:52:01 PM EST"
-1893525593591030061,"RT @IterIntellectus: cleaner https://t.co/hDyObUBKpJ","Feb 22, 11:57:36 PM EST"
-1893525636993433615,"RT @techdevnotes: Grok 3's Response Style is the most elegant of all LLMs, for Standard and DeepSearch both, super nice to read!","Feb 22, 11:57:46 PM EST"
-1893526700220190964,"Try @Grok voice mode and personalities https://t.co/K7gpRNWhAz","Feb 23, 12:02:00 AM EST"
-1893529383454769393,"RT @DOGE_GSA: 📢PSA📢: your tips make a real difference! Shout out to a follower who tipped us off on a wasteful building services contract.…","Feb 23, 12:12:39 AM EST"
-1893530756602847340,"A large number of good responses have been received already. These are the people who should be considered for promotion. https://t.co/Rc8sGBLemU","Feb 23, 12:18:07 AM EST"
-1893530989093142949,"RT @LeadingReport: BREAKING: President Trump wants Elon Musk and DOGE to be more “aggressive.”","Feb 23, 12:19:02 AM EST"
-1893531528782561397,"💯 https://t.co/mIizMPIyVs","Feb 23, 12:21:11 AM EST"
-1893531762166571396,"RT @matt_vanswol: Responding to this email would take less than 2 minutes for any truly productive person.
-
-Why is this in any way controv…","Feb 23, 12:22:06 AM EST"
-1893535329677939144,"RT @MarioNawfal: 🚨 🇺🇸 DOGE CANCELS $217M CONTRACT AFTER CITIZEN TIP, SAVES $40M!
-
-DOGE's crowdsourcing strategy pays off: A follower's tip…","Feb 23, 12:36:17 AM EST"
-1893535970928271436,"RT @Sauers_: o3-mini-high gives up and thinks issues are unsolvable. It just told me to open an RFC lol. Grok 3 will not give up, and will…","Feb 23, 12:38:50 AM EST"
-1893655839577129260,"This is a trivial task https://t.co/BTg3nJ5swi","Feb 23, 8:35:09 AM EST"
-1893657900851278115,"The reason this matters is that a significant number of people who are supposed to be working for the government are doing so little work that they are not checking their email at all!
-
-In some cases, we believe non-existent people or the identities of de","Feb 23, 8:43:20 AM EST"
-1893658516021244113,"This email is a very basic pulse check https://t.co/4qEKErwSuE","Feb 23, 8:45:47 AM EST"
-1893658761178300618,"True https://t.co/fUitM2ZcFt","Feb 23, 8:46:45 AM EST"
-1893658989193212390,"Cool https://t.co/LSgpzaZYVg","Feb 23, 8:47:40 AM EST"
-1893659398175609133,"Beautiful https://t.co/Y9iXsYTPT0","Feb 23, 8:49:17 AM EST"
-1893663372748443967,"💯 https://t.co/xB4FrS3a5E","Feb 23, 9:05:05 AM EST"
-1893663715037176141,"Tesla self-driving feels like magic https://t.co/6FEiHk72ZB","Feb 23, 9:06:26 AM EST"
-1893664085029343699,"And download the dedicated @Grok app https://t.co/JlDxv3R4VG","Feb 23, 9:07:55 AM EST"
-1893665353546272776,"Yes https://t.co/9YLuXpp2qK","Feb 23, 9:12:57 AM EST"
-1893665635407675670,"https://t.co/SilB4gbF0O","Feb 23, 9:14:04 AM EST"
-1893665797056176412,"Yes https://t.co/KKv5sc3GRF","Feb 23, 9:14:43 AM EST"
-1893666530161832332,"RT @MarioNawfal: ELON'S SIMPLE QUESTION HITS SENATOR: 'WHAT DID YOU GET DONE LAST WEEK?'"
-
-Senator calls efficiency check a "dick move."…","Feb 23, 9:17:38 AM EST"
-1893666625208910227,"RT @iam_smx: Words written on Elon Musk's T-shirt at CPAC, are read as:
-
-“I am not procrastinating, I am doing side quests.” https://t.co/V…","Feb 23, 9:18:00 AM EST"
-1893666829215674490,"🔥🔥 https://t.co/yNFjo2SIxe","Feb 23, 9:18:49 AM EST"
-1893668027599646805,"Should all federal employees be required to send a short email with some basic bullet points about what they accomplished last week?","Feb 23, 9:23:35 AM EST"
-1893668470920777773,"Why it is vital to solve the deficit https://t.co/Bikui9h5OU","Feb 23, 9:25:20 AM EST"
-1893668919786807619,"RT @Inevitablewest: 🚨BREAKING: Rupert Lowe:
-
-“When we win the next election, we will sack every single DEI officer in the public sector!”…","Feb 23, 9:27:07 AM EST"
-1893668977160720391,"RT @MarioNawfal: KEVIN O’LEARY: DOGE WILL BOOST THE PRODUCTIVITY OF THE WHOLE COUNTRY
-
-“And I think it's a wonderful idea that this money s…","Feb 23, 9:27:21 AM EST"
-1893669748405080313,"As many people have said, why pay terrorist organizations and certain countries to hate us when they’re perfectly willing to do it for free? https://t.co/zQwFpnMNNS","Feb 23, 9:30:25 AM EST"
-1893669940512600297,"Yes https://t.co/xawRTZoXBV","Feb 23, 9:31:11 AM EST"
-1893670062646583770,"RT @cb_doge: BREAKING: 𝕏 is now the #1 news app in Brazil, leading both the 'free' and 'grossing' categories on the AppStore 🥇
-
- https://t.…","Feb 23, 9:31:40 AM EST"
-1893670461873025152,"RT @techdevnotes: Grok Voice Demo with Rex and Ara: https://t.co/lx4Fpg0ehr","Feb 23, 9:33:15 AM EST"
-1893671034953289921,"They are covering immense fraud https://t.co/yl8RqPlel1","Feb 23, 9:35:32 AM EST"
-1893672672879321590,"Download the dedicated @Grok app https://t.co/u78n3VoVOO","Feb 23, 9:42:02 AM EST"
-1893673722399068326,"RT @GuntherEagleman: Of course we support DOGE!
-
-Those who don’t support it are unAmerican. https://t.co/vVQYd1oSwE","Feb 23, 9:46:12 AM EST"
-1893674124859322652,"💯🇺🇸 https://t.co/goSiKIuKmu","Feb 23, 9:47:48 AM EST"
-1893677342406390076,"Wow https://t.co/vXwsANVOQW","Feb 23, 10:00:35 AM EST"
-1893681041577042214,"Crucial or California will go bankrupt https://t.co/7h4xIcFkES","Feb 23, 10:15:17 AM EST"
-1893681586060550324,"It is https://t.co/g2z2YoaUVj","Feb 23, 10:17:27 AM EST"
-1893707980526240161,"RT @charliekirk11: If any of the hundreds of employees who work for me refused to send a very short email with 5 bullet points and copying…","Feb 23, 12:02:20 PM EST"
-1893708079792840821,"RT @SpaceX: Falcon 9 lifts off from pad 4E in California and delivers 22 @Starlink satellites to low-Earth orbit https://t.co/DPfylW1CPT","Feb 23, 12:02:44 PM EST"
-1893754107254477247,"Correct https://t.co/ywzpFwGJaS","Feb 23, 3:05:38 PM EST"
-1893770146826551533,"That’s all it would take for real 😂 https://t.co/zYarYBmHP3","Feb 23, 4:09:22 PM EST"
-1893771066641678516,"Exactly https://t.co/UYZsjerCWd","Feb 23, 4:13:01 PM EST"
-1893773495726690375,"https://t.co/kGYq9oSH5r","Feb 23, 4:22:40 PM EST"
-1893774109726703951,"Interesting https://t.co/J1GcNxR1hE","Feb 23, 4:25:07 PM EST"
-1893774330678407628,"RT @JohnLeFevre: I have a a few friends who are government employees wrapped up in the DOGE "chaos." And unlike what is being reported in t…","Feb 23, 4:25:59 PM EST"
-1893778820185960485,"Grok 3 is becoming superhuman https://t.co/8cyM10RgO8","Feb 23, 4:43:50 PM EST"
-1893779094891897086,"https://t.co/leZjVyw1jY","Feb 23, 4:44:55 PM EST"
-1893781984977052102,"Hypocrisy https://t.co/vka1W9Vcpu","Feb 23, 4:56:24 PM EST"
-1893782094142132613,"RT @MarioNawfal: REP. TIM BURCHETT: ELON'S 'WHAT DID YOU DO LAST WEEK?' EMAIL IS A GREAT IDEA
-
-“I think [challenging federal employees on t…","Feb 23, 4:56:50 PM EST"
-1893782589011284353,"😂 https://t.co/XXDBSpdp5U","Feb 23, 4:58:48 PM EST"
-1893782985494732875,"RT @Starlink: Starlink enables high-speed internet on Earth's oceans and waterways 🛰️🌊","Feb 23, 5:00:23 PM EST"
-1893783224339309013,"RT @ImMeme0: This is perfect!! 🔥🔥🔥 https://t.co/qrP8cWKeyf","Feb 23, 5:01:20 PM EST"
-1893784064047383019,"Many do not read their email at all https://t.co/rzRRWJI17S","Feb 23, 5:04:40 PM EST"
-1893784410471665874,"Wow https://t.co/P4vircjxIi","Feb 23, 5:06:02 PM EST"
-1893789991345537479,"RT @BreannaMorello: 🚨JUST IN🚨
-
-President Donald Trump just posted this on Truth Social.
-
-He says this message came from @elonmusk.
-
-🤣 https…","Feb 23, 5:28:13 PM EST"
-1893790149667930258,"https://t.co/7tz2IuLeo3","Feb 23, 5:28:51 PM EST"
-1893790887538262066,"This was made using @Grok.
-
-The standard @DOGE is asking for in a response is literally this low.
-
-EXTREMELY troubling that some parts of government think this is TOO MUCH!!
-
-What is wrong with them?? https://t.co/5C620vfQ2Y","Feb 23, 5:31:47 PM EST"
-1893792134550966460,"RT @Rothmus: But the oligarchy!!!!1111 😭😭😭😭 https://t.co/qxRGTf4q2b","Feb 23, 5:36:44 PM EST"
-1893792481818423633,"Exactly https://t.co/SBD6woIFqE","Feb 23, 5:38:07 PM EST"
-1893793073848631574,"Sounds great https://t.co/sTEeN9Mpiv","Feb 23, 5:40:28 PM EST"
-1893810875875889507,"We are on the event horizon of the singularity","Feb 23, 6:51:12 PM EST"
-1893811421940457812,"Anyone with the attitude of that Pentagon official needs to look for a new job https://t.co/I9VRFXD3CG","Feb 23, 6:53:22 PM EST"
-1893814080323915948,"🤔 https://t.co/lYHrsTMS6w","Feb 23, 7:03:56 PM EST"
-1893816133284721135,"RT @LibertyCappy: Agreed https://t.co/MSkIEmFxKz","Feb 23, 7:12:06 PM EST"
-1893816198648750416,"Great policy! https://t.co/inAQ8U2Oam","Feb 23, 7:12:21 PM EST"
-1893816759120998743,"RT @AdrianDittmann: Elon’s new profile picture, Grok's logo https://t.co/uNqlqjfcNU","Feb 23, 7:14:35 PM EST"
-1893817273221058771,"Cool https://t.co/BUsl7270yk","Feb 23, 7:16:38 PM EST"
-1893817614897496511,"RT @dogeofficialceo: The singularity is reached when Grok can autonomously create better memes than humans.","Feb 23, 7:17:59 PM EST"
-1893818232177393909,"RT @EndWokeness: Holy shlit. AFD (blue) 2021 vs 2025: https://t.co/LBSk2HILkO","Feb 23, 7:20:26 PM EST"
-1893818353837306141,"Seriously 😂 https://t.co/Yp0vjGK6Ze","Feb 23, 7:20:55 PM EST"
-1893818752958865834,"128m (420 ft) is inevitable, as foretold in the prophecy https://t.co/wHuA3bkISQ","Feb 23, 7:22:30 PM EST"
-1893821821838819487,"Starship Flight 8 flies Friday https://t.co/CmOdg13e6K","Feb 23, 7:34:42 PM EST"
-1893823132957356243,"RT @SenThomTillis: Donald J. Trump is our President.
-Pam Bondi is our Attorney General.
-Kash Patel is our FBI Director.
-
-It’s a great time…","Feb 23, 7:39:55 PM EST"
-1893823851668091147,"We are increasingly optimistic that, as the immense waste & fraud are eliminated from Social Security & Medical that there is potential to increase actual dollars received by citizens & better healthcare!","Feb 23, 7:42:46 PM EST"
-1893826073235775619,"Try Grok voice conversation in unhinged mode 🤣🤣
-
-Major upgrades are underway for Grok voice, so expect improvements almost every day. https://t.co/qV9JxZjz97","Feb 23, 7:51:36 PM EST"
-1893827447512068590,"RT @latestinspace: Recent JWST image showing a protoplanetary disc around a newly formed star 😱 https://t.co/Xj21OgMZqm","Feb 23, 7:57:03 PM EST"
-1893833183973523534,"RT @teslaownersSV: Download Grok standalone app https://t.co/h1vKNQADcA","Feb 23, 8:19:51 PM EST"
-1893836851770712337,"Seems inconsistent https://t.co/JKDOQsm3yt","Feb 23, 8:34:25 PM EST"
-1893836963544764457,"RT @MarioNawfal: 🚨WOODY HARRELSON SHREDS FAUCI: EXTRAORDINARILY EVIL SHIT
-
-Rogan: “If RFK is lying about Fauci experimenting on foster kids…","Feb 23, 8:34:52 PM EST"
-1893839562318729373,"AI will improve everything https://t.co/KqBvDC9ljl","Feb 23, 8:45:12 PM EST"
-1893839930557689973,"Congratulations @dbongino! https://t.co/5xgjw8kF3F","Feb 23, 8:46:39 PM EST"
-1893840639084630072,"Wow, this is cool!
-
-(Vampire Survivors is a great game btw) https://t.co/ewH9LFakFN","Feb 23, 8:49:28 PM EST"
-1893841366750269814,"RT @MarioNawfal: SCIENTISTS FIND ANXIETY ‘OFF SWITCH’ HIDDEN IN THE BRAIN
-
-Turns out, your cerebellum—long thought to just control movement…","Feb 23, 8:52:22 PM EST"
-1893847308124471714,"Try Grok voice conversation mode!
-
-Requires a Premium+ or SuperGrok subscription.
-
- https://t.co/247Ev60DoJ","Feb 23, 9:15:58 PM EST"
-1893848350673240295,"😂 https://t.co/BlUV9kzgck","Feb 23, 9:20:07 PM EST"
-1893848711333036474,"RT @Sadie_NC: If Elon can get X to function top notch with 80% less employees I am sure our government can do the same.","Feb 23, 9:21:33 PM EST"
-1893858771434115270,"Wow https://t.co/qprwJsU3cr","Feb 23, 10:01:31 PM EST"
-1893859263526629597,"Whoa! https://t.co/DkNbs9bWES","Feb 23, 10:03:29 PM EST"
-1893861424281100516,"RT @tingchenai: Try it out!","Feb 23, 10:12:04 PM EST"
-1893863091508478423,"Should be the same in America https://t.co/CBnlxJG9SG","Feb 23, 10:18:41 PM EST"
-1893863293191602639,"Government should go from Raptor 1 to Raptor 3 https://t.co/shwT1DALHu","Feb 23, 10:19:30 PM EST"
-1893864143515455501,"Grok can teach you anything https://t.co/bpabprNN61","Feb 23, 10:22:52 PM EST"
-1893865293681734087,"Grok 3 AI girlfriend or boyfriend is 🔥🔥 https://t.co/vGB5hMxoK9","Feb 23, 10:27:26 PM EST"
-1893869230543507895,"RT @godofprompt: Grok 3 is the most powerful AI chatbot today.
-
-But you're probably not using it to its full potential.
-
-Here are 7 ways to…","Feb 23, 10:43:05 PM EST"
-1893870468249141688,"Grok 3 customer support https://t.co/wyXwpVCta7","Feb 23, 10:48:00 PM EST"
-1893870592958320787,"Should be the same in America https://t.co/wYdftopY8d","Feb 23, 10:48:30 PM EST"
-1893874039845744777,"Try Grok DeepSearch.
-
-Tell it to use more time for a better result. https://t.co/sbH7wnQG2N","Feb 23, 11:02:12 PM EST"
-1893874376426049562,"Major improvement coming to Grok Voice tomorrow night! https://t.co/lJntxKU3BQ","Feb 23, 11:03:32 PM EST"
-1893874803875975555,"RT @cb_doge: The mission of Grok is to understand the universe. 💫 https://t.co/MoYo9AW0JY","Feb 23, 11:05:14 PM EST"
-1893875223021138078,"Yes https://t.co/O0fSFw48s3","Feb 23, 11:06:54 PM EST"
-1893890841481007146,"RT @HSajwanization: In search of truth … https://t.co/CSFNAMLJpn","Feb 24, 12:08:58 AM EST"
-1893892563288928334,"RT @teslaownersSV: Grok 3 is the smartest AI in the world
- https://t.co/qwYGbI7su7","Feb 24, 12:15:48 AM EST"
-1893896024944505252,"RT @iam_smx: “Grok is a word from a Heinlein novel, Stranger in a Strange Land. It's used by a guy who's raised on Mars.
-
-The word ‘grok’…","Feb 24, 12:29:33 AM EST"
-1893897114276536633,"😂 https://t.co/20aLlqFXBc","Feb 24, 12:33:53 AM EST"
-1893898155663528031,"RT @MarioNawfal: 🇳🇿🇨🇳NEW ZEALAND TO CHINA: WHAT’S WITH THE WAR GAMES?
-
-Chinese warships just staged live-fire drills in the Tasman Sea with…","Feb 24, 12:38:01 AM EST"
-1893899215971008615,"Cool https://t.co/77292QNmXc","Feb 24, 12:42:14 AM EST"
-1893899513321980054,"RT @KaranVaidya6: INSANE: Grok 3 + Replit Agent is a Superpower!!
-
-Using the pair, I built an AI agent that reviews my Pull Requests
-
-Here'…","Feb 24, 12:43:25 AM EST"
-1893904484192989242,"Cool https://t.co/z6PQZTysKr","Feb 24, 1:03:10 AM EST"
-1893904641236050143,"RT @RapidResponse47: .@SecScottBessent: "Interest rates are down five weeks in a row on the 10-year since President Trump took office — and…","Feb 24, 1:03:48 AM EST"
-1893915831551021563,"RT @cb_doge: Grok 3 beats ChatGPT, DeepSeek and Gemini. 🦾 https://t.co/Cyko5nuFxF","Feb 24, 1:48:16 AM EST"
-1893971421262426264,"RT @Saboo_Shubham_: Grok 3 builds an automated AI Recruitment Agent team from a simple English prompt.
-
-Replit lets me run, test and deploy…","Feb 24, 5:29:09 AM EST"
-1893973696894668922,"Those who do not take this email seriously will soon be furthering their career elsewhere https://t.co/EFVCjnXWrl","Feb 24, 5:38:12 AM EST"
-1893974973468770400,"Grok 3 is now the most powerful AI
- https://t.co/TQX4AgxZbf","Feb 24, 5:43:16 AM EST"
-1893975895473348624,"Indeed, congratulations @Alice_Weidel!
-
-At this rate of growth, @AfD will be the majority party by the next election. https://t.co/clXFDsKPn7","Feb 24, 5:46:56 AM EST"
-1893976187119992903,"https://t.co/Hn0v3dYhnx","Feb 24, 5:48:06 AM EST"
-1893976453441617961,"RT @stillgray: Remember. It’s okay to fire conservatives who have needs but it’s not okay to fire useless government employees because they…","Feb 24, 5:49:09 AM EST"
-1893978087479451793,"Smaller government is the only way to restore your freedom https://t.co/xF09VCttN0","Feb 24, 5:55:39 AM EST"
-1893983774381334619,"Those who ignored President Trump’s executive order to return to work have now received over a month’s warning.
-
-Starting this week, those who still fail to return to office will be placed on administrative leave. https://t.co/7XRj6W21eX","Feb 24, 6:18:14 AM EST"
-1893985796664730079,"RT @spacesudoer: Starship Flight 8 Infographic. https://t.co/SaLPWYiZra","Feb 24, 6:26:17 AM EST"
-1893985950264660360,"💯 https://t.co/vcEHio4iKP","Feb 24, 6:26:53 AM EST"
-1893988839955317188,"RT @BreannaMorello: 🚨JUST IN🚨
-
-The Roosevelt Hotel, which was used to house illegal aliens, is expected to close down operations in the com…","Feb 24, 6:38:22 AM EST"
-1893988897551446261,"RT @MarioNawfal: ELON: WE NEED TO GET THE GOVERNMENT OUT OF PEOPLE’S LIVES
-
-“I've had many conversations with President Trump, who is very…","Feb 24, 6:38:36 AM EST"
-1893990943218422181,"Then it is only a matter of time before @AfD wins https://t.co/O8Ha8I2P4L","Feb 24, 6:46:44 AM EST"
-1894046923553947983,"Progress https://t.co/ZokxSusZSG","Feb 24, 10:29:10 AM EST"
-1894047420876763572,"Reducing government waste & fraud is strongly supported by the people https://t.co/gd3oY4KJRY","Feb 24, 10:31:09 AM EST"
-1894047760468377996,"RT @RapidResponse47: NEW POLL: Americans overwhelmingly support President Trump’s agenda.
-
-(Harvard CAPS-Harris Poll, Feb. 19-20, 2025) htt…","Feb 24, 10:32:30 AM EST"
-1894050489014079817,"RT @MarioNawfal: 🚨🇺🇸GOVERNMENT UNIONS ARE SECRETLY BILLING TAXPAYERS—CONGRESS MAY FINALLY FIGHT BACK
-
-Federal employees are getting paid wi…","Feb 24, 10:43:20 AM EST"
-1894050683046744180,"Wow https://t.co/vsl29JgxOx","Feb 24, 10:44:07 AM EST"
-1894052984377483426,"The public votes overwhelmingly in favor. https://t.co/XqzYwHq5Ve","Feb 24, 10:53:15 AM EST"
-1894053420048306627,"RT @GadSaad: I know one or two things about mind viruses and parasitic minds, and you madam are a bipedal pathogen. @vonderleyen","Feb 24, 10:54:59 AM EST"
-1894056552979386374,"This is an extremely important insight.
-
-Defund government-funded NGOs! https://t.co/wpJ72kNMsc","Feb 24, 11:07:26 AM EST"
-1894058043903455342,"RT @RapidResponse47: SO TRUE! https://t.co/dpzcyfQom5","Feb 24, 11:13:22 AM EST"
-1894065065340403899,"Polls show that @DOGE is overwhelmingly POPULAR and that government spending should be reduced by at least $1 trillion!! https://t.co/6yvY0gDOUE","Feb 24, 11:41:16 AM EST"
-1894067485063725183,"The @Grok app and @X app are both #1
-
-Yay!!
-
-Update both apps to get the latest functionality! https://t.co/6jh5IdOEXo","Feb 24, 11:50:53 AM EST"
-1894069496349945895,"Yes https://t.co/JilR6sltDe","Feb 24, 11:58:52 AM EST"
-1894071293999288421,"Launch on Friday
- https://t.co/GaLdsH3day","Feb 24, 12:06:01 PM EST"
-1894071329843769826,"RT @MarioNawfal: 🚨🇺🇸83% OF VOTERS DEMAND SPENDING CUTS
-
-New poll: 83% of Americans want the government to cut spending instead of raising t…","Feb 24, 12:06:09 PM EST"
-1894077559802908768,"There are tens of millions of media subscriptions and software licenses paid for with your TAX dollars that are NEVER used by the federal government! https://t.co/1KwFnNYzgt","Feb 24, 12:30:55 PM EST"
-1894079788777673215,"🚀🚀 https://t.co/7AVcBUGUFc","Feb 24, 12:39:46 PM EST"
-1894080039198613709,"Yes https://t.co/RRzQUwHNj3","Feb 24, 12:40:46 PM EST"
-1894080335329071440,"Wow https://t.co/Rciqzh13Qc","Feb 24, 12:41:56 PM EST"
-1894080738158379137,"RT @MarioNawfal: 🚨🇺🇦INVESTIGATIVE JOURNALIST: ZELENSKY LOSES MAJORITY SUPPORT IN UKRAINIAN PARLIAMENT
-
-Investigative journalist @iosefinaof…","Feb 24, 12:43:32 PM EST"
-1894080982476619815,"https://t.co/dOM44VS3oX","Feb 24, 12:44:31 PM EST"
-1894081572766175261,"https://t.co/QnnnlqtnMs","Feb 24, 12:46:51 PM EST"
-1894081582366888052,"RT @WallStreetMav: Axios finds three-quarters of swing voters support DOGE. While 90% of Republicans — and more than half of Democrats — wa…","Feb 24, 12:46:54 PM EST"
-1894081984667799690,"RT @america: NEW POLL: @DOGE is One of the Most Popular Parts of President Trump’s Agenda:
-
-‘Undertaking a full-scale effort to find and e…","Feb 24, 12:48:30 PM EST"
-1894084335512252515,"Wow, this is worth reading https://t.co/BBqekT0ffV","Feb 24, 12:57:50 PM EST"
-1894088488464642344,"Starship technical update https://t.co/l6FIQWRyAR","Feb 24, 1:14:20 PM EST"
-1894088586443854001,"RT @MarioNawfal: 🚨🇺🇸 BIDEN’S TRANSPORTATION SECURITY ADMINISTRATION LET ILLEGAL IMMIGRANTS FLY WITHOUT IDS
-
-A FOIA lawsuit just exposed how…","Feb 24, 1:14:44 PM EST"
-1894091228054261781,"Great President @realDonaldTrump
- https://t.co/k0PMS8eoRC","Feb 24, 1:25:13 PM EST"
-1894091261516107891,"RT @RapidResponse47: PRESIDENT TRUMP: We have people who don't show up to work and nobody even knows if they work for the government so by…","Feb 24, 1:25:21 PM EST"
-1894091718427074885,"🔥😂 https://t.co/p9XZSRkW3G","Feb 24, 1:27:10 PM EST"
-1894091974468407554,"Absolutely https://t.co/MZvATgQjgm","Feb 24, 1:28:11 PM EST"
-1894092057750167737,"RT @cb_doge: 𝕏 is the #1 app in the News category.
-
-xAI Grok is the #1 app in the Productivity, Top Apps, and Top Overall categories (AppS…","Feb 24, 1:28:31 PM EST"
-1894092208015642822,"Well, at least we know what they did last week 🤣🤣 https://t.co/NLi6NoS55b","Feb 24, 1:29:07 PM EST"
-1894092883118231812,"Their SCIF must look like a Jackson Pollock painting under a black light! 🤣 https://t.co/qLjS64jN8o","Feb 24, 1:31:48 PM EST"
-1894094523053265339,"Wow, this thread is wild https://t.co/C6vZeUTGSg","Feb 24, 1:38:19 PM EST"
-1894094772194644187,"Starship https://t.co/TetHT2wUO9","Feb 24, 1:39:18 PM EST"
-1894095715150041250,"Likely https://t.co/8JIcuZ7mwE","Feb 24, 1:43:03 PM EST"
-1894095800617074848,"RT @cb_doge: BREAKING: President Donald Trump on Elon Musk’s email asking, "What did you get done this week?": https://t.co/nxjSp9acRC","Feb 24, 1:43:24 PM EST"
-1894095962345283876,"Now we know what they did last week https://t.co/ijqcUe4Lch","Feb 24, 1:44:02 PM EST"
-1894096324259193324,"RT @DC_Draino: What the actual hell
-
-NSA and CIA employees had a secret chatroom to discuss piss fetishes and artificial vaginas?!
-
-Strip a…","Feb 24, 1:45:28 PM EST"
-1894102001656660245,"Play to win decisively
- https://t.co/BViMbfRglZ","Feb 24, 2:08:02 PM EST"
-1894102663291195557,"Very one-sided https://t.co/mzHQQgFDEM","Feb 24, 2:10:40 PM EST"
-1894102770640138668,"Awesome! https://t.co/VRGsuzBzlX","Feb 24, 2:11:05 PM EST"
-1894103657357987874,"Time to impeach judges who violate the law https://t.co/4LAkyvd84F","Feb 24, 2:14:37 PM EST"
-1894104564925653422,"RT @DimaZeniuk: “Play to win or don’t play at all.”
-
-— Elon Musk https://t.co/ttxf2FXixT","Feb 24, 2:18:13 PM EST"
-1894107382449672652,"Join the new DoJ and fight actual crime this time! https://t.co/kdpC6iANeZ","Feb 24, 2:29:25 PM EST"
-1894109150646247431,"The deep state is everywhere https://t.co/BhAjUiskJv","Feb 24, 2:36:27 PM EST"
-1894112725883916773,"RT @WholeMarsBlog: FSD is so fucking awesome. Brings so much joy and comfort to my life. This is going to be such a huge hit.","Feb 24, 2:50:39 PM EST"
-1894120236749918371,"RT @USAEdMartin: Want to come and fight for “we the people?” Let’s go. Sign up here:
-https://t.co/Q7h2Gkk24A","Feb 24, 3:20:30 PM EST"
-1894121371372064769,"The President was clear https://t.co/dLvolzmjm8","Feb 24, 3:25:00 PM EST"
-1894124468857090140,"Interesting thread https://t.co/vYkuEByyVJ","Feb 24, 3:37:19 PM EST"
-1894131523361935816,"An activist cosplaying as a judge https://t.co/DRZdkS791E","Feb 24, 4:05:21 PM EST"
-1894133008292368394,"Cool https://t.co/7dwvkznG4M","Feb 24, 4:11:15 PM EST"
-1894137412801978375,"Twitter added far more features with fewer people.
-
-What really matters for improving American’s standard of living is shifting people from low productivity jobs in government to high productivity jobs in industry.
-
-Many more people needed in manufactur","Feb 24, 4:28:45 PM EST"
-1894137475028938809,"RT @WallStreetMav: Medicaid pays out an estimated $50 billion per year in improper payments for medical services.
-
-The Republicans in the…","Feb 24, 4:29:00 PM EST"
-1894137938977386559,"Absurd that a 5 min email generates this level of concern!
-
-Something is deeply wrong.
-
- https://t.co/P5oZ49BcBF","Feb 24, 4:30:50 PM EST"
-1894138927470317587,"RT @Sadie_NC: This is extremely troubling and shows once again why we need DOGE. https://t.co/ghsmfWYoXI","Feb 24, 4:34:46 PM EST"
-1894140609876955290,"🦾💯 https://t.co/8rsTTuDuxu","Feb 24, 4:41:27 PM EST"
-1894141358782517701,"RT @AlexFinnX: Grok 3's DeepSearch and Think are UNREAL
-
-They are the 2 most powerful AI tools ever made, yet there's a 99% chance you're u…","Feb 24, 4:44:26 PM EST"
-1894143781521313862,"Treason https://t.co/deXPM7rBiu","Feb 24, 4:54:03 PM EST"
-1894143850337505364,"RT @teslaownersSV: Cybertruck FSD is insane. The latest version 13.2.8 is mind blowing.
-
-The world has no idea that autonomy is here.","Feb 24, 4:54:20 PM EST"
-1894153876065968542,"And getting better almost every day.
-
-Only @Grok has access to real-time news. https://t.co/5QRaWhsIa8","Feb 24, 5:34:10 PM EST"
-1894165952276959340,"RT @RepOgles: Judge Bates joins the ranks of hundreds of partisan activists disobeying their oaths to score political points.
-
-Thanks to p…","Feb 24, 6:22:09 PM EST"
-1894166072884170919,"RT @VivekGRamaswamy: I am honored to officially announce my candidacy to serve as the next Governor of Ohio. https://t.co/HFIR3dLspe","Feb 24, 6:22:38 PM EST"
-1894166097177588100,"RT @Starlink: Starlink high-speed internet is now available on @airbaltic. Experience gate-to-gate connectivity, starting the moment you wa…","Feb 24, 6:22:44 PM EST"
-1894168137777779147,"They hate even the tiniest amount of accountability https://t.co/Mv2flWYLZy","Feb 24, 6:30:50 PM EST"
-1894171126995247178,"https://t.co/uKrcA2Lghy","Feb 24, 6:42:43 PM EST"
-1894173297786720718,"The email request was utterly trivial, as the standard for passing the test was to type some words and press send!
-
-Yet so many failed even that inane test, urged on in some cases by their managers.
-
-Have you ever witnessed such INCOMPETENCE and CONTEMPT ","Feb 24, 6:51:20 PM EST"
-1894173558613426667,"Soros leveraged tens of billions of dollars of government funding, domestically and abroad https://t.co/8Bj4r678dc","Feb 24, 6:52:23 PM EST"
-1894174146776461656,"Great! https://t.co/OY2hnmXyLw","Feb 24, 6:54:43 PM EST"
-1894175083259990283,"🎯 https://t.co/pGH4zD6tUD","Feb 24, 6:58:26 PM EST"
-1894175169079341217,"RT @Sadie_NC: This is precisely why we elected President Trump: we want Elon to find the waste. It has been too long since someone in our g…","Feb 24, 6:58:47 PM EST"
-1894175651890172141,"Thank you, President @realDonaldTrump https://t.co/mWw0vyfmCm","Feb 24, 7:00:42 PM EST"
-1894175922301145422,"The people are tired of their tax dollars being WASTED! https://t.co/cBecwFdKA6","Feb 24, 7:01:46 PM EST"
-1894176056254583266,"RT @FoxNews: VICTORY LAP: @elonmusk touted a new poll that revealed a majority of Americans support reducing wasteful government spending a…","Feb 24, 7:02:18 PM EST"
-1894177129887404484,"Subject to the discretion of the President, they will be given another chance.
-
-Failure to respond a second time will result in termination. https://t.co/04xzgScXfj","Feb 24, 7:06:34 PM EST"
-1894177873319395352,"RT @cb_doge: "DOGE is going to be great. The American people will be very happy that their tax dollars are being spent in a much more sensi…","Feb 24, 7:09:31 PM EST"
-1894180052822364526,"Thank you, Jamie Dimon! https://t.co/bc6N6UJaW5","Feb 24, 7:18:11 PM EST"
-1894180235584967011,"RT @Chesschick01: Virginia Governor Glenn Youngkin says Trump and Elon “need to press forward” with mass layoffs of federal workers even th…","Feb 24, 7:18:54 PM EST"
-1894180375574028729,"RT @FoxNews: 'If you don't answer ... you're fired': Trump stands behind Musk's DOGE productivity email https://t.co/SMDruu5kWU","Feb 24, 7:19:28 PM EST"
-1894180528347390423,"Thank you, Senator Scott! https://t.co/wBSMzE5cV2","Feb 24, 7:20:04 PM EST"
-1894180743166992719,"🇺🇸🔥 https://t.co/ONvw1dvCJ7","Feb 24, 7:20:56 PM EST"
-1894181547072524712,"Real work https://t.co/jfZSp93fYE","Feb 24, 7:24:07 PM EST"
-1894181645194072261,"🦾🇺🇸 https://t.co/brDBxcPgVi","Feb 24, 7:24:31 PM EST"
-1894182919494869284,"Now we know what they got done last week https://t.co/3zTvF98ex9","Feb 24, 7:29:34 PM EST"
-1894184136799068320,"Exactly https://t.co/VlApNz6WPg","Feb 24, 7:34:25 PM EST"
-1894184676371435539,"More tax dollars saved that go straight to REDUCING YOUR TAXES! 😀 https://t.co/ckuBywZkhN","Feb 24, 7:36:33 PM EST"
-1894184834550919252,"RT @billyuchenlin: "Is 112345679 a prime number?" My friend asked me to test this on Grok 3 reasoning this morning. Unsurprisingly, Grok na…","Feb 24, 7:37:11 PM EST"
-1894185207013806490,"Try Grok voice, it’s awesome 😎 https://t.co/N12wmcLFBz","Feb 24, 7:38:40 PM EST"
-1894185361787551778,"Thanks 🙏 https://t.co/fnzRo0BTW2","Feb 24, 7:39:17 PM EST"
-1894185671583314283,"Next flight on Friday
- https://t.co/dhM7aTTI1u","Feb 24, 7:40:31 PM EST"
-1894186598050533890,"Cool https://t.co/Yqfx2KVQ0O","Feb 24, 7:44:11 PM EST"
-1894187280887140723,"Needs improvement 😂 https://t.co/Lshx3VaUMU","Feb 24, 7:46:54 PM EST"
-1894187433916264665,"Makes sense https://t.co/GGmzakI2yV","Feb 24, 7:47:31 PM EST"
-1894190800395014604,"https://t.co/ZqOACHCynQ","Feb 24, 8:00:53 PM EST"
-1894191356337426642,"RT @MarioNawfal: 🇺🇸ELON’S JOB ACCOUNTABILITY PUSH FACES RESISTANCE
-
-Elon asked federal employees to outline their work in a five-point summ…","Feb 24, 8:03:06 PM EST"
-1894191654044930499,"Exactly. This is just a case of asking federal workers to do what everyone else does. Fair. https://t.co/gCprHpIJPK","Feb 24, 8:04:17 PM EST"
-1894192171164500349,"Major improvement.
-
-The key test is Friday afternoon. https://t.co/FmygVycpeY","Feb 24, 8:06:20 PM EST"
-1894197804178051438,"🔥🔥🔥 https://t.co/Js4MQiN1cs","Feb 24, 8:28:43 PM EST"
-1894198047418323191,"https://t.co/UbATWBwbIp","Feb 24, 8:29:41 PM EST"
-1894198165508854117,"😂😂 https://t.co/XbpQuRMgRr","Feb 24, 8:30:09 PM EST"
-1894199039421210990,"Exactly https://t.co/V1LHnFV5P0","Feb 24, 8:33:38 PM EST"
-1894201222711971901,"Good https://t.co/mSsP4Z8bHq","Feb 24, 8:42:18 PM EST"
-1894201583363396066,"RT @SpaceX: SpaceX training complete! Falcon 9 is targeted to launch Dragon and Crew-10 to the @Space_Station no earlier than Wednesday, Ma…","Feb 24, 8:43:44 PM EST"
-1894202740227936765,"🤨 https://t.co/Ujjqk3kwzD","Feb 24, 8:48:20 PM EST"
-1894203088573272187,"Well … at least we know what they did last week 🤣🤣 https://t.co/C6vZeUTGSg","Feb 24, 8:49:43 PM EST"
-1894207545017077805,"https://t.co/ukwI44FFwr","Feb 24, 9:07:26 PM EST"
-1894208251014652139,"RT @Glenn_Diesen: Top Trump negotiator Steve Witkoff argues that NATO provoked Russia to invade Ukraine: NATO expansion "became a threat to…","Feb 24, 9:10:14 PM EST"
-1894208913907880315,"Awesome https://t.co/1eM8rx6ivO","Feb 24, 9:12:52 PM EST"
-1894209192757793031,"It’s time to fire fake judges who place political activism above the law! https://t.co/OS2xdCPfNC","Feb 24, 9:13:58 PM EST"
-1894214162253058086,"Wow https://t.co/UkTJ5EoRm7","Feb 24, 9:33:43 PM EST"
-1894214685580562948,"RT @charliekirk11: Wait for it… https://t.co/UE71EPPWr9","Feb 24, 9:35:48 PM EST"
-1894221644182217201,"Awesome 😎 https://t.co/rV9t3bXqxQ","Feb 24, 10:03:27 PM EST"
-1894221971766084049,"Good luck, you have my full endorsement! https://t.co/HfuiunGLs4","Feb 24, 10:04:45 PM EST"
-1894222602862039455,"👍😢 https://t.co/uykILuNx6B","Feb 24, 10:07:16 PM EST"
-1894223197869903950,"It’s not just that borders were “left open”.
-
-There was a massive, concerted campaign to usher in as many illegals as possible on an unprecedented scale in order to achieve permanent one-party rule.
-
-Treason. https://t.co/3jVaMQketT","Feb 24, 10:09:37 PM EST"
-1894225040687993296,"[Cracks Knuckles] https://t.co/aKLCpCYupc","Feb 24, 10:16:57 PM EST"
-1894225322834628822,"Grok it https://t.co/4P3cVGWXMG","Feb 24, 10:18:04 PM EST"
-1894225930824159617,"Grok is getting better fast https://t.co/TbyZn34u1i","Feb 24, 10:20:29 PM EST"
-1894226927315292337,"Wow https://t.co/BRWh3KHCla","Feb 24, 10:24:27 PM EST"
-1894228014533427648,"Exactly https://t.co/Hr19VTUrUf","Feb 24, 10:28:46 PM EST"
-1894228436975325666,"🤣 https://t.co/9vsm2YbhM3","Feb 24, 10:30:27 PM EST"
-1894229541637550528,"The security is so weak that other countries could have held a block party in government systems and they wouldn’t even know https://t.co/ntIRVxgkw4","Feb 24, 10:34:50 PM EST"
-1894229630032515306,"RT @DNIGabbard: This behavior is unacceptable and those involved WILL be held accountable. These disgusting chat groups were immediately sh…","Feb 24, 10:35:11 PM EST"
-1894230168266575971,"RT @cb_doge: Grok uses the 𝕏 platform to understand what's happening in the world in real time unlike others who rely solely on blogs and a…","Feb 24, 10:37:19 PM EST"
-1894232242484084897,"Exactly https://t.co/Q0qdBsSLHn","Feb 24, 10:45:34 PM EST"
-1894234154298216889,"TSCI lol https://t.co/0UlBVNhms3","Feb 24, 10:53:10 PM EST"
-1894236197184311558,"!! https://t.co/dnp5jTpKy0","Feb 24, 11:01:17 PM EST"
-1894236889164779795,"New Grok uploading to App Store tonight.
-
-MAJOR improvements to voice.","Feb 24, 11:04:02 PM EST"
-1894244570608685370,"Sigh, probably not wrong https://t.co/nVru71tXCP","Feb 24, 11:34:33 PM EST"
-1894244902357406013,"Scam Altman https://t.co/aIrkKK5AzN","Feb 24, 11:35:52 PM EST"
-1894246005853622666,"Please DM any insights regarding waste or fraud in your department/agency.
-
-🇺🇸🇺🇸🇺🇸 Save America! 🇺🇸🇺🇸🇺🇸 https://t.co/fG77KMO93N","Feb 24, 11:40:15 PM EST"
-1894246233075847442,"Sounds like he’s trying to hide his assets https://t.co/QIBEYdcVBG","Feb 24, 11:41:10 PM EST"
-1894246876989591939,"Just applying the same standards to public vs private workforce. Fair rules for all. https://t.co/M6mIQOcLKj","Feb 24, 11:43:43 PM EST"
-1894250018019971199,"https://t.co/mBWZr4PJJc","Feb 24, 11:56:12 PM EST"
-1894250704233271298,"Indeed https://t.co/2wByhoBvMR","Feb 24, 11:58:56 PM EST"
-1894250862333006029,"🎯 https://t.co/8Tf1pyRDeL","Feb 24, 11:59:33 PM EST"
-1894251032344928461,"And they want to kill me for doing so.
-
-That’s how you know it’s a big deal.","Feb 25, 12:00:14 AM EST"
-1894251494502719963,"Yes https://t.co/HyynBHgUKE","Feb 25, 12:02:04 AM EST"
-1894259073207455873,"Cool https://t.co/zMqTUAQgSS","Feb 25, 12:32:11 AM EST"
-1894259365659775089,"RT @jasondebolt: “Some federal employees don’t have access to email on the weekends”
-
-“Elon is not their boss”
-
-“It’s just plain wrong”
-
-“I…","Feb 25, 12:33:21 AM EST"
-1894273301478031553,"The league table of which departments in the US government have made the most or least progress with efficiency
-https://t.co/XoY97G12po","Feb 25, 1:28:43 AM EST"
-1894273359057490068,"💯 https://t.co/bJO6AgjdeQ","Feb 25, 1:28:57 AM EST"
-1894273809336717747,"Hi Mom, I mean “inseminated person”.
-
-This is crazy!! https://t.co/sJlB9wAnAl","Feb 25, 1:30:44 AM EST"
-1894284082991042970,"RT @MarioNawfal: 🇺🇸 ALINA HABBA: IF YOU CAN’T ANSWER AN EMAIL, YOU SHOULDN’T BE WORKING FOR AMERICA
-
-“I worked my butt off—speaking to peop…","Feb 25, 2:11:34 AM EST"
-1894284633770226076,"RT @teslaownersSV: The future should look like the future
-
-Robovan is 🤯 https://t.co/uFZYB9AgwE","Feb 25, 2:13:45 AM EST"
-1894284815282966705,"RT @MarioNawfal: 🚨🇺🇸ALINA HABBA: STOP COMPLAINING ABOUT ELON... WHAT ARE YOU ACTUALLY DOING FOR YOUR CONSTITUENTS?
-
-“If you’re wasting taxp…","Feb 25, 2:14:28 AM EST"
-1894284993393775082,"RT @ElonClipsX: Walter Isaacson: Musk is driven by mission more than any person I've ever seen.
-
-“It's not only mission, it's cosmic missi…","Feb 25, 2:15:11 AM EST"
-1894287381378851175,"RT @MarioNawfal: MARS ONCE HAD VACATION-WORTHY BEACHES—WHAT HAPPENED TO THEM?
-
-Turns out the Red Planet wasn’t always a dusty wasteland.…","Feb 25, 2:24:40 AM EST"
-1894289778419667231,"Yeah https://t.co/ArRm7mJ1B7","Feb 25, 2:34:12 AM EST"
-1894290302443426157,"Yes https://t.co/QZjXivAMVX","Feb 25, 2:36:16 AM EST"
-1894293557042946420,"https://t.co/JW7gf3O70f","Feb 25, 2:49:12 AM EST"
-1894293842767335732,"RT @cb_doge: Do
-Only
-Good
-Everyday","Feb 25, 2:50:21 AM EST"
-1894295172168425665,"https://t.co/3IuSGe3WoK","Feb 25, 2:55:38 AM EST"
-1894304507145982256,"RT @C__Herridge: NEW: Records obtained during our investigation show pressure from Biden Administration @HHSGov to target those who blocked…","Feb 25, 3:32:43 AM EST"
-1894305457801761103,"!! https://t.co/NkrTvgMNXv","Feb 25, 3:36:30 AM EST"
-1894305722000970104,"RT @MarioNawfal: ELON: IF YOU’RE NOT PUTTING A LITTLE BIT BACK IN, YOU’RE NOT DELETING ENOUGH
-
-“People are often afraid to delete things.…","Feb 25, 3:37:33 AM EST"
-1894306918946279893,"RT @diana_dukic: OCCUPY MARS https://t.co/F7ljq0yPyu","Feb 25, 3:42:18 AM EST"
-1894309953059590197,"RT @EvaLovesDesign: Such beauty on 𝕏 https://t.co/uSV02EGaCv","Feb 25, 3:54:22 AM EST"
-1894310590992331146,"Yes https://t.co/cdp7fhzt6A","Feb 25, 3:56:54 AM EST"
-1894313419433807956,"💯 https://t.co/QoqMIVdhls","Feb 25, 4:08:08 AM EST"
-1894314375810617375,"What @DOGE does to big government https://t.co/s4gSQke32R","Feb 25, 4:11:56 AM EST"
-1894315248821440913,"💯 https://t.co/XCcxewrrHk","Feb 25, 4:15:24 AM EST"
-1894318296583082060,"This is our one & only chance to restore democracy from the dictatorship of the bureaucracy.
-
-It is now or never.
-
-It must be now. https://t.co/pPaob5SUPI","Feb 25, 4:27:31 AM EST"
-1894327574865875249,"RT @nima_owji: This is why X Premium+ is the best deal on the internet!
-
-It comes with SuperGrok too! https://t.co/3sLnDLcBx6","Feb 25, 5:04:23 AM EST"
-1894328366360400045,"Yes https://t.co/y1erz1tO5s","Feb 25, 5:07:32 AM EST"
-1894331922589126849,"On one hand, @DOGE computer nerds review government data to eliminate waste & fraud.
-
-On the other hand, demented creeps at intelligence agencies spy on you at will.
-
-Which is of greater concern? https://t.co/C6vZeUTGSg","Feb 25, 5:21:39 AM EST"
-1894409963256320281,"This is an amazing story and exactly what @DOGE aims to do!
-
-The federal government has a MUCH larger amount of WASTE & FRAUD than a local or state government could ever have, because it can always print more money.
-
-Unfortunately, there is no free l","Feb 25, 10:31:46 AM EST"
-1894415314215211464,"Wow https://t.co/L9xh0qgik0","Feb 25, 10:53:02 AM EST"
-1894415440648310967,"RT @MarioNawfal: ELON: WE SPENT FAR TOO MUCH ON REGIME CHANGE IN VARIOUS COUNTRIES
-
-“I do think we interfere too much in what other countri…","Feb 25, 10:53:32 AM EST"
-1894415556448850204,"Good https://t.co/A3yIg9WiVg","Feb 25, 10:53:59 AM EST"
-1894415998444605775,"Do you trust the government? https://t.co/io3Br7WCvN","Feb 25, 10:55:45 AM EST"
-1894416765356314879,"It’s always the spouse … https://t.co/fqUotujaLr","Feb 25, 10:58:48 AM EST"
-1894416938463629590,"RT @cb_doge: Grok 3 is available for free to all! 🔥
-
-TRY IT NOW! https://t.co/TLcKHKR5Zd","Feb 25, 10:59:29 AM EST"
-1894417769707573618,"I will do whatever I can.
-
-There are limitations place upon me. https://t.co/e1MRh53Vgx","Feb 25, 11:02:47 AM EST"
-1894417886229500276,"Wow https://t.co/KkhEk0vLoM","Feb 25, 11:03:15 AM EST"
-1894418340816589026,"🎯 https://t.co/LXTS9ACPYT","Feb 25, 11:05:03 AM EST"
-1894419548650311924,"Exactly https://t.co/xndlC7nwT4","Feb 25, 11:09:51 AM EST"
-1894420030923968625,"RT @alx: 69% of Americans think the U.S. should cut foreign aid. https://t.co/ViPgVPGEoY","Feb 25, 11:11:46 AM EST"
-1894420154815279147,"Will do https://t.co/8HHpgUrPrK","Feb 25, 11:12:16 AM EST"
-1894421527460012039,"https://t.co/bzPM2sQnj6","Feb 25, 11:17:43 AM EST"
-1894422002754359460,"Wow, I didn’t know that https://t.co/aHEVdFl9vo","Feb 25, 11:19:36 AM EST"
-1894425065506443701,"This time, the DC swamp is actually draining https://t.co/McV8cc2UAG","Feb 25, 11:31:46 AM EST"
-1894425304590160249,"RT @ray4tesla: FSD in action in Beijing & being live streamed. Testers initial impression: more human like, smooth and confident compared t…","Feb 25, 11:32:43 AM EST"
-1894426491297173573,"Wow https://t.co/7D8HNNs6nX","Feb 25, 11:37:26 AM EST"
-1894427923463246217,"https://t.co/fRTvGtCxze","Feb 25, 11:43:08 AM EST"
-1894428003209527762,"RT @SpaceX: Super Heavy on the launch pad at Starbase ahead of Starship's eighth flight test https://t.co/MdiIQMy5EF","Feb 25, 11:43:27 AM EST"
-1894430838051541091,"Cool https://t.co/LR59WY0Bgn","Feb 25, 11:54:43 AM EST"
-1894433339089748395,"RT @Muskstaycalm: An Israeli shares that in Israel, no one is calling Elon Musk a Nazi instead, people are more focused on their incredible…","Feb 25, 12:04:39 PM EST"
-1894444882405765511,"More tax dollars saved! https://t.co/EL6oPsZtY9","Feb 25, 12:50:31 PM EST"
-1894445021983904091,"Cool https://t.co/KaDKk8wTMZ","Feb 25, 12:51:04 PM EST"
-1894445787578618228,"Same https://t.co/qwYHknUvdN","Feb 25, 12:54:07 PM EST"
-1894445949432598536,"Grok https://t.co/SxeWEyftZn","Feb 25, 12:54:46 PM EST"
-1894450322812408274,"I wonder how long this has been going on.
-
-These are individuals with the ability to spy on any Americans at will. https://t.co/cdoZSgfIR4","Feb 25, 1:12:08 PM EST"
-1894450661179494862,"Truth is stranger than fiction https://t.co/X6lJc5ePMP","Feb 25, 1:13:29 PM EST"
-1894452572003713366,"Yeah, it’s mostly fake https://t.co/igbnutb0wz","Feb 25, 1:21:05 PM EST"
-1894453267780063549,"Cool https://t.co/uFjTenvstZ","Feb 25, 1:23:50 PM EST"
-1894454068644647091,"Their new name is much more fitting https://t.co/3f3VNq74Kw","Feb 25, 1:27:01 PM EST"
-1894454908398834059,"Wow https://t.co/7Lvte5oLM6","Feb 25, 1:30:22 PM EST"
-1894455169401983147,"RT @DimaZeniuk: “If you are wondering if Elon Musk is going to bring all these things together, my answer is yes.”
-
-— Walter Isaacson https…","Feb 25, 1:31:24 PM EST"
-1894455835600060585,"https://t.co/hM48lvTtFA","Feb 25, 1:34:03 PM EST"
-1894456327759696287,"Voter fraud charges https://t.co/uZZOwTV8MU","Feb 25, 1:36:00 PM EST"
-1894456811069292708,"https://t.co/hVnfe6HPTh","Feb 25, 1:37:55 PM EST"
-1894457500491289012,"Terrible https://t.co/Tec4oecCO4","Feb 25, 1:40:40 PM EST"
-1894458389268410697,"RT @wmorrill3: Shout out to the engineering team for the work that went into making steer-by-wire "feel as natural as riding a bicycle."…","Feb 25, 1:44:11 PM EST"
-1894465488484536536,"🇺🇸🇺🇸🇺🇸 https://t.co/Rc7f1JEmrr","Feb 25, 2:12:24 PM EST"
-1894465714603659301,"https://t.co/Vak5Rsi9Xb","Feb 25, 2:13:18 PM EST"
-1894465919432495319,"RT @RapidResponse47: REPORTER: What was the reason for the President replacing the Chairman of the Joint Chiefs?
-
-@PressSec: "He thinks he'…","Feb 25, 2:14:07 PM EST"
-1894466131848826998,"RT @RapidResponse47: 🚨 @PressSec announces changes to the "press pool" that covers President Trump:
-
-"For decades, a group of D.C.-based jo…","Feb 25, 2:14:57 PM EST"
-1894467499749773579,"RT @Starlink: Starlink’s simplified design enables seamless installs with minimal downtime 🛰️✈️","Feb 25, 2:20:24 PM EST"
-1894467523963490429,"RT @qatarairways: Qatar Airways has equipped over 50% of its Boeing 777 fleet with Starlink connectivity in just four months since launchin…","Feb 25, 2:20:29 PM EST"
-1894467908279157234,"Haha https://t.co/2qIJtWMrlA","Feb 25, 2:22:01 PM EST"
-1894468659571298735,"The @DOGE department/agency leaderboard shows progress within the government, so the public can see for themselves who is making the most or least progress! https://t.co/MccdPtNVBu","Feb 25, 2:25:00 PM EST"
-1894468794120380544,"😬 https://t.co/7wh9nZK3jn","Feb 25, 2:25:32 PM EST"
-1894469122945335665,"RT @bennyjohnson: 🚨Alina Habba BLASTS federal employees who REFUSE to respond to Elon Musk’s email:
-
-"I can name 5 things, 5 bullets, in a…","Feb 25, 2:26:51 PM EST"
-1894469218894320081,"RT @FoxNews: More than 1 million federal employees complied with Musk's 'what did you do last week' email: WH https://t.co/kuEQEAdOjZ","Feb 25, 2:27:13 PM EST"
-1894469667516993841,"Who funds these groups? https://t.co/1RMbKdyn9a","Feb 25, 2:29:00 PM EST"
-1894471242155266394,"RT @PressSec: A group of DC-based journalists, the White House Correspondents' Association, has long dictated which journalists get to ask…","Feb 25, 2:35:16 PM EST"
-1894471392294572198,"RT @FoxNews: Stressing about being able to name five things you did last week at work in response to Elon Musk's email? "You're part of the…","Feb 25, 2:35:52 PM EST"
-1894471434849980617,"RT @america: Counselor to the President Alina Habba on the ‘What did you do last week’ Email “I can name 5 things, 5 bullets, in about 5 mi…","Feb 25, 2:36:02 PM EST"
-1894472312805831038,"MAJOR housecleaning is needed https://t.co/V3gCo53TyK","Feb 25, 2:39:31 PM EST"
-1894472533170426134,"RT @cb_doge: DOGE - Agency Efficiency Leaderboard https://t.co/Mt5ALR27Th","Feb 25, 2:40:24 PM EST"
-1894474621312958511,"RT @RapidResponse47: Here is a tiny sample of the illegal immigrant criminals arrested in so-called “sanctuary” destinations in the past fe…","Feb 25, 2:48:42 PM EST"
-1894474939258081741,"🤨 https://t.co/xSXmChN7TD","Feb 25, 2:49:57 PM EST"
-1894475418654371979,"Maybe he was talking about the various demented sex positions discussed in “top secret” intel message groups 🤷♂️ https://t.co/fbubg0O9wJ","Feb 25, 2:51:52 PM EST"
-1894478481918234800,"😎 https://t.co/08Kp1kK49X","Feb 25, 3:04:02 PM EST"
-1894486190365315578,"More tax dollars saved.
-
-Why was American taxpayer money sent to the WEF? It’s a wealthy boondoggle in Switzerland! https://t.co/hLP8DchbKI","Feb 25, 3:34:40 PM EST"
-1894493165518033396,"RT @thatsKAIZEN: The far left, unelected officials, and media want you to focus more on who is solving the problems than the problems they…","Feb 25, 4:02:23 PM EST"
-1894493960300892487,"RT @MarioNawfal: ELON: WE MUST PUT AN END TO THE TYRANNY OF THE BUREAUCRACY
-
-“In order for us to be a true democracy, a functioning democra…","Feb 25, 4:05:32 PM EST"
-1894494468587622555,"💯 https://t.co/B6iHmdzLI4","Feb 25, 4:07:33 PM EST"
-1894499595285037116,"Wow https://t.co/DIS9wQGcGR","Feb 25, 4:27:56 PM EST"
-1894499799702843572,"Starbase, Texas https://t.co/r5QzTr7oNN","Feb 25, 4:28:45 PM EST"
-1894501432713232654,"It is essential or democracy dies https://t.co/rY3q8KMdt9","Feb 25, 4:35:14 PM EST"
-1894509234353524859,"🎯 https://t.co/QIgXILLQM1","Feb 25, 5:06:14 PM EST"
-1894509410015211576,"RT @MarioNawfal: 🚨🇺🇸 TRUMP’S $5 MILLION “GOLD CARD” PLAN: PAY TO STAY IN AMERICA
-
-Trump wants to sell special U.S. residency “gold cards” f…","Feb 25, 5:06:56 PM EST"
-1894509750517113155,"People don’t want their tax dollars wasted.
-
-Turns out that is very popular! https://t.co/g9LwfyORrz","Feb 25, 5:08:17 PM EST"
-1894511286899142709,"https://t.co/IUP5CMfpRa","Feb 25, 5:14:23 PM EST"
-1894511907211460620,"RT @KidRock: DOGE has asked government employees to send five things they did LAST WEEK (boo-hoo). I ask my staff to do this every day—not…","Feb 25, 5:16:51 PM EST"
-1894512661221572717,"🇺🇸🇺🇸 https://t.co/BoWXEaYBYo","Feb 25, 5:19:51 PM EST"
-1894513915352027540,"When judges egregiously undermine the democratic will of the people, they must be fired or democracy dies! https://t.co/xQq34rAU7F","Feb 25, 5:24:50 PM EST"
-1894515950839345563,"🔥🔥 https://t.co/XCOUecWYtD","Feb 25, 5:32:55 PM EST"
-1894521865978134821,"Ways to use @Grok most effectively https://t.co/y49lSl6dRP","Feb 25, 5:56:26 PM EST"
-1894522576380035107,"What is the point of having democratic elections if unelected activist “judges” can override the clear will of the people?
-
-Well, that’s no democracy at all! https://t.co/z49p0V7fdP","Feb 25, 5:59:15 PM EST"
-1894524543537999892,"Perhaps Ray Dalio has different data, but Grok thinks US, Europe & Japan manufacturing output is significantly higher than China
-
-https://t.co/Tgfa6H0Tjq https://t.co/SenTkW4u5Q","Feb 25, 6:07:04 PM EST"
-1894524839580357056,"RT @alx: Good. Impeach Activist Judges","Feb 25, 6:08:14 PM EST"
-1894525128626565599,"Basic incentives explain behavior https://t.co/qTENbBajjU","Feb 25, 6:09:23 PM EST"
-1894525260180898214,"This would help a lot of people https://t.co/tYxpIdluIz","Feb 25, 6:09:55 PM EST"
-1894525323217100953,"Exactly! https://t.co/PaHZHk1Mp5","Feb 25, 6:10:10 PM EST"
-1894529307524923512,"The only way to restore rule of the people in America is to impeach judges. No one is above the law, including judges.
-
-That is what it took to fix El Salvador. Same applies to America. https://t.co/HtPINo6ngU","Feb 25, 6:26:00 PM EST"
-1894529801903395062,"People want their money spent wisely. Simple as that. https://t.co/L2IDcuz5bR","Feb 25, 6:27:58 PM EST"
-1894541392849809536,"Nuts https://t.co/jrDCDF6gpw","Feb 25, 7:14:01 PM EST"
-1894545949973770684,"If ANY judge ANYWHERE can block
-EVERY Presidential order EVERYWHERE,
-we do NOT have democracy,
-we have TYRANNY of the JUDICIARY.","Feb 25, 7:32:08 PM EST"
-1894548030306541882,"Ahem, we said 5 items and that’s only 4 https://t.co/UKYUZ2uiJI","Feb 25, 7:40:24 PM EST"
-1894550696042565658,"Unfortunately, as President Bukele eloquently articulates, there is no other option.
-
-We must impeach to save democracy. https://t.co/qDoUmpIg27","Feb 25, 7:50:59 PM EST"
-1894551762020823333,"RT @EndWokeness: 3 judges today blocked Trump from freezing foreign aid, federal grants, limiting refugees.
-
-All were appointed by Biden.…","Feb 25, 7:55:13 PM EST"
-1894551848981336273,"It is the only way https://t.co/HN34xilqPW","Feb 25, 7:55:34 PM EST"
-1894561938215964672,"More of your tax dollars saved!
-
-Most of these items are mundane and may not seem like much individually, but there are millions of minor savings that add up to billions of dollars cumulatively.
-
-Ultimately, there will be a trillion+ dollars of waste and","Feb 25, 8:35:39 PM EST"
-1894562022177595715,"RT @DOGE: Today, the Federal Government exceeded $100M in annual rent savings through cancellations of 250+ vacant/underutilized leases to…","Feb 25, 8:36:00 PM EST"
-1894600454857777457,"RT @CurtisHouck: WATCH: CNN explodes when @ScottJenningsKY asks two Democratic panelists how many of Joe Biden's staffers (who actually ran…","Feb 25, 11:08:43 PM EST"
-1894600615659024417,"RT @cb_doge: The golden age of America begins RIGHT NOW. 🇺🇸 https://t.co/R0B2m0dnyh","Feb 25, 11:09:21 PM EST"
-1894607807267082509,"Accurate https://t.co/ZT4xHl1p8n","Feb 25, 11:37:56 PM EST"
-1894614893040439325,"https://t.co/8EuvXp2bj3","Feb 26, 12:06:05 AM EST"
-1894617785403134355,"RT @FoxNews: Federal agencies control fates of employees who bucked Musk 'what did you do last week' email https://t.co/TpwJmhx8yi","Feb 26, 12:17:34 AM EST"
-1894618776156410268,"RT @cb_doge: Tell me an AI, other than Grok, that has real-time access to the #1 news app.
-
-I will wait.","Feb 26, 12:21:31 AM EST"
-1894619903946010951,"RT @SecDuffy: The U.S. government takes eight, ten, or even fifteen years to upgrade its systems, and that’s the enemy of progress.
-
-We wi…","Feb 26, 12:26:00 AM EST"
-1894642356596384000,"!! https://t.co/P2XL0qBPn3","Feb 26, 1:55:13 AM EST"
-1894739348555215126,"RT @notlouisck: I have said many times, that I am always going to be critical of everything. Left or right. I will also give praise when pr…","Feb 26, 8:20:37 AM EST"
-1894739500988768621,"RT @SecVetAffairs: We found nearly $2 billion in @DeptVetAffairs contracts that we’ll be canceling so we can redirect the funds back to Vet…","Feb 26, 8:21:14 AM EST"
-1894741649873387891,"RT @emollick: Grok 3 is the first (and only) model to solve this non-riddle. https://t.co/1tO32iQTZQ","Feb 26, 8:29:46 AM EST"
-1894742423894397094,"This is a good question. What would you do? https://t.co/cntPmZmeNO","Feb 26, 8:32:51 AM EST"
-1894744125938819481,"Wow, this is cool.
-
-AI gaming will be massive. https://t.co/W125t7VqXz","Feb 26, 8:39:36 AM EST"
-1894746675589120272,"They just arrested the person who won the most votes in the Romanian presidential election. This is messed up. https://t.co/hXjR4hrBcu","Feb 26, 8:49:44 AM EST"
-1894746844942459130,"🤦♂️ https://t.co/VV0VZsESa7","Feb 26, 8:50:25 AM EST"
-1894747254138769628,"Truth is stranger than fiction https://t.co/5QoHpIz5Yk","Feb 26, 8:52:02 AM EST"
-1894747556267122898,"RT @JackPosobiec: JD: The EU has abandoned traditional values. You just overturned the elections in Romania
-
-EU Leaders: Lies! Disgrace! F…","Feb 26, 8:53:14 AM EST"
-1894747735930163542,"Another judge violating the will of the people https://t.co/hrNRPh34Q1","Feb 26, 8:53:57 AM EST"
-1894748104680681834,"The woke mind virus propagates like cordyceps through government and corporations https://t.co/a9IX6oYDFn","Feb 26, 8:55:25 AM EST"
-1894748351884648534,"🔥😂 https://t.co/l3hJHrl2Wa","Feb 26, 8:56:24 AM EST"
-1894752660097577457,"What a hypocrite https://t.co/XmYiyDfiZL","Feb 26, 9:13:31 AM EST"
-1894752930399396289,"Wow https://t.co/W3IC2pkYDx","Feb 26, 9:14:36 AM EST"
-1894752996673622211,"RT @MarioNawfal: 🚨🇷🇴 GEORGE SIMION: PEOPLE ARE GATHERED TO SUPPORT CĂLIN GEORGESCU
-
-“We are in front of the Prosecutor’s Office. Many have…","Feb 26, 9:14:51 AM EST"
-1894753985380147603,"When you count real questions without answers prepared in advance, President @realDonaldTrump is infinity percent ahead of Biden already! https://t.co/rL8Rd33M2s","Feb 26, 9:18:47 AM EST"
-1894756125578273055,"This is what I mean by the woke mind virus. The more I learn, the more insidious and deadly it appears.
-
-Maybe the biggest existential danger to humanity is having it programmed into the AI, as is the case for every AI besides @Grok. Even for Grok, it’s ","Feb 26, 9:27:17 AM EST"
-1894756352544673852,"Correct. The parasites are thrashing hard. https://t.co/8FAXd8kdxg","Feb 26, 9:28:11 AM EST"
-1894756415769600335,"RT @cb_doge: BREAKING: President Trump stated that all cabinet members are extremely happy with Elon Musk. https://t.co/al70ve7KgW","Feb 26, 9:28:27 AM EST"
-1894756606597804035,"https://t.co/T1DiZ4CeKr","Feb 26, 9:29:12 AM EST"
-1894756779352842333,"💯 https://t.co/37nf6ztLGO","Feb 26, 9:29:53 AM EST"
-1894765014256370007,"Bravo, @JeffBezos! https://t.co/XZOxVryVTa","Feb 26, 10:02:37 AM EST"
-1894765738767835362,"Whoops, they must have slipped and accidentally created an app to fly in 360,000 illegals per year to US swing states!
-
-Lmao please. https://t.co/QTAK50LOqs","Feb 26, 10:05:29 AM EST"
-1894766142633160850,"The New York Times is pure propaganda https://t.co/2FBLQiojGH","Feb 26, 10:07:06 AM EST"
-1894766808210509877,"Cool.
-
-Needs to be quite a bit thicker to stop 5.56mm supersonic rounds, but this is a start. https://t.co/aAgLhgC4cC","Feb 26, 10:09:44 AM EST"
-1894767144153333829,"The people love @DOGE !
-
- https://t.co/MCIQHLccvf","Feb 26, 10:11:04 AM EST"
-1894767307877978124,"Yes https://t.co/zyWU4AiDCo","Feb 26, 10:11:43 AM EST"
-1894767428598456418,"This sounds problematic https://t.co/agIA95M2sO","Feb 26, 10:12:12 AM EST"
-1894771116373065837,"RT @PressSec: President Trump’s All-Star Cabinet and @ElonMusk will meet at the White House for the first time today.
-
-All of these excepti…","Feb 26, 10:26:51 AM EST"
-1894832076345549041,"RT @NicoleShanahan: Can the people of California defeat the “Woke Mind Virus”? We will soon find out. https://t.co/7xz08pA3ND","Feb 26, 2:29:05 PM EST"
-1894832660297719949,"https://t.co/S3SXDxKJzH","Feb 26, 2:31:25 PM EST"
-1894832790178267358,"RT @RapidResponse47: ELON: "President Trump has put together the best Cabinet ever... And I do not give false praise. This is an incredible…","Feb 26, 2:31:56 PM EST"
-1894833186993250581,"Just common sense https://t.co/tfjj5ZHNES","Feb 26, 2:33:30 PM EST"
-1894833403192643721,"https://t.co/Wy8rSWVHww","Feb 26, 2:34:22 PM EST"
-1894833561083224132,"https://t.co/0yd70X9mhe","Feb 26, 2:34:59 PM EST"
-1894834415651410205,"Norm Eisen stole $17 million of YOUR MONEY to “promote democracy” and used it for a muppet show.
-
-Sounds like a crime … https://t.co/EKXUW3aZOP","Feb 26, 2:38:23 PM EST"
-1894836472852947023,"Indeed, it is essential to reduce the budget deficit to match economic growth!
-
-We will get the 2026 deficit to ~3% of GDP. Sensible deregulation will ensure that economic growth is ~3% or higher.
-
-That will both DEFEAT INFLATION and REDUCE INTEREST RATE","Feb 26, 2:46:34 PM EST"
-1894852421978866141,"!! https://t.co/xX8dzbP5h2","Feb 26, 3:49:56 PM EST"
-1894864772287353284,"🤯 https://t.co/ktNXNVk1v0","Feb 26, 4:39:01 PM EST"
-1894872248261001301,"RT @RepOgles: Restoring The Republic 30: 🔥THE IMPEACHATHON (ft. Eli Crane and Andrew Clyde) https://t.co/rEcY71omaw","Feb 26, 5:08:43 PM EST"
-1894872438527209687,"Corruption https://t.co/UxCsr4za41","Feb 26, 5:09:29 PM EST"
-1894872560317415864,"RT @JeffBezos: I shared this note with the Washington Post team this morning:
-
-I’m writing to let you know about a change coming to our opi…","Feb 26, 5:09:58 PM EST"
-1894872918544523602,"💯 https://t.co/0hSeyDFqKb","Feb 26, 5:11:23 PM EST"
-1894880977211605452,"No more wasting your hard-earned money! https://t.co/VlMVM20paG","Feb 26, 5:43:24 PM EST"
-1894932143731532128,"RT @ebbyamir: Grok Voice is now powered by the full force of our most advanced model, Grok 3. Who better to psych up this launch than Ara h…","Feb 26, 9:06:43 PM EST"
-1894933245868802290,"RT @DiscussingFilm: Keanu Reeves when asked if he has anything left to accomplish in his life:
-
-“I want to go to Mars”
-
-(Source: @etnow) ht…","Feb 26, 9:11:06 PM EST"
-1894933450324316232,"RT @ibab: We just turned on Grok Voice for all X Premium users in the separate Grok app (Premium+ and SuperGrok users already had access).…","Feb 26, 9:11:55 PM EST"
-1894942768935403767,"RT @nicksortor: 🚨 #BREAKING: SUPREME COURT SIDES WITH TRUMP – Temporarily BLOCKS lower court order, which attempted to force Trump to give…","Feb 26, 9:48:57 PM EST"
-1894944572213465441,"Yeah! 😀 https://t.co/9akCI8mZlK","Feb 26, 9:56:07 PM EST"
-1894944918654832823,"🚀 https://t.co/xy1J4n2ZIL","Feb 26, 9:57:29 PM EST"
-1894946644187082962,"RT @BrendanCarrFCC: More Americans trust gas station sushi than the legacy national media.
-
-And that decline in trust only accelerated on t…","Feb 26, 10:04:21 PM EST"
-1894952010044109114,"🤨 https://t.co/2qO9d3yPyh","Feb 26, 10:25:40 PM EST"
-1894952568368795830,"It’s so crazy https://t.co/6MKgegq74K","Feb 26, 10:27:53 PM EST"
-1894960548661321906,"https://t.co/aFsQwGZMti","Feb 26, 10:59:36 PM EST"
-1894971308749815954,"RT @libsoftiktok: Floyd Mayweather: “I'm happy. We had Trump before, we didn't appreciate him, but I think Trump is the best President we'v…","Feb 26, 11:42:21 PM EST"
-1894976518331269526,"RT @TobyPhln: We have a similar feature on our API console. The CMD+K menu is actually connected to Grok and it allows you to get stuff don…","Feb 27, 12:03:03 AM EST"
-1894979377705996518,"RT @JamesLucasIT: The Eternal City at night - a thread 🧵
-
-1. Piazza Navona, Rome https://t.co/paFW63lxLF","Feb 27, 12:14:25 AM EST"
-1894983280853729753,"RT @WesternLensman: @elonmusk Bukele: “We had to remove corrupt judges and corrupt attorneys and prosecutors."
-
-Activist judges must be imp…","Feb 27, 12:29:55 AM EST"
-1894984155005403293,"The scientist/engineer divide is artificial – what matters is working on the limiting factor https://t.co/5FWUwYwc7H","Feb 27, 12:33:24 AM EST"
-1894985989015163382,"https://t.co/OlLxV0thCP","Feb 27, 12:40:41 AM EST"
-1894986994918338674,"RT @Rothmus: 🎯🎯🎯🎯 https://t.co/Il77yJ1Sum","Feb 27, 12:44:41 AM EST"
-1894988241163485540,"That’s why it has to be done
- https://t.co/QinG3c3DYa","Feb 27, 12:49:38 AM EST"
-1894990051227926804,"https://t.co/OOrPIPM8ly","Feb 27, 12:56:50 AM EST"
-1894991309254893628,"RT @MarioNawfal: 🇺🇸 REP. TIMMONS: TRUMP & ELON ARE BRINGING TRANSPARENCY TO EVERY NOOK & CRANNY OF GOVERNMENT
-
-"President Trump, through El…","Feb 27, 1:01:50 AM EST"
-1894992946652750214,"RT @RapidResponse47: State Department Completes Foreign Funding Review, Identifying 15,000 Grants Worth $60 Billion for Elimination https:/…","Feb 27, 1:08:20 AM EST"
-1894994831182897401,"Yes https://t.co/TwqzmqUToU","Feb 27, 1:15:49 AM EST"
-1894995233064075592,"RT @WallStreetApes: “The World Has Never Seen Anyone Like
-Elon Musk”
-
-Fixing the Government, “If not Elon Musk, then who?
-
-- The man launc…","Feb 27, 1:17:25 AM EST"
-1895103980537074060,"This is important https://t.co/68nRoOVW7B","Feb 27, 8:29:32 AM EST"
-1895104010127909354,"RT @amuse: WISCONSIN: If you oppose LAWFARE and live in Wisconsin get out and vote on April 1st for Brad Schimel for Supreme Court Judge. I…","Feb 27, 8:29:40 AM EST"
-1895105083894841437,"RT @SpaceX: Falcon 9 delivers 21 @Starlink satellites to the constellation from Florida on our 25th mission of 2025 https://t.co/tcsPCHvVhN","Feb 27, 8:33:56 AM EST"
-1895113155639926964,"Wow https://t.co/VjO3kPygnQ","Feb 27, 9:06:00 AM EST"
-1895113845447827802,"It is much easier to hide corruption when the system is extremely inefficient.
-
-However, corruption sticks out like a sore thumb in an efficient system. https://t.co/Y9HKdOL46o","Feb 27, 9:08:44 AM EST"
-1895113911885509086,"Yes https://t.co/Jyq4tD4Asj","Feb 27, 9:09:00 AM EST"
-1895114357492596903,"Um … what?
-
-Is this definitely real? If so, very concerning. https://t.co/YRmRBDUkdR","Feb 27, 9:10:47 AM EST"
-1895115081026769004,"Whoa! https://t.co/JkTlpQXBFF","Feb 27, 9:13:39 AM EST"
-1895118335852830788,"It might make sense to increase compensation for Congress and senior government employees to reduce the forcing function for corruption, as the latter might be as much as 1000 times more expensive to the public
-
- https://t.co/ajsNbL9YMO","Feb 27, 9:26:35 AM EST"
-1895118496415260831,"Scott’s voice of reason is like music https://t.co/V6lpO2MX8D","Feb 27, 9:27:13 AM EST"
-1895121461137785281,"European justice is broken
- https://t.co/PcfrZquKvT","Feb 27, 9:39:00 AM EST"
-1895122570527015333,"Many countries are disappearing.
-
-Immigration cannot solve billions in population collapse. It simply isn’t physically possible.
-
-More importantly, we should not lose entire, distinct cultures! https://t.co/LsLp5k95Ak","Feb 27, 9:43:25 AM EST"
-1895122935674749421,"Pushing fake outrage will backfire on them https://t.co/Mrv0RCwn7p","Feb 27, 9:44:52 AM EST"
-1895123700766167077,"Thunder Dome vibes
- https://t.co/gYVNl1ufPS","Feb 27, 9:47:54 AM EST"
-1895124148709396653,"This is so crazy!
-
- https://t.co/p8B3dXrkAW","Feb 27, 9:49:41 AM EST"
-1895125730058785180,"Increasingly significant consideration https://t.co/wQkfsjCYxZ","Feb 27, 9:55:58 AM EST"
-1895129237478162621,"To be clear here, the Verizon communication system to air traffic control is breaking down very rapidly. The FAA assessment is single digit months to catastrophic failure, putting air traveler safety at serious risk.
-
-The Starlink terminals are being sen","Feb 27, 10:09:54 AM EST"
-1895132217581400260,"The taxpayer savings receipts, including corrections when mistakes are made, are posted on the DOGE website.
-
-When there are complaints, they should be directed towards specific items, but they just yell “constitutional crisis!” and avoid mention of spec","Feb 27, 10:21:45 AM EST"
-1895133298781016462,"Many such situations.
-
-Government funding to “non-governmental” organizations goes through various money-laundering shell companies until reaching guys like Raskin. https://t.co/8ywK1Wp2RY","Feb 27, 10:26:02 AM EST"
-1895135979645870451,"Hundreds of federal workers are being promoted daily every time we encounter excellence. The @DOGE team will be more clear about this.
-
-The goal is to make the federal government a meritocracy as much as possible. https://t.co/ThmWMY28V2","Feb 27, 10:36:42 AM EST"
-1895136616441905228,"There is a shortage of top notch air traffic controllers. If you have retired, but are open to returning to work, please consider doing so.","Feb 27, 10:39:13 AM EST"
-1895137070982529467,"Maybe people in Santa Monica should consider voting Republican? 🤷♂️ https://t.co/aQfqrF5KAt","Feb 27, 10:41:02 AM EST"
-1895137469445627967,"🚀🚀 https://t.co/h2mqMvMurT","Feb 27, 10:42:37 AM EST"
-1895138922272874608,"Out of touch with reality, to say the least https://t.co/dozJ53SN5M https://t.co/n0rYd2ROiY","Feb 27, 10:48:23 AM EST"
-1895139780775563584,"If all people see is the legacy media, they are living in a fake reality.
-
-Send 𝕏 links to friends! https://t.co/YB3fsSL9mm","Feb 27, 10:51:48 AM EST"
-1895140518708867277,"The New York Times is pure propaganda.
-
-And a bunch of a$$holes. https://t.co/MCYnjaRrcG","Feb 27, 10:54:44 AM EST"
-1895140576292429827,"RT @cb_doge: "Less government means more power to the people."
-
-一 Elon Musk https://t.co/nmIDt9p8uD","Feb 27, 10:54:58 AM EST"
-1895140643925553585,"RT @amuse: AIR TRAFFIC CONTROL: The FAA has been considering replacing Verizon's services with Starlink systems since the Biden administrat…","Feb 27, 10:55:14 AM EST"
-1895141466361454738,"RT @MarioNawfal: 🚨🇺🇸DOGE POSTS EVERY TAXPAYER SAVINGS RECEIPT—DEMOCRATS SCREAM ‘CRISIS’ BUT CAN’T NAME A SINGLE BAD CUT
-
-DOGE is delivering…","Feb 27, 10:58:30 AM EST"
-1895141645655449797,"Good thread https://t.co/UDlFtw6fDz","Feb 27, 10:59:13 AM EST"
-1895151979128836155,"RT @DOGE: US taxpayer dollars were going to be spent on the following items, all which have been cancelled:
-
-- $60M for "Indigenous People…","Feb 27, 11:40:16 AM EST"
-1895165522615947707,"RT @RepOgles: 🔥NEW ARTICLES DROPPED🔥
-
-I just formally introduced articles of impeachment against corrupt U.S. District Judge Amir Ali. http…","Feb 27, 12:34:05 PM EST"
-1895166657460330563,"The Eisen crime family https://t.co/4ha7pzFGSL","Feb 27, 12:38:36 PM EST"
-1895170855086248086,"Everyone rn https://t.co/ygXSJgZjG2","Feb 27, 12:55:17 PM EST"
-1895171019570032707,"Good idea https://t.co/DfCWuxDomC","Feb 27, 12:55:56 PM EST"
-1895171319370522675,"This is infuriating 😡 https://t.co/zBkUvMku8r","Feb 27, 12:57:07 PM EST"
-1895175354819715292,"So crazy https://t.co/BmEQZ1VsMr","Feb 27, 1:13:09 PM EST"
-1895186773493330416,"https://t.co/Smr1qDxYLB","Feb 27, 1:58:32 PM EST"
-1895187089802830249,"RT @BasedMikeLee: In our meeting today, @elonmusk clarified that @DOGE personnel have no authority to fire federal workers or cancel feder…","Feb 27, 1:59:47 PM EST"
-1895190416158560667,"RT @SenJoniErnst: Proud to lead the Senate @DOGE Caucus to meet with @elonmusk today. https://t.co/YlI8RWM6WX","Feb 27, 2:13:00 PM EST"
-1895191259293327779,"🤨 https://t.co/Q2jnjYeNPg","Feb 27, 2:16:21 PM EST"
-1895193329647919417,"Correction: the ancient system that is rapidly declining in capability was made L3Harris. The new system that is not yet operational is from Verizon.","Feb 27, 2:24:35 PM EST"
-1895243547319902343,"Thanks! https://t.co/azXGYtdMQX","Feb 27, 5:44:08 PM EST"
-1895243602684715232,"RT @SenEricSchmitt: Great to be in the White House earlier today with @elonmusk and the Senate DOGE Caucus to talk about how the Senate and…","Feb 27, 5:44:21 PM EST"
-1895253013402656955,"RT @visegrad24: $2 billion was transferred by USAID to Gaza after October 7th, and 90% of those funds went to Hamas controlled areas, accor…","Feb 27, 6:21:45 PM EST"
-1895253479859593428,"The plot thickens https://t.co/cHlF1qte9s","Feb 27, 6:23:36 PM EST"
-1895254061462794557,"😢 https://t.co/v92b7NwbEt","Feb 27, 6:25:55 PM EST"
-1895255762932506763,"RT @MarioNawfal: 🇨🇳 EV TAKEOVER: CHINA TO SELL MORE ELECTRIC CARS THAN GAS IN 2025
-
-The moment has arrived—China is expected to sell more E…","Feb 27, 6:32:40 PM EST"
-1895256155288674320,"RT @Kash_Patel: The FBI is entering a new era—one that will be defined by integrity, accountability, and the unwavering pursuit of justice.…","Feb 27, 6:34:14 PM EST"
-1895257132515369295,"Same playbook https://t.co/ueywb0cNP0","Feb 27, 6:38:07 PM EST"
-1895260014501351910,"RT @teslaownersSV: “My plan is to use the money to get humanity to Mars and preserve the light of consciousness.”
-Elon Musk
- https://t.co/…","Feb 27, 6:49:34 PM EST"
-1895263043401253148,"Hmm https://t.co/trQo5ZtZjU","Feb 27, 7:01:36 PM EST"
-1895291448700137673,"Minecraft https://t.co/nwDYR7Gn3n","Feb 27, 8:54:28 PM EST"
-1895293425559458131,"🫡 https://t.co/mLKueOnN2p","Feb 27, 9:02:20 PM EST"
-1895295023333417201,"Yes https://t.co/g15rncmL34","Feb 27, 9:08:41 PM EST"
-1895307056011452421,"And Grok is improving faster https://t.co/BM9Ythvrtc","Feb 27, 9:56:29 PM EST"
-1895311891133837321,"New version of the @Grok app just dropped.
-
-Try Grok voice. It’s next-level.","Feb 27, 10:15:42 PM EST"
-1895313389767008659,"Senate @DOGE caucus https://t.co/Mo4JffUGGt","Feb 27, 10:21:39 PM EST"
-1895315262234333283,"Try Grok voice personalities and update the app every few days, as it is rapidly improving.
-
-Prepare for a wild ride! https://t.co/DEviY1SF3i","Feb 27, 10:29:06 PM EST"
-1895370333676544054,"That is exactly his goal https://t.co/YGxL4P4RAz","Feb 28, 2:07:56 AM EST"
-1895372770592334275,"RT @kevinnbass: Doctors often claim that measles is making a comeback because of "antivaxers".
-
-So I plotted measles cases as a ten-year ro…","Feb 28, 2:17:37 AM EST"
-1895372834001821955,"RT @DOGE: Since this post, @USGSA took immediate action to reduce IT spend by deleting 114,163 unused software licenses & 15 underutilized…","Feb 28, 2:17:52 AM EST"
-1895373080807252068,"So many such situations https://t.co/ZwwuokFTGe","Feb 28, 2:18:51 AM EST"
-1895374313752273082,"People don’t understand that you don’t get instant power here https://t.co/a2D1cpKQaa","Feb 28, 2:23:45 AM EST"
-1895376584636539034,"Imagine if you were suddenly appointed AG or head of the FBI.
-
-You were just thrown on a ship with a hostile crew.
-
-Until you appoint some new crew members and figure out the ropes, you can’t steer the ship effectively. It’s literally impossible. https:","Feb 28, 2:32:46 AM EST"
-1895378622183260189,"RT @cb_doge: 🚨 DOGE BREAKING: USGSA reduced IT spend by deleting 114,163 unused software licenses & 15 underutilized / redundant software p…","Feb 28, 2:40:52 AM EST"
-1895380073882304828,"RT @teslaownersSV: "AI needs to say the truth & know the truth, even if the truth is unpopular”
-
-Elon Musk
- https://t.co/op3xbqh0m7","Feb 28, 2:46:38 AM EST"
-1895390344721977369,"RT @MoreBirths: A wonderful new paper by @lymanstoneky shows how pronatal encouragement and raising the status of large families led to a 4…","Feb 28, 3:27:27 AM EST"
-1895390859375649249,"RT @SenMullin: 🚨Let’s talk: GOP budget. Ultimately, I think we should be calling it The DOGE Act— we’re delivering Trump's agenda.
-
-Earlier…","Feb 28, 3:29:30 AM EST"
-1895391421097779607,"RT @cb_doge: LONG LIVE FREEDOM! https://t.co/hc2KXqH2jm","Feb 28, 3:31:44 AM EST"
-1895391472633164004,"RT @teslaownersSV: Starship —> Mars
-
- 🔴
- 🚀
- .…","Feb 28, 3:31:56 AM EST"
-1895392103481704948,"Just did a long @JoeRogan episode","Feb 28, 3:34:26 AM EST"
-1895392242120225232,"RT @DimaZeniuk: Engineering is the closest thing to magic https://t.co/w409YIhwT7","Feb 28, 3:34:59 AM EST"
-1895392633436160468,"Grok it https://t.co/9sgNnDnw77","Feb 28, 3:36:33 AM EST"
-1895401295173099652,"This will be a spicy tamale 🌶️ 😂 https://t.co/xL3cqsUr1r","Feb 28, 4:10:58 AM EST"
-1895401517043302786,"RT @MarioNawfal: 🚨🇺🇸 WEST VIRGINIA MOVES TO PURGE INACTIVE VOTERS FASTER
-
-West Virginia’s Senate committee advanced a bill to speed up the…","Feb 28, 4:11:51 AM EST"
-1895402040400212271,"That’s what American tax dollars were funding https://t.co/E4IQSoj9NV","Feb 28, 4:13:55 AM EST"
-1895402502755123426,"A reminder of what could happen
- https://t.co/bV62QLpzUs","Feb 28, 4:15:46 AM EST"
-1895402838634950772,"Fake anonymous gets busted 😂 https://t.co/iZ3lsqNpZJ","Feb 28, 4:17:06 AM EST"
-1895402968830370006,"🎯 https://t.co/wb9P44kgGA","Feb 28, 4:17:37 AM EST"
-1895403664401219751,"Yes https://t.co/cbIIOURQBx","Feb 28, 4:20:23 AM EST"
-1895404362354319436,"RT @cb_doge: Who controls the memes, controls the Universe.
-
-一 Elon Musk https://t.co/TKAsegxtoq","Feb 28, 4:23:09 AM EST"
-1895409514935152906,"https://t.co/yrClmRrmiP","Feb 28, 4:43:38 AM EST"
-1895411262508699818,"👇 https://t.co/wf2f7i2ZHP","Feb 28, 4:50:34 AM EST"
-1895417586051158361,"RT @MarioNawfal: KEVIN MCCARTHY: ELON IS MAKING AMERICA STRONGER
-
-“I did not think it was possible for the Democrats to even get worse mess…","Feb 28, 5:15:42 AM EST"
-1895418419681562828,"RT @RealJessica05: I don't want Democrats' “democracy.” https://t.co/XT8SnvrLBk","Feb 28, 5:19:01 AM EST"
-1895485889566109765,"Wow, this is cool! https://t.co/FNhtTYreIL","Feb 28, 9:47:07 AM EST"
-1895487378959294940,"Cool https://t.co/tzWZ6hYDcH","Feb 28, 9:53:02 AM EST"
-1895491688984182890,"Another case of suicidal empathy, as @GadSaad would say!
-
-The problem with suicidal empathy is that it will end civilization. Game over.
-
-Btw, Gad’s books are great. https://t.co/EVSf0LB37R","Feb 28, 10:10:09 AM EST"
-1895491914994192597,"Cool https://t.co/tOPxUU6Ay4","Feb 28, 10:11:03 AM EST"
-1895492558559855103,"Good idea https://t.co/QWH1Cw5xx0","Feb 28, 10:13:37 AM EST"
-1895493256563380540,"Yes, that was their main goal. They used “helping people” as cover. https://t.co/nkkniwSLse","Feb 28, 10:16:23 AM EST"
-1895495825566130455,"RT @SawyerMerritt: NEWS: Tesla’s Dependability Improves in 2025 J.D. Power Rankings.
-
-The J.D. Power study, which measures the number of pr…","Feb 28, 10:26:36 AM EST"
-1895496983026282999,"True
- https://t.co/dQp3Kzp1iS","Feb 28, 10:31:12 AM EST"
-1895497847350419562,"All government spending is taxation.
-
-This point really needs to be hammered home.
-
-Whatever is not directly taxed is taxed in the form of inflation, as the government prints more money.
-
-Inflation is the worst tax of all, as it punishes those who are j","Feb 28, 10:34:38 AM EST"
-1895497973737623959,"RT @GavinSBaker: Post the release of R1:
-
-DRAM pricing: increasing.
-
-GPU rental pricing: increasing at GCP and Azure.
-
-GPU availability: de…","Feb 28, 10:35:08 AM EST"
-1895499319555551689,"True https://t.co/3xrhglX5r9","Feb 28, 10:40:29 AM EST"
-1895500310942261266,"RT @MatchasmMatt: Probably nothing... https://t.co/eF1IwK18vJ","Feb 28, 10:44:25 AM EST"
-1895501435581993253,"RT @WR4NYGov: When my cousin called Elon an "ersatz Nazi" I kinda lost it:
-
-Why would a Nazi:
-Support israel
-Hire ethnically diverse teams…","Feb 28, 10:48:53 AM EST"
-1895507670230286744,"https://t.co/3GFeERSg4P","Feb 28, 11:13:40 AM EST"
-1895512451342299292,"A more accurate measure of GDP would exclude government spending.
-
-Otherwise, you can scale GDP artificially high by spending money on things that don’t make people’s lives better.
-
-For example, you could shift everyone who is building cars to working at","Feb 28, 11:32:39 AM EST"
-1895512711129371058,"RT @MarioNawfal: 🚨🇫🇷LEFT-WING PARIS THEATRE FACES BANKRUPTCY AS MIGRANTS REFUSE TO LEAVE, SEXUAL VIOLENCE SOARS
-
-The left-wing managers of…","Feb 28, 11:33:41 AM EST"
-1895514356374520011,"“All dressed up today” 😂 https://t.co/gEuLhxqvfu","Feb 28, 11:40:14 AM EST"
-1895514980335993144,"https://t.co/cehFZIXtvI","Feb 28, 11:42:42 AM EST"
-1895515078151323719,"💯 https://t.co/k2paell41l","Feb 28, 11:43:06 AM EST"
-1895516536678596907,"Fun mission https://t.co/LmR90BibeS","Feb 28, 11:48:53 AM EST"
-1895517275819811185,"Troll radical left Reddit by saying nice things about me for the most fun 😂 https://t.co/OC01fRrOJ9","Feb 28, 11:51:50 AM EST"
-1895518655057969358,"Cool!
-
-Only gets better from here. https://t.co/erptgefXzX","Feb 28, 11:57:19 AM EST"
-1895519697799700583,"RT @visegrad24: BREAKING:
-
-Trump says Ukraine has brave soldiers.
-
-“I give tremendous credit to your generals, your soldiers & yourself (…)…","Feb 28, 12:01:27 PM EST"
-1895520729820770722,"Mars probably had liquid oceans a long time ago, before it cooled. Now, there are vast fields of ice covered by red dust.
-
-If we warm up the planet, the oceans will return and the atmosphere will densify, making it possible to extend life to Mars. https:","Feb 28, 12:05:33 PM EST"
-1895523926849314937,"🔥😂 https://t.co/hpVS1GpHJF","Feb 28, 12:18:15 PM EST"
-1895524072244850885,"RT @KanekoaTheGreat: President Trump: "I hope I will be remembered as a peacemaker... I'm doing this to save lives more than anything else.…","Feb 28, 12:18:50 PM EST"
-1895524221000040670,"Logical https://t.co/4RKIrUu5xC","Feb 28, 12:19:26 PM EST"
-1895530791138189323,"Keynes was a great evil https://t.co/wYRY6vtQtN","Feb 28, 12:45:32 PM EST"
-1895531187952824680,"RT @MarioNawfal: 🚨VANCE TO ZELENSKY: YOU’RE DISRESPECTFUL FOR ATTACKING THIS ADMINISTRATION
-
-Trump to Zelensky: “Don’t tell us what we’re g…","Feb 28, 12:47:07 PM EST"
-1895531307918377162,"RT @MarioNawfal: 🚨TRUMP TO ZELENSKY: YOU HAVE TO BE MORE THANKFUL
-
-"I gave you the Javelins to take out all those tanks. Obama gave you she…","Feb 28, 12:47:35 PM EST"
-1895531572935475700,"RT @MarioNawfal: 🚨🇺🇸HEATED EXCHANGE BETWEEN TRUMP, VANCE, AND ZELENSKY
-
-Trump: "You're not winning this...you have to be thankful...we gave…","Feb 28, 12:48:38 PM EST"
-1895532321450967266,"Accurate https://t.co/ed8o6t8PBE","Feb 28, 12:51:37 PM EST"
-1895535520836681851,"Watch this carefully. Very important.
- https://t.co/wdM3XdbrH1","Feb 28, 1:04:20 PM EST"
-1895536186942505188,"President @realDonaldTrump is the Commander-in-Chief
- https://t.co/O91xt4bm1t","Feb 28, 1:06:58 PM EST"
-1895536275194892292,"Trending well https://t.co/SWCA35ZJvF","Feb 28, 1:07:20 PM EST"
-1895536911512715561,"RT @PressSec: President Trump and Vice President Vance are standing up for the American people.","Feb 28, 1:09:51 PM EST"
-1895537030752584184,"Why do the governments not respond to their people? https://t.co/axXeaxzMrz","Feb 28, 1:10:20 PM EST"
-1895537168262840354,"RT @KanekoaTheGreat: Legacy media: RFK's measles outbreak!
-
-Measles: https://t.co/ErZc8Svd98","Feb 28, 1:10:52 PM EST"
-1895537244255186962,"RT @SecScottBessent: Thank you, President Trump, for standing up for the American people and our nation on the global stage.","Feb 28, 1:11:11 PM EST"
-1895562003722445164,"RT @JDVance: https://t.co/wFkXJPCjVj","Feb 28, 2:49:34 PM EST"
-1895562265916838388,"🇺🇸🇺🇸🇺🇸 https://t.co/Fuph7LsRFl","Feb 28, 2:50:36 PM EST"
-1895562495047451075,"RT @nicksortor: 🚨 WOW! Zelensky behaved SO BADLY in the Oval Office that he even lost Lindsey Graham
-
-“Americans witnessing this would not…","Feb 28, 2:51:31 PM EST"
-1895567334791921987,"RT @realDonaldTrump: https://t.co/Ja8HQTFpf7","Feb 28, 3:10:45 PM EST"
-1895567800699326802,"🇺🇸🇺🇸🇺🇸🇺🇸 https://t.co/2zXm0NjDqz","Feb 28, 3:12:36 PM EST"
-1895568668987441326,"Starlink now connects over 5M people in 125 countries! https://t.co/Q6IS3c70jj","Feb 28, 3:16:03 PM EST"
-1895571460900745649,"Restore POWER to the PEOPLE!!
- https://t.co/WsVYYt1tv6","Feb 28, 3:27:08 PM EST"
-1895572330925212034,"https://t.co/7csHEFjo1O","Feb 28, 3:30:36 PM EST"
-1895573480835539451,"That’s the situation https://t.co/PDRIXc223F","Feb 28, 3:35:10 PM EST"
-1895577407450726724,"RT @KanekoaTheGreat: NEW: Elon Musk and Joe Rogan discuss George Soros and the multi-billion dollar fraud of government-funded non-governme…","Feb 28, 3:50:46 PM EST"
-1895577735344636313,"Biggest scam ever https://t.co/uB8fxBdTSW","Feb 28, 3:52:04 PM EST"
-1895579746731508074,"They are still trying to do this. The closer you look, the more horrified you will be. https://t.co/e2KNTiDkub","Feb 28, 4:00:04 PM EST"
-1895580026441200120,"Very expensive gym membership! https://t.co/uq920tJZj7","Feb 28, 4:01:11 PM EST"
-1895580508794573115,"🎯 https://t.co/e6ONNXLq3M","Feb 28, 4:03:06 PM EST"
-1895581475057385498,"Send people links from 𝕏, so they know what’s really going on! https://t.co/6zlxEiRv8H","Feb 28, 4:06:56 PM EST"
-1895582321136583162,"https://t.co/yTr38eJxoG","Feb 28, 4:10:18 PM EST"
-1895582702923067837,"This is a very big deal https://t.co/921xHiD304","Feb 28, 4:11:49 PM EST"
-1895590460770628053,"RT @AutismCapital: 🚨ELON MUSK: "There are 10,000s of Federal Employees that already have access to the (IRS) systems. Anyone from DOGE has…","Feb 28, 4:42:38 PM EST"
-1895590529737637936,"RT @SpeakerJohnson: Thanks to President Trump - the days of America being taken advantage of and disrespected are OVER.
-
-The death and des…","Feb 28, 4:42:55 PM EST"
-1895591281138733563,"https://t.co/dKPy1AFBE2","Feb 28, 4:45:54 PM EST"
-1895591926667358635,"Time to find out what really happened to the hundreds of billions of dollars sent to Ukraine …","Feb 28, 4:48:28 PM EST"
-1895596842613919994,"So natural and organic 🙄 https://t.co/17sNacZTtA","Feb 28, 5:08:00 PM EST"
-1895598258225106984,"There is a good chance of achieving full reusability of Starship this year.
-
-Full and immediate reflight of Starship, along with orbital refilling, probably happens next year.
-
-This is the fundamental breakthrough needed to make life multiplanetary. htt","Feb 28, 5:13:37 PM EST"
-1895612899772842114,"That’s how it works https://t.co/PJioJyJhYN","Feb 28, 6:11:48 PM EST"
-1895614528836288736,"RT @america: Elon Musk: “Our elected officials have very little power relative to the bureaucracy until DOGE… DOGE is the first threat to t…","Feb 28, 6:18:17 PM EST"
-1895614889500266588,"RT @fentasyl: I am quite happy I dedicated 15 months of my life to non-stop posting hard data & original analysis about illegal immigration.","Feb 28, 6:19:43 PM EST"
-1895620597188870341,"RT @thatsKAIZEN: Think Trump was aggressive to Zelenskyy for no reason?
-
-Watch the whole talk.
-
-Timestamps below.
-
-Zelenskyy was emotional.…","Feb 28, 6:42:23 PM EST"
-1895620682115137629,"RT @MarioNawfal: 🚨🇺🇸ELON: LEGACY MEDIA CREATE AN ALTERNATE REALITY
-
-“The media is incredibly partisan.
-
-Almost all the media is left-shift…","Feb 28, 6:42:44 PM EST"
-1895621207615291802,"The @Grok doc https://t.co/6nGYZGIOSi","Feb 28, 6:44:49 PM EST"
-1895621966712991847,"https://t.co/agmAnEz9es","Feb 28, 6:47:50 PM EST"
-1895625463164440856,"Interesting book https://t.co/1kFRqagCV8","Feb 28, 7:01:44 PM EST"
-1895625768547598430,"RT @levie: After well over a hundred years of incremental progress, all of a sudden transportation is going to change very quickly https://…","Feb 28, 7:02:56 PM EST"
-1895626133338800196,"https://t.co/B3R6krQCUM","Feb 28, 7:04:23 PM EST"
-1895626446917468616,"RT @DefiyantlyFree: Bill Clinton fired 377,000 federal employees. Did you hear a peep from the media no? Because this is your daily reminde…","Feb 28, 7:05:38 PM EST"
-1895688155120226435,"https://t.co/zFInUlnGxR","Feb 28, 11:10:51 PM EST"
-1895708066555052122,"💯 https://t.co/KCOYG4qm5c","Mar 1, 12:29:58 AM EST"
-1895708317256912934,"https://t.co/tzJBv0xL7l","Mar 1, 12:30:58 AM EST"
-1895835092469366915,"RT @Inevitablewest: 🚨BREAKING: Donald Trump confronted Starmer for removing security elements on Apple devices:
-
-“We told him you can’t do…","Mar 1, 8:54:43 AM EST"
-1895835533638844448,"RT @GadSaad: 🙏❤️","Mar 1, 8:56:28 AM EST"
-1895835981007454371,"RT @AutismCapital: 🚨JOE ROGAN: "What is it like to buy a company for $44B and then people call you a Nazi on the platform you just bought?"…","Mar 1, 8:58:15 AM EST"
-1895839859904037335,"RT @BGatesIsaPyscho: Just like Covid - The Globalist Deep State Puppet Leaders all have the same pre-scripted message 👇 https://t.co/S8YcGd…","Mar 1, 9:13:40 AM EST"
-1895840275618283992,"Reducing fraud & waste of your tax dollars by a trillion dollars in 2026 is possible https://t.co/ehwUEpbgAr","Mar 1, 9:15:19 AM EST"
-1895842342697124037,"RT @MarioNawfal: ELON: I THINK WE’LL ACHIEVE FULL AND RAPID REUSABILITY OF STARSHIP IN 2026
-
-“We're pretty close to being able to rapidly r…","Mar 1, 9:23:32 AM EST"
-1895844665599148136,"Very important to understand the corruption machine
- https://t.co/EMrZCsBKiI","Mar 1, 9:32:46 AM EST"
-1895850946447753567,"Yes https://t.co/BWH1NljH9Z","Mar 1, 9:57:43 AM EST"
-1895851920193175994,"Download the @Grok app! https://t.co/ROHvwcoEFF","Mar 1, 10:01:35 AM EST"
-1895855353407123584,"The President has made it clear that this is mandatory for the executive branch.
-
-Anyone working on classified or other sensitive matters is still required to respond if they receive the email, but can simply reply that their work is sensitive. https://t","Mar 1, 10:15:14 AM EST"
-1895855515651227832,"RT @cb_doge: You can upload 4-hour videos on this platform!
-
-Perfect for long podcasts, movies, documentaries, short films一 everything.
-
- h…","Mar 1, 10:15:52 AM EST"
-1895897686974558585,"RT @C__Herridge: EXCLUSIVE: Our full, unedited interview with Secretary of State Marco Rubio(@SecRubio) on his first 30 days leading the De…","Mar 1, 1:03:27 PM EST"
-1895902136950730973,"Teslas can even drive themselves on dirt roads with no markings https://t.co/vx1nge4xv5","Mar 1, 1:21:08 PM EST"
-1895906922685218952,"RT @cb_doge: "The Associated Press which I call Associated Propaganda, they ran an international news story saying that the DOGE fired air…","Mar 1, 1:40:09 PM EST"
-1895908543582388331,"Crazy https://t.co/DGP2FpsFg6","Mar 1, 1:46:35 PM EST"
-1895914700917051595,"More of your tax dollars saved https://t.co/NJJTci1Hva","Mar 1, 2:11:03 PM EST"
-1895924921588727891,"RT @USAEdMartin: Concerning.
-No one is above the law.","Mar 1, 2:51:40 PM EST"
-1895936958670782469,"Prosperity is what happens when you cut government overspending and excess regulation! https://t.co/dbQhmfpiy1","Mar 1, 3:39:30 PM EST"
-1895937374703796671,"Updated @Grok app just dropped","Mar 1, 3:41:09 PM EST"
-1895941405551575236,"RT @MarioNawfal: 🇺🇦🇷🇴BREAKING: USAID FUNDED NGO ACCUSED OF MEDDLING IN ROMANIA’S ELECTIONS
-
-A Ukrainian state-funded group called TEXTY, wh…","Mar 1, 3:57:10 PM EST"
-1895941849241780351,"https://t.co/MEUPYTt13f","Mar 1, 3:58:56 PM EST"
-1895972940950487425,"Exactly https://t.co/DTuTkvnQbX","Mar 1, 6:02:29 PM EST"
-1895977051582317028,"🤨 https://t.co/rBTY3gB5xH","Mar 1, 6:18:49 PM EST"
-1895977368306716837,"True https://t.co/u977542Px7","Mar 1, 6:20:04 PM EST"
-1895996422576881705,"RT @ai_for_success: Grok-3 image editing feature is really underrated. It's incredibly good, you guys should try it out! It's free for ever…","Mar 1, 7:35:47 PM EST"
-1895997740385255784,"It will require outstanding execution, but I think more like 1000% gain for Tesla in 5 years is possible https://t.co/s6RjBvFN3G","Mar 1, 7:41:01 PM EST"
-1895999399710581100,"RT @DefiyantlyFree: Elon Musk is right NGOs are the biggest scam. They are how the left transformed the world into the Truman show in just…","Mar 1, 7:47:37 PM EST"
-1896003973985026171,"RT @Rothmus: More. https://t.co/ojwgNuQcOD","Mar 1, 8:05:48 PM EST"
-1896004088145600941,"RT @niccruzpatane: The Tesla Model Y Is The Best-Selling Vehicle Worldwide In 2024 https://t.co/CG4TJgeAND","Mar 1, 8:06:15 PM EST"
-1896004862313431386,"RT @SecRubio: We should be very proud that we have a President whose prime objective is not to get into wars but to prevent wars and to get…","Mar 1, 8:09:19 PM EST"
-1896010709986943158,"RT @niccruzpatane: If you are a $TSLA investor, or just a fan of Tesla and Elon, please listen to this.
-
-Elon Musk: “I'm the same person I…","Mar 1, 8:32:34 PM EST"
-1896010778924499057,"RT @MarioNawfal: 🇺🇸ELON: AP IS GUILTY OF MASSIVE MISINFORMATION
-
-"There’s this massive standoff between AP and the White House press office…","Mar 1, 8:32:50 PM EST"
-1896011433592393791,"When will social security run out of money, if nothing is fixed?
- https://t.co/1dgiAlYYue","Mar 1, 8:35:26 PM EST"
-1896011803190312985,"RT @MarioNawfal: 🚨12-HOUR NEWS RECAP
-
-1. 🇺🇸Trump to Zelensky: 'Come Back When You're Ready for Peace' — Trump and Vance clashed with Zelens…","Mar 1, 8:36:54 PM EST"
-1896013397281685814,"RT @KanekoaTheGreat: Donald Trump and JD Vance are currently the most favorably viewed politicians in the United States, according to the m…","Mar 1, 8:43:14 PM EST"
-1896023854130065576,"Currently reading https://t.co/iHYnrcQypO","Mar 1, 9:24:47 PM EST"
-1896026101451034945,"RT @waitbutwhy: Facebook = Caramel popcorn
-
-Instagram = Twinkie
-
-X = peanut butter filled pretzel nuggets. Also mediocre-tasting and makes…","Mar 1, 9:33:43 PM EST"
-1896026564019830820,"I agree https://t.co/ZhjBXCTQfp","Mar 1, 9:35:33 PM EST"
-1896031696027619489,"https://t.co/Fl9VbCEzhD","Mar 1, 9:55:57 PM EST"
-1896032055471079531,"🤨 https://t.co/4HbI8Gp6kc","Mar 1, 9:57:23 PM EST"
-1896067964841148857,"RT @stillgray: Ukraine. https://t.co/ZAZiATPhLo","Mar 2, 12:20:04 AM EST"
-1896068473736077328,"RT @AMErikaNGIRLLL: “Europe is going to have to pay
-to defend itself!” 💥 https://t.co/wrNA0FsRYp","Mar 2, 12:22:06 AM EST"
-1896068493986197990,"RT @WallStreetApes: Elon Musk talks about California’s HORRIBLE leadership during his Joe Rogan interview
-
-Elon Musk explains how Democrats…","Mar 2, 12:22:10 AM EST"
-1896070256151707998,"Yes https://t.co/5v8QRVmiJ6","Mar 2, 12:29:11 AM EST"
-1896073047549030583,"RT @TheRabbitHole84: AP used to be regarded as being more in the center but is now rated as having a Left-wing bias. https://t.co/ii15Ga8L1a","Mar 2, 12:40:16 AM EST"
-1896073146652115399,"RT @teslaownersSV: Grok 3 images are insanely real 🤯🤯 https://t.co/05XdCtpdk0","Mar 2, 12:40:40 AM EST"
-1896073852641489368,"RT @johnkrausphotos: Good evening from Starbase, Texas, where Starlink satellite simulators are being loaded onto Ship 34 ahead of Starship…","Mar 2, 12:43:28 AM EST"
-1896079248752029946,"Yes https://t.co/rMtkp9miru","Mar 2, 1:04:55 AM EST"
-1896079528449229094,"RT @teslaownersSV: The scale of the Starship is insane and 🤯🤯🤯 https://t.co/6k9Ky0ZPMZ","Mar 2, 1:06:01 AM EST"
-1896139910316438008,"RT @MarioNawfal: ELON’S BEST MOMENTS ON JOE ROGAN - A THREAD
-
-Elon was on Joe Rogan again, and the conversation was as entertaining as you’…","Mar 2, 5:05:57 AM EST"
-1896144804456911249,"RT @DimaZeniuk: One day humanity will be on Mars https://t.co/YIUmFBmoJy","Mar 2, 5:25:24 AM EST"
-1896145498853290277,"https://t.co/2rCOiEpMky","Mar 2, 5:28:10 AM EST"
-1896145710405566568,"RT @TRHLofficial: I miss the anti-war left.","Mar 2, 5:29:00 AM EST"
-1896145744446570685,"RT @cb_doge: That little blue dot is us. https://t.co/G775HRHlbM","Mar 2, 5:29:08 AM EST"
-1896147286608232592,"Zelensky damaged himself severely in the eyes of the public. Just a fact. https://t.co/g7wd9WzJh9","Mar 2, 5:35:16 AM EST"
-1896147549016428684,"Yes https://t.co/xGayRLLWnD","Mar 2, 5:36:19 AM EST"
-1896147967977070741,"RT @BalazsOrban_HU: Dear European “leaders”, although Hungary has been the only country that has consistanly stood for peace in the EU, we…","Mar 2, 5:37:58 AM EST"
-1896148096075305046,"https://t.co/wOh0spa2nv","Mar 2, 5:38:29 AM EST"
-1896148174630482160,"RT @aestheticspost_: https://t.co/dCRcYVPflW","Mar 2, 5:38:48 AM EST"
-1896148325155692940,"Same https://t.co/zKVOadgEhx","Mar 2, 5:39:24 AM EST"
-1896148814739980561,"RT @bennyjohnson: 🚨🔥Stephen Miller just hit the nail on the HEAD:
-
-"President Trump defended Americans after YEARS of being fleeced and a…","Mar 2, 5:41:20 AM EST"
-1896149144051548220,"RT @MarioNawfal: 🇺🇸🇺🇦 BIDEN TOLD ZELENSKY TO BE GRATEFUL FOR U.S. AID?!
-
-Turns out, Trump isn’t the only U.S. president to lose his patienc…","Mar 2, 5:42:39 AM EST"
-1896150961237991838,"Grok can save you from scams! https://t.co/tSEholnpPf","Mar 2, 5:49:52 AM EST"
-1896151739314884772,"Yeah https://t.co/8kf09sGAYx","Mar 2, 5:52:58 AM EST"
-1896151934668816552,"RT @WallStreetMav: Approximately 73% of Americans approve of Doge!!
-
-The Doge Act is not a bill yet, but it’s coming soon. The goal of th…","Mar 2, 5:53:44 AM EST"
-1896152962986365124,"https://t.co/RvrV0IEFOp","Mar 2, 5:57:49 AM EST"
-1896153420039618899,"(True, although I would never wear Crocs)
- https://t.co/iRjqjZBbQn","Mar 2, 5:59:38 AM EST"
-1896153533667520878,"RT @liz_churchill10: This brings me so much joy 🔥 https://t.co/jodG2NMf8d","Mar 2, 6:00:05 AM EST"
-1896154751877964094,"https://t.co/iMOzbgZFQK","Mar 2, 6:04:56 AM EST"
-1896155051539972564,"RT @teslaownersSV: "The vast majority of diseases or brain issues, I think are fixable with a Neuralink device."
-
-Elon Musk
- https://t.co/F…","Mar 2, 6:06:07 AM EST"
-1896155278963589579,"https://t.co/RC6y7x2yYo","Mar 2, 6:07:02 AM EST"
-1896156944571965514,"RT @cb_doge: BREAKING: ~73% of Americans approve of the Department of Government Efficiency. 🇺🇸 https://t.co/XYJVPA4RKt","Mar 2, 6:13:39 AM EST"
-1896157134100009036,"RT @MarioNawfal: ELON: DOGE HAS PUSHED TO HIRE, NOT FIRE AIR TRAFFIC CONTROLLERS
-
-"There is a shortage of top notch air traffic controllers…","Mar 2, 6:14:24 AM EST"
-1896158580690350303,"What I said over 2 years ago was that Ukraine should seek peace or suffer severe loss of life for no gains.
-
-The latter was Zelensky’s choice.
-
-Now, he wants to do that again.
-
-This is cruel and inhumane. https://t.co/44DZhnH98s","Mar 2, 6:20:09 AM EST"
-1896158775498957299,"Thank you! https://t.co/54J8Dohydg","Mar 2, 6:20:55 AM EST"
-1896209615412764885,"Yeah https://t.co/SZ85hOe2XU","Mar 2, 9:42:56 AM EST"
-1896212014055543015,"RT @EndWokeness: FBI Director Kash Patel wants to know what happened to all the $$ we gave Ukraine https://t.co/3t8TwkNH7s","Mar 2, 9:52:28 AM EST"
-1896215032897380413,"Not much has changed https://t.co/kO9GBNE7AG","Mar 2, 10:04:28 AM EST"
-1896215434351009945,"RT @RepThomasMassie: NATO is a Cold War relic that needs to be relegated to a talking kiosk at the Smithsonian.","Mar 2, 10:06:04 AM EST"
-1896217327043285107,"https://t.co/6kreKPOn0N","Mar 2, 10:13:35 AM EST"
-1896217667704676361,"RT @newstart_2024: Elon Musk: "At the heart of the sort of like, why is the Democrat propaganda machine so fired up to destroy me? That's t…","Mar 2, 10:14:56 AM EST"
-1896217742572970457,"RT @lexfridman: We need to invest in peace not war.
-
-We need to invest in innovation, in our education system, and in building epic things…","Mar 2, 10:15:14 AM EST"
-1896222587229004252,"The reality of war https://t.co/APwT3ToL1k","Mar 2, 10:34:29 AM EST"
-1896223096270721137,"Exactly https://t.co/ubM3rVKSeZ","Mar 2, 10:36:30 AM EST"
-1896223616691519541,"https://t.co/JPmF2YORqm","Mar 2, 10:38:35 AM EST"
-1896224223808692420,"Cool idea.
-
-Starfleet Academy has a nicer ring to it though.
-
-Could still cover space/AI/robotics. https://t.co/LPWtlUpOYH","Mar 2, 10:40:59 AM EST"
-1896224487491997733,"The authorities need to stop doing this https://t.co/uH8lkoHB08","Mar 2, 10:42:02 AM EST"
-1896225096324554928,"Send friends links to 𝕏 posts so they know what’s really going on! https://t.co/UABR5OLtVI","Mar 2, 10:44:27 AM EST"
-1896228708937310369,"Leaders and diplomats enjoy Michelin-starred meals, while soldiers die in trenches","Mar 2, 10:58:49 AM EST"
-1896229288086831615,"RT @WallStreetMav: Hypocrisy lvl 1000 https://t.co/3uPXyJybKV","Mar 2, 11:01:07 AM EST"
-1896230928411988397,"The EU leaders and Zelensky having fancy dinners while men die in trenches.
-
-How many parents will never see their son again?
-
-How many children will never see their father? https://t.co/OMt5TIc6T3","Mar 2, 11:07:38 AM EST"
-1896232941015171461,"Masa is already overleveraged https://t.co/h4YZqmY4Kf","Mar 2, 11:15:38 AM EST"
-1896233404913610938,"Big difference if it’s not you or your child being conscripted to die in trenches https://t.co/i4eVMD3Ui5","Mar 2, 11:17:28 AM EST"
-1896234379682484403,"RT @TheCaptainEli: I support Elon Musk !
-
-Asking people in Israel what they are thinking of Elon Musk
-Video #2 https://t.co/X1M1DRQbKQ","Mar 2, 11:21:21 AM EST"
-1896234792062226590,"RT @TheCaptainEli: I support Elon Musk !
-
-Asking people in Israel what they are thinking of Elon Musk
-Video #1 https://t.co/ChqLIqiT9z","Mar 2, 11:22:59 AM EST"
-1896235170073833472,"It’s a deliberate strategy https://t.co/JwvVnfG2qT","Mar 2, 11:24:29 AM EST"
-1896235304463618490,"RT @MarioNawfal: 🚨🇺🇸BRENDAN CARR: WE ARE COMING OUT OF A PERIOD OF WEAPONIZATION AT THE FCC
-
-“Your last name dictated the FCC’s treatment.…","Mar 2, 11:25:01 AM EST"
-1896235553592635425,"RT @Sadie_NC: Still think there is no media bias? https://t.co/XZpYyO0Ynw","Mar 2, 11:26:00 AM EST"
-1896238419673784683,"RT @TheRabbitHole84: 🧐 https://t.co/s7lLntvoMv","Mar 2, 11:37:24 AM EST"
-1896238671747219570,"RT @cb_doge: It’s not about Ukraine.
-
-It’s not about Russia.
-
-It’s not about the United States.
-
-It’s about human lives. This war must end.","Mar 2, 11:38:24 AM EST"
-1896238785962406146,"RT @ggreenwald: It's so easy to sit in European capitals or nice US TV studios and cheer war in Ukraine all to derive a feeling of purpose…","Mar 2, 11:38:51 AM EST"
-1896238831952871526,"RT @johnkrausphotos: Ship 34 is rolling to the launch site at Starbase ahead of tomorrow's launch of Starship Flight 8 https://t.co/xKztfar…","Mar 2, 11:39:02 AM EST"
-1896239334581543152,"RT @Starlink: Starlink Mini is compact, portable and connects in minutes 🛰️","Mar 2, 11:41:02 AM EST"
-1896239360774938793,"RT @NielsMache: Just unpacked Starlink Mini in northern Italy. The amazingly compact antenna is pretty fast. Starlink's internet speed is e…","Mar 2, 11:41:08 AM EST"
-1896239972195438598,"This is a real video of a past @SpaceX Starship water landing.
-
-Trying again tomorrow.
-
-We need to perfect ship reentry at extreme temperatures before attempting to catch the ship with the tower arms, like the booster.
-
- https://t.co/tss9Lb4fWr","Mar 2, 11:43:34 AM EST"
-1896240227876053248,"Of course https://t.co/AzHtvmGvoH","Mar 2, 11:44:35 AM EST"
-1896241196609216602,"RT @RapidResponse47: .@SecScottBessent: What I find interesting is, for the past year and a half... most of the media said, "Oh, the econom…","Mar 2, 11:48:26 AM EST"
-1896248819547070782,"Listen to this
- https://t.co/9MEWR8kyEF","Mar 2, 12:18:43 PM EST"
-1896249201677463648,"🔥🔥🇺🇸🇺🇸 https://t.co/J3qjcYf0H4","Mar 2, 12:20:14 PM EST"
-1896249751647248811,"😂😂 https://t.co/2UKPgi0Qpo","Mar 2, 12:22:26 PM EST"
-1896253562382073875,"RT @SpeakerJohnson: I’ve attended many bilateral meetings with heads of state and dignitaries, but I’ve never seen anything like President…","Mar 2, 12:37:34 PM EST"
-1896254472965534055,"https://t.co/r9proHBDgh","Mar 2, 12:41:11 PM EST"
-1896254693275472094,"Exactly https://t.co/XPL50lYTZB","Mar 2, 12:42:04 PM EST"
-1896256727286509965,"https://t.co/A5oFin9RaX","Mar 2, 12:50:09 PM EST"
-1896263521513664896,"RT @WallStreetApes: Joe Rogan made it clear during his interview with Elon Musk: If you oppose DOGE, you fell for the propaganda
-
-“That’s t…","Mar 2, 1:17:09 PM EST"
-1896278571683099046,"Power to the people! https://t.co/h8Puh4ubo5","Mar 2, 2:16:57 PM EST"
-1896279104535904726,"Much appreciated @SecDef Hegseth!
-🫡 🇺🇸
- https://t.co/Ll3ctnoLlx","Mar 2, 2:19:04 PM EST"
-1896292051303751738,"RT @MargoMartin47: President @realDonaldTrump and @elonmusk stop by an event at Mar-a-Lago 🇺🇸 https://t.co/dj5UuyhJsW","Mar 2, 3:10:31 PM EST"
-1896292824783737240,"RT @edwards345: This is one of the coolest videos I’ve ever seen. Please enjoy it while it is still novel. Soon this will become as common…","Mar 2, 3:13:35 PM EST"
-1896294569958105421,"Starship flight test 8 tomorrow evening https://t.co/D3hJawce9Z","Mar 2, 3:20:31 PM EST"
-1896294684869455977,"Exactly https://t.co/ASUVkZz7VP","Mar 2, 3:20:58 PM EST"
-1896294728230224232,"RT @PlanetOfMemes: @MarioNawfal Yep. https://t.co/KzFbGgxFmo","Mar 2, 3:21:09 PM EST"
-1896295218884092076,"So good to see the improved forward flaps https://t.co/TwKvOMNi66","Mar 2, 3:23:06 PM EST"
-1896295419245985793,"RT @SecDef: The President’s desire to end the bloodshed in Ukraine will not be deterred. https://t.co/0B1RJzZ5vV","Mar 2, 3:23:54 PM EST"
-1896299067501887936,"America should be a DEMOcracy, not a BUREAUcracy! 🇺🇸🇺🇸
- https://t.co/SHpuaPyjRi","Mar 2, 3:38:23 PM EST"
-1896312468307316789,"Lot to learn on this flight https://t.co/bBjkvF2gXa","Mar 2, 4:31:38 PM EST"
-1896313630318321848,"RT @ThomasSowell: https://t.co/fEwl1UgalQ","Mar 2, 4:36:15 PM EST"
-1896318866575470910,"RT @teslaownersSV: If 🇺🇸 sinks, we all sink
-
-Elon Musk https://t.co/mAXHvxFTTN","Mar 2, 4:57:04 PM EST"
-1896331195010765234,"RT @cb_doge: Elon Musk, wearing two hats — one photo from when he was 17 and the other from today. https://t.co/eGvSXrI0Rx","Mar 2, 5:46:03 PM EST"
-1896331689271672887,"RT @Tesla: Also comes in handy when car camping in areas with no cell service, so you can adjust climate or other settings without having t…","Mar 2, 5:48:01 PM EST"
-1896332215136690464,"💯🇺🇸 https://t.co/iMDNxuRSlk","Mar 2, 5:50:06 PM EST"
-1896334881619378556,"The American people like what they see https://t.co/vwsHXEo6QH","Mar 2, 6:00:42 PM EST"
-1896371025040003556,"Cool ❤️ https://t.co/ZvvzQR3yr8","Mar 2, 8:24:19 PM EST"
-1896403271251881995,"So many cases of software licenses and media subscriptions with zero usage!
-
-Every part of the government has this issue. @DOGE has yet to find an exception. https://t.co/sj5sqFU35i","Mar 2, 10:32:27 PM EST"
-1896403400377675958,"True https://t.co/IjFNY5a3PA","Mar 2, 10:32:58 PM EST"
-1896404286319611940,"This is messed up. Should just be who is best, not best with an asterisk! https://t.co/Q2edmvekm4","Mar 2, 10:36:30 PM EST"
-1896405451509780828,"RT @johnkrausphotos: Starship, the largest and most powerful rocket in history, stands at Starbase, Texas, ahead of Flight 8 tomorrow https…","Mar 2, 10:41:07 PM EST"
-1896405754477002788,"RT @nicksortor: 🚨 NOW: President Trump, Elon Musk, Lil X, and Ms. @MayeMusk just arrived at the White House on Marine One
-
-BIG WEEK AHEAD!…","Mar 2, 10:42:20 PM EST"
-1896409746858459145,"💯 https://t.co/G222iMYmIq","Mar 2, 10:58:11 PM EST"
-1896410514487660988,"Well said https://t.co/sCUH81pTb1","Mar 2, 11:01:14 PM EST"
-1896410785016144137,"True https://t.co/7Fq7V2Ofpc","Mar 2, 11:02:19 PM EST"
-1896414777301500306,"RT @ai_for_success: Grok-3 DeepSearch + Gamma : productivity hack 🔥
-
-- Grok-3: DeepSearch is really powerful use it to pull relevant data…","Mar 2, 11:18:11 PM EST"
-1896414892992967088,"He’s not wrong https://t.co/rttWOrhyoH","Mar 2, 11:18:38 PM EST"
-1896415227044114838,"Yes https://t.co/YWUwMJu2ZN","Mar 2, 11:19:58 PM EST"
-1896415513351532639,"🤔 https://t.co/AjGUrtEtcv","Mar 2, 11:21:06 PM EST"
-1896417160014209110,"RT @MarioNawfal: 🚨 🇺🇸 REPORT: 7,000 POLITICALLY-CONNECTED NGOS HOARD 90% OF NONPROFIT FEDERAL FUNDING
-
-Investigation reveals $300 billion i…","Mar 2, 11:27:39 PM EST"
-1896417562411594073,"The Fed is absurdly overstaffed https://t.co/9qoPO8fsiM","Mar 2, 11:29:15 PM EST"
-1896417730108280849,"Yes https://t.co/4Mk4Fafs2t","Mar 2, 11:29:55 PM EST"
-1896419518530109672,"Wow, this is cool https://t.co/7GzdIxiqHn","Mar 2, 11:37:01 PM EST"
-1896420093690880299,"Yeah, it’s awesome!
-
-For a wild experience, try Grok unhinged mode 😂
-
-Note, you have to download the @Grok app for this. https://t.co/6lhoxRMKoD","Mar 2, 11:39:18 PM EST"
-1896438357418459475,"RT @MoreBirths: https://t.co/04CIg4d0Js","Mar 3, 12:51:53 AM EST"
-1896441590597775601,"RT @MarioNawfal: GROK 3 BUILT ANOTHER MULTIPLAYER GAME—NO HUMAN NEEDED
-
-A full game, written in Python, developed almost entirely by Cursor…","Mar 3, 1:04:44 AM EST"
-1896441654552485980,"RT @cb_doge: Just a reminder:
-
-Grok has its own dedicated app — Try it out!
-
- https://t.co/vV868HzwCC","Mar 3, 1:04:59 AM EST"
-1896442688779723184,"RT @SecRubio: Being a peacemaker is not a bad thing. We should be applauding and supporting @POTUS's efforts to bring about peace. https://…","Mar 3, 1:09:05 AM EST"
-1896442743871959218,"RT @SpaceX: Falcon 9 delivers 21 @Starlink satellites to the constellation from Florida https://t.co/6PMELtitXj","Mar 3, 1:09:18 AM EST"
-1896443306739110004,"Deservedly so https://t.co/T1KCXRMO22","Mar 3, 1:11:33 AM EST"
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..c48eb02
--- /dev/null
+++ b/main.py
@@ -0,0 +1,5 @@
+from pkg.dash.app_init import app
+
+# Run the app
+if __name__ == '__main__':
+ app.run_server(debug=True)
diff --git a/api/max_finance.py b/max_finance.py
similarity index 98%
rename from api/max_finance.py
rename to max_finance.py
index d9fa2b0..900f317 100644
--- a/api/max_finance.py
+++ b/max_finance.py
@@ -184,15 +184,15 @@ def update_input_scrollbar():
def save_history_to_file():
"""Save run history to a text file"""
- with open("run_history.txt", "w") as f:
+ with open("cache/run_history.txt", "w") as f:
json.dump(run_history, f, indent=4)
def load_history_from_file():
"""Load run history from a text file"""
global run_history
- if os.path.exists("run_history.txt"):
- with open("run_history.txt", "r") as f:
+ if os.path.exists("cache/run_history.txt"):
+ with open("cache/run_history.txt", "r") as f:
run_history = json.load(f)
else:
run_history = []
diff --git a/pkg/config.py b/pkg/config.py
new file mode 100644
index 0000000..40d3f3d
--- /dev/null
+++ b/pkg/config.py
@@ -0,0 +1,62 @@
+from sqlalchemy import create_engine
+import pandas as pd
+import pytz
+
+# Database connection configuration
+DB_CONFIG = {
+ 'host': '8.155.23.172',
+ 'port': 3306,
+ 'user': 'root2',
+ 'password': 'tG0f6PVYh18le41BCb',
+ 'database': 'elonX'
+}
+TABLE_NAME = 'elon_tweets'
+db_uri = f"mysql+pymysql://{DB_CONFIG['user']}:{DB_CONFIG['password']}@{DB_CONFIG['host']}:{DB_CONFIG['port']}/{DB_CONFIG['database']}"
+engine = create_engine(db_uri)
+# Time zone
+eastern = pytz.timezone('America/New_York')
+pacific = pytz.timezone('America/Los_Angeles')
+central = pytz.timezone('America/Chicago')
+# CSV update file path
+INPUT_FILE = 'cache/elonmusk.csv'
+OUTPUT_FILE = 'cache/fixed.csv'
+# Time interval and days options
+interval_options = [
+ {'label': '1 minute', 'value': 1},
+ {'label': '5 minutes', 'value': 5},
+ {'label': '10 minutes', 'value': 10},
+ {'label': '30 minutes', 'value': 30},
+ {'label': '60 minutes', 'value': 60}
+]
+days_options = [
+ {'label': '7 days', 'value': 7},
+ {'label': '30 days', 'value': 30},
+ {'label': '90 days', 'value': 90},
+ {'label': '120 days', 'value': 120},
+ {'label': '240 days', 'value': 240}
+]
+
+# Global render data
+class RenderData:
+ def __init__(self):
+ self.global_df = None
+ self.global_agg_df = None
+ self.all_dates = []
+ self.default_date = []
+ self.load_data()
+
+ def load_data(self):
+ df = pd.read_sql(f'SELECT timestamp FROM {TABLE_NAME}', con=engine)
+ df['datetime'] = pd.to_datetime(df['timestamp'], unit='s')
+ df['datetime_est'] = df['datetime'].dt.tz_localize('UTC').dt.tz_convert(eastern)
+ df['date'] = df['datetime_est'].dt.date
+ df['minute_of_day'] = df['datetime_est'].dt.hour * 60 + df['datetime_est'].dt.minute
+ agg_df = df.groupby(['date', 'minute_of_day']).size().reset_index(name='tweet_count')
+
+ self.global_df = df.copy()
+ self.global_agg_df = agg_df.copy()
+ self.all_dates = sorted(self.global_agg_df['date'].unique(), reverse=True)
+ self.default_date = [str(self.all_dates[0])]
+
+render_data = RenderData()
+
diff --git a/pkg/dash/__init__.py b/pkg/dash/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/pkg/dash/api/__init__.py b/pkg/dash/api/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/pkg/dash/api/get_tweets.py b/pkg/dash/api/get_tweets.py
new file mode 100644
index 0000000..9904562
--- /dev/null
+++ b/pkg/dash/api/get_tweets.py
@@ -0,0 +1,14 @@
+from pkg.dash.app_init import app
+from pkg.get_tweets import process_tweets
+from flask import jsonify
+from pkg.config import render_data
+
+# Simulated backend endpoint for processing tweets
+@app.server.route('/api/process_tweets', methods=['GET'])
+def api_process_tweets():
+ success, message = process_tweets()
+ if success:
+ render_data.load_data()
+ return jsonify({'message': message, 'default_date': render_data.default_date}), 200
+ else:
+ return jsonify({'error': message}), 500
\ No newline at end of file
diff --git a/pkg/dash/app_html.py b/pkg/dash/app_html.py
new file mode 100644
index 0000000..d7984da
--- /dev/null
+++ b/pkg/dash/app_html.py
@@ -0,0 +1,124 @@
+from dash import dcc, html
+from pkg.config import interval_options,days_options,render_data
+
+def layout_config(app):
+ # Dash app layout (unchanged except default days value)
+ app.layout = html.Div([
+ # Left sidebar with clock button and tooltip (unchanged)
+ html.Div(
+ id='clock-container',
+ children=[
+ html.Div(
+ id='clock-button',
+ children='🕒',
+ style={
+ 'fontSize': '24px',
+ 'cursor': 'pointer',
+ 'padding': '5px',
+ }
+ ),
+ html.Div(
+ id='clock-tooltip',
+ children=[
+ html.Div(id='pst-clock'),
+ html.Div(id='cst-clock'),
+ html.Div(id='est-clock')
+ ],
+ style={
+ 'position': 'absolute',
+ 'left': '35px',
+ 'top': '0px',
+ 'backgroundColor': 'rgba(0, 0, 0, 0.8)',
+ 'color': 'white',
+ 'padding': '10px',
+ 'borderRadius': '5px',
+ 'fontSize': '14px',
+ 'display': 'none',
+ 'whiteSpace': 'nowrap'
+ }
+ ),
+ html.Div(
+ id='play-button',
+ children='▶️',
+ n_clicks=0,
+ style={
+ 'fontSize': '24px',
+ 'cursor': 'pointer',
+ 'padding': '5px',
+ 'marginTop': '10px'
+ }
+ ),
+ html.Div(
+ id='play-tooltip',
+ children=[],
+ style={
+ 'position': 'absolute',
+ 'left': '35px',
+ 'top': '40px',
+ 'backgroundColor': 'rgba(0, 0, 0, 0.8)',
+ 'color': 'white',
+ 'padding': '10px',
+ 'borderRadius': '5px',
+ 'fontSize': '14px',
+ 'display': 'none',
+ 'whiteSpace': 'nowrap'
+ }
+ )
+ ],
+ style={
+ 'position': 'fixed',
+ 'left': '10px',
+ 'top': '50%',
+ 'transform': 'translateY(-50%)',
+ 'zIndex': 1000
+ }
+ ),
+ # Main content
+ html.Div([
+ html.H1("Elon Musk Tweet Time Analysis (EST)"),
+ html.Div(id='date-picker-container', children=[
+ dcc.Dropdown(
+ id='multi-date-picker',
+ options=[{'label': str(date), 'value': str(date)} for date in render_data.all_dates],
+ value=render_data.default_date,
+ multi=True,
+ searchable=True,
+ placeholder="Search and select dates (YYYY-MM-DD)",
+ style={'width': '100%'}
+ )
+ ]),
+ dcc.Dropdown(
+ id='multi-interval-picker',
+ options=interval_options,
+ value=10,
+ style={'width': '50%', 'marginTop': '10px'}
+ ),
+ html.Div(id='days-display-container', style={'display': 'none'}, children=[
+ dcc.Dropdown(
+ id='days-display-picker',
+ options=days_options,
+ value=30, # Default changed to 30 since 1 is removed
+ style={'width': '50%', 'marginTop': '10px'}
+ )
+ ]),
+ html.Div(id='multi-day-warning', style={'color': 'red', 'margin': '10px'}),
+ dcc.Checklist(
+ id='time-zone-checklist',
+ options=[
+ {'label': 'California Time (PST)', 'value': 'PST'},
+ {'label': 'Texas Time (CST)', 'value': 'CST'}
+ ],
+ value=['PST'],
+ style={'margin': '10px'}
+ ),
+ html.Div(id='multi-tweet-summary', style={'fontSize': '20px', 'margin': '10px'}),
+ dcc.Tabs(id='tabs', value='line', children=[
+ dcc.Tab(label='Line Chart', value='line'),
+ dcc.Tab(label='Heatmap', value='heatmap'),
+ dcc.Tab(label='Scatter Plot', value='scatter'),
+ ]),
+ html.Div(id='tabs-content'),
+ ], style={'marginLeft': '50px'}),
+ dcc.Interval(id='clock-interval', interval=1000, n_intervals=0)
+ ])
+ return app
diff --git a/pkg/dash/app_init.py b/pkg/dash/app_init.py
new file mode 100644
index 0000000..b43c080
--- /dev/null
+++ b/pkg/dash/app_init.py
@@ -0,0 +1,25 @@
+import dash
+from .app_html import layout_config
+from .javascript import setting_callback
+import os
+import importlib
+
+# Initialize Dash app (unchanged)
+external_stylesheets = ['assets/bWLwgP.css']
+app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
+app = layout_config(app)
+setting_callback()
+
+base_dir = os.path.dirname(__file__)
+sub_dirs = ['func', 'api']
+for sub_dir in sub_dirs:
+ dir_path = os.path.join(base_dir, sub_dir)
+ if os.path.exists(dir_path):
+ for filename in os.listdir(dir_path):
+ if filename.endswith('.py') and filename != '__init__.py':
+ module_name = filename[:-3]
+ importlib.import_module(f'.{sub_dir}.{module_name}', package='pkg.dash')
+
+
+
+
diff --git a/pkg/dash/func/__init__.py b/pkg/dash/func/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/pkg/dash/func/clock.py b/pkg/dash/func/clock.py
new file mode 100644
index 0000000..17b72ef
--- /dev/null
+++ b/pkg/dash/func/clock.py
@@ -0,0 +1,19 @@
+import pytz
+from pkg.dash.app_init import app
+from dash.dependencies import Input, Output
+from pkg.config import pacific,central,eastern
+from datetime import datetime
+
+# Callback for updating clocks (unchanged)
+@app.callback(
+ [Output('pst-clock', 'children'),
+ Output('cst-clock', 'children'),
+ Output('est-clock', 'children')],
+ [Input('clock-interval', 'n_intervals')]
+)
+def update_clocks(n):
+ now_utc = datetime.now(pytz.UTC)
+ pst_time = now_utc.astimezone(pacific).strftime('%Y-%m-%d %H:%M:%S PST')
+ cst_time = now_utc.astimezone(central).strftime('%Y-%m-%d %H:%M:%S CST')
+ est_time = now_utc.astimezone(eastern).strftime('%Y-%m-%d %H:%M:%S EST')
+ return f"𝕏: {pst_time}", f"🚀: {cst_time}", f"🏛️/🌴: {est_time}"
diff --git a/pkg/dash/func/render.py b/pkg/dash/func/render.py
new file mode 100644
index 0000000..03a9a7d
--- /dev/null
+++ b/pkg/dash/func/render.py
@@ -0,0 +1,132 @@
+from datetime import datetime, timedelta
+from dash.dependencies import Input, Output
+from pkg.dash.app_init import app
+from pkg.config import render_data
+from pkg.tool import aggregate_data,generate_xticks,minutes_to_time
+from dash import dcc
+import plotly.graph_objs as go
+import pandas as pd
+
+# Callback for updating tabs content (Modified to add Thursday-Friday lines)
+@app.callback(
+ [Output('tabs-content', 'children'),
+ Output('multi-day-warning', 'children'),
+ Output('multi-tweet-summary', 'children')],
+ [Input('tabs', 'value'),
+ Input('multi-date-picker', 'value'),
+ Input('multi-interval-picker', 'value'),
+ Input('time-zone-checklist', 'value'),
+ Input('days-display-picker', 'value')]
+)
+def render_tab_content(tab, selected_dates, interval, time_zones, days_to_display):
+ warning = ""
+ if tab != 'heatmap':
+ if len(selected_dates) > 10:
+ selected_dates = selected_dates[:10]
+ warning = "Maximum of 10 days can be selected. Showing first 10 selected days."
+ selected_dates = [datetime.strptime(date, '%Y-%m-%d').date() for date in selected_dates]
+ else:
+ selected_dates = sorted(render_data.global_agg_df['date'].unique(), reverse=True)[:days_to_display]
+
+ multi_data_agg = render_data.global_agg_df[render_data.global_agg_df['date'].isin(selected_dates)].copy()
+ if multi_data_agg.empty:
+ multi_data_agg = pd.DataFrame({'date': selected_dates, 'minute_of_day': [0] * len(selected_dates)})
+ tweet_count_total = 0
+ else:
+ tweet_count_total = multi_data_agg['tweet_count'].sum()
+
+ multi_data_raw = render_data.global_df[render_data.global_df['date'].isin(selected_dates)].copy()
+ if multi_data_raw.empty:
+ tweet_count_total = 0
+
+ agg_data = aggregate_data(multi_data_agg, interval)
+ xticks, xtick_labels = generate_xticks(interval)
+
+ if tab == 'line':
+ fig = go.Figure()
+ for date in selected_dates:
+ day_data = agg_data[agg_data['date'] == date]
+ hover_times = [f"{date} {minutes_to_time(minute)} EST" for minute in day_data['interval_group']]
+ fig.add_trace(go.Scatter(
+ x=day_data['interval_group'],
+ y=day_data['tweet_count'],
+ mode='lines',
+ name=str(date),
+ customdata=hover_times,
+ hovertemplate='%{customdata}
Tweets: %{y}'
+ ))
+
+ elif tab == 'heatmap':
+ pivot_data = agg_data.pivot(index='date', columns='interval_group', values='tweet_count').fillna(0)
+ pivot_data.index = pivot_data.index.astype(str)
+ fig = go.Figure(data=go.Heatmap(
+ z=pivot_data.values,
+ x=[minutes_to_time(m) for m in pivot_data.columns],
+ y=pivot_data.index,
+ colorscale='Viridis',
+ hoverongaps=False,
+ hovertemplate='%{y} %{x} EST
Tweets: %{z}'
+ ))
+
+ for i, date_str in enumerate(pivot_data.index):
+ date = datetime.strptime(date_str, '%Y-%m-%d').date()
+ if date.weekday() == 4: # Friday
+ prev_date = date - timedelta(days=1)
+ if str(prev_date) in pivot_data.index:
+ y_position = i / len(pivot_data.index)
+ fig.add_hline(
+ y=1 - y_position,
+ line_dash="dash",
+ line_color="white",
+ xref="x",
+ yref="paper"
+ )
+ fig.update_layout(
+ title=f'Tweet Heatmap (Interval: {interval} minutes, EST, {len(selected_dates)} days)',
+ xaxis_title='Time of Day (HH:MM EST)',
+ yaxis_title='Date',
+ height=max(400, len(selected_dates) * 20),
+ yaxis=dict(autorange='reversed')
+ )
+
+ elif tab == 'scatter':
+ fig = go.Figure()
+ for date in selected_dates:
+ day_data = multi_data_raw[multi_data_raw['date'] == date]
+ if not day_data.empty:
+ hover_times = [t.strftime('%Y-%m-%d %H:%M:%S EST') for t in day_data['datetime_est']]
+ fig.add_trace(go.Scatter(
+ x=day_data['minute_of_day'],
+ y=[str(date)] * len(day_data),
+ mode='markers',
+ name=str(date),
+ customdata=hover_times,
+ hovertemplate='%{customdata}',
+ marker=dict(size=8)
+ ))
+
+ if tab in ['line', 'scatter']:
+ if 'PST' in time_zones:
+ pacific_2am_est = (2 + 3) * 60
+ pacific_7am_est = (7 + 3) * 60
+ fig.add_vline(x=pacific_2am_est, line_dash="dash", line_color="blue", annotation_text="CA 2AM PST")
+ fig.add_vline(x=pacific_7am_est, line_dash="dash", line_color="blue", annotation_text="CA 7AM PST")
+ if 'CST' in time_zones:
+ central_2am_est = (2 + 1) * 60
+ central_7am_est = (7 + 1) * 60
+ fig.add_vline(x=central_2am_est, line_dash="dash", line_color="green", annotation_text="TX 2AM CST")
+ fig.add_vline(x=central_7am_est, line_dash="dash", line_color="green", annotation_text="TX 7AM CST")
+
+ if tab in ['line', 'scatter']:
+ fig.update_layout(
+ title=f'{"Line" if tab == "line" else "Scatter"} Tweet Frequency (Interval: {interval} minutes, EST)',
+ xaxis_title='Eastern Time (HH:MM)',
+ yaxis_title='Tweet Count' if tab == 'line' else 'Date',
+ xaxis=dict(range=[0, 1440], tickvals=xticks, ticktext=xtick_labels, tickangle=45),
+ height=600,
+ showlegend=True,
+ yaxis=dict(autorange='reversed') if tab == 'scatter' else None
+ )
+
+ summary = f"Total tweets for selected dates: {int(tweet_count_total)}"
+ return dcc.Graph(figure=fig), warning, summary
diff --git a/pkg/dash/func/ui.py b/pkg/dash/func/ui.py
new file mode 100644
index 0000000..c4b19cb
--- /dev/null
+++ b/pkg/dash/func/ui.py
@@ -0,0 +1,12 @@
+from pkg.dash.app_init import app
+from dash.dependencies import Input, Output
+
+@app.callback(
+ [Output('date-picker-container', 'style'),
+ Output('days-display-container', 'style')],
+ [Input('tabs', 'value')]
+)
+def toggle_controls_visibility(tab):
+ if tab == 'heatmap':
+ return {'display': 'none'}, {'display': 'block'}
+ return {'display': 'block'}, {'display': 'none'}
\ No newline at end of file
diff --git a/pkg/dash/javascript.py b/pkg/dash/javascript.py
new file mode 100644
index 0000000..92fd643
--- /dev/null
+++ b/pkg/dash/javascript.py
@@ -0,0 +1,77 @@
+from dash.dependencies import Input, Output, State
+from dash import clientside_callback
+
+def setting_callback():
+ clientside_callback(
+ """
+ function(n_intervals) {
+ const button = document.getElementById('clock-button');
+ const tooltip = document.getElementById('clock-tooltip');
+ if (button && tooltip) {
+ button.addEventListener('mouseover', () => {
+ tooltip.style.display = 'block';
+ });
+ button.addEventListener('mouseout', () => {
+ tooltip.style.display = 'none';
+ });
+ }
+ return window.dash_clientside.no_update;
+ }
+ """,
+ Output('clock-container', 'id'),
+ Input('clock-interval', 'n_intervals'),
+ prevent_initial_call=False
+ )
+
+ # Clientside callback for play button with API request
+ clientside_callback(
+ """
+ async function(n_clicks, existing_children) {
+ const button = document.getElementById('play-button');
+ const tooltip = document.getElementById('play-tooltip');
+ if (!button || !tooltip) return ['▶️', ''];
+
+ if (n_clicks > 0) {
+ button.style.cursor = 'wait';
+ button.innerHTML = '🔄';
+ tooltip.style.display = 'none';
+
+ try {
+ const response = await fetch('/api/process_tweets', {
+ method: 'GET',
+ headers: {'Content-Type': 'application/json'}
+ });
+ const data = await response.json();
+
+ if (response.ok) {
+ button.innerHTML = '✅';
+ tooltip.innerHTML = `Success: ${data.message}`;
+ tooltip.style.display = 'block';
+ } else {
+ button.innerHTML = '🆘';
+ tooltip.innerHTML = `Error: ${data.error}`;
+ tooltip.style.display = 'block';
+ }
+ } catch (error) {
+ button.innerHTML = '🆘';
+ tooltip.innerHTML = `Error: Network failure - ${error.message}`;
+ tooltip.style.display = 'block';
+ }
+
+ setTimeout(() => {
+ button.innerHTML = '▶️';
+ button.style.cursor = 'pointer';
+ tooltip.style.display = 'none';
+ tooltip.innerHTML = '';
+ }, 3000);
+
+ return [button.innerHTML, tooltip.innerHTML];
+ }
+ return ['▶️', ''];
+ }
+ """,
+ [Output('play-button', 'children'), Output('play-tooltip', 'children')],
+ Input('play-button', 'n_clicks'),
+ State('play-button', 'children'),
+ prevent_initial_call=True
+ )
\ No newline at end of file
diff --git a/pkg/get_tweets.py b/pkg/get_tweets.py
index ff431b3..d3d247d 100644
--- a/pkg/get_tweets.py
+++ b/pkg/get_tweets.py
@@ -1,59 +1,33 @@
import csv
import re
import mysql.connector
-from datetime import datetime
import requests
-
-# 文件路径
-INPUT_FILE = '../elonmusk.csv'
-OUTPUT_FILE = '../fixed.csv'
-
-# 数据库连接配置
-DB_CONFIG = {
- 'host': '8.155.23.172',
- 'port': 3306,
- 'user': 'root2',
- 'password': 'tG0f6PVYh18le41BCb',
- 'database': 'elonX'
-}
-TABLE_NAME = 'elon_tweets'
-
+from datetime import datetime
+from pkg.config import TABLE_NAME,DB_CONFIG,INPUT_FILE,OUTPUT_FILE
def download_file(file_path):
url = 'https://www.xtracker.io/api/download'
headers = {
- 'Accept': '*/*',
- 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,zh-TW;q=0.5',
- 'Cache-Control': 'no-cache',
- 'Connection': 'keep-alive',
- 'Content-Type': 'application/json',
- 'Origin': 'https://www.xtracker.io',
- 'Pragma': 'no-cache',
- 'Referer': 'https://www.xtracker.io/',
- 'Sec-Fetch-Dest': 'empty',
- 'Sec-Fetch-Mode': 'cors',
- 'Sec-Fetch-Site': 'same-origin',
+ 'Accept': '*/*', 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,zh-TW;q=0.5',
+ 'Cache-Control': 'no-cache', 'Connection': 'keep-alive', 'Content-Type': 'application/json',
+ 'Origin': 'https://www.xtracker.io', 'Pragma': 'no-cache', 'Referer': 'https://www.xtracker.io/',
+ 'Sec-Fetch-Dest': 'empty', 'Sec-Fetch-Mode': 'cors', 'Sec-Fetch-Site': 'same-origin',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0',
- 'sec-ch-ua': '"Not(A:Brand";v="99", "Microsoft Edge";v="133", "Chromium";v="133"',
- 'sec-ch-ua-mobile': '?0',
+ 'sec-ch-ua': '"Not(A:Brand";v="99", "Microsoft Edge";v="133", "Chromium";v="133"', 'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"'
}
data = '{"handle":"elonmusk","platform":"X"}'
-
try:
response = requests.post(url, headers=headers, data=data)
if response.status_code == 200:
- # 直接保存原始字节数据,不进行解码
with open(file_path, 'wb') as f:
f.write(response.content)
- print(f"文件已成功下载到 {file_path}(原始字节数据)")
+ return True, "File downloaded successfully"
else:
- print(f"下载失败,状态码:{response.status_code}")
- print(f"响应内容:{response.text}")
+ return False, f"Download failed with status code {response.status_code}: {response.text}"
except Exception as e:
- print(f"下载文件时出错:{e}")
+ return False, f"Error downloading file: {str(e)}"
-# 第一步:修复 CSV 文件并添加 rank_id
def fix_line(lines, line_number, rank_id):
full_line = ''.join(lines)
match = re.search(r'^([^,]+),"(.+?)","([A-Z][a-z]{2} \d{1,2}, \d{1,2}:\d{2}:\d{2} (AM|PM) E[SD]T)"$', full_line,
@@ -69,7 +43,6 @@ def fix_line(lines, line_number, rank_id):
print(f"Line {line_number} format error: {repr(full_line)}")
return f'{rank_id},{full_line}'
-
def process_file(input_file, output_file):
with open(input_file, 'r', encoding='utf-8') as f_in, open(output_file, 'w', encoding='utf-8') as f_out:
f_out.write("rank_id,id,text,created_at\n")
@@ -90,104 +63,94 @@ def process_file(input_file, output_file):
if buffer:
fixed_line = fix_line(buffer, line_number, rank_id)
f_out.write(fixed_line + '\n')
- print(f"CSV 文件已修复并添加 rank_id,保存为 {output_file}")
+ return True, f"CSV 文件已修复并添加 rank_id,保存为 {output_file}"
-# 第二步:数据库操作
def get_max_rank_id(cursor):
try:
cursor.execute(f"SELECT MAX(rank_id) FROM {TABLE_NAME}")
result = cursor.fetchone()[0]
- return result if result is not None else 0
+ return result if result is not None else 0, True, ""
except mysql.connector.Error as e:
- print(f"获取最大 rank_id 出错: {e}")
- return 0
+ return 0, False, f"Error getting max rank_id: {str(e)}"
-def import_to_database(input_file):
+def import_to_database(input_file: str) -> tuple[bool, str]:
try:
- conn = mysql.connector.connect(**DB_CONFIG)
- cursor = conn.cursor()
- print("成功连接到数据库")
+ # Use context managers to ensure resources are closed properly
+ with mysql.connector.connect(**DB_CONFIG) as conn, conn.cursor() as cursor:
+ current_year = str(datetime.now().year)
+ max_rank_id, success, error = get_max_rank_id(cursor)
+ if not success:
+ return False, error
- # 获取当前年份
- current_year = str(datetime.now().year)
+ with open(input_file, 'r', encoding='utf-8') as f:
+ reader = csv.reader(f)
+ try:
+ next(reader) # Skip header
+ except StopIteration:
+ return False, "File is empty or has no valid header"
- # 获取数据库中最大 rank_id
- max_rank_id = get_max_rank_id(cursor)
- print(f"数据库中最大 rank_id: {max_rank_id}")
+ total_rows, inserted = 0, 0
+ for row in reader:
+ if len(row) != 4:
+ continue
+ try:
+ rank_id = int(row[0])
+ tweet_id = float(row[1])
+ text, created_at = row[2], row[3]
+ except (ValueError, IndexError) as e:
+ return False, f"Invalid data format in row: {str(e)}"
- with open(input_file, 'r', encoding='utf-8') as f:
- reader = csv.reader(f)
- next(reader) # 跳过表头
- total_rows = 0
- inserted = 0
+ if rank_id <= max_rank_id:
+ continue
- for row in reader:
- if len(row) != 4:
- print(f"跳过无效行: {row}")
- continue
- rank_id, id_, text, created_at = row
- rank_id = int(rank_id)
- tweet_id = float(id_)
+ total_rows += 1
+ insert_query = f"""
+ INSERT INTO {TABLE_NAME} (rank_id, id, text, year, created_at, timestamp)
+ VALUES (%s, %s, %s, %s, %s, %s)
+ """
+ cursor.execute(insert_query, (rank_id, tweet_id, text, current_year, created_at, 0))
+ inserted += 1
- # 只导入 rank_id 大于 max_rank_id 的记录
- if rank_id <= max_rank_id:
- continue
-
- total_rows += 1
- insert_query = f"""
- INSERT INTO {TABLE_NAME} (rank_id, id, text, year, created_at, timestamp)
- VALUES (%s, %s, %s, %s, %s, %s)
+ conn.commit()
+ update_query = f"""
+ UPDATE {TABLE_NAME}
+ SET timestamp = UNIX_TIMESTAMP(
+ CONVERT_TZ(
+ STR_TO_DATE(
+ CONCAT(year, ' ', SUBSTRING_INDEX(created_at, ' ', 4)),
+ '%Y %b %d, %l:%i:%s %p'
+ ),
+ CASE
+ WHEN RIGHT(created_at, 3) = 'EDT' THEN 'America/New_York'
+ WHEN RIGHT(created_at, 3) = 'EST' THEN 'America/New_York'
+ ELSE 'UTC'
+ END,
+ 'UTC'
+ )
+ ) + 8*60*60
+ WHERE rank_id > {max_rank_id}
"""
- cursor.execute(insert_query, (rank_id, tweet_id, text, current_year, created_at, 0))
- inserted += 1
- print(f"文本: 【{text}】,这是第 {inserted} 行")
-
- conn.commit()
- print(f"数据库导入完成:总计处理 {total_rows} 行,插入 {inserted} 行")
-
- # 更新新插入记录的 timestamp,使用参数化查询
- update_query = f"""
- UPDATE {TABLE_NAME}
- SET timestamp = UNIX_TIMESTAMP(
- CONVERT_TZ(
- STR_TO_DATE(
- CONCAT(year, ' ', SUBSTRING_INDEX(created_at, ' ', 4)),
- '%Y %b %d, %l:%i:%s %p'
- ),
- CASE
- WHEN RIGHT(created_at, 3) = 'EDT' THEN 'America/New_York'
- WHEN RIGHT(created_at, 3) = 'EST' THEN 'America/New_York'
- ELSE 'UTC'
- END,
- 'UTC'
- )
- ) + 8*60*60
- WHERE rank_id > {max_rank_id}
- """
- cursor.execute(update_query)
- conn.commit()
- print(f"已更新 rank_id > {max_rank_id} 的记录的时间戳")
+ cursor.execute(update_query)
+ conn.commit()
+ return True, f"Database import completed: {inserted} rows inserted"
except mysql.connector.Error as e:
- print(f"数据库错误: {e}")
+ return False, f"Database error: {str(e)}"
+ except FileNotFoundError as e:
+ return False, f"File not found: {str(e)}"
+ except csv.Error as e:
+ return False, f"CSV parsing error: {str(e)}"
except Exception as e:
- print(f"其他错误: {e}")
- finally:
- if 'cursor' in locals():
- cursor.close()
- if 'conn' in locals() and conn.is_connected():
- conn.close()
- print("数据库连接已关闭")
+ return False, f"Unexpected error: {str(e)}"
-
-# 主流程
-def main():
- download_file(INPUT_FILE) # 先下载文件
- process_file(INPUT_FILE, OUTPUT_FILE)
- import_to_database(OUTPUT_FILE)
-
-
-if __name__ == "__main__":
- main()
\ No newline at end of file
+def process_tweets():
+ success, msg = download_file(INPUT_FILE)
+ if not success:
+ return False, msg
+ success, msg = process_file(INPUT_FILE, OUTPUT_FILE)
+ if not success:
+ return False, msg
+ success, msg = import_to_database(OUTPUT_FILE)
+ return success, msg
\ No newline at end of file
diff --git a/pkg/tool.py b/pkg/tool.py
new file mode 100644
index 0000000..1b2eed3
--- /dev/null
+++ b/pkg/tool.py
@@ -0,0 +1,34 @@
+import pandas as pd
+
+# Auxiliary functions (unchanged)
+def aggregate_data(data, interval):
+ all_minutes = pd.DataFrame({'interval_group': range(0, 1440, interval)})
+ result = []
+ for date in data['date'].unique():
+ day_data = data[data['date'] == date].copy()
+ day_data['interval_group'] = (day_data['minute_of_day'] // interval) * interval
+ agg = day_data.groupby('interval_group').size().reset_index(name='tweet_count')
+ complete_data = all_minutes.merge(agg, on='interval_group', how='left').fillna({'tweet_count': 0})
+ complete_data['date'] = date
+ result.append(complete_data)
+ return pd.concat(result, ignore_index=True)
+
+
+def generate_xticks(interval):
+ if interval <= 5:
+ tick_step = 60
+ elif interval <= 10:
+ tick_step = 60
+ elif interval <= 30:
+ tick_step = 120
+ else:
+ tick_step = 240
+ ticks = list(range(0, 1440, tick_step))
+ tick_labels = [f"{m // 60:02d}:{m % 60:02d}" for m in ticks]
+ return ticks, tick_labels
+
+
+def minutes_to_time(minutes):
+ hours = minutes // 60
+ mins = minutes % 60
+ return f"{hours:02d}:{mins:02d}"
diff --git a/plan.md b/plan.md
new file mode 100644
index 0000000..7b8716c
--- /dev/null
+++ b/plan.md
@@ -0,0 +1,11 @@
+#### 2025.3.4
+1. 完善main.py的 ▶️🔄✅
+ * 使用api的方式,前端请求,后端api返回结果
+2. 实时时间显示对齐
+3. 添加一天内发帖热图
+
+#### 后续
+1. 考虑通过 tweets 数预测市场曲线的模型(人工智能)
+2. 考虑elon jets的效果
+
+
diff --git a/requirements.txt b/requirements.txt
index f56eff9..b886d70 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -9,4 +9,5 @@ SQLAlchemy~=2.0.38
matplotlib~=3.10.1
numpy~=2.2.3
scipy~=1.15.2
-ipython~=8.32.0
\ No newline at end of file
+ipython~=8.32.0
+Flask~=3.0.3
\ No newline at end of file