This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <rss version="2.0"> | |
| <channel> | |
| <title>Atlantis LSP3 final feed</title> | |
| <link>https://atlantis-project.com</link> | |
| <description>Atlantis demo LSP3 data feed</description> | |
| <lastBuildDate>Tue, 24 Sep 2024 10:17:28 GMT</lastBuildDate> | |
| <docs>https://validator.w3.org/feed/docs/rss2.html</docs> | |
| <generator>https://github.com/jpmonette/feed</generator> | |
| <language>en</language> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Verifying my Blockstack ID is secured with the address 13nvpRXHJMMMyc8qarm6tqVvYULj47frFi https://explorer.blockstack.org/address/13nvpRXHJMMMyc8qarm6tqVvYULj47frFi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var express = require('express'); | |
| var http = require('http'); | |
| var path = require('path'); | |
| var app = express(); | |
| app.use(express.static(path.join(__dirname, 'dist'))); | |
| /* GET home page. */ | |
| app.get('*', function(req, res, next) { | |
| //Path to your main file | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <html> | |
| <head> | |
| <style> | |
| .img-circle-large { | |
| background-repeat: no-repeat; | |
| border-radius: 50%; | |
| width: 250px; | |
| height: 250px; | |
| background-color: grey; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package tweet.tsv; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import org.apache.hadoop.conf.Configuration; | |
| import org.apache.hadoop.fs.FileSystem; | |
| import org.apache.hadoop.fs.*; | |
| import org.apache.hadoop.io.SequenceFile; | |
| import org.apache.hadoop.io.SequenceFile.Writer; | |
| import org.apache.hadoop.io.*; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # This script installs hadoop, all dependencies | |
| # and adds all needed environment variables. | |
| # It's made for a clean install of Ubuntu 14.04, | |
| # with nothing extra installed. | |
| # Adjust to your needs. | |
| # Set username | |
| USER=haris | |
| # Hadoop version to install | |
| HADOOP_VERSION=hadoop-2.4.1 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package pack; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.io.PrintWriter; | |
| import java.util.Hashtable; |