[FD] Multiple vulnerabilities discovered in Qualys Cloud Agent

2022-09-12 Thread Daniel Wood via Fulldisclosure
/vuln/detail/CVE-2022-29550 Read more: https://www.unqork.com/resources/unqork-and-qualys-partner-to-resolve-zero-day-vulnerabilities https://blog.qualys.com/product-tech/2022/08/15/qualys-security-updates-cloud-agent-for-linux Daniel Wood Head of Product Security, Unqork -- **This e-mail, and any

Re: The ultimate extension hook.

2020-10-25 Thread Daniel Wood
> On 10/23/2020 9:31 AM Jehan-Guillaume de Rorthais wrote: > [...] > * useless with encrypted traffic > > So, +1 for such hooks. > > Regards, Ultimately Postgresql is supposed to be extensible. I don't see an API hook as being some crazy idea even if some may not like what I might want to use

Re: The ultimate extension hook.

2020-09-23 Thread Daniel Wood
> On 09/23/2020 9:26 PM Tom Lane wrote: > ... > > The hook I'd like to see would be in the PostgresMain() loop > > for the API "firstchar" messages. > > What, to invent your own protocol? Where will you find client libraries > buying into that? No API/client changes are needed for: 1) API

The ultimate extension hook.

2020-09-23 Thread Daniel Wood
Hooks exist all over PG for extensions to cover various specific usages. The hook I'd like to see would be in the PostgresMain() loop for the API "firstchar" messages. While I started just wanting the hook for the absolute minimum overhead to execute a function, even faster than fastpath, and in

Re: Reduce/eliminate the impact of FPW

2020-08-03 Thread Daniel Wood
> On 08/03/2020 8:26 AM Robert Haas wrote: ... > I think this is what's called a double-write buffer, or what was tried > some years ago under that name. A significant problem is that you > have to fsync() the double-write buffer before you can write the WAL. I don't think it does need to be f

Reduce/eliminate the impact of FPW

2020-08-03 Thread Daniel Wood
I thought that the biggest reason for the pgbench RW slowdown during a checkpoint was the flood of dirty page writes increasing the COMMIT latency. It turns out that the documentation which states that FPW's start "after a checkpoint" really means after a CKPT starts. And this is the really ca

Wait profiling

2020-07-10 Thread Daniel Wood
After nearly 5 years does something like the following yet exist? https://www.postgresql.org/message-id/559d4729.9080...@postgrespro.ru I feel that it would be useful to have the following two things. One PG enhancement and one standard extension. 1) An option to "explain" to produce a wait eve

Increment Hex value

2020-06-26 Thread Daniel Wood
Is it possible to increment an hex value with the tmux formatting feature? -- You received this message because you are subscribed to the Google Groups "tmux-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to tmux-users+unsubscr...@googlegroups.com

Re: 'Invalid lp' during heap_xlog_delete

2019-12-10 Thread Daniel Wood
> On December 6, 2019 at 3:06 PM Andres Freund wrote: ... > > crash > > smgrtruncate - Not reached > > This seems like a somewhat confusing description to me, because > smgrtruncate() is what calls DropRelFileNodeBuffers(). I assume what you > mean by "smgrtruncate" is not the function, but the s

Re: 'Invalid lp' during heap_xlog_delete

2019-11-18 Thread Daniel Wood
aquier.xyz > mailto:mich...@paquier.xyz > wrote: > > > On Thu, Nov 14, 2019 at 07:38:19PM -0800, Daniel Wood wrote: > > > > Sorry I missed one thing. Turn off full page writes. > > > > > Hmm. Linux FSes use typically 4kB pag

Re: 'Invalid lp' during heap_xlog_delete

2019-11-14 Thread Daniel Wood
Sorry I missed one thing. Turn off full page writes. I'm running in an env. with atomic 8K writes. > On November 12, 2019 at 6:23 PM Daniel Wood wrote: > > It's been tedious to get it exactly right but I think I got it. FYI, I > was delayed because today we had ye

Re: 'Invalid lp' during heap_xlog_delete

2019-11-12 Thread Daniel Wood
-- > On November 10, 2019 at 11:51 PM Michael Paquier < mich...@paquier.xyz > mailto:mich...@paquier.xyz > wrote: > > > On Fri, Nov 08, 2019 at 06:44:08PM -0800, Daniel Wood wrote: > > > > I repro'ed on PG11 and PG10 STABL

Re: 'Invalid lp' during heap_xlog_delete

