Re: [swift-evolution] 100% bikeshed topic: DictionaryLiteral

2018-01-15 Thread Jacob Williams via swift-evolution
Pardon my lack of knowledge in this area, but is there not also a 3rd option available? (C) Split libswiftCore.dylib into two dylibs, both at the OS level. The *Deprecated.dylib would only be included when the application binary was compiled using a special -using-deprecated flag that signifies

Re: [swift-evolution] Core Team vs Random number API discussion

2017-12-06 Thread Jacob Williams via swift-evolution
how extensible it is and that the focus should be to get something that *most* people will be able to use easily. > On Wed, Dec 6, 2017 at 18:34 Jacob Williams via swift-evolution > mailto:swift-evolution@swift.org>> wrote: > I agree with this decision, but I would also add the pro

Re: [swift-evolution] Core Team vs Random number API discussion

2017-12-06 Thread Jacob Williams via swift-evolution
I agree with this decision, but I would also add the provision that the random number API be designed in such a way that those with special crypto needs can easily extend the existing random number framework to meet their needs. (Specify their own seed, use their own crypto implementation, etc).

Re: [swift-evolution] Proposal: Introduce User-defined "Dynamic Member Lookup" Types

2017-12-04 Thread Jacob Williams via swift-evolution
> On Dec 4, 2017, at 11:05 AM, Dave DeLong via swift-evolution > wrote: > > Hi Chris, > > We do the Swift integration with Objective-C via modules. Why wouldn’t that > approach work with Python? Or if it would, why would we favor this dynamic > member lookup over importing a Python API via

Re: [swift-evolution] Proposal: Introduce User-defined "Dynamic Member Lookup" Types

2017-12-01 Thread Jacob Williams via swift-evolution
I’ve been going back and forth on whether I’m for or against the current revision of the proposal and I’d have to say that I am in favor of it as is for the following reasons (many of which have already been stated): It was stated early on in this proposal that Python is not going to be given t

Re: [swift-corelibs-dev] Better integration with UNIX tools

2017-11-30 Thread Jacob Williams via swift-corelibs-dev
Since this isn’t going to be coming to Foundation any time…ever, I’d take a look at the SwiftShell framework. It makes running command line utilities from swift pretty easy. Chaining outputs from previous commands into subsequent commands is also rather simple. It’s based on Process but gives a

Re: [swift-evolution] Large Proposal: Non-Standard Libraries

2017-11-08 Thread Jacob Williams via swift-evolution
Huge +1 Dealing with path manipulations via Foundation is a real pain on Linux. I end up using a lot of C code from Glibc. And random support is another pain point. There are tons of uses for a non-std library, however, i would like to see python style imports (if possible) to avoid importing a p

Re: [swift-evolution] Pitch: Remove default initialization of optional bindings

2017-11-06 Thread Jacob Williams via swift-evolution
> On Nov 6, 2017, at 5:29 PM, Kelvin Ma via swift-evolution > wrote: > > hot take: i use the second one a lot but only because i always forget the > first one exists. So I type the = nil just to “be sure”. > Same here! I just changed a bunch of code since I’d forgotten they were the same >

Re: [swift-evolution] [Proposal] Random Unification

2017-10-04 Thread Jacob Williams via swift-evolution
I agree with Dave’s assertion that this should be in a separate Random library. Not every project needs random numbers and there could possibly be a SecureRandom that exclusively uses CSPRNGs for it’s functionality. I also agree that trapping is not a preferred behavior. Optionals are slightly

Re: [swift-evolution] [Proposal] Random Unification

2017-09-08 Thread Jacob Williams via swift-evolution
ing/brainstorming. > On Sep 8, 2017, at 3:03 PM, Jacob Williams via swift-evolution > wrote: > > Huge +1 to stdlib (or even Foundation) random number generator. I’ve worked > with random numbers on both Linux and macOS/iOS and have found myself annoyed > with the lack of easy random

Re: [swift-evolution] [Proposal] Random Unification

2017-09-08 Thread Jacob Williams via swift-evolution
Huge +1 to stdlib (or even Foundation) random number generator. I’ve worked with random numbers on both Linux and macOS/iOS and have found myself annoyed with the lack of easy random number generators. It seems that implementing a pure Swift RNG would be an obviously good addition to the stdlib.

Re: [swift-evolution] (core library) modern URL types

