Welcome
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
<template> | |
<div id="wrapper"> | |
<main> | |
<div> | |
<img id="logo" src="~@/assets/logo.png" alt="electron-vue"> | |
</div> | |
<div class="welcome"> | |
<div class="title">SPlayerX</div> | |
<p> {{ version }} </p> |
this is a test
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 RandomFetch() -> Item? { | |
let req = NSFetchRequest<NSFetchRequestResult>(entityName: "MyEntity") | |
req.predicate = NSPredicate(format: "duedate > %@", due as NSDate) | |
// find out how many items are there | |
let totalresults = try! mContext.count(for: req) | |
if totalresults > 0 { | |
// randomlize offset | |
req.fetchOffset = Int.random(in: 0..<totalresults) | |
req.fetchLimit = 1 |
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
FlipView( | |
VStack { Text("Front") }, | |
VStack { Text("Back") }, | |
tap: { | |
PlaySound(sound) | |
}, | |
flipped: self.$flipped, | |
disabled: self.$disabled | |
) |
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
# ipsec.conf - strongSwan IPsec configuration file | |
… | |
# use IKEv2 protocol | |
keyexchange=ikev2 | |
# server certificate | |
leftcert=cert.pem | |
# use eap-mschapv2 protocol - auth by username/password |
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
# ipsec.secrets | |
# RSA private key for this host, authenticating it to any other host which knows the public part. | |
your.host.name : RSA "privkey.pem" | |
# username password list | |
your.username : EAP "your.password" |
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
IKE:3DES_CBC/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, | |
IKE:3DES_CBC/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/MODP_1024, | |
IKE:3DES_CBC/HMAC_SHA2_384_192/PRF_HMAC_SHA2_384/MODP_1024, | |
IKE:AES_CBC_128/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, | |
IKE:AES_CBC_128/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/MODP_1024, | |
IKE:AES_CBC_128/HMAC_SHA2_384_192/PRF_HMAC_SHA2_384/MODP_1024, | |
IKE:AES_CBC_192/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, | |
IKE:AES_CBC_192/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/MODP_1024, | |
IKE:AES_CBC_192/HMAC_SHA2_384_192/PRF_HMAC_SHA2_384/MODP_1024, | |
IKE:AES_CBC_256/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, |
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
// Singleton makes sure there is only one "single" instance across the system. | |
// by binding to a tcp resource as specified by addr, eg. "127.0.0.1:51337". | |
func Singleton(addr string) { | |
go singletonServer(addr) | |
for { | |
// wait and confirm that server was started successfully | |
pid, err := getSingletonPID(addr) | |
if err == nil && pid == strconv.Itoa(os.Getpid()) { | |
return | |
} |
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
var body: some View { | |
Image(uiImage: wordCloudImage(words)) | |
.resizable() | |
.aspectRatio(contentMode: .fit) | |
.padding(10) | |
} | |
func wordCloudImage(_ words: [WordElement]) -> UIImage { | |
UIGraphicsBeginImageContextWithOptions(canvasSize, false, 1.0) | |
OlderNewer