2019-11-08 Thread Daniel Wood
a fsync() after the truncate seems to plug the hole. > On November 8, 2019 at 5:39 PM Michael Paquier < mich...@paquier.xyz > mailto:mich...@paquier.xyz > wrote: > > > On Fri, Nov 08, 2019 at 12:46:51PM -0800, Daniel Wood wrote: > > > >

'Invalid lp' during heap_xlog_delete

2019-11-08 Thread Daniel Wood
Page on disk has empty lp 1 * Insert into page lp 1 checkpoint START.Redo eventually starts here. ** Delete all rows on page. autovac truncate DropRelFileNodeBuffers - dirty page NOT written. lp 1 on disk still empty checkpoint completes crash smgrtruncate - Not reached heap_xlog_delete reads

Re: BTP_DELETED leaf still in tree

2019-10-10 Thread Daniel Wood
> On October 10, 2019 at 1:18 PM Peter Geoghegan wrote: > > > On Thu, Oct 10, 2019 at 12:48 PM Daniel Wood wrote: > > Update query stuck in a loop. Looping in _bt_moveright(). > > You didn't say which PostgreSQL versions were involved, and if the > database wa

BTP_DELETED leaf still in tree

2019-10-10 Thread Daniel Wood
Update query stuck in a loop. Looping in _bt_moveright(). ExecInsertIndexTuples->btinsert->_bt_doinsert->_bt_search->_bt_moveright Mid Tree Node downlink path taken by _bt_search points to a BTP_DELETED Leaf. btpo_next is also DELETED but not in the tree. btpo_next->btpo_next is NOT deleted bu

pgbench prints suspect tps numbers

2019-06-24 Thread Daniel Wood
Short benchmark runs are bad if the runs aren't long enough to produce consistent results. Having to do long runs because a benchmarking tool 'converges to reality' over time in reporting a tps number, due to miscalculation, is also bad. I want to measure TPS at a particular connection count.

Re: Skylake-S warning

2018-10-03 Thread Daniel Wood
One other thought. Could we update pgxact->xmin less often? What would be the impact of this lower bound being lower than it would normally be with the existing scheme. Yes, it needs to be moved forward "occasionally". FYI, be careful with padding PGXACT's to a full cache line. With 1024 cli

Re: Skylake-S warning

2018-10-03 Thread Daniel Wood
> On October 3, 2018 at 3:55 PM Andres Freund wrote: > In the thread around > https://www.postgresql.org/message-id/20160411214029.ce3fw6zxim5k6...@alap3.anarazel.de > I'd found doing more aggressive padding helped a lot. Unfortunately I > didn't pursue this further :( Interesting. Looks li

Skylake-S warning

2018-10-03 Thread Daniel Wood
If running benchmarks or you are a customer which is currently impacted by GetSnapshotData() on high end multisocket systems be wary of Skylake-S. Performance differences of nearly 2X can be seen on select only pgbench due to nothing else but unlucky choices for max_connections. Scale 1000, 19

GetSnapshotData round two(for me)

2018-09-24 Thread Daniel Wood
I was about to suggest creating a single shared snapshot instead of having multiple backends compute what is essentially the same snapshot. Luckily, before posting, I discovered Avoiding repeated snapshot computation https://www.postgresql.org/message-id/caboikdmsj4osxta7xbv2quhkyuo_4105fjf4n+u

Re: On the need for a snapshot in exec_bind_message()

2018-09-05 Thread Daniel Wood
> > Queries stop getting re-optimized after 5 times, unless better plans are to > > be had. In the absence of schema changes or changing search path why is > > the snapshot needed? > > The snapshot has little to do with the query plan, usually. It's about > what view of the database the execut

Re: On the need for a snapshot in exec_bind_message()

2018-09-05 Thread Daniel Wood
> > exec_bind_message() > > PushActiveSnapshot(GetTransactionSnapshot()); > > > If there were no input functions, that needed this, nor reparsing or > > reanalyzing needed, and we knew this up front, it'd be a huge win. > > Unfortunately, that's not the case, so I think trying to get

On the need for a snapshot in exec_bind_message()

2018-09-05 Thread Daniel Wood
In particular: exec_bind_message() PushActiveSnapshot(GetTransactionSnapshot()); Suppressing this I've achieved over 1.9 M TXN's a second on select only pgbench on a 48 core box. It is about 50% faster with this change. The cpu usage of GetSnapshotData drops from about 22% to 4.5%

First steps to being a contributer

2018-08-27 Thread Daniel Wood
Having quit Amazon, where I was doing Postgres development, I've started looking at various things I might work on for fun. One thought is to start with something easy like the scalability of GetSnapshotData(). :-) I recently found it interesting to examine performance while running near 1 mil

First steps to being a contributer

