@iamjonoPerfectlySoft/PerfectDocs#6 when you get back to your keyboard.
Jonathan Guthrie
@iamjono
thx :)
will look in the morning. under strict instructions from my wife not to work today :)
Ryan Collins
@rymcol
@iamjono good luck
Jonathan Guthrie
@iamjono
Thx @rymcol , merged. Looks good, will have a detailed review soon but on surface inspection looks great, thanks!
Ryan Collins
@rymcol
Awesome
Ryan Collins
@rymcol
@iamjono I also grabbed a task off Jira for the SQLite readme example and sent you a PR for that too
Jonathan Guthrie
@iamjono
awesome. btw any unallocated task on Jira feel free to grab.
Once I finish the compression library i’ll sit down and look at where we are and maybe plan the next couple of weeks :)
Ryan Collins
@rymcol
I figured it would be fine to grab them. Or at least someone would complain if it wasn’t lol.
Jonathan Guthrie
@iamjono
:)
fabianforce
@fabianforce
who could help me on swift ? please
早晨海风
@cheft
fatal error: ClangModule ClangModule(CHTTPParser) can't have SwiftModule(PerfectThread) as a dependency.: file /Library/Caches/com.apple.xbs/Sources/swiftpm/swiftpm-14.1/Sources/Build/Command.compile(ClangModule).swift, line 67 Illegal instruction: 4
MeagFu
@MeagFu
hi everyone
Ryan Collins
@rymcol
@MeagFu most discussions have moved to Slack. You can get an invite at http://perfect.ly
fabianforce
@fabianforce
Who can help me on spriteKit ? please
_
Ahmed mesbah
@apatche7
Hello guys, i'm new with iOS and i'm still training and i need some help :)
I have this problem i tried to fix it
Ahmed mesbah
@apatche7
fabianforce
@fabianforce
you call more than two
who can help me on swift · ?
3 ?
M1ckm
@m1ckm
Yes
Siddharth Bhalla
@bhalla98
hi @apatche7 are you doing the iOS development course from Stanford?
M1ckm
@m1ckm
I could but I am swift out of ideas
FibonacciRedstone
@FibonacciRedstone
Hey guys, the Perfect HTTP-Server library gives me a Package.swift error. It won’t compile due to an error because the targets must precede the dependencies. I’ve tried to edit the package.swift file myself but it always reverts back.
Renato Marinho
@renatomarinho
This message was deleted
Renato Marinho
@renatomarinho
This message was deleted
monishkhan
@monishkhan
@IBAction func recordingAudio(_ sender: Any) { recordButton.isEnabled = false stopButton.isEnabled = true recordingLabel.text = "Recording is Going on" let dirPath = NSSearchPathForDirectoriesInDomains(.documentationDirectory, .userDomainMask, true)[0] as String let recordingName = "recoredeVoice.wav" let pathArray = [dirPath, recordingName] let filePath = URL(string: pathArray.joined(separator:"/")) let session = AVAudioSession.sharedInstance() // try!session.setCategory(AVAudioSessionCategoryPlayAndRecord, with:DefaultToSpeaker) try!session.setCategory(.playAndRecord, mode: .default, options: []) audioRecorder.isMeteringEnabled = true audioRecorder.prepareToRecord() audioRecorder.record()