User:Tancre/2/hackpact/Git Stalker: Difference between revisions

From XPUB & Lens-Based wiki
< User:Tancre‎ | 2‎ | hackpact
 
(4 intermediate revisions by the same user not shown)
Line 12: Line 12:
== Crawler ==
== Crawler ==
=== Access repository ===
=== Access repository ===
* API
* API >> [http://145.137.124.160:8000/hackpact_git_stalker/API/ get repos]
<pre>
<source lang="html5">
<body>
<body>
<h1>Git Stalker _ API</h1>
<h1>Git Stalker _ API</h1>
Line 23: Line 23:
btnRepos.addEventListener("click", getRepos)
btnRepos.addEventListener("click", getRepos)
async function getRepos(){
async function getRepos(){
const url = "http://api.github.com/search/repositories?q=stars:>100000"
const url = "https://api.github.com/repos/smore-inc/clippy.js/contents/"
const response = await fetch(url)
const response = await fetch(url)
const result = await response.json()
const result = await response.json()
Line 31: Line 31:
</script>
</script>
</body>
</body>
</pre>
</source>


* Git clone (request link)
* Git clone (request link)
<pre>
<source lang="bash">
#!/bin/bash
#!/bin/bash


git clone 'link'
git clone 'link'
tree -hJ >> overview.json
tree -hJ >> overview.json
</pre>
</source>


<br>
<br>
<br>
 
<br>
<br>
<br>
<br>
<br>
<br>
<br>


==== Some note ====
'''Some note'''


It is interesting to find the web stalker on [https://anthology.rhizome.org/the-web-stalker Rhizome] and think about this concept at the same time.
It is interesting to find the web stalker on [https://anthology.rhizome.org/the-web-stalker Rhizome] and think about this concept at the same time.

Latest revision as of 20:37, 3 December 2019

Git Stalker

From web stalker

I imagine a sort of 'git stalker' (it could be an online service).

  • Crawler > ask the link of the git repository and start the session through the Github's API (+ further data on the connection, maybe).
  • Overview (Map) > tree -hJ >> overview.json print the data structure in a file. D3.js use the json to produce a visualization of the structure of the directory. Kinda like the map of the links in 'web stalker': central main folder and then the other folders/files distributed around the main folder and so on recursively. (It is relevant the concept of Mind Map and Rhizome)

Github's API

Crawler

Access repository

<body>
	<h1>Git Stalker _ API</h1>
	<button id="btnRepos">Repos</button>
	<div id="divResult"></div>

	<script type="text/javascript">
		const btnRepos = document.getElementById('btnRepos')
		btnRepos.addEventListener("click", getRepos)
		async function getRepos(){
			const url = "https://api.github.com/repos/smore-inc/clippy.js/contents/"
			const response = await fetch(url)
			const result = await response.json()
			console.log(result)
		}

	</script>
</body>
  • Git clone (request link)
#!/bin/bash

git clone 'link'
tree -hJ >> overview.json



Some note

It is interesting to find the web stalker on Rhizome and think about this concept at the same time.

Evolution of the data viz: linear > tree > rhizome

D&G - 1. Introduction: Rhizome (from A Thousand Plateaux)
Pasquinelli - The arborescent mind