I hereby claim:
- I am yaakov-h on github.
- I am yaakov_h (https://keybase.io/yaakov_h) on keybase.
- I have a public key whose fingerprint is 1777 5FF3 B42E 401D 511F 22F5 5604 4136 536F 7EF2
To claim this, I am signing this object:
using System; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
using System.Security.Cryptography; | |
public readonly struct UUIDv7 { | |
private readonly InteriorStruct _interior; | |
public UUIDv7() { |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: nginxsvc | |
labels: | |
app: nginx | |
spec: | |
ports: | |
- port: 80 | |
porotocal: TCP |
import Foundation | |
func fatalerror(_ text : String) { | |
fputs(text, __stderrp) | |
exit(-1) | |
} | |
struct ReadingListItem { | |
init(title: String?, previewText: String?, url: URL, dateAdded: Date) { | |
self.title = title |
using System; | |
using System.Diagnostics; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Windows.ApplicationModel.Background; | |
using Windows.Devices.Gpio; | |
using Windows.System.Threading; | |
namespace PiMenorah |
# iPhone 6 Reservation Availability in Australia | |
# !! Please use responsibly. Personal use only !! | |
# `ruby iphone6.rb` - list all available models in all stores | |
# `ruby iphone6.rb R405` - list available models for a specific store, Rundle Place in this example. | |
require 'open-uri' | |
require 'json' | |
MODEL_NAMES = { | |
"MKQT2X/A" => "iPhone 6s Space Grey 128GB", |
import UIKit | |
public class NetworkOperation { | |
init(application: UIApplication) { | |
self.application = application; | |
} | |
let application : UIApplication | |
protobuf | |
protobuf-2.6.1 | |
protobuf-master |
[11:41am yaakov@Expression:~/Development/DotNet/vNext/KRuntime] (branch: dev) ./build.sh | |
Installing 'KoreBuild 0.2.1-dev-build-0320'. | |
Successfully installed 'KoreBuild 0.2.1-dev-build-0320'. | |
Installing 'Sake 0.2'. | |
Successfully installed 'Sake 0.2'. | |
info: Target default | |
info: Target pre-clean | |
info: Target target-dir-clean | |
info: Target build-clean | |
info: Target clean |
I hereby claim:
To claim this, I am signing this object:
#include <iostream> | |
#include <openssl/ssl.h> | |
#include <openssl/err.h> | |
#include <netinet/in.h> | |
#include <assert.h> | |
#include <unistd.h> | |
uint32_t remote_ip_addr = PUT YOUR REMOTE IP HERE AS AN INT. EG 192.168.0.4 is 0xc0A80004 | |
uint16_t remote_port = PUT YOUR REMOTE PORT NUMBER HERE | |
uint8_t steam_psk[] = { PUT YOUR PSK HERE AS A BYTE ARRAY }; |