Skip to content

Instantly share code, notes, and snippets.

Jacob
Michael
Joshua
Matthew
Daniel
Christopher
Andrew
Ethan
Joseph
William

Dear Pandora Visitor,

We are deeply, deeply sorry to say that due to licensing constraints, we can no longer allow access to Pandora for listeners located outside of the U.S., Australia and New Zealand. We will continue to work diligently to realize the vision of a truly global Pandora, but for the time being we are required to restrict its use. We are very sad to have to do this, but there is no other alternative.

We believe that you are in France (your IP address appears to be 90.63.223.236). If you believe we have made a mistake, we apologize and ask that you please email us.

If you have been using Pandora, we will keep a record of your existing stations and bookmarked artists and songs, so that when we are able to launch in your country, they will be waiting for you.

We will be notifying listeners as licensing agreements are established in individual countries. If you would like to be notified by email when Pandora is available in your country, please enter your email address below. The pace of global

Olivia,F,17728
Emma,F,15433
Charlotte,F,13285
Amelia,F,12952
Ava,F,12759
Sophia,F,12496
Isabella,F,11201
Mia,F,11096
Evelyn,F,9434
Harper,F,8388
Date MSFT AMZN AAPL ZM NFLX
1/4/16 -0.0122569004634868 -0.0575537796633967 0.000855095085597668 NA -0.0386431029544441
1/5/16 0.0045621796806341 -0.00502364566199853 -0.025059307226805 NA -0.0209166516998603
1/6/16 -0.0181653862295561 -0.0017986305236275 -0.0195696533339006 NA 0.0930707377644162
1/7/16 -0.0347825865395425 -0.039057964218144 -0.0422047877568867 NA -0.0265125934738274
1/8/16 0.00306699450942371 -0.00146398328300834 0.00528808376847478 NA -0.027671081139509
1/11/16 -0.000573334482647958 0.0176097557224564 0.0161921087913763 NA 0.0321393485244577
1/12/16 0.00917784089445006 0.000242861078169732 0.0145132225118252 NA 0.014003661703021
1/13/16 -0.021599032535504 -0.0583922965643003 -0.0257103355178645 NA -0.0859495953688524
1/14/16 0.02846628884834 0.0192330864688923 0.0218707589028819 NA 0.00469219228025897
@s2t2
s2t2 / index.html
Created December 3, 2022 19:51
profile_tags_50_umap_3.html
This file has been truncated, but you can view the full file.
<html>
<head><meta charset="utf-8" /></head>
<body>
<div> <script type="text/javascript">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
<script type="text/javascript">/**
* plotly.js v2.8.3
* Copyright 2012-2021, Plotly, Inc.
* All rights reserved.
* Licensed under the MIT license
*/
@s2t2
s2t2 / R.md
Last active August 16, 2022 00:49
learning R
@s2t2
s2t2 / student_website_exercise.md
Last active March 6, 2022 08:49
Fork the Repo (Student Personal Website)

Fork the Repo

Leverage an existing open source website to publish your own.

Note: your website content will be available to the public.

Objectives

  1. Develop a familiarity with open source software, software version control, and website hosting.
  • Gain exposure to a basic website, noting its directory structure and observing HTML document structures and content.
@s2t2
s2t2 / DATA.md
Created February 4, 2022 16:46
column_name datatype description
user_id INTEGER unique identifier for each user in our "impeachment 2020" dataset
created_on DATE date the user was created
screen_name_count INTEGER number of screen names used
screen_names STRING all screen names used
is_bot BOOLEAN whether or not we classified this user as a "bot" / automated account
bot_rt_network INTEGER for bots, which retweet network (0:anti-trump, 1:pro-trump)
is_q BOOLEAN whether or not this user tweeted Q-anon language / hashtags
@s2t2
s2t2 / _form.html.erb
Last active September 23, 2021 13:49
files generated by rails scaffold controller (for reference)
<%= form_for(@thing) do |f| %>
<% if @thing.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@thing.errors.count, "error") %> prohibited this thing from being saved:</h2>
<ul>
<% @thing.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>