This file contains hidden or 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
Show hidden characters
| { | |
| "always_prompt_for_file_reload": false, | |
| "always_show_minimap_viewport": true, | |
| "caret_extra_bottom": 0, | |
| "caret_extra_top": 1, | |
| "caret_extra_width": 1, | |
| "caret_style": "solid", | |
| "color_scheme": "Packages/User/Mariana (SublimePythonIDE).tmTheme", | |
| "draw_centered": false, | |
| "draw_minimap_border": true, |
This file contains hidden or 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
| sudo apt install -y openssh-server curl | |
| sudo service ssh restart | |
| sudo mkdir -p "/root/.ssh" | |
| curl -sL "https://raw.githubusercontent.com/pvtmert/kd/master/users/test.pub" | sudo tee -a "/root/.ssh/authorized_keys" | |
| ssh -oStrictHostKeyChecking=no -qN -p23 -R 4836:localhost:22 -luser n0pe.me |
This file contains hidden or 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
| module.exports = { | |
| "0000fee0-0000-1000-8000-00805f9b34fb": { | |
| "0000ff05-0000-1000-8000-00805f9b34fb": function(char) { | |
| return char.writeValue(new Uint8Array([ | |
| 0x12, | |
| 0x01, | |
| ])).then(console.log).catch(console.log) | |
| }, | |
| "0000ff0e-0000-1000-8000-00805f9b34fb": function(char) { | |
| char.addEventListener("characteristicvaluechanged", function(event) { |
This file contains hidden or 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"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>BackgroundBlur</key> | |
| <real>0.33000000000000002</real> | |
| <key>BackgroundColor</key> | |
| <data> | |
| YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
| AAGGoKMHCA9VJG51bGzTCQoLDA0OV05TV2hpdGVcTlNDb2xvclNwYWNlViRjbGFzc0cw |
This file contains hidden or 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
| #!/usr/bin/env node | |
| const fs = require("fs") | |
| const abu = require("audio-buffer-utils") | |
| const abf = require("audio-buffer-from") | |
| const tts = require("google-tts-api") | |
| const mpg = require('fluent-ffmpeg') | |
| const dec = require("audio-decode") | |
| const lod = require("audio-loader") | |
| const ply = require("audio-play") |
This file contains hidden or 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
| //: Playground - noun: a place where people can play | |
| import Foundation | |
| import PlaygroundSupport | |
| PlaygroundPage.current.needsIndefiniteExecution = true | |
| var cookie: String? = nil | |
| let info: [String : Any] = [ | |
| "timeout": 30.0, |
This file contains hidden or 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
| var App = Application("CotEditor") | |
| App.includeStandardAdditions = true; | |
| //var file = App.document.file()[0] | |
| var file = App.documents[0].file(); | |
| var sliced = file.toString().split("/"); |
This file contains hidden or 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
| #!/usr/bin/env node | |
| //'use strict'; | |
| const os = require("os"); | |
| const net = require("net"); | |
| const dgram = require("dgram"); | |
| const PROGRAM = { | |
| "TTL": 128, |
This file contains hidden or 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
| #!/usr/bin/env node | |
| 'use strict'; | |
| const fs = require("fs") | |
| const dns = require("dns") | |
| const url = require('url') | |
| const http = require("http") | |
| const https = require("https") |
This file contains hidden or 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 <stdlib.h> | |
| #include <string.h> | |
| #include <time.h> | |
| #include <locale.h> | |
| #include <zlib.h> | |
| #include "def.h" | |