2018-08-27 Thread Daniel Wood
Having quit Amazon, where I was doing Postgres development, I've started looking at various things I might work on for fun. One thought is to start with something easy like the scalability of GetSnapshotData(). :-) I recently found it interesting to examine performance while running near 1 m

Re: Fibocom L850-GL hangs upon connect.

2018-08-22 Thread Daniel Wood
> > >Hum... looks like the ttyACM0 port disconnection didn't succeed, so it > >stays in connected mode and MM ends up saying the port is unusable and > >flag the modem as invalid. Is this clearly always reproducible? Sorry for the late response. I was out of the region turning up a new site. Yes

Re: Fibocom L850-GL hangs upon connect.

2018-08-08 Thread Daniel Wood
reference guide, including factory resets and defaults.). Thanks, -Dan On Wed, Aug 8, 2018 at 4:41 AM, Aleksander Morgado wrote: > Hey! > > On Wed, Aug 8, 2018 at 6:34 AM, Daniel Wood wrote: > > I have been given a Fibocom L850-GL that seems to be stuck in NCM mode. > > As I

Fibocom L850-GL hangs upon connect.

2018-08-07 Thread Daniel Wood
I have been given a Fibocom L850-GL that seems to be stuck in NCM mode. As I have not had any luck changing the mode back to MBIM: ModemManager[25270]: [1533696762.104669] (ttyACM0): --> 'AT+GTUSBMODE?' ModemManager[25270]: [1533696762.121517] (ttyACM0): <-- '+CME ERROR: 4' ModemManager[25270]:

Re: [FD] 360 security android app snoops data to China Unicom network via insecure HTTP

2017-05-04 Thread Daniel Wood
Can't you just run the app in an Android emulator and shark it? Sent from my iPhone > On Apr 30, 2017, at 06:02, secli...@email.tg wrote: > > I have a further update on the issue. After uninstalling the 360 security > android app, I found after repeated checks of Network Info on my phone via >

Re: [Ubuntu-phone] Meizu Support

2016-07-26 Thread Daniel Wood
k.com/meizuitalia > www.twitter.com/meizuitalia > > On Tue, Jul 19, 2016 at 9:31 AM, Daniel Wood > wrote: > >> >> My MX4 overheated and will no longer turn on. The phone is under warranty >> for another couple of weeks so I have been trying to see if Meizu can hel

[Ubuntu-phone] Meizu Support

2016-07-19 Thread Daniel Wood
My MX4 overheated and will no longer turn on. The phone is under warranty for another couple of weeks so I have been trying to see if Meizu can help. I emailed m...@meizu.com who said that I need to contact the seller. The phone was bought from meizumart. Meizu advised that the european contact i

Re: [Ubuntu-phone] A very open thank you.

2016-06-14 Thread Daniel Wood
This sounds like a good opportunity to start a little community app!! A couple of questions: 1. Can the facebook messages be accessed via any of the official facebook APIs? 2. Are there any opensource libraries to connect to facebook (C++, Javascript or Python) Any work that we can do here could

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-06-10 Thread Daniel Wood
A test build of Owncloud file sync for Ubuntu devices has been released on the OpenStore [1]. Feedback welcome through the telegram group [2] or launchpad [3] [1] https://open.uappexplorer.com/ [2] https://telegram.me/joinchat/BQHZRAiN_pnOeE4mT31YCQ [3] https://bugs.launchpad.net/owncloud-sync --

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-06-09 Thread Daniel Wood
On 15 April 2016 at 17:12, Bill Filler wrote: > Hey guys, this is great and thanks for the effort to get Owncloud sync > working! We've been thinking about how to do proper integration into Ubuntu > Touch to have it work out of the box using our current architecture and > components in the system

Re: [Ubuntu-phone] Phone keeps loosing mobile data connectivity after OTA-11

2016-06-03 Thread Daniel Wood
Does this sound familiar? https://bugs.launchpad.net/canonical-devices-system-image/+bug/1533508 On 3 June 2016 at 10:51, advocatux wrote: > Hi, my BQ E4.5 keeps loosing mobile data connectivity after I updated it > to OTA-11. > > As a workaround I turn wifi connection on and off and then mobi

Re: [Ubuntu-phone] MX4 aethercast

2016-06-01 Thread Daniel Wood
Hi Simon, Thanks for your detailed response. I like many other would very much like to see Aethercast on the MX4 and I am wondering if there is any scope to crowd fund a port to BSP 5? Is that a conversation that could lead somewhere? Thanks, Dan On 1 June 2016 at 19:06, Simon Fels wrote:

Re: [Ubuntu-phone] Owncloud Sync - How do you eat yours?

2016-05-27 Thread Daniel Wood
gt; Stefan > > Am Freitag, 27. Mai 2016 10:38:13 CEST schrieb Daniel Wood < > s.d.wood...@googlemail.com>: > >> Hi Guys, >> >> I'm getting close to producing some beta builds. If you're interested in >> helping test you can join the telegram group

Re: [Ubuntu-phone] Switching from WiFi to 3G causes network loss

2016-05-12 Thread Daniel Wood
On Thursday, 12 May 2016 08:51:20 BST, Matthias Apitz wrote: El día Thursday, May 12, 2016 a las 09:38:47AM +0200, Fabio Colella escribió: Hello, I'm experiencing a critical problem with BQ Aquaris E4.5. When connected to a WiFi network it can connect to Internet (surf the web, send and rece

Re: [Ubuntu-phone] [Ubuntu-touch-announce] Landing team 04.05.16

2016-05-05 Thread Daniel Wood
On Thursday, 5 May 2016 08:18:05 BST, Andrea Bernabei wrote: On Wed, May 4, 2016 at 11:53 PM, Łukasz 'sil2100' Zemczak < lukasz.zemc...@canonical.com> wrote: Hello everyone, We're back with the daily landing updates. While we're at it: I just hope my e-mails are not spamming people's ma

Re: [Ubuntu-phone] How to downgrade a click package (in specific Telegram)?

2016-05-03 Thread Daniel Wood
There is an issue with the cache becoming corrupt. If you delete ~/.cache/QML/App/com.Ubuntu.telegram* It might solve your problem. Bug here: https://bugs.launchpad.net/canonical-devices-system-image/+bug/1560020 Thanks, Dan On Tuesday, 3 May 2016 22:35:18 BST, Renato Filho wrote: Hi

Re: [Ubuntu-phone] Can't launch Python app

2016-04-29 Thread Daniel Wood
Sam, Have you seen any of the python templates? https://github.com/Sturmflut/ubuntu-touch-pyotherside-template On 29 April 2016 at 10:39, Sam Bull wrote: > OK, my laptop got destroyed, but has been fixed and I am back trying to > sort this out again. > > This is the status at the moment: > >

[Ubuntu-phone] Pocket Desktop Images

2016-04-28 Thread Daniel Wood
Is there any difference between the pocket desktop images and RC Proposed? I have been using the images for a few months now expecting firefox, libreoffice and gedit to start working. Am I missing something? Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-

Re: [Ubuntu-phone] Screenshot on Aquaris M10

2016-04-25 Thread Daniel Wood
On Monday, 25 April 2016 13:51:54 BST, Oliver Grawert wrote: hi, Am Montag, den 25.04.2016, 14:47 +0200 schrieb Oliver Grawert: ... btw, did anyone take an ipad/android tablet and compare the keyboards to ours yet ? ciao oli Apple used to have a split keyboard for typing in portrait

Re: [Ubuntu-phone] Owncloud Sync - How do you eat yours?

2016-04-22 Thread Daniel Wood
On 22 April 2016 at 09:29, Eran Benjamin wrote: > > > On 22-04-16 08:51, Daniel Wood wrote: > > > I would like to get an idea of how people use owncloud so I can try and > cater for most use cases from the start. > > When do you sync? > What do you sync? > >

[Ubuntu-phone] Owncloud Sync - How do you eat yours?

2016-04-21 Thread Daniel Wood
I would like to get an idea of how people use owncloud so I can try and cater for most use cases from the start. When do you sync? What do you sync? For example, from the phone I am mostly interested in backing up Photos, downloads and documents. These don't need to be instant so I could sync at

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-04-18 Thread Daniel Wood
oudcmd independently and statically so we won't have to include binary blobs in this app and also don't have to adjust LD_LIBRARY_PATH. I'll report back here when I'll have some progress on this. Regards, Filip Dorosz W dniu 16.04.2016 o 00:31, Daniel Wood pisze: Hi Fil

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-04-15 Thread Daniel Wood
riday, 15 April 2016 14:07:41 BST, Wayne Ward wrote: This is great ! Be good if you could tick box and input calendar name and contacts name and it does syncevolution at same time Wayne On Fri, 2016-04-15 at 11:10 +0100, Daniel Wood wrote: Filip, I have started laying out a simple app to

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-04-15 Thread Daniel Wood
at my script > (owncloud-sync.sh) do. It also delegates some config to oc.cfg, > oc-files.cfg. > > -- > Regards, > Filip Dorosz > > W dniu 15.04.2016 o 08:05, Daniel Wood pisze: > >> Hi Filip, >> >> Is it possible for you to share the source for the click on

Re: [Ubuntu-phone] owncloud sync on the phone.

2016-04-14 Thread Daniel Wood
I managed to get this working. I was having problem, I had to manually create ~/.logs and make sure the folders I wanted to copy to existed on the owncloud instance and it worked!! I manually ran ~/bin/owncloud-sync.sh s to debug. On Thursday, 14 April 2016 22:15:24 BST, Konrad Hofer

Re: [Ubuntu-phone] Some good words about BQ.

2016-03-24 Thread Daniel Wood
I have also had an excellent experience with BQ support. The speaker on my E4.5 became faulty so i contacted BQ, They emailed me a list of things to try to confirm it was a hardware issue. They arranged collection of the device, repaired it and returned the device to me in less than a week. I real

[Ubuntu-phone] Gallery default view

2016-03-19 Thread Daniel Wood
Is there any intention to allow a default view to be selected in the gallery app? It defaults to events view which i find difficult and un-natural to navigate and find the images I want, I always use the photos view. It would be great if the prefered view could be set as an option. Thanks,

Re: [Ubuntu-phone] Gallery default view

2016-03-19 Thread Daniel Wood
Hi Alan, Yes that sounds like a great solution for gallery too. Thanks, Dan On Thursday, 17 March 2016 22:13:22 UTC, Alan Pope wrote: Hi, On 17 March 2016 at 21:34, Daniel Wood wrote: It defaults to events view which i find difficult and un-natural to navigate and find the images I

Re: [Ubuntu-phone] Nexus 7 2013 Bluetooth

2016-02-07 Thread Daniel wood
There is currently a bug open for this: https://bugs.launchpad.net/canonical-pocket-desktop/+bug/1530807 You can force the indicator to restart by typing ”restart indicator-bluetooth” in terminal. This should get bluetooth working again. I hope this helps, Dan On Monday, 8 February 2016

[Ubuntu-phone] Content-hub file types

2016-02-07 Thread Daniel wood
Is it possible to register apps for one specific file type rather that “all”? My app will only read and write .dxf files (CAD format) and it seems pointless my app appearing in all the peerpickers just to tell the user the app can't handle the selected format. Thanks, Dan -- Mailing li

Re: [Ubuntu-phone] UITK Bugs

2016-01-31 Thread Daniel Wood
Bug Report: https://bugs.launchpad.net/ubuntu-ux/+bug/1540240 Thanks for taking the time to reply. On 1 February 2016 at 06:22, Zsombor Egri wrote: > Ahh... my previous mail went out accidentally... So let's start all over :) > > Hello Daniel, > > On Sun, Jan 31, 2016 at

Re: [Ubuntu-phone] UITK Bugs

2016-01-31 Thread Daniel Wood
, Zsombor Egri wrote: > Ahh... my previous mail went out accidentally... So let's start all over :) > > Hello Daniel, > > On Sun, Jan 31, 2016 at 7:28 PM, Daniel Wood > wrote: > >> I am experiencing the same problem as described here: >> https://plus.google.com/1

Re: [Ubuntu-phone] UITK Bugs

2016-01-31 Thread Daniel wood
Hi Mike, Thanks for link. I must of done my usual 'man look' when I tried to find the toolkit launchpad page. Cheers for taking the time to reply. On Monday, 1 February 2016 01:18:56 UTC, Mike Sheldon wrote: Hi Daniel, On Sun, 2016-01-31 at 17:28 +0000, Daniel Wood wrote: I

[Ubuntu-phone] UITK Bugs

2016-01-31 Thread Daniel Wood
default behaviour? I am unable to access irc during the normal workings hours to discuss the issue. I thought i could file a bug here https://launchpad.net/ubuntu-ui-toolkit but thats not possible either. Any guidance much appreciated, Daniel Wood -- Mailing list: https://launchpad.net/~ubuntu

[Ubuntu-phone] Content Hub on 15.10

2016-01-20 Thread Daniel Wood
Is there any way to test apps using the content-hub on a desktop machine? I currently get an error message: module "Ubuntu.Content" is not installed. I tried using the Desktop kit and the ubuntu sdk desktop kit. Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubu

Re: [Ubuntu-phone] [Bug 1530807] Bluetooth cannot be activated.

2016-01-12 Thread Daniel wood
Other users who experience the problem suggest that reboots fix the issue. That doesn't seem to work for me. It has been confirmed that bluetooth does work just the ui is broken so I will try to connect a device using terminal. Thanks, Dan On Tuesday, 12 January 2016 15:08:44 UTC, Kugi E

[Ubuntu-phone] RC Proposed Bluetooth on Nexus 7

2016-01-12 Thread Daniel Wood
I'm having problems with bluetooth on a nexus 7 running rc proposed. I have opened a bug https://bugs.launchpad.net/canonical-devices-system-image/+bug/1530807 If you have a nexus 7 running rc proposed could you possibly test bluetooth and reply to the bug? I am keen to get this sorted as I woul

Re: [Ubuntu-phone] RC Proposed Bluetooth

2016-01-04 Thread Daniel wood
, Randall. On 01/04/2016 11:57 AM, Daniel Wood wrote: Hi Randall, Thanks for the recomendation however the checkbox app doesn't really tell me anything I don't already know. It would be good if the bluetooth actions were logged somewhere so I could see whats happening. At the moment I act

[Ubuntu-phone] RC Proposed Bluetooth

2016-01-04 Thread Daniel Wood
ovide? Thanks, Daniel Wood -- Sent using Dekko from my Ubuntu device -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscribe : https://launchpad.net/~ubuntu-phone More help : https://help.launchpad.net/ListHelp

Re: [Ubuntu-phone] QML help

2015-07-17 Thread Daniel Wood
, Mohamed MANSOUR wrote: > hi , try to add property " clip : true " to the page member and i think > this will solve your problem > > 2015-07-14 13:08 GMT+02:00 Daniel Wood : > >> Hi, >> >> Thanks for replying. I would like to keep the textfield above the >

[Ubuntu-phone] File System Access / Networked Storage

2015-07-16 Thread Daniel Wood
What are the options for file storage? I am working on a convergence app and I would like to access networked storage when in desktop mode with the option to save a local copy. Is something like this possible? Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubunt

Re: [Ubuntu-phone] QML help

2015-07-14 Thread Daniel Wood
anchorToKeyboard: true. Thanks, Dan On 14 July 2015 at 12:03, Andrea Bernabei wrote: > Hi Daniel, > > can you elaborate a bit more? I'm not sure I understood what your current > and expected layouts look like :) > > On Sat, Jul 11, 2015 at 9:26 PM, Daniel Wood > wrote: >

[Ubuntu-phone] QML help

2015-07-11 Thread Daniel Wood
Anyone know why the page disappears under the header when the keyboard pops out? I would like to anchor the layout and let the rpm label resize. http://paste.ubuntu.com/11863268/ Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Uns

Re: [Ubuntu-phone] Persistent notification

2015-07-07 Thread Daniel Wood
1469266 > > It would be interesting to know which network you see it on. > > J > > > > On 7 July 2015 at 08:31, Daniel Wood wrote: > >> Its Back!! >> >> The voicemail notification is back and I can't get rid of it. I have >> tried leaving

Re: [Ubuntu-phone] Persistent notification

2015-07-07 Thread Daniel Wood
anks, Dan On 1 June 2015 at 22:09, Daniel Wood wrote: > I did manage to get rid of my notification. I left myself a voice mail and > then deleted it. no terminal commands required!! > > On 1 June 2015 at 22:00, Sergio Schvezov > wrote: > >> On Mon, Jun 01, 2015 at 0

Re: [FD] Google Chrome Address Spoofing (Request For Comment)

2015-07-03 Thread Daniel Wood
Yes this is a pretty good find. I can also confirm it works on iOS 8.3 (12F69) with Safari. DW Sent from my iPad > On Jul 2, 2015, at 9:33 AM, Mustafa Al-Bassam wrote: > > That's pretty neat. Played around with this and made a few discoveries. > > 1. It shows a valid certificate when you spoo

Re: [Ubuntu-phone] (no subject)

2015-07-03 Thread daniel Wood
Attached screenshot is the result of click list | grep gallery. On Friday, 3 July 2015 17:35:28 BST, Alan Pope wrote: On 3 July 2015 at 17:20, daniel Wood wrote: I've uninstalled, reinstalled and rebooted. The icon is the same, it flickers when going full screen and downloaded image

Re: [Ubuntu-phone] Gallery

2015-07-03 Thread daniel Wood
17:14:18 BST, Alan Pope wrote: Hi Dan, On 3 July 2015 at 16:49, daniel Wood wrote: I've just updated the gallery app and non of the listed bugfixes seem to have been fixed. Was the correct click package uploaded? You sure you're running the latest version? Try closing gallery, pull

[Ubuntu-phone] Gallery

2015-07-03 Thread daniel Wood
I've just updated the gallery app and non of the listed bugfixes seem to have been fixed. Was the correct click package uploaded? Thanks, Dan -- Sent using Dekko from my Ubuntu device -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubsc

[Ubuntu-phone] Desktop UI Components

2015-06-29 Thread Daniel Wood
Is it too early to start thinking about desktop UIs? I had a quick look at the roadmap [1] and I am interested in learning more about desktop menus and Toolbars. I have been working on my CAD like application and a typical UI would use something similar to a QDockWidget [2] to place toolbars with

Re: [Ubuntu-phone] Designer Input / Ideas

2015-06-22 Thread Daniel Wood
20:50, Rodney Dawes wrote: > On Mon, 2015-06-22 at 14:24 +0100, Daniel Wood wrote: > > I've been working on a CAD like drawing application for viewing dxf > > and svg files. All the apps I have tried in the past have been awful > > to use on a small screen [1] [2]. > &

[Ubuntu-phone] Designer Input / Ideas

2015-06-22 Thread Daniel Wood
I've been working on a CAD like drawing application for viewing dxf and svg files. All the apps I have tried in the past have been awful to use on a small screen [1] [2]. My initial thought was to limit the functionality on a smaller screen to viewing only and then show drawing and modification to

Re: [Ubuntu-phone] Developer support

2015-06-18 Thread Daniel Wood
But we still need some time to release it, as it is lots of work. > > So if you have any other questions, reach me on IRC (zbenjamin in > #ubuntu-app-devel). There are many others > who will also be happy to help. > > Benjamin > > Am 17.06.2015 um 23:02 schrieb Daniel Wood: &

Re: [Ubuntu-phone] Developer support

2015-06-18 Thread Daniel Wood
: > On 18/06/2015 09:14, Daniel Wood wrote: > > I would like to thank you all for your replies. Its very kind of you to > take the time to reply. > > Nicholas > I will upgrade my machine to Vivid to see if that helps. I assumed that > 14.10 would be ok as all the > documen

Re: [Ubuntu-phone] Developer support

2015-06-18 Thread Daniel Wood
ork day. The trouble is that I work on Ubuntu during the evening which is when I need the help. Thanks, Dan On 17 June 2015 at 22:35, Andrea Bernabei wrote: > > > On Wed, Jun 17, 2015 at 10:02 PM, Daniel Wood > wrote: > >> Where are developers supposed to get support when deve

[Ubuntu-phone] Developer support

2015-06-17 Thread Daniel Wood
Where are developers supposed to get support when developing Ubuntu touch software? I am using Ubuntu 14.10 and the most up todate SDK I am having an incredibly frustrating time trying to write even the simplest of apps. I understand QML, C++ and some javascript. I've been writing software using Q

Re: [Ubuntu-phone] OTA 4 bugs and bugs not fixed

2015-06-17 Thread Daniel Wood
> Nothing changed for me there either. Still works as MTP device like it > did before (not a mass storage media device). What operating system are > you running on your PC? Please make sure that the screen is unlocked > when you try to connect. For security reasons, MTP does not accept new > incomi

Re: [Ubuntu-phone] OTA-4 r23 && no alarm

2015-06-15 Thread daniel Wood
My alarm didn't go off either, however, any new alarms seem to work. On Tuesday, 16 June 2015 07:03:59 BST, Matthias Apitz wrote: Hello, I have an every day alarm set to 5.25 am. Last night the OTA-4 arrived in my BQ E4.5 and I'm now on r23. Thanks to all for the good work! This morning th

Re: [Ubuntu-phone] The 5" is out

2015-06-09 Thread Daniel Wood
l... I would not expect any performance improvements, since > CPU+GPU part remains the same, while rendered images will have 1.8x amount > of pixels. Unless HW is really optimized for this HD resolution. > > Would be nice to see comparison in some benchmarks ;) > > Cheers, > Ale

Re: [Ubuntu-phone] The 5" is out

2015-06-09 Thread Daniel Wood
I've just ordered an E5. Does anyone have one that can comment on the performance compared to the E4.5. I'm curious as what I can expect. Its a little disappointing that it only comes with 1GB RAM. Is that likely to be a limiting factor for the performance like when multi-tasking? On 9 June 2015

Re: [Ubuntu-phone] Landing team 08.06.15

2015-06-08 Thread daniel Wood
Is there any better landing information you can provide than this: http://people.canonical.com/~lzemczak/landing-team/ The latest log seems to be from 3 weeks ago and most are from last year. Would it be possible to link to the most recent? On Monday, 8 June 2015 20:21:23 BST, Łukasz 'sil210

Re: [Ubuntu-phone] Persistent notification

2015-06-01 Thread Daniel Wood
I did manage to get rid of my notification. I left myself a voice mail and then deleted it. no terminal commands required!! On 1 June 2015 at 22:00, Sergio Schvezov wrote: > On Mon, Jun 01, 2015 at 04:44:28PM -0400, Pat McGowan wrote: > > FWIW this is as designed, the notification shows you the

[Ubuntu-phone] Persistent notification

2015-05-29 Thread daniel Wood
Is there any way to clear notifications? I have a voicemail notification that I can't get rid of. Thanks, Dan -- Sent using Dekko from my Ubuntu device -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscribe : https://launchpad.net/~

[Ubuntu-phone] Notification issues

2015-05-25 Thread daniel Wood
I've been having a number of issues with notifications on the BQ device. Firstly notifications aren't always received. For example, I open telegram and there will be new messages that receieved no notification. Notifications can be delayed and grouped. If I send myself several notifications u

[owncloud-devel] Mail watcher / push notifications

2015-05-13 Thread Daniel Wood
I am hoping to create an owncloud app to run as an imap mail watcher to send push notifications to my ubuntu phone. I am sending this mail hoping that someone with owncloud knowledge can offer advice on the best way to implement such a service. Whats the best way to run a service on owncloud? I've

[Ubuntu-phone] OTA 3.5 WIFI

2015-05-12 Thread daniel Wood
I'm having problems with wifi on r22. The only way I can get it to connect is by cycling airplane mode. Is anyone else having problems on the BQ phone? Thanks, Dan -- Sent using Dekko from my Ubuntu device -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lis

[Ubuntu-phone] Online Account Desktop Testing

2015-05-12 Thread Daniel Wood
Is it possible to test online accounts on a desktop? Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscribe : https://launchpad.net/~ubuntu-phone More help : https://help.launchpad.net/ListHelp

Re: [Ubuntu-phone] Online Accounts for Scopes

2015-05-11 Thread Daniel Wood
t couldn't get too far. For some reason all my accounts are > deleted each time I install the click package. Having to set up the > account every time I tried to run it, made it quite hard to get somewher > e. > > I'm sure Chris Wayne (CCed) can provide us with some example

[Ubuntu-phone] Online Accounts for Scopes

2015-05-11 Thread Daniel Wood
I would like to write a scope that uses online accounts. An example might be Facebook, Google+ or Twitter scope that shows a recent feed and possibly allows some basic interaction and status posting. One for each service and an aggregator scope would be Ideal!! Are there any guides or documenta

[Ubuntu-phone] GPS / Location r21

2015-04-29 Thread daniel Wood
After struggling with a number of issues on the BQ handset, I reset the phone through recovery. This seems to of fixed the strange network issues but GPS / Location still isn't working when not connected to WIFI. Where can I find the logs for the location services? I also seem to have a probl

Re: [FD] Regarding how can I request a CVE number?

2015-03-19 Thread Daniel Wood
Unfortunately, this has been happening to many people within the last year. My suggestion is to assign your own numbering schema to them and post the details. If they gain momentum then you may get one assigned anyway if it's serious enough. Sent from my iPhone > On Mar 18, 2015, at 6:32 AM,

Re: [Ubuntu-phone] Dekko Email Client call for testing

2015-02-04 Thread daniel wood
Is it possible to turn off the Dekko signature? On Wednesday, 4 February 2015 20:56:50 UTC, Alan Pope wrote: -- Sent using Dekko from my Ubuntu device -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscribe : https://launchpad.net/~ubu

[Ubuntu-phone] Dekko 0.4 testing

2015-02-04 Thread Daniel Wood
In the recent Ubuntu Engineering on air, Alan said a newer version of Dekko was available for testing. Are we best building it ourselves or is there a click package available? Thanks, Dan -- Mailing list: https://launchpad.net/~ubuntu-phone Post to : ubuntu-phone@lists.launchpad.net Unsubscr

Re: [FD] Responsible disclosure: terms and conditions

2014-06-09 Thread Daniel Wood
Should also point out that getting E&O insurance is a good idea. Daniel > On Jun 8, 2014, at 1:34 PM, Dave Warren wrote: > >> On 2014-06-08 04:03, Paul Vixie wrote: >> this is concerning, for two reasons. >> >> first, for enforceability, a contract requires exchange of >> consideration. what'

Re: [FD] Responsible disclosure: terms and conditions

2014-06-08 Thread Daniel Wood
Keep in mind you can always be sued. No matter what 'legal' document you may have. I'm the third down on that attrition list. This brings to mind this recent blog from John Strand: http://pen-testing.sans.org/blog/pen-testing/2014/06/04/five-things-every-pen-tester-should-know-about-working-wit

  1   2   >