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
meta: | |
id: nv | |
endian: le | |
file-extension: | |
- nv | |
- nvu | |
seq: | |
- id: revision | |
type: u2 |
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
function FindProxyForURL(url, host) { | |
return "SOCKS 192.168.8.178:8889"; | |
} |
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
{"_getstartedcombining1":{"lang":{"@clear":"Стереть","@close":"Закрыть","@exporting":"Экспортирую","@exporttolive":"Экспортировать в Live","@fillinsolution":"Заполнить решение","@highpitch":"Высокий звук","@incompatiblebrowser":"Ваш браузер не может показать интерактивные музыкальные примеры на этой странице.<br/>Пожалуйста, воспользуйтесь браузером, поддерживающим Web Audio, таким как Chrome, Safari, Firefox или Edge.","@keyboard":"Клавиши","@lowpitch":"Низкий звук","@off":"Выкл.","@on":"Вкл.","@reset":"Восстановить","@tempo":"Темп"},"preset":{"name":"Session 1","tempo":102,"tracks":[{"@name":"Барабаны","clips":[{"length":"1m","name":"Drums 1","path":"simplesession/Drums1"},{"length":"1m","name":"Drums 2","path":"simplesession/Drums2"},{"length":"2m","name":"Drums 3","path":"simplesession/Drums3"},{"length":"1m","name":"Drums 4","path":"simplesession/Drums4"}],"theme":"theme-a"},{"@name":"Бас","clips":[{"length":"2m","name":"Bass 1","path":"simplesession/Bass1"},{"length":"2m","name":"Bass 2","path":"simples |
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
host_comp = get_shell.host_computer | |
crypto = include_lib("/lib/crypto.so") | |
if not crypto then exit("Error: Missing crypto library") | |
get_net_devices = function (computer) | |
devices = [] | |
for device in computer.network_devices.split("\n") | |
if device.len > 0 then | |
params = device.split(" ") |
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
func initProxyHttpClient(proxyUrl string, insecure bool) *http.Client { | |
pu, _ := url.Parse(proxyUrl) | |
return &http.Client{ | |
Transport: &http.Transport{ | |
Proxy: http.ProxyURL(pu), | |
TLSNextProto: make(map[string]func(authority string, c *tls.Conn) http.RoundTripper), | |
TLSClientConfig: &tls.Config{ | |
InsecureSkipVerify: insecure, | |
}, | |
}, |
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
$ git config --global url."[email protected]:".insteadOf "https://bitbucket.org/" | |
$ git config --global url."[email protected]:".insteadOf "https://github.com/" |
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
package templates | |
import( | |
"html/template" | |
"io" | |
"os" | |
"strings" | |
"path/filepath" | |
) |
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
func separateString(str, seporator string, count int) string { | |
rs := []rune(str) | |
log.Println("rs = ", rs) | |
srs := []rune(seporator) | |
log.Println("srs = ", srs) | |
for i := 0; i * (count + len(srs)) < len(rs)-count; i++ { | |
rs = append(rs[:i * (count + len(srs)) + count] ,append(srs, rs[i * (count + len(srs)) + count :]...)...) | |
} |
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 jeb.api.IScript; | |
import jeb.api.JebInstance; | |
import jeb.api.ast.*; | |
import jeb.api.ast.Class; | |
import jeb.api.dex.*; | |
import jeb.api.ui.JavaView; | |
import jeb.api.ui.View; | |
import java.util.Arrays; | |
import java.util.HashMap; |
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 rx.Observable; | |
import rx.subjects.PublishSubject; | |
public class Property<T> { | |
private T value; | |
private PublishSubject<T> property; | |
public Property() { | |
property = PublishSubject.create(); |
NewerOlder