2017-08-22 Thread Jacob Williams via swift-evolution
There’s also a library somewhat similar to PathKit called FileKit (https://github.com/nvzqz/FileKit ). FileKit has some functionality I’m not sure how I feel about, such as different types based on the type of data in the file. It also uses a lot of Foundation f

Re: [swift-evolution] Swift source mentorship program

2017-08-14 Thread Jacob Williams via swift-evolution
A Swift developer has actually started a blog series about the swift compiler. The links to his post were posted in one of the evolution topics a little while ago. The series is incomplete, but it gives a lot of explanations about the various parts of the swift compiler. https://medium.com/@sla

Re: [swift-evolution] Draft: Regular Expression in Swift

2017-08-10 Thread Jacob Williams via swift-evolution
Disclaimer: I am not well versed in the various complexities of regex implementations. That being said, I would very much like to see better regex support in Swift. Preferably one that is easier to pick up than the NSRegularExpression of ObjC and possibly as easy to start using as python or rub

Re: [swift-evolution] TrigonometricFloatingPoint/MathFloatingPoint protocol?

2017-08-03 Thread Jacob Williams via swift-evolution
There’s also a PureSwift organization of GitHub that has several Swift PM packages built specifically with Linux support in mind https://github.com/PureSwift It looks like it’s along the lines of SwiftBreezy, but it hasn’t died out…yet. At the same time, this may

Re: [swift-evolution] Change 'for in' expression to for [] { (item) in ... }

2017-07-28 Thread Jacob Williams via swift-evolution
This change would also make it so that for loops follow the same format as all other closures with variables. The downside is that this would break a TON of code. I don’t think that the amount of code this breaks would be worth the consistency. And as Alex mentioned, it is possible through .for

Re: [swift-evolution] [idea] errors in properties

2017-07-25 Thread Jacob Williams via swift-evolution
I’d give my +1 to support this as I’ve wished at one time or another that I could throw in the get, set, willSet, or didSet. Would this be something a proposal should be written up for when the Swift 5 reviews begin? > On Jul 25, 2017, at 2:55 PM, Xiaodi Wu via swift-evolution > wrote: > > T

Re: [swift-evolution] JIT compilation for server-side Swift

2017-07-10 Thread Jacob Williams via swift-evolution
Pardon my lack of knowledge about JIT compilation, but does this open the realm of possibilities to a client-side swift that would allow web developers to write swift code rather than javascript? > On Jul 10, 2017, at 10:40 AM, Younes Manton via swift-evolution > wrote: > > Hi, > > Last year

Re: [swift-evolution] [Pitch] Introducing the "Unwrap or Die" operator to the standard library

2017-06-30 Thread Jacob Williams via swift-evolution
I have been persuaded that extending the capabilities of the current ?? operator has far more advantages than adding a new limited !! operator. While I initially did not like the usage of the generally-assumed-safe ? for throwing operations, the clarity provided by having to explicitly state you

Re: [swift-evolution] [Pitch] Introducing the "Unwrap or Die" operator to the standard library

2017-06-28 Thread Jacob Williams via swift-evolution
the sentiment of !. It would feel more swifty, and you’d get the clarity of knowing that !! is an unsafe operation and you’d know exactly what kind of error is being thrown. And then ?? could be left as-is and only used for default values. > > On Wed, Jun 28, 2017 at 8:52 AM Jacob W

Re: [swift-evolution] [Pitch] Introducing the "Unwrap or Die" operator to the standard library

2017-06-28 Thread Jacob Williams via swift-evolution
I feel that the !! operator would be necessary for indicating that if this fails then something went horribly wrong somewhere and we should throw the fatalError. This allows the inclusion of optimizations using -Ounchecked and is clear that this is an operation that could result in a runtime err

Re: [swift-evolution] [Pitch] Introducing the "Unwrap or Die" operator to the standard library

2017-06-27 Thread Jacob Williams via swift-evolution
+1 to Adrians implementation. While I like the sugar of both, I don’t think the operator should necessarily always cause a fatalError. Maybe we could use both the !! For some kind of fatal error and Adrians !? To just use @noreturn to leave the current function. > On Jun 27, 2017, at 11:29 AM,

Re: [swift-evolution] Pitch: Limit typealias extensions to the typealias

2017-06-09 Thread Jacob Williams via swift-evolution
would disallow e.g. to share UI code between iOS and macOS: > > #if os(iOS) > typealias XUView = UIView > #else > typealias XUView = NSView > #endif > > extension XUView { > ... > } > > or with any similar compatibility typealiases. &

Re: [swift-evolution] Pitch: Limit typealias extensions to the typealias

2017-06-09 Thread Jacob Williams via swift-evolution
+1 from me. There have been times I’ve wanted to subclass an object (such as String) but since it is a non-class, non-protocol type you can only extend Strings existing functionality which adds that same functionality to Strings everywhere. It would be nice if we could either extend type aliase

Re: [swift-evolution] [Pitch] Localized Swift Frameworks

2017-03-24 Thread Jacob Williams via swift-evolution
+1 While I think this could be an incredibly useful feature that would make teaching coding to people much easier since they no longer need to learn English words at all, I think this can get really tricky when you consider autocomplete and all of the work an IDE has to do to identify the langu

[jira] [Created] (CRUNCH-126) Allow input from multiple HBaseSourceTargets

2012-12-05 Thread Jacob Williams (JIRA)
Jacob Williams created CRUNCH-126: - Summary: Allow input from multiple HBaseSourceTargets Key: CRUNCH-126 URL: https://issues.apache.org/jira/browse/CRUNCH-126 Project: Crunch Issue Type

Re: [Desktop 13.04-Topic] Having a smart ubuntu desktop

2012-10-18 Thread Jacob Williams
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/18/2012 11:10 AM, Didier Roche wrote: > Hey everyone, > > In a world where we are using more and more connected web services > doing some of our tasks (web mails, online documentation editing, > online music players…) should we imagine having a

[Bug 755842] Re: Non-maximized windows which sit on the border of a workspace move when called

2012-08-27 Thread Jacob Williams
Thanks for taking to time to clarify the process and explain what's going to happen, it's much appreciated. I'll make sure to test these packages as they arrive in precise-proposed and update this bug. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscr

[Bug 755842] Re: Non-maximized windows which sit on the border of a workspace move when called

2012-08-27 Thread Jacob Williams
The fix for this bug in compiz being released with milestone 0.9.8.0 is good news, although it's not obvious how this will resolve the issue for users of 12.04. * Will compiz milestone 0.9.8.0 be released with ubuntu milestone ubuntu-12.04.2? * Will compiz milestone 0.9.8.0 be pushed to precise-u

[Bug 880695] Re: screen does not render all pixels sometimes

2012-01-21 Thread Jacob Williams
I was able to alleviate this problem with this command. nvidia-settings -a InitialPixmapPlacement=2 -a GlyphCache=1 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/880695 Title: screen does not rende

[Desktop-packages] [Bug 880695] Re: screen does not render all pixels sometimes

2012-01-21 Thread Jacob Williams
I was able to alleviate this problem with this command. nvidia-settings -a InitialPixmapPlacement=2 -a GlyphCache=1 -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to gnome-terminal in Ubuntu. https://bugs.launchpad.net/bugs/880695 Title:

[Bug 880695] Re: screen does not render all pixels sometimes

2012-01-21 Thread Jacob Williams
I was able to alleviate this problem with this command. nvidia-settings -a InitialPixmapPlacement=2 -a GlyphCache=1 -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-terminal in Ubuntu. https://bugs.launchpad.net/bugs/880695 Titl

HttpMethod - releasing connections by closing body stream

2011-08-31 Thread Jacob Williams
though I don't need the response body). This seems to work but I'm not sure why - anyone know if that's a normal/reliable way of releasing the connection? Thanks, Jacob Williams

Re: [ubuntu-uk] Seeking Linux/Network Engineer

2011-08-27 Thread Jacob Williams
On 27/08/11 11:47, Jacob Williams wrote: On 26/08/11 16:15, Tyler J. Wagner wrote: Sorry if this is unwelcome. We're looking for a new Linux/Network Engineer at my company. This is a junior position. We're looking for someone enthusiastic about Linux, who has experience

Re: [ubuntu-uk] Seeking Linux/Network Engineer

2011-08-27 Thread Jacob Williams
job based? Regards, Jacob Williams. -- ubuntu-uk@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk https://wiki.ubuntu.com/UKTeam/

[Bug 775639] Re: Desktop background does not draw when set to solid color

2011-05-02 Thread Jacob Williams
** Attachment added: "Screenshot of desktop not drawing" https://bugs.launchpad.net/bugs/775639/+attachment/2106184/+files/Screenshot-2.jpg -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/775639 Tit

[Bug 775639] [NEW] Desktop background does not draw when set to solid color

2011-05-02 Thread Jacob Williams
Public bug reported: Binary package hint: nautilus After upgrading to Natty my background did not draw. Windows and dialogs left trails where the background should be drawn. I saw this in both Unity and Gnome Desktop. I changed from a solid color background to a gradient and an image and both of

[Bug 775639] Re: Desktop background does not draw when set to solid color

2011-05-02 Thread Jacob Williams
** Attachment added: "Screenshot of desktop not drawing" https://bugs.launchpad.net/bugs/775639/+attachment/2106184/+files/Screenshot-2.jpg -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to nautilus in Ubuntu. https://bugs.launchpad.

[Bug 775639] [NEW] Desktop background does not draw when set to solid color

2011-05-02 Thread Jacob Williams
Public bug reported: Binary package hint: nautilus After upgrading to Natty my background did not draw. Windows and dialogs left trails where the background should be drawn. I saw this in both Unity and Gnome Desktop. I changed from a solid color background to a gradient and an image and both of

[ubuntu-uk] Kline'd from Freenode following yesterday's clone bot attack

2010-01-18 Thread Jacob Williams
-- ubuntu-uk@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk https://wiki.ubuntu.com/UKTeam/

Re: [ubuntu-uk] Nonsensical jack sensing - A bug day idea

2009-02-20 Thread Jacob Williams
Forgive me if I misunderstand, but ALSA not in the process of being superseeded by PulseAudio? On 20 Feb 2009, 1:43 PM, "Philip Wyett" wrote: Hi all, Users of Linux with ALSA on laptops and other mobile devices have for years often been presented with the fun and games of sound working great bu

Re: [ubuntu-uk] Time for a new graphics card?

2009-02-20 Thread Jacob Williams
I've also encountered the aforementioned issues on both nVidia and on Intel graphics cards. Though, in my ezxperience the dwesktop is more functional without whiz bang effects. On 20 Feb 2009, 10:05 AM, "Rob Beard" wrote: On 19/02/2009 15:26, Paul Sutton wrote: > I have a geforce 4, I can run co

Re: [ubuntu-uk] Time for a new graphics card?

2009-02-19 Thread Jacob Williams
Hi there Dianne, Does your computer have an integrated graphics port that you can use in the meantime? If that works alright (without desktop effects) then that could be a good short term solution. As Simon has mentioned an nVidia 6xxx graphics card can be obtained quite cheaply nowadays. On Thu

Re: [ubuntu-uk] Java app (FreeMind) installed through Synaptic -- where is it?

2009-02-19 Thread Jacob Williams
On 19 Feb 2009, 11:23 AM, "doug livesey" wrote: Cheers, that found it. Can anyone advise me on how to get it into applications & Gnome-do? Thanks, Doug. 2009/2/18 Ron Rhodes > > doug livesey wrote: > > Hi, I've installed the app FreeMind through Synaptic, so that should be... -- ubuntu-uk

Re: [ubuntu-uk] Java app (FreeMind) installed through Synaptic -- where is it?

2009-02-19 Thread Jacob Williams
Right click the Applications menu, click Edit, click on the sub menu you want your launcher appear in, click New on the right hand side, fill in the command section as /usr/bin/freemind and fill the other sections as you please :) As far as I know, GNOME-Do gets its list of programs from the appli

Re: [ubuntu-uk] Hooking up a machine running Ubuntu to a Mark 1, BT HomeHub

2009-02-18 Thread Jacob Williams
ISP's aren't linux friendly or linux unfriendly; networking is operating system agnostic. Please try logging into your HomeHub through http://192.168.1.254 and checking your laptop is listed in the Devices (or similar) section, click on the device icon if present to see if your laptop has an IP add

[opensuse-factory] Re: zen-updater issues

2006-06-16 Thread Jacob Williams
I also have issues with the zen-updater such as only making the suse oss repository active and leaving all the others as inactive and not on the catalogue tab, same in `rug sl` On 6/16/06, Vahis <[EMAIL PROTECTED]> wrote: Marcel Hilzinger wrote: > I still have some problems with online update >

new kerberos5 1.3.1 possible config problems

2004-01-04 Thread Jacob Williams
I'm trying to set up kerberos on a new box using red hat 9 and kerberos5 1.3.1. I've gotten it compiled and installed but I cannot correctly access the service. I've been hunting for a couple of days trying to find an answer that can help me but so far haven't found anything. When I try to use t