Skip to content

Instantly share code, notes, and snippets.

View GulinSS's full-sized avatar
💯

Serge S. Gulin GulinSS

💯
View GitHub Profile
@GulinSS
GulinSS / network-816196e0-75a.gexf
Created May 4, 2024 17:17
Файл отправлен из Gephi
This file has been truncated, but you can view the full file.
<?xml version='1.0' encoding='UTF-8'?>
<gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd">
<meta lastmodifieddate="2024-05-04">
<creator>Gephi 0.10.1</creator>
<title></title>
<description></description>
</meta>
<graph defaultedgetype="directed" mode="static">
<attributes class="node" mode="static">
<attribute id="size" title="size" type="string"/>
@GulinSS
GulinSS / network-425dcff1-968.gexf
Created May 1, 2024 21:19
Файл отправлен из Gephi
<?xml version='1.0' encoding='UTF-8'?>
<gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd">
<meta lastmodifieddate="2024-05-02">
<creator>Gephi 0.10.1</creator>
<title></title>
<description></description>
</meta>
<graph defaultedgetype="directed" mode="static">
<attributes class="edge" mode="static">
<attribute id="line" title="line" type="string"/>
@GulinSS
GulinSS / network-cc5a9a37-483.gexf
Created May 1, 2024 20:47
Файл отправлен из Gephi
This file has been truncated, but you can view the full file.
<?xml version='1.0' encoding='UTF-8'?>
<gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd">
<meta lastmodifieddate="2024-05-01">
<creator>Gephi 0.10.1</creator>
<title></title>
<description></description>
</meta>
<graph defaultedgetype="directed" mode="static">
<attributes class="edge" mode="static">
<attribute id="line" title="line" type="string"/>
@GulinSS
GulinSS / network-6e4e22cd-a18.gexf
Created May 1, 2024 20:38
Файл отправлен из Gephi
This file has been truncated, but you can view the full file.
<?xml version='1.0' encoding='UTF-8'?>
<gexf xmlns="http://gexf.net/1.3" version="1.3" xmlns:viz="http://gexf.net/1.3/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://gexf.net/1.3 http://gexf.net/1.3/gexf.xsd">
<meta lastmodifieddate="2024-05-01">
<creator>Gephi 0.10.1</creator>
<title></title>
<description></description>
</meta>
<graph defaultedgetype="directed" mode="static">
<attributes class="edge" mode="static">
<attribute id="line" title="line" type="string"/>
@GulinSS
GulinSS / keybase.md
Created March 23, 2021 11:25
keybase.md

Keybase proof

I hereby claim:

  • I am gulinss on github.
  • I am gulinss (https://keybase.io/gulinss) on keybase.
  • I have a public key ASAsTwYHBiWt6Ztj5U32WVvk3IFHmAyx97UoVK1jyy6BMwo

To claim this, I am signing this object:

angular.module('...').directive('...', [
function() {
return {
scope: {
service: '@'
},
link: function (scope, elm, attrs) {
scope.serviceInjected = elm.injector().get(scope.service);
}
}

Keybase proof

I hereby claim:

  • I am GulinSS on github.
  • I am gulinserge (https://keybase.io/gulinserge) on keybase.
  • I have a public key whose fingerprint is 83A1 DAFC 22FE D8F1 3FB5 1496 1D90 1D42 8C41 F966

To claim this, I am signing this object:

@GulinSS
GulinSS / services.spec.coffee
Last active December 21, 2015 19:08
ascii art in coffee tests
it "should resolve promise on click event of element and hide itself", test ->
resolve = jasmine.createSpy("on resolve")
@instance.promise.then resolve
@$apply =>
$("li:eq(1) a", @$menu()).click()
expect(resolve.method.mostRecentCall.args[0].text).toBe @parameters.elements[1].text
expect(@$menu().length).toBe 0