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
| https://github.com/hashicorp/hcl/issues/696 |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Space Man</title> | |
| <!-- Tailwind CSS CDN --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <!-- Meta tags for responsiveness --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> |
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
| func clearProtoFields(msg proto.Message, sensitiveFieldAnnotation *protoimpl.ExtensionInfo) proto.Message { | |
| clonedMsg := proto.Clone(msg) | |
| reflectMsg := proto.MessageReflect(clonedMsg) | |
| var messagesToCheck []protoreflect.Message | |
| messagesToCheck = append(messagesToCheck, reflectMsg) | |
| for len(messagesToCheck) != 0 { | |
| lastIdx := len(messagesToCheck) - 1 | |
| visitMessage := messagesToCheck[lastIdx] | |
| messagesToCheck = messagesToCheck[:lastIdx] |
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
| package goanalysischecker | |
| import ( | |
| "fmt" | |
| "go/types" | |
| "log" | |
| "reflect" | |
| "sort" | |
| "strings" | |
| "sync" |
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
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "math" | |
| "os" | |
| "strings" | |
| ) |
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
| job "metrics" { | |
| datacenters = ["dc1"] | |
| group "prometheus" { | |
| network { | |
| mode = "bridge" | |
| } | |
| service { | |
| name = "prometheus" |
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
| package request | |
| import ( | |
| "fmt" | |
| "go/ast" | |
| "golang.org/x/tools/go/analysis" | |
| "golang.org/x/tools/go/analysis/passes/inspect" | |
| "golang.org/x/tools/go/ast/inspector" | |
| ) |
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
| require 'json' | |
| require 'async' | |
| require 'async/http/internet' | |
| require 'base64' | |
| module RESTEasy | |
| class Failure < StandardError | |
| end | |
| class Client |
This file has been truncated, but you can view the full file.
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
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/5277385002","title":"Developer Advocacy Lead","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/5262475002","title":"DevOps Engineer","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/4338282002","title":"Don't See What You're Looking For?","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/4993063002","title":"Engineering Manager — Maker","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/4029873002","title":"Integrations Engineer","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/5262491002","title":"Product Manager - 0x Liquidity","location":"San Francisco, Remote"} | |
| {"company":"0x","url":"https://boards.greenhouse.io/0x/jobs/5262496002","title":"Product Manager - Matcha","location":"San Francisco, Remote"} | |
| {"company":"0x"," |
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 ruby | |
| require 'async/io' | |
| require 'async/semaphore' | |
| def scan_port(host, port, timeout) | |
| Async do |task| | |
| task.with_timeout(timeout) do | |
| address = Async::IO::Address.tcp(host, port) | |
| Async::IO::Socket.connect(address).close |
NewerOlder