This file contains 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
#!/bin/bash | |
set -e | |
# | |
# Script variables | |
# | |
# The url to check | |
WEBPAGE="https://www.bsimard.com/" | |
# Timeout |
This file has been truncated, but you can view the full file.
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<attributes class="node"> | |
<attribute id="Tag" title="Tag" type="string"/> | |
<attribute id="URL" title="URL" type="string"/> | |
<attribute id="Cluster" title="Cluster" type="string"/> | |
<attribute id="Score" title="Score" type="string"/> | |
</attributes> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<attributes class="node"> | |
<attribute id="rawSize" title="rawSize" type="integer"/> | |
</attributes> | |
<attributes class="edge"> | |
<attribute id="rawSize" title="rawSize" type="integer"/> | |
</attributes> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"> | |
<viz:size value="0"/> | |
<viz:position x="63.29695754804172" y="51.93657398917823"/> | |
</node> | |
<node id="1"> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains 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"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="cytoscape"/> | |
<node id="microsoft excel"/> | |
<node id="gephi"/> | |
<node id="microsoft power bi"/> | |
<node id="qlik"/> |
This file contains 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
import { GraphQLResolveInfo, FieldNode, SelectionNode, SelectionSetNode, print } from "graphql"; | |
import { ResolverContext } from "./index"; | |
/** | |
* | |
* Translates a graphql query into a neo4j/graphql query using neo4j/graphql-ogm | |
* @see https://github.com/neo4j/graphql/issues/227 | |
* | |
* @param args graphql query args | |
* @param info GraphQLResolveInfo |
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <curl/curl.h> | |
#include <cjson/cJSON.h> | |
struct MemoryStruct { |
NewerOlder