You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/openbsd/2017-09-19_Tips-for-Alpine-Linux----under-OpenBSD----dca8d09568b4.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ date: '2017-09-19T11:48:58.385Z'
5
5
tags: [archives, linux, openbsd]
6
6
---
7
7
8
+
> Note: This is an old post from when I wrote on medium.com...formatting may be wonky here until I clean it up.
9
+
8
10
)](https://cdn-images-1.medium.com/max/800/1*Ird9QLfasg60n7LVB6RCpw.jpeg)
9
11
Matterhorn…if you squint you can see Puffy up there, I swear. ([https://commons.wikimedia.org/wiki/File:Matterhorn\_from\_Domh%C3%BCtte\_-\_2.jpg](https://commons.wikimedia.org/wiki/File:Matterhorn_from_Domh%C3%BCtte_-_2.jpg))
Copy file name to clipboardExpand all lines: content/openbsd/2018-06-16_Installing-OpenBSD-6-3-on-Packet-net-df51a5e9083f.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ date: '2018-06-16T21:57:46.516Z'
5
5
tags: [archives, openbsd, virtualization]
6
6
---
7
7
8
+
> Note: This is an old post from when I wrote on medium.com...formatting may be wonky here until I clean it up.
9
+
8
10
)](https://cdn-images-1.medium.com/max/800/1*fhSbHyChf5Pd-L_ryF0Khw.jpeg)
9
11
Image by Kurt Edblom shared under CC BY-SA 2.0 ([https://flic.kr/p/fanASg](https://flic.kr/p/fanASg))
@@ -392,14 +401,24 @@ We just got a preview of how we can visually identify highly-connected
392
401
nodes while running our pairwise similarity algorithm. Let's do it now
393
402
algorithmically.
394
403
404
+
In this case, we can use a tried and true algorithm called [[https://neo4j.com/docs/graph-algorithms/current/labs-algorithms/degree-centrality/][degree
405
+
centrality]] originally proposed in 1979.[fn:1] It's great at finding
406
+
"important" nodes in a social network. It just so happens a mobile
407
+
money network is a form of social network!
408
+
409
+
#+BEGIN_QUOTE
410
+
You've probably heard about [[https://neo4j.com/docs/graph-algorithms/current/algorithms/page-rank/][Page Rank]], made popular by Google as a
411
+
core feature of Google's original relevancy model. We're not using
412
+
Page Rank here, but just a fun fact.
413
+
#+END_QUOTE
414
+
395
415
*** Computing Centrality
396
416
Since centrality is computed within a graph component or cluster,
397
417
let's target group =1708= first for our analysis. We won't predefine a
398
418
graph projection like before since we're going to be only working with
399
419
subgraphs with 13 members. (Why 13? Go back and see the
400
420
[[fig:paysim-wcc-histogram][Histogram of Group Size]].)
401
421
402
-
TKTKTK EXPLAIN ALGO
403
422
404
423
#+BEGIN_SRC cypher
405
424
CALL algo.degree.stream(
@@ -411,3 +430,7 @@ YIELD nodeId, score
411
430
RETURN algo.asNode(nodeId).id AS clientId, score
412
431
ORDER BY score DESC
413
432
#+END_SRC
433
+
434
+
* Footnotes
435
+
436
+
[fn:1] Linton C. Freeman, [[http://leonidzhukov.net/hse/2014/socialnetworks/papers/freeman79-centrality.pdf][Centrality in Social Networks Conceptual Clarification]]
0 commit comments