Re: [REQUEST] Portfolio Performance

2021-08-28 Thread Master One via freebsd-ports
Not an advert or SPAM, but indeed just a port request ;)

Though not sure how this classifies as badly worded and how I should
have written that request differently.


On Sat, 2021-08-28 at 15:41 -0700, Lee Brown wrote:
> It's meant to be a port request, i.e. will somebody please port this
> to
> FreeBSD, but badly worded.
> 
> I marked it as SPAM before I saw the forum post where SirDice pointed
> them
> to this ML.  So no, not just you :)
> 
> On Sat, Aug 28, 2021 at 2:46 PM Dave Horsfall 
> wrote:
> 
> > Is it just me, or does this look suspiciously like an advert?
> > 
> > -- Dave





[REQUEST] Portfolio Performance

2021-08-28 Thread Master One via freebsd-ports
Portfolio Performance - An open source tool to calculate the overall
performance of an investment portfolio - across all accounts - using
True-Time Weighted Return or Internal Rate of Return.

Website: https://www.portfolio-performance.info/en/
GitHub: https://github.com/buchen/portfolio
Prerequisites: Java 11, Maven, Eclipse

I was looking for something self-hosted web-based and found Firefly III
being mentioned, though the developer of Firefly III says that it's not
really the best solution for that purpose and that he is using
Portfolio Performance himself.

Portfolio Performance really is the one and only free portfolio
management software that is referred to from all directions, as there
seems to be nothing else that comes anywhere close, so this surely
would make a fine addition to FreeBSD desktop use.





Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-24 Thread Yoda Jedi Master
Thank you for your help, I will check it and try it :-)

On Mon, Aug 16, 2021 at 11:45 AM Bruno Cadonna  wrote:

> Hi Yoda,
>
> for certain cases, Kafka Streams allows you to specify handlers that
> skip the problematic record. Those handlers are:
>
> 1. deserialization exception handler configured in
> default.deserialization.exception.handler
> 2. time extractor set in default.timestamp.extractor and in the Consumed
> object
> 3. production exception handler configured in
> default.production.exception.handler
>
> Kafka Streams provides implementations for handlers 1 and 2 to skip the
> problematic records, that are LogAndContinueExceptionHandler and
> LogAndSkipOnInvalidTimestamp, respectively.
>
> For some more details have a look at
>
> https://docs.confluent.io/platform/current/streams/faq.html#failure-and-exception-handling
>
> If problematic records cause an exception in user code, the user code
> needs to provide functionality to skip the problematic record.
>
> Best,
> Bruno
>
> On 10.08.21 13:26, Yoda Jedi Master wrote:
> > Hi Bruno, thank you for your answer.
> > I mean that the message that caused the exception was consumed and
> replaced
> > thread will continue from the next message. How then does it handle
> > uncaught exceptions, if it will fail again?
> >
> >
> > On Tue, Aug 10, 2021 at 12:33 PM Bruno Cadonna 
> wrote:
> >
> >> Hi Yoda,
> >>
> >> What do you mean exactly with "skipping that failed message"?
> >>
> >> Do you mean a record consumed from a topic that caused an exception that
> >> killed the stream thread?
> >>
> >> If the record killed the stream thread due to an exception, for example,
> >> a deserialization exception, it will probably also kill the next stream
> >> thread that will read that record. Replacing a stream thread does not
> >> skip records but it can result in duplicate records depending on the
> >> application’s processing mode determined by the
> >> PROCESSING_GUARANTEE_CONFIG value as stated in the docs you cited.
> >>
> >> Best,
> >> Bruno
> >>
> >>
> >>
> >> On 10.08.21 11:15, Luke Chen wrote:
> >>> Hi Yoda,
> >>> For your question:
> >>>> If an application gets an uncaught exception, then the failed thread
> >> will
> >>> be replaced with another thread and it will continue processing
> messages,
> >>> skipping that failed message?
> >>>
> >>> --> Yes, if everything goes well after `replace thread`, you can ignore
> >>> this failed message. Just one reminder that you should check the failed
> >>> message to avoid this `uncaught exception` thrown again, because if
> this
> >>> happens frequently, it'll impact application performance.
> >>>
> >>> Thank you.
> >>> Luke
> >>>
> >>> On Tue, Aug 10, 2021 at 4:25 PM Yoda Jedi Master 
> >> wrote:
> >>>
> >>>> "REPLACE_THREAD - Replaces the thread receiving the exception and
> >>>> processing continues with the same number of configured threads.
> (Note:
> >>>> this can result in duplicate records depending on the application’s
> >>>> processing mode determined by the PROCESSING_GUARANTEE_CONFIG value)"
> >>>>
> >>>> If an application gets an uncaught exception, then the failed thread
> >> will
> >>>> be replaced with another thread and it will continue processing
> >> messages,
> >>>> skipping that failed message?
> >>>>
> >>>
> >>
> >
>


SPECIAL AZADI OFFER 1400/YEAR

2021-08-15 Thread Ali Master
 

 Flyer-1.jpg

 

 

 

 

 

 

 

Email Marketing By

Webnagar.jpg

-- 
You received this message because you are subscribed to the Google Groups 
"revolutiondomain05" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to revolutiondomain05+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/revolutiondomain05/002401d7925c%247f5ee150%247e1ca3f0%24%40com.


Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
Hi Bruno, thank you for your answer.
I mean that the message that caused the exception was consumed and replaced
thread will continue from the next message. How then does it handle
uncaught exceptions, if it will fail again?


On Tue, Aug 10, 2021 at 12:33 PM Bruno Cadonna  wrote:

> Hi Yoda,
>
> What do you mean exactly with "skipping that failed message"?
>
> Do you mean a record consumed from a topic that caused an exception that
> killed the stream thread?
>
> If the record killed the stream thread due to an exception, for example,
> a deserialization exception, it will probably also kill the next stream
> thread that will read that record. Replacing a stream thread does not
> skip records but it can result in duplicate records depending on the
> application’s processing mode determined by the
> PROCESSING_GUARANTEE_CONFIG value as stated in the docs you cited.
>
> Best,
> Bruno
>
>
>
> On 10.08.21 11:15, Luke Chen wrote:
> > Hi Yoda,
> > For your question:
> >> If an application gets an uncaught exception, then the failed thread
> will
> > be replaced with another thread and it will continue processing messages,
> > skipping that failed message?
> >
> > --> Yes, if everything goes well after `replace thread`, you can ignore
> > this failed message. Just one reminder that you should check the failed
> > message to avoid this `uncaught exception` thrown again, because if this
> > happens frequently, it'll impact application performance.
> >
> > Thank you.
> > Luke
> >
> > On Tue, Aug 10, 2021 at 4:25 PM Yoda Jedi Master 
> wrote:
> >
> >> "REPLACE_THREAD - Replaces the thread receiving the exception and
> >> processing continues with the same number of configured threads. (Note:
> >> this can result in duplicate records depending on the application’s
> >> processing mode determined by the PROCESSING_GUARANTEE_CONFIG value)"
> >>
> >> If an application gets an uncaught exception, then the failed thread
> will
> >> be replaced with another thread and it will continue processing
> messages,
> >> skipping that failed message?
> >>
> >
>


Re: Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
Hi Luke, thank you for your answer.
I will try it, I think I will set an alert if there are too many messages.
To ignore the message should I simply return "replace_thread" in the
handler?

On Tue, Aug 10, 2021 at 12:16 PM Luke Chen  wrote:

> Hi Yoda,
> For your question:
> > If an application gets an uncaught exception, then the failed thread will
> be replaced with another thread and it will continue processing messages,
> skipping that failed message?
>
> --> Yes, if everything goes well after `replace thread`, you can ignore
> this failed message. Just one reminder that you should check the failed
> message to avoid this `uncaught exception` thrown again, because if this
> happens frequently, it'll impact application performance.
>
> Thank you.
> Luke
>
> On Tue, Aug 10, 2021 at 4:25 PM Yoda Jedi Master 
> wrote:
>
> > "REPLACE_THREAD - Replaces the thread receiving the exception and
> > processing continues with the same number of configured threads. (Note:
> > this can result in duplicate records depending on the application’s
> > processing mode determined by the PROCESSING_GUARANTEE_CONFIG value)"
> >
> > If an application gets an uncaught exception, then the failed thread will
> > be replaced with another thread and it will continue processing messages,
> > skipping that failed message?
> >
>


Kafka Streams Handling uncaught exceptions REPLACE_THREAD

2021-08-10 Thread Yoda Jedi Master
"REPLACE_THREAD - Replaces the thread receiving the exception and
processing continues with the same number of configured threads. (Note:
this can result in duplicate records depending on the application’s
processing mode determined by the PROCESSING_GUARANTEE_CONFIG value)"

If an application gets an uncaught exception, then the failed thread will
be replaced with another thread and it will continue processing messages,
skipping that failed message?


How to set "Pay for" with the API?

2021-07-26 Thread adwave master
I'm using adwords API v201809. But if I'll be upgrading soon. How do you 
set the "Pay for" field using the Adwords API and or the Google Ads API?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3da002db-237c-49b0-82a2-ee057495ac1bn%40googlegroups.com.


[FFmpeg-user] Cannot ^C out of ffplay, crashes due to opening too many files.

2021-05-07 Thread BTD Master via ffmpeg-user
ffplay works fine inside an X session however running it from a plain
tty means it keeps trying to open files, preventing ^C from having any
effect, and eventually crashes when it hits the file limit. -nodisp
fixes this, however I think it would be useful that ffplay would not
try to start a GUI window indefinitely.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".


[prometheus-users] using pushgateway metric with other metrics returns empty result

2021-04-17 Thread 'master magra' via Prometheus Users
Hi All,

I've started looking into using pushgateway metrics.
I tried a variation of the curl example found in the pushgateway git readme:

cat 

Bug#983443: Zstd support

2021-02-24 Thread BTD Master
Package: unp
Version: 2.0~pre9

I have tried to `unp` a .tar.zst file and it 'failed to detect file
type'. It seems there is no support for .zst files on any version.
Because people are increasingly turning to zstd for fast decompression
and high compression ratios (e.g. support for initramfs compression
with zstd came in Linux 5.9), I think it would be really useful to
support zstd, especially considering that it (seems) to have different
syntax and thus is more difficult to get accustomed to.



[Pkg-tcltk-devel] Copy of: http://webinar-click.com/datingb

2021-02-21 Thread SamX - The Gourd Master
Copy of:

This is an enquiry e-mail via http://thegourdmastersamx.com/ from:
http://webinar-click.com/datingb 

http://webinar-click.com/datingb


___
Pkg-tcltk-devel mailing list
Pkg-tcltk-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-tcltk-devel


Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-31 Thread master-davidlee
`ipfs@249:~/incubator-teaclave$ (cd docker && docker-compose -f 
docker-compose-ubuntu-1804-sgx-sim-mode.yml up --build)
Building teaclave-authentication-service-sgx-sim-mode
Step 1/29 : FROM ubuntu:18.04
 ---> c090eaba6b94
Step 2/29 : ENV VERSION 2.9.101.2-bionic1
 ---> Using cache
 ---> c79b094403a2
Step 3/29 : ENV SGX_DOWNLOAD_URL_BASE 
"https://download.01.org/intel-sgx/sgx-linux/2.9.1/distro/ubuntu18.04-server;
 ---> Using cache
 ---> 275d85d58955
Step 4/29 : ENV SGX_LINUX_X64_SDK sgx_linux_x64_sdk_2.9.101.2.bin
 ---> Using cache
 ---> 156c9a878491
Step 5/29 : ENV SGX_LINUX_X64_SDK_URL 
"$SGX_DOWNLOAD_URL_BASE/$SGX_LINUX_X64_SDK"
 ---> Using cache
 ---> 6521903008e8
Step 6/29 : RUN apt-get update && apt-get install -q -y 
libcurl4-openssl-dev libprotobuf-dev curl pkg-config wget
 ---> Using cache
 ---> 04db0a867bcd
Step 7/29 : RUN echo 'deb [arch=amd64] 
https://download.01.org/intel-sgx/sgx_repo/ubuntu bionic main' |   tee 
/etc/apt/sources.list.d/intel-sgx.list
 ---> Using cache
 ---> 2961160d045a
Step 8/29 : RUN curl -fsSL  
https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key 
add -
 ---> Using cache
 ---> 164af245f044
Step 9/29 : RUN apt-get update && apt-get install -q -y 
libsgx-launch=$VERSION libsgx-urts=$VERSION libsgx-quote-ex=$VERSION
 ---> Using cache
 ---> f823bb1bca74
Step 10/29 : RUN mkdir /etc/init
 ---> Using cache
 ---> 52c1c3cce471
Step 11/29 : RUN wget $SGX_LINUX_X64_SDK_URL   && chmod u+x 
$SGX_LINUX_X64_SDK  && echo -e 'no\n/opt' | 
./$SGX_LINUX_X64_SDK && rm $SGX_LINUX_X64_SDK && 
echo 'source /opt/sgxsdk/environment' >> /etc/environment
 ---> Using cache
 ---> 688849fbc26e
Step 12/29 : ENV LD_LIBRARY_PATH=/opt/sgxsdk/sdk_libs
 ---> Using cache
 ---> 16060263928f
Step 13/29 : RUN mkdir -p /tmp/fusion_data
 ---> Using cache
 ---> bf1356023ff0
Step 14/29 : ADD release/services/teaclave_frontend_service /teaclave/
 ---> Using cache
 ---> 827d26630464
Step 15/29 : ADD release/services/teaclave_frontend_service_enclave.signed.so 
/teaclave/
 ---> Using cache
 ---> b6fee11daa2f
Step 16/29 : ADD release/services/teaclave_authentication_service /teaclave/
 ---> Using cache
 ---> 9dd52d5fd225
Step 17/29 : ADD 
release/services/teaclave_authentication_service_enclave.signed.so /teaclave/
 ---> Using cache
 ---> 80271d9446bb
Step 18/29 : ADD release/services/teaclave_management_service /teaclave/
 ---> Using cache
 ---> 5a41dca34b9a
Step 19/29 : ADD release/services/teaclave_management_service_enclave.signed.so 
/teaclave/
 ---> Using cache
 ---> 921d3bd8b318
Step 20/29 : ADD release/services/teaclave_scheduler_service /teaclave/
 ---> Using cache
 ---> 30a7046e9939
Step 21/29 : ADD release/services/teaclave_scheduler_service_enclave.signed.so 
/teaclave/
 ---> Using cache
 ---> bad5c52051c3
Step 22/29 : ADD release/services/teaclave_access_control_service /teaclave/
 ---> Using cache
 ---> cfe3f99ee1fb
Step 23/29 : ADD 
release/services/teaclave_access_control_service_enclave.signed.so /teaclave/
 ---> Using cache
 ---> f52abbab7cf3
Step 24/29 : ADD release/services/teaclave_storage_service /teaclave/
 ---> Using cache
 ---> 301b116a6525
Step 25/29 : ADD release/services/teaclave_storage_service_enclave.signed.so 
/teaclave/
 ---> Using cache
 ---> 4211ad0a1ad7
Step 26/29 : ADD release/services/teaclave_execution_service /teaclave/
 ---> Using cache
 ---> 2912ec8a1d15
Step 27/29 : ADD release/services/teaclave_execution_service_enclave.signed.so 
/teaclave/
 ---> Using cache
 ---> 81ffad21ab27
Step 28/29 : ADD release/services/enclave_info.toml /teaclave/
 ---> Using cache
 ---> 3a7b6c47f1a3
Step 29/29 : ADD release/services/auditors /teaclave/auditors
 ---> Using cache
 ---> cd92db5bf5fa

Successfully built cd92db5bf5fa
Successfully tagged docker_teaclave-authentication-service-sgx-sim-mode:latest
Building teaclave-storage-service-sgx-sim-mode
Step 1/29 : FROM ubuntu:18.04
 ---> c090eaba6b94
Step 2/29 : ENV VERSION 2.9.101.2-bionic1
 ---> Using cache
 ---> c79b094403a2
Step 3/29 : ENV SGX_DOWNLOAD_URL_BASE 
"https://download.01.org/intel-sgx/sgx-linux/2.9.1/distro/ubuntu18.04-server;
 ---> Using cache
 ---> 275d85d58955
Step 4/29 : ENV SGX_LINUX_X64_SDK sgx_linux_x64_sdk_2.9.101.2.bin
 ---> Using cache
 ---> 156c9a878491
Step 5/29 : ENV SGX_LINUX_X64_SDK_URL 
"$SGX_DOWNLOAD_URL_BASE/$SGX_LINUX_X64_SDK"
 ---> Using cache
 ---> 6521903008e8
Step 6/29 : RUN apt-get update && apt-get install -q -y 
libcurl4-openssl-dev libprotobuf-dev curl pkg-config wget
 ---> Using cache
 ---> 04db0a867bcd
Step 7/29 : RUN echo 'deb [arch=amd64] 
https://download.01.org/intel-sgx/sgx_repo/ubuntu bionic main' |   tee 
/etc/apt/sources.list.d/intel-sgx.list
 ---> Using cache
 ---> 2961160d045a
Step 8/29 : RUN curl -fsSL  
https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key 
add -
 ---> Using cache
 ---> 164af245f044
Step 9/29 : RUN apt-get update 

Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-26 Thread master-davidlee
Current Teaclave supports any python machine learning modules?  can I load a 
pickle-dumped machine learning model file in Teaclave and run it?
`import numpy as np

class Linear_Regression:
def __init__(self):
self._w = None

def fit(self, X, y, lr=0.01, epsilon=0.01, epoch=1000):
#训练数据
#将输入的X,y转换为numpy数组
X, y = np.asarray(X, np.float32), np.asarray(y, np.float32)
#给X增加一列常数项
X=np.hstack((X,np.ones((X.shape[0],1
#初始化w
self._w = np.zeros((X.shape[1],1)) 

for _ in range(epoch):
#随机选择一组样本计算梯度
random_num=np.random.choice(len(X))
x_random=X[random_num].reshape(1,2)
y_random=y[random_num]

gradient=(x_random.T)*(np.dot(x_random,self._w)-y_random)

#如果收敛,那么停止迭代
if (np.abs(self._w-lr*gradient)https://github.com/apache/incubator-teaclave/issues/463#issuecomment-768006278

Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-26 Thread master-davidlee
Ok, I will try in the real TEE with another PC.And can I load my own machine 
learning model file use Teaclave?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/463#issuecomment-767964867

Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-26 Thread master-davidlee
it looks like right at the beginning, but something wrong after a while. Can 
you help me with that?  Thanks!

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/463#issuecomment-767953467

Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-26 Thread master-davidlee
![image](https://user-images.githubusercontent.com/49427668/105930272-569cd380-6084-11eb-80cb-be976ac3d886.png)
![image](https://user-images.githubusercontent.com/49427668/105930317-69170d00-6084-11eb-85e5-6e6c4abe36fd.png)
![image](https://user-images.githubusercontent.com/49427668/105930337-759b6580-6084-11eb-98c8-decc0fef7b08.png)
![image](https://user-images.githubusercontent.com/49427668/105930362-82b85480-6084-11eb-80b5-0510bcb6a856.png)
![image](https://user-images.githubusercontent.com/49427668/105930393-8ea41680-6084-11eb-9309-277468bd2a9c.png)
![image](https://user-images.githubusercontent.com/49427668/105930416-982d7e80-6084-11eb-8f01-5fdcda2bb80a.png)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/463#issuecomment-767952627

Re: [apache/incubator-teaclave] GPG error: The following signatures couldn't be verified (#471)

2021-01-26 Thread master-davidlee
I remember this command returned OK, but the error still occurred but I have 
fixed it. Can you take look at the other error#463. It bothers me many days 
Thanks

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/471#issuecomment-767942346

Re: [apache/incubator-teaclave] GPG error: The following signatures couldn't be verified (#471)

2021-01-26 Thread master-davidlee
And I use these 2 steps fixed it 
1. the first step is to take note of the public key, for example, there is the 
78BD65473CB3BD13
![image](https://user-images.githubusercontent.com/49427668/105863541-f417e900-602b-11eb-8b12-c5cb368edde7.png)
2. sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 
(public_key)
Then it should be fixed



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/471#issuecomment-767610458

[apache/incubator-teaclave] GPG error: The following signatures couldn't be verified (#471)

2021-01-26 Thread master-davidlee
when I run the last  command 
![image](https://user-images.githubusercontent.com/49427668/105863271-adc28a00-602b-11eb-83ef-1d0dfc5c6348.png)
I met an error 
![image](https://user-images.githubusercontent.com/49427668/105863327-bfa42d00-602b-11eb-86fd-9be814479865.png)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/471

[apache/incubator-teaclave] How about provide a live demo API to experience? (#466)

2021-01-20 Thread master-davidlee
I have tried your tutorial about "the first function", but met many errors. 
How about providing a live demo API that includes executing custom python files 
and machine learning to experience?  In this way, people can directly 
experience your work and save a lot of time for both of us.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/466

Re: [apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-20 Thread master-davidlee
I install the python lib, but after I run `(cd docker && docker-compose -f 
docker-compose-ubuntu-1804-sgx-sim-mode.yml up --build)` 
some service will be exited after a while automatically
![image](https://user-images.githubusercontent.com/49427668/105275318-003e1980-5bda-11eb-8b70-c11fe5f675ba.png)
and when I run `SGX_MODE=SW PYTHONPATH=../../sdk/python python3 builtin_echo.py 
'Hello, Teaclave!'`
![image](https://user-images.githubusercontent.com/49427668/105275353-19df6100-5bda-11eb-83fb-6aaae06bacf5.png)
![image](https://user-images.githubusercontent.com/49427668/105275364-22d03280-5bda-11eb-9e2b-421e5901c8b3.png)



-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/463#issuecomment-764205387

[apache/incubator-teaclave] Execute builtin_echo.py error (#463)

2021-01-20 Thread master-davidlee
I have launched all the service 
![image](https://user-images.githubusercontent.com/49427668/105189064-896c3680-5b6f-11eb-881d-f0a3bf8f2023.png)
but when I want to run  the example  echo.py
![image](https://user-images.githubusercontent.com/49427668/105189161-a3a61480-5b6f-11eb-9b85-293382fdfd65.png)


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/463

Re: [apache/incubator-teaclave] I a error when use simulate model (#461)

2021-01-20 Thread master-davidlee
Closed #461.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/461#event-4228177502

Re: [apache/incubator-teaclave] I a error when use simulate model (#461)

2021-01-20 Thread master-davidlee
Thanks it work

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/461#issuecomment-763641606

[apache/incubator-teaclave] I a error when use simulate model (#461)

2021-01-19 Thread master-davidlee
I met a error 
![image](https://user-images.githubusercontent.com/49427668/105138662-2c9d5b80-5b30-11eb-8fb5-3c692c99e6cd.png)
and this is my release/services
![image](https://user-images.githubusercontent.com/49427668/105138731-4474df80-5b30-11eb-92df-ab878727b69a.png)
and I successed compiled
![image](https://user-images.githubusercontent.com/49427668/105139407-3c696f80-5b31-11eb-96a2-c40900527e93.png)

_Originally posted by @master-davidlee in 
https://github.com/apache/incubator-teaclave/issues/437#issuecomment-763385226_

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/461

Re: [apache/incubator-teaclave] How solve the runtime error in simulation mode? (#437)

2021-01-19 Thread master-davidlee
I met a similar error 
![image](https://user-images.githubusercontent.com/49427668/105138662-2c9d5b80-5b30-11eb-8fb5-3c692c99e6cd.png)
and this is my release/services
![image](https://user-images.githubusercontent.com/49427668/105138731-4474df80-5b30-11eb-92df-ab878727b69a.png)
what should I do


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/437#issuecomment-763385226

Re: [apache/incubator-teaclave] How to debug Python scripts (#393)

2021-01-17 Thread master-davidlee
Hi, I want to make a delegate machine learning with TEE. How can I load the ML 
model files and run it within Teaclave? 

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave/issues/393#issuecomment-761820236

Re: Python Django Training

2020-12-07 Thread Master Stock Mart
I wanna also interested joining training group

On Mon., 7 Dec. 2020, 2:09 pm narendra thapa, 
wrote:

> hello please add me also in training group?
>
>
> On Fri, Feb 21, 2020 at 7:27 PM Bharati Nilam 
> wrote:
>
>> Hi,
>> I also from Hyderabad and I'm also interested in the training. please
>> tell me how to join?
>>
>> Regards,
>> Bharati
>>
>> On Thu, 20 Feb, 2020, 6:19 PM Thiagu Palaniappan, <
>> thiagarajan@gmail.com> wrote:
>>
>>> I'm also interested. Please add me in the group.
>>>
>>>
>>> Thanks & Regards,
>>> Thiagu
>>>
>>> On Mon, Feb 17, 2020 at 12:41 AM Akshay Raul 
>>> wrote:
>>>
 I am interested also. Please let me know the details.

 On Sat 1 Feb, 2020, 2:42 PM Srikanth K,  wrote:

> Hi,
>
> I am from Hyderabad. I am Python Developer by Profession. I am eager
> take up any Python , Django Training (online Preferrable or Weekends).
> Members who require can contact me or share me  there idea.
>
> Regards,
> Srikanth.K
>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACPyz-gXb7wo9E0Uhs_pnxF9X52uA10__Fq1xt4trjXUaN3ehQ%40mail.gmail.com
> 
> .
>
 --
 You received this message because you are subscribed to the Google
 Groups "Django users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to django-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/django-users/CAEd%2Bv%3D0gE2dEMXKJ0Nm8FcH2ZxUPAdQspkQKB%2Bg5pZbSc_uZnQ%40mail.gmail.com
 
 .

>>>
>>>
>>> --
>>>
>>> Thanks & Regards,
>>>
>>> *Thiagu Palaniappan*
>>>
>>> M +91 (0) 9994318799
>>>
>>> *DXC Technology*
>>> 8th Floor, Tower 1 B DLF IT Park, 1/124 - Shivaji Garden, Nandambakkam
>>> post, Ramapuram, Chennai - 600 089.
>>>
>>> dxc.technology  / Twitter
>>>  / Facebook
>>>  / LinkedIn
>>> 
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CAK%3DQXNMzH-iL6BQ3_vfrvTpeY%2BSe5%3DbZm9h5wPW_Dw%2BM2BsvQg%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAPGVBeOgomb94NXAm347QqGcJ%3D3MzxULU7eQnY-M56EbC2D9vg%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAEtntjXVaVAyDCJJzS748zfNVm242U%2B6vsFkynevf5ghnPgDhw%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO5wgB93XEvc1jWP7QcViNw0x9pc2QqwLuY2QF62km8%3DRbrJfg%40mail.gmail.com.


Re: Restricted/new users: introduce yourself!

2020-11-16 Thread AudioGames . net Forum — Introduce Yourself to Gain Access : master of os-x via Audiogames-reflector


  


Re: Restricted/new users: introduce yourself!

looollalsossas i am the os-x master. logic pro x fnal cut voice over mac mac

URL: https://forum.audiogames.net/post/590255/#p590255




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


[Geoserver-devel] [JIRA] (GEOS-9776) Enable Caching Defaults for "Import Data" extension

2020-10-20 Thread Legendary Master (JIRA)
Legendary Master ( 
https://osgeo-org.atlassian.net/secure/ViewProfile.jspa?accountId=5aa8e9d257cbe12a4a3efeca
 ) *created* an issue

GeoServer ( 
https://osgeo-org.atlassian.net/browse/GEOS?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 ) / Improvement ( 
https://osgeo-org.atlassian.net/browse/GEOS-9776?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 ) GEOS-9776 ( 
https://osgeo-org.atlassian.net/browse/GEOS-9776?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 ) Enable Caching Defaults for "Import Data" extension ( 
https://osgeo-org.atlassian.net/browse/GEOS-9776?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 )

Issue Type: Improvement Affects Versions: 2.18.0 Assignee: Unassigned 
Components: Importer Created: 21/Oct/20 4:19 AM Priority: High Reporter: 
Legendary Master ( 
https://osgeo-org.atlassian.net/secure/ViewProfile.jspa?accountId=5aa8e9d257cbe12a4a3efeca
 )

Currently "Caching Defaults" settings doesn't take effect to importer extension.
I wanted to import more than 100 layers with mapbox vector tiles.
It is very annoying to change caching settings one by one for 100 layers.
So is there any possibility that "Caching Defaults" takes effect to importer 
extension.

( 
https://osgeo-org.atlassian.net/browse/GEOS-9776#add-comment?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 ) Add Comment ( 
https://osgeo-org.atlassian.net/browse/GEOS-9776#add-comment?atlOrigin=eyJpIjoiOWRiMDMyYWNmOTc1NDQyYmI4ZTQ2NWUxZGNlMGFiODgiLCJwIjoiaiJ9
 )

Get Jira notifications on your phone! Download the Jira Cloud app for Android ( 
https://play.google.com/store/apps/details?id=com.atlassian.android.jira.core=utm_source%3DNotificationLink%26utm_medium%3DEmail
 ) or iOS ( 
https://itunes.apple.com/app/apple-store/id1006972087?pt=696495=EmailNotificationLink=8
 ) This message was sent by Atlassian Jira (v1001.0.0-SNAPSHOT#100149- 
sha1:841e0b1 )___
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel


Re: Apache Qpid connector.

2020-09-29 Thread Master Yoda
Hi Austin, thanks for the response. Yes, the protocol is AMQP. I will try
out the RabbitMQ connector with Qpid

thanks,
Parag


On Sat, Sep 26, 2020 at 12:22 AM Austin Cawley-Edwards <
austin.caw...@gmail.com> wrote:

> Hey (Master) Parag,
>
> I don't know anything about Apache Qpid, but from the homepage[1], it
> looks like the protocol is just AMQP? Are there more specifics than that?
> If it is just AMQP would the RabbitMQ connector[2] work for you?
>
> Best,
> Austin
>
> [1]: https://qpid.apache.org/
> [2]:
> https://ci.apache.org/projects/flink/flink-docs-stable/dev/connectors/rabbitmq.html
>
> On Fri, Sep 25, 2020 at 11:26 AM Master Yoda 
> wrote:
>
>>  Hello,   Is there a flink source and sink
>> from/to Apache Qpid. ? I searched around a bit but could not find one.
>> Would I need to write one if there isn't one already ?
>>
>> thanks,
>> Parag
>>
>


Apache Qpid connector.

2020-09-25 Thread Master Yoda
  Hello,   Is there a flink source and sink from/to
Apache Qpid. ? I searched around a bit but could not find one. Would I need
to write one if there isn't one already ?

thanks,
Parag


Re: Restricted/new users: introduce yourself!

2020-09-13 Thread AudioGames . net Forum — Introduce Yourself to Gain Access : bgt-master via Audiogames-reflector


  


Re: Restricted/new users: introduce yourself!

I am interested in coding and want to chat about them here in the forum. I know a little bgt, and I opened an account like this to find out the answer to my questions, it will be great if you open my message, thank you.

URL: https://forum.audiogames.net/post/570324/#p570324




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Quer Acertar na Lotofácil? Agora Sim!

2020-08-23 Thread Lotofácil Master

Seu cliente de e-mail não pode ler este e-mail.
Para visualizá-lo on-line, por favor, clique aqui:
https://2.wechat.app.br/sistema/display.php?M=90253310=dbae8c523811da2edd5284317e37549e=1426=737=83


Para parar de receber nossos
Emails:https://2.wechat.app.br/sistema/unsubscribe.php?M=90253310=dbae8c523811da2edd5284317e37549e=737=1426
-- 
Ubuntu-sugarteam mailing list
Ubuntu-sugarteam@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-sugarteam


Re: [go-nuts] Generics and parentheses

2020-07-15 Thread lotus . developer . master
Personally think this way is easier to read. In this way, I wrote a few 
examples, which may be different from the creator

* For example: define a node
type Node struct{
prev *Node
data T //data *T
next *Node
}
* Call request
var node Node

* Let's take another example, such as the maximum value
* What to do when different types require the maximum value
type maxIntCallback func(one,two int) bool
type maxFloat64Callback func(one,two float64 /*float32*/) bool
//...other types

//If you want to use it, such as a certain function. func 
intCompare(one,two int,max Max) int
//1.
one,two := 10,20
max := Compare(one,two,_Max)
fmt.Println(max)


func _Max(one,two int) int {
   max := one
   if max > two{
   return max
   }
   return two
}
func intCompare(one,two int,max Max) int {
   return max(one,two)
}

//2.
one,two := 10,20
   var max = Compare(one,two, func(one, two int) int {
   max := one
   if max > two{
   return max
   }
   return two
})

* Although the above example can also be done using interfaces, it's like 
all parameters in Java use Object as the type, so it is always bad.

* Here is a generic example

type maxCallback func(one,two T) T
func compare(one,two T,call maxCallback) T {
   return call(one,two)
}

//int
one,two := 10,20
compare(one,two,func(one,two int ) int {
   //...
})

//float
one,two := 10.0,20.0
compare(one,two,func(one,two float64 ) float64 {
   //...
})

* In this way, it is easier to read and people-oriented



在 2020年7月15日星期三 UTC+8下午1:06:24,Paul Johnston写道:
>
> If the generic expression  was always attached/constrained to the 
> "type" or "func" keyword (rather than the type or function name), perhaps 
> this would decrease the lookahead problems with lexing?  For example:
>
> *type Point struct {*
> *x, y int*
> *data T*
> *}*
>
> *type Transformer interface {*
> *Transform(R) S*
> *}*
>
> *func Stringify(s []T) string {*
> *}*
>
> *type Vector []T*
>
>
>
> On Tuesday, July 14, 2020 at 10:45:41 PM UTC-6 ren...@ix.netcom.com wrote:
>
>> My opinion is that every major language (no flames please… lots of 
>> developers write lots of programs and make money doing it) that supports 
>> generics uses < > for generic types, so Go should too - since there is no 
>> reason to deviate from this other than to avoid changes to the parser. 
>> Seems better to pay this cost once - rather than every Go program that uses 
>> generics being harder to read for eternity (especially for those readers 
>> that use a lot of languages). 
>>
>> > On Jul 14, 2020, at 11:13 PM, Ian Lance Taylor  
>> wrote: 
>> > 
>> > On Tue, Jul 14, 2020 at 8:21 PM Ahmed (OneOfOne) W.  
>> wrote: 
>> >> 
>> >> This feels a little better, but honestly I'm still all for angle 
>> brackets or like Watson suggested, guillamets. 
>> >> 
>> >> fn(T1)(fn2(T2)(fn3(T3)(v))) // 1 
>> >> fn[T1](fn2[T2](fn3[T3](v))) // 2 
>> >> fn(fn2(fn3(v))) // 3 
>> >> fn«T1»(fn2«T2»(fn3«T3»v))) // 4 
>> >> 
>> >> To me, with a background in C++ and Typescript and a little bit of 
>> Rust, #3 and #4 are just natural and easier to read. 
>> > 
>> > The advantage of parentheses is that the language already uses 
>> > parentheses for lists in various places. Of course that is also the 
>> > disadvantage. 
>> > 
>> > When considering something other than parentheses, I encourage people 
>> > to look for objective reasons why one syntax is better than another. 
>> > It's going to be different from other aspects of the language. So 
>> > what reason would we have for preferring one syntax over another? 
>> > 
>> > For example: 
>> > 
>> > Robert already gave reasons why square brackets are better than angle 
>> brackets. 
>> > 
>> > The disadvantage of guillemets is that they are hard to type on many 
>> > keyboards. So to me either square brackets or angle brackets would be 
>> > better than guillemets. 
>> > 
>> > The disadvantage of a two character sequence such as <: :> is that it 
>> > is more typing. So again either square brackets or angle brackets 
>> > seem to me to be better. 
>> > 
>> > An example of a reason that square brackets might be a poor choice 
>> > would be ambiguous parsing, or cases where the code is harder to read. 
>> > 
>> > It's true that some other languages use angle brackets, but Go already 
>> > does many things differently. That is only a minor advantage for 
>> > angle brackets. To me at least it does not outweigh the 
>> > disadvantages. 
>> > 
>> > In short, please try to provide reasons for a different syntax. "It 
>> > looks good" is a valid reason, but please try to explain why it looks 
>> > better than square brackets or parentheses. 
>> > 
>> > Thanks. 
>> > 
>> > Ian 
>> > 
>> > -- 
>> > You received this message because you are subscribed to the Google 
>> Groups "golang-nuts" group. 
>> > To unsubscribe from this group and stop receiving emails from it, send 
>> an email to golang-nuts...@googlegroups.com. 
>> > To view this discussion on the web visit 

TTDo you know any sites hosting a free team talk server?

2020-06-03 Thread AudioGames . net Forum — Developers room : code-master via Audiogames-reflector


  


TTDo you know any sites hosting a free team talk server?

Hi:I have a question for you in this location. As you can see in the title, I want a server. Can you give me a place like a free hosting site?

URL: https://forum.audiogames.net/post/536683/#p536683




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Where can I find Bgt libraries?

2020-05-05 Thread AudioGames . net Forum — Developers room : code-master via Audiogames-reflector


  


Where can I find Bgt libraries?

Hi:I want bgt libraries, map systems, weapon systems, tutorials to make enemies ...These will be the tags and bgt files to add to the game.I don't know if I can find it. Can you help me find this thing that I need so much?

URL: https://forum.audiogames.net/post/526002/#p526002




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


[sympy] Forcing no rewrite when creating expression

2020-04-27 Thread Bracket Master
Hello all,
Say I have the following:

```python
>>> sin(x)*cos(x)*cos(x)
sin(x)*cos(x)**2
```

How can I have sympy not rewrite/simplify when creating and expression.
That is, I want this:


```python
>>> sin(x)*cos(x)*cos(x)
sin(x)*cos(x)*cos(x)
```

I see something [here](https://docs.sympy.org/latest/modules/rewriting.html)
about term rewriting, but I would like to turn it off.

Basically, my use case is, I'm working with phasors, and I don't want 
sympy distributing the magnitude into the expression.

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sympy+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/ab4c-25c9-47a1-b774-077a0696fed7%40googlegroups.com.


Re: Restricted/new users: introduce yourself!

2020-04-02 Thread AudioGames . net Forum — Introduce Yourself to Gain Access : code-master via Audiogames-reflector


  


Re: Restricted/new users: introduce yourself!

I'm 18 years old, I'm dealing with codes, my favorite job is codes, and I signed up for this forum.I'm blind, please let me open a subject!

URL: https://forum.audiogames.net/post/515251/#p515251




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: [geb-user] best place in code to call geb Configuration's setDefaultWaitTimeout()

2020-04-01 Thread Master Automator
Thanks Marcin & Alexander. Just to clarify ...

We already have a default value in Geb config:

waiting { timeout = 30 ... }


We can run "gradlew ... specs" and specify a different timeout override 
value, say 42 instead of Geb config's default 30 ... like this:

gradlew  -DgebNewTimeout=42 --tests someSpec ...


At the moment, the way this is implmeneted, our Configuration Reader class 
parses this cmd line timeout value of 42 and then sets the new default 
timeout value to 42 using : 

browser.getConfig().setDefaultWaitTimeout(<>)

This is done in setupSpec() since the above code line needs the browser 
object to get the config.

What are the other ways to get hold of the Geb Config object? Are there any 
better ways to do the above?

Thanks,
Kiran

On Tuesday, March 31, 2020 at 7:17:58 AM UTC-7, Marcin Erdmann wrote:
>
> That would be my suggestion as well, to put it in your Geb config script.
>
> On Tue, Mar 31, 2020 at 2:06 PM Alexander Kriegisch <
> alex...@kriegisch.name > wrote:
>
>> Have you tried GebConfig.groovy?
>> https://gebish.org/manual/current/#default-waiting-configuration
>>
>> -- 
>> Alexander Kriegisch
>> https://scrum-master.de
>>
>>
>> Master Automator schrieb am 31.03.2020 09:13 (GMT +07:00):
>>
>> > In the Gradle command that runs our Geb specs, we pass in the command
>> > line a default timeout for that set of specs.
>> > 
>> > Currently, we use this parsed cmd line timeout arg in the setupSpec()
>> > method:
>> > 
>> >   browser.getConfig().setDefaultWaitTimeout(<>)
>> > 
>> > Is there a way to not have to do this in every spec but do it in a
>> > single place if we are ok with the same default timeout for the set of
>> > specs?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Geb User Mailing List" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to geb-...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/geb-user/20200331130607.14B4A44C08DF%40dd39516.kasserver.com
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "Geb 
User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to geb-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/geb-user/6e5ecd99-3c9a-4ace-8adf-fb444bf4b8cd%40googlegroups.com.


[geb-user] best place in code to call geb Configuration's setDefaultWaitTimeout()

2020-03-30 Thread Master Automator
Hello folks,

Hope you are staying safe and doing ok!

In the Gradle command that runs our Geb specs, we pass in the command line 
a default timeout for that set of specs.

Currently, we use this parsed cmd line timeout arg in the setupSpec() 
method:

   -   browser.getConfig().setDefaultWaitTimeout(<>)

Is there a way to not have to do this in every spec but do it in a single 
place if we are ok with the same default timeout for the set of specs?

Thanks,
Kiran

-- 
You received this message because you are subscribed to the Google Groups "Geb 
User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to geb-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/geb-user/2bcdff60-99ff-4813-ae01-c61a6345f8b1%40googlegroups.com.


Lzip program ported to Android.

2020-03-13 Thread Master -Console_
Hello i have compiled Lzip to work with Android in a terminal-interface.
You can see the build and sources here:
https://github.com/Master-Console/masterterm-utilities/tree/master/lzip
It works with all architectures and future Android versions, I would like
to know how you feel about this and i would recommend you to add it in your
Download section at https://www.nongnu.org/lzip/

Thanks for reading
-Yet Zio


Re: [KSHST-IT '6005'] Chanadssu & Alankara Questions 2010 to 2019

2020-03-12 Thread Anjanmaster Master Ramanna
Thanks, Raveesh sir

On Thu, Mar 12, 2020, 11:35 PM Raveesh kumar b  wrote:

>
>
> --
> ರವೀಶ್ ಕುಮಾರ್  ಬಿ.
> ಕನ್ನಡ  ಭಾಷಾ ಶಿಕ್ಷಕರು
> ಸರ್ಕಾರಿ ಪ್ರೌಢಶಾಲೆ
> ಕೇರ್ಗಳ್ಳಿ - ೫೭೦ ೦೨೬
> ಮೈಸೂರು ತಾಲೂಕು ಮತ್ತು ಜಿಲ್ಲೆ
> ಸಂಚಾರಿ ವಾಣಿ ಸಂಖ್ಯೆ ೯೪೪೮೯ ೫೮೪೯೮
>
> --
> You received this message because you are subscribed to the Google Groups
> "KSHST" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to kshst+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/kshst/CADXX00qg4hdnKG4wyNt0ATw10-44Zbg0pvONZh4h0xwLTgg_TQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"KSHST" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kshst+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/kshst/CAFesSqB%2B766-M%3DDHdFvc1cUF%2BHvP3EcFhmz2rRp_08P%3Doakm3w%40mail.gmail.com.


[geb-user] Generating non-Junit reports ...automating the attaching of test execution results / screenshots from a CI system (e.g. Jenkins) to JIRA

2020-02-19 Thread Master Automator

I understand this maybe more of a Spock question than Geb ... 

*tldr;*

   - I am wondering what other formats of test execution results / reports 
   are easily generated when using Geb/Spock?  In addition to JUnit.


*Context:*

We are trying to upload test execution results (Junit reports) 
automatically generated by Geb / Spock into a test case management system. 
There are some known issues in Junit reports like tags (specifically tags 
representing the JIRA ticket number the test case is automating etc).  So I 
am wondering what other formats of test execution results / reports are 
easily generated when using Geb/Spock?


Also, is anyone here automating the attaching of test execution results / 
screenshots from a CI system (e.g. Jenkins) to JIRA based test case 
management systems (like Xray or Zephyr etc)?

Thanks in advance folks!




-- 
You received this message because you are subscribed to the Google Groups "Geb 
User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to geb-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/geb-user/1070b5cc-6255-4889-bc27-1ae588490047%40googlegroups.com.


OpenIKED missing EAP-MSCHAPv2 for client setup

2020-02-06 Thread Master One
To whom it may concern,

Please excuse me sending such a questionable bug or feature request
this way, I'm not subscribed to any OpenBSD mailing list and I'm not an
OpenBSD user yet but currently evaluating the move from GNU/Linux to
OpenBSD.

I have looked into the possibility to use the tools from the OpenBSD
base system to connect to a commercial VPN provider, which offers
access by IKEv2 IPsec with EAP-MSCHAPv2.

The problem now is that this does not seem to be possible with the
OpenIKED implementation in the OpenBSD base system, because EAP
MSCHAPv2 is supported on the "responder" (server) side only.

Was there any specific reason why this has not been implemented (yet)
or has this possibly been overlooked?

It would be a shame if everything needed is already present in the base
system and can not be used for that purpose, requiring strongSwan or
OpenVPN to be installed additionally.

Best wishes,

-- 
Michael



Re: CVS Update: xc (branch: trunk)

2020-02-05 Thread Master Molla2020
স X
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: https://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s


[UW-GIS-L] when you can't find a dataset that is supposedly public...

2020-01-29 Thread ScanDesign Master Studio
Hi all,

Hoping someone here enjoys the challenge of finding data (or that I’m missing 
something obvious). I’m looking for a WA DNR dataset about piers and docks in 
our lakes here. It’s one in a set of three (marine, lakes, rivers) and I have 
the other two but the lake set isn’t on their portal. I’ve emailed DNR and they 
pointed out marine and river again and then went radio silent… Neither of the 
other two include lake data, as far as I can find. I’m convinced it exists 
because it still shows up as a set on ArcGIS online, but it also can’t be 
loaded there. As far as I can tell, WAGDA is just sending me back to the DNR 
portal.


Over water structures in Lakes on State Aquatic Lands
ArcGIS online: 
https://www.arcgis.com/home/item.html?id=98ba5565f6b245249a239308bbb3e3c5 

Where I think it should be: 
https://fortress.wa.gov/dnr/arcgisext/weba_ext_prod1/rest/services/OpenData/WADNR_AQR_Open_Data/MapServer/0
 


Thanks for any help!
Krista




___
Uw-gis-l mailing list
Uw-gis-l@u.washington.edu
http://mailman13.u.washington.edu/mailman/listinfo/uw-gis-l


Re: [facegen] Re: Genetic Children

2019-12-28 Thread Master TMO
I did a sort of version of this manually, starting with a single face,
modifying it into two parents, and then modifying the original face again
into 4 siblings. An automatic way would be great. I'd thought about doing
something in an Excel spreadsheet, but not every slider has numeric values.

But I'm definitely a willing test subject if you need one.

Thanks!

On Sat, Dec 28, 2019, 12:50 PM FaceGen Expert  wrote:

>
> Yes, I see what you're asking.
>
> The issue with the current approach is that 'Tween' is an average, which
> reverts to the mean the more you do it.
>
> Genetic recombination is not the same as averaging, so I will add this
> feature at some point.
>
> Thank you for your suggestion.
>
> Best wishes,
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "FaceGen" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to facegen+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/facegen/a481556f-4d2f-4963-a535-8446dd409ff4%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"FaceGen" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to facegen+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/facegen/CAOXtt44KajkzYrTTg48KV-BN-J9HQaVt_jcFhyCRM0TXvvZ4hg%40mail.gmail.com.


[qubes-users] UEFI black screen stall

2019-12-13 Thread Master Node
Hey I recently made a post about x start up failing, I'm thinking this was from 
trying to run a raid configuration between two m2 drives in a sata adapter 
case. After I stopped doing that I have not seen the same error.

Now I am onto another problem and can just taste qubes os finally working again 
lol, this problem happens after install reboot, everything goes good untill it 
hits the finaly boot up and goes to a black screen and freezes, I have tried to 
do the 

mapbs=1
noexitboot=1

Work around adding it under both kernels when I reboot it doesnt do anything 
and I get the same black screen. 

If you are a pro at qubes you can msg me direct as well and i have no problem 
throwing you some money if you can expediate my head aches. Or you can comment 
here as well both work either way. 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/68cc9bc9-9cef-4829-a664-9e9f1259b1a2%40googlegroups.com.


[qubes-users] Re: X Startup Failed

2019-12-12 Thread Master Node
I will try to not top post iv read how it's done but it does not seem to have 
worked on my last msg, I dont see any other way to rely and I'm replying to the 
last msg of this thread. 

My intel cpu is a i7-4930MX with haswell gpu integrated. As I said before my 
whole system worked amazing before the DGPUs died on me, they were actually 2 
different gpus to one was a gtx 675m and the other I can not figure out what it 
is as of yet. But this is pretty interesting that qubes worked perfect on 2 
different nvidia gpus and now wont work on the integrated intel gpu. All the 
bios settings are right but x startup fails.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/a04e01ef-6542-444d-8102-2c463ff2a01a%40googlegroups.com.


FreeBSD Port: www/iridium update + www/ungoogled-chromium request

2019-12-12 Thread Master One via freebsd-chromium
Hello,

I've just seen on FreshPorts that Iridium browser is shown with version
2019.04.73_2 (which is the release from 10th April) last updated on
2019-11-07 although version 2019.11.78 has been released on that same
day:

https://github.com/iridium-browser/iridium-browser/releases

May I use that opportunity to suggest a port of ungoogled-chromium as
well, because it is considered the superior version of a Google free
experience:

https://forums.freebsd.org/threads/ungoogled-chromium.73240/

Regards,

-- 
M.

___
freebsd-chromium@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to "freebsd-chromium-unsubscr...@freebsd.org"


[qubes-users] Re: X Startup Failed

2019-12-11 Thread Master Node
I have not been given a chance to replied to anyone on here so im going to 
attempt to do it right,

I have tired to do the install the same way I had it before, it worked 
perfectly with 2 DGPUs both NVIDIA very surprising but no problems at all, 
I would take a USB then install it to internal drives. But now with the 
DGPUs both removed it wont install past the X start up failed. Graphical 
installer says X startup failed and then the GUI start up says critical 
unknown error with a very long log, I could try and get logs ported over if 
it comes down to it, but I would almost just buy another Dgpu if its the 
integrated inlet GPU thats not supported but I don't know how to verify 
that if its supported or not.

I really dont need a DGPU so if its possible to get intel dedicated to work 
this would be very optimal for me

UEFI mode leaves a bunch of scrambled white writing on a black screen 
instantly on boot, even with Dgpus  installed it never worked, legacy is 
only mode this is a old school alienware 18 inch, im guessing that is why.

'nouveau.modeset=0 rd.driver.blacklist=nouveau video=vesa:off'

seems to be a work around for other people who seemed to have the same 
problem i sort of understand what it does i just need to apply it in 
different ways then i was trying, i think.

One of the main things i do not understand is why qubes would work with my 
DGPUs but I never applied them to any VM, from my knowledge everything i 
thought was ran off the Intel GPU, maybe the DGPUs were applied in the back 
ground but they seemed to sit in the PCI sandbox. 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/412b9495-4208-4f08-94ea-b1ac231ae71a%40googlegroups.com.


[qubes-users] X Startup Failed

2019-12-11 Thread Master Node
My 3rd post on this forum seems like the only person who offers to pay some one 
over and over and yet one of the few that doesnt even get a response back, this 
is getting depressing. 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/77881c53-e9fd-4693-9a60-da3177335bdc%40googlegroups.com.


[qubes-users] X Startup Failed

2019-12-10 Thread Master Node
Hi I am in some big time need of help here, I have been playing with qubes for 
a few years now but recently put it onto my alienware laptop, this laptop had 2 
gpus in it, unfortunately I put it on my lap for 15 minutes and fired the one 
gpu, I had both gpus taken out by a professional as to limit the risk of 
breaking anything, qubes worked perfect on this laptop in legacy mode before 
hand everything besides wifi card worked.

Now I am doing a reinstall of qubes and getting everything to work untill it 
hits the X startup failed aborting install. I have tired to add this work 
around to the boot loader at grub screen with tab 

'nouveau.modeset=0 rd.driver.blacklist=nouveau video=vesa:off'

I add it at the end of the text not sure if that matters but it does not do 
anything different for me, everything in BIOS has been double checked and 
played around with for hours, I would love to run this laptop with qubes and I 
dont care how much it takes to make this happen so if you know some serious 
stuff about qubes and would like to help or get paid to help me here there 
please reach out to me and we can go from there.

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/81e23e20-121a-4772-892f-247e658d00d2%40googlegroups.com.


[Freeipa-users] Re: How to determine when host last checked in?

2019-12-10 Thread Master Blaster via FreeIPA-users
Thanks for the response, François.

I'm somewhat surprised there isn't a way to determine both host and user 
activity already.

For hosts, doesn't the Kerberos ticket have to be renewed on a regular basis?  
Couldn't that timestamp be used?
___
FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org
To unsubscribe send an email to freeipa-users-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-users@lists.fedorahosted.org


[Freeipa-users] Re: How to determine when host last checked in?

2019-12-10 Thread Master Blaster via FreeIPA-users
Nothing?  No ideas?

How do large organizations with 1000s of hosts handle this?
___
FreeIPA-users mailing list -- freeipa-users@lists.fedorahosted.org
To unsubscribe send an email to freeipa-users-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/freeipa-users@lists.fedorahosted.org


[Bug 1851845] [NEW] Windows 10 panics with BlueIris

2019-11-08 Thread Master
Public bug reported:

Running Windows 10 64bit.  Starting BlueIris 64 bit causes Windows to
panic with CPU type is set higher than Penryn or CPU type = host.

I have been able to reproduce the same issue on Proxmox 4,5,6 as well as
oVirt 3. and 4.

Does not panic when CPU type is set to kvm64.


pve-qemu-kvm/stable 4.0.1-4 amd64

 /usr/bin/kvm -id 102 -name win7-01 -chardev socket,id=qmp,path=/var/run
/qemu-server/102.qmp,server,nowait -mon chardev=qmp,mode=control
-chardev socket,id=qmp-event,path=/var/run/qmeventd.sock,reconnect=5
-mon chardev=qmp-event,mode=control -pidfile /var/run/qemu-
server/102.pid -daemonize -smbios
type=1,uuid=3ec61114-c30c-4719-aa00-f3f05be22d48 -smp
8,sockets=1,cores=8,maxcpus=8 -nodefaults -boot menu=on,strict=on
,reboot-timeout=1000,splash=/usr/share/qemu-server/bootsplash.jpg -vnc
unix:/var/run/qemu-server/102.vnc,password -no-hpet -cpu
penryn,+lahf_lm,+sep,+kvm_pv_unhalt,+kvm_pv_eoi,hv_spinlocks=0x1fff,hv_vapic,hv_time,hv_reset,hv_vpindex,hv_runtime,hv_relaxed,hv_synic,hv_stimer,hv_ipi,enforce
-m 12000 -device pci-bridge,id=pci.2,chassis_nr=2,bus=pci.0,addr=0x1f
-device pci-bridge,id=pci.1,chassis_nr=1,bus=pci.0,addr=0x1e -device
vmgenid,guid=50deb929-1974-4fd0-9ad3-71722149d568 -device piix3-usb-
uhci,id=uhci,bus=pci.0,addr=0x1.0x2 -device usb-
tablet,id=tablet,bus=uhci.0,port=1 -device VGA,id=vga,bus=pci.0,addr=0x2
-chardev socket,path=/var/run/qemu-server/102.qga,server,nowait,id=qga0
-device virtio-serial,id=qga0,bus=pci.0,addr=0x8 -device
virtserialport,chardev=qga0,name=org.qemu.guest_agent.0 -device virtio-
balloon-pci,id=balloon0,bus=pci.0,addr=0x3 -iscsi initiator-
name=iqn.1993-08.org.debian:01:203582cea152 -drive if=none,id=drive-
ide2,media=cdrom,aio=threads -device ide-cd,bus=ide.1,unit=0,drive
=drive-ide2,id=ide2,bootindex=200 -drive
file=/disk02/prox/images/102/vm-102-disk-0.raw,if=none,id=drive-
virtio0,cache=writeback,format=raw,aio=threads,detect-zeroes=on -device
virtio-blk-pci,drive=drive-
virtio0,id=virtio0,bus=pci.0,addr=0xa,bootindex=100 -drive
file=/dev/disk/by-id/ata-WDC_WD80EMAZ-00WJTA0_7SGZLHYC-part1,if=none,id
=drive-virtio1,cache=writeback,format=raw,aio=threads,detect-zeroes=on
-device virtio-blk-pci,drive=drive-virtio1,id=virtio1,bus=pci.0,addr=0xb
-netdev type=tap,id=net0,ifname=tap102i0,script=/var/lib/qemu-server
/pve-bridge,downscript=/var/lib/qemu-server/pve-bridgedown,vhost=on
-device virtio-net-
pci,mac=1e:be:cb:0b:6f:13,netdev=net0,bus=pci.0,addr=0x12,id=net0,bootindex=300
-netdev type=tap,id=net1,ifname=tap102i1,script=/var/lib/qemu-server
/pve-bridge,downscript=/var/lib/qemu-server/pve-bridgedown,vhost=on
-device virtio-net-
pci,mac=EA:76:56:16:2F:D7,netdev=net1,bus=pci.0,addr=0x13,id=net1,bootindex=301
-rtc driftfix=slew,base=localtime -machine type=pc -global kvm-
pit.lost_tick_policy=discard

** Affects: qemu
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1851845

Title:
  Windows 10 panics with BlueIris

Status in QEMU:
  New

Bug description:
  Running Windows 10 64bit.  Starting BlueIris 64 bit causes Windows to
  panic with CPU type is set higher than Penryn or CPU type = host.

  I have been able to reproduce the same issue on Proxmox 4,5,6 as well
  as oVirt 3. and 4.

  Does not panic when CPU type is set to kvm64.

  
  pve-qemu-kvm/stable 4.0.1-4 amd64

   /usr/bin/kvm -id 102 -name win7-01 -chardev
  socket,id=qmp,path=/var/run/qemu-server/102.qmp,server,nowait -mon
  chardev=qmp,mode=control -chardev socket,id=qmp-
  event,path=/var/run/qmeventd.sock,reconnect=5 -mon chardev=qmp-
  event,mode=control -pidfile /var/run/qemu-server/102.pid -daemonize
  -smbios type=1,uuid=3ec61114-c30c-4719-aa00-f3f05be22d48 -smp
  8,sockets=1,cores=8,maxcpus=8 -nodefaults -boot menu=on,strict=on
  ,reboot-timeout=1000,splash=/usr/share/qemu-server/bootsplash.jpg -vnc
  unix:/var/run/qemu-server/102.vnc,password -no-hpet -cpu
  
penryn,+lahf_lm,+sep,+kvm_pv_unhalt,+kvm_pv_eoi,hv_spinlocks=0x1fff,hv_vapic,hv_time,hv_reset,hv_vpindex,hv_runtime,hv_relaxed,hv_synic,hv_stimer,hv_ipi,enforce
  -m 12000 -device pci-bridge,id=pci.2,chassis_nr=2,bus=pci.0,addr=0x1f
  -device pci-bridge,id=pci.1,chassis_nr=1,bus=pci.0,addr=0x1e -device
  vmgenid,guid=50deb929-1974-4fd0-9ad3-71722149d568 -device piix3-usb-
  uhci,id=uhci,bus=pci.0,addr=0x1.0x2 -device usb-
  tablet,id=tablet,bus=uhci.0,port=1 -device
  VGA,id=vga,bus=pci.0,addr=0x2 -chardev socket,path=/var/run/qemu-
  server/102.qga,server,nowait,id=qga0 -device virtio-
  serial,id=qga0,bus=pci.0,addr=0x8 -device
  virtserialport,chardev=qga0,name=org.qemu.guest_agent.0 -device
  virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3 -iscsi initiator-
  name=iqn.1993-08.org.debian:01:203582cea152 -drive if=none,id=drive-
  ide2,media=cdrom,aio=threads -device ide-cd,bus=ide.1,unit=0,drive
  =drive-ide2,id=ide2,bootindex=200 -drive
  

Re: [Opensim-dev] NULL_Key does not equal FALSE

2019-11-05 Thread Grid Master
Nevermind I was testing on YEngine not on X, I forgot


On Tue, Nov 5, 2019 at 8:21 PM Cinder Roxley 
wrote:

> It’s a bug http://opensimulator.org/mantis/view.php?id=5844
>
>
> On November 5, 2019 at 6:51:37 PM, Frans (mrfr...@gmail.com) wrote:
>
> Hi,
> We have upgraded the OSCC grid to version 0.9.1.0, and I noticed a change
> in script behavior.
> in the past, in version 0.8.2.1 for example, NULL_KEY
> or ---- would evaluate as FALSE when put in
> a IF statement.
> In the latest version it evaluates as TRUE.
>
> Is this the intended behavior?
>
> Example Script:
>
> > default
> > {
> > state_entry()
> > {
> > llSitTarget(<0,0,0.5>, ZERO_ROTATION );
> > }
> > changed(integer change)
> > {
> > if(change & CHANGED_LINK)
> > {
> > key agent = llAvatarOnSitTarget();
> > llOwnerSay((string)agent);
> > if(agent)
> > {
> > llInstantMessage(llAvatarOnSitTarget(), "test");
> > }
> > }
> > }
> > }
>
>
> Regards,
> --
> Frans Charming
> Jeroen Frans
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


Re: [Opensim-dev] NULL_Key does not equal FALSE

2019-11-05 Thread Grid Master
I"m not seeing that behavior , with my test script ..

 default
 {
 state_entry()
 {
 llSitTarget(<0,0,0.5>, ZERO_ROTATION );
 }
 changed(integer change)
 {
 if(change & CHANGED_LINK)
 {
 key agent = llAvatarOnSitTarget();
 llOwnerSay((string)agent);
 if(agent)
 {
 llWhisper(0, "agent = true and has sitter");
 return;
 }
 else if (!agent)
 {
 llWhisper(0, "!agent = false and No Sitter");
 return;
}
else llOwnerSay("I'm confused");
 }
 }
 }


And the code shows ,

  static public implicit operator Boolean(LSLString s)
{
if (s.m_string.Length == 0)
{
return false;
}
if (s == "----")
{
return false;
}
else
{
return true;
}
}


On Tue, Nov 5, 2019 at 8:21 PM Cinder Roxley 
wrote:

> It’s a bug http://opensimulator.org/mantis/view.php?id=5844
>
>
> On November 5, 2019 at 6:51:37 PM, Frans (mrfr...@gmail.com) wrote:
>
> Hi,
> We have upgraded the OSCC grid to version 0.9.1.0, and I noticed a change
> in script behavior.
> in the past, in version 0.8.2.1 for example, NULL_KEY
> or ---- would evaluate as FALSE when put in
> a IF statement.
> In the latest version it evaluates as TRUE.
>
> Is this the intended behavior?
>
> Example Script:
>
> > default
> > {
> > state_entry()
> > {
> > llSitTarget(<0,0,0.5>, ZERO_ROTATION );
> > }
> > changed(integer change)
> > {
> > if(change & CHANGED_LINK)
> > {
> > key agent = llAvatarOnSitTarget();
> > llOwnerSay((string)agent);
> > if(agent)
> > {
> > llInstantMessage(llAvatarOnSitTarget(), "test");
> > }
> > }
> > }
> > }
>
>
> Regards,
> --
> Frans Charming
> Jeroen Frans
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


[qubes-users] Kernal panic on boot

2019-11-02 Thread Master Node
Hi I was finally able to get a working and running system, I had updated 
everything to whonix 15 and debian 10 leaving fedora 26 as is.

I had turned my pc off and restarted it as normal booting legacy USB threw my 
external m2 drive, as that is how I was able to install I get the qubes grub 
screen. Usually it would just boot for me normally but now I get a kernal panic 
and it closes. But if I go to advanced option - plane version 4.8 - xen 4.8 and 
linux 4.14.18-1.pvops

Is the only one that will allow my qubes to start. 

I tried down grading my kernal to since I thought it might be some kind of 
conflication but it shouldnt be every thing was working fine while updated.

Kernal 4.19.80-1 was down graded to 4.14.18-1 with in the global settings 

When I boot and try to start sys-net network connections I get an error reading 

PCI device dom0:04:_00.0 does not exist

None of this happened when I could just boot normally like I had been doing 
before I did a full update and shut down.

Please let me know what you think I can do any help is appreciated 

Thank you

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/5587eda5-19fd-4545-aecd-71c21273ea49%40googlegroups.com.


[qubes-users] whonix ws 15 update failed

2019-11-02 Thread Master Node
Was not able to get around these problems on the whonix install corruption, did 
a full restart, debian problem was because of grub menu install of not knowing 
where to save the update. 

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/f296f941-ec99-41ef-8f25-faa254ef5156%40googlegroups.com.


[qubes-users] whonix ws 15 update failed

2019-10-31 Thread Master Node
hi I have been interesting with using qubes on and off for some time now, I
am trying to learn it enough so it can become my every day os.

I have hit a wall in my upgrades of whonix WS 15 for 3 days now, i dont
want to do a wipe id like to learn how to fix things but Iv read 30
different pages on removing reinstalling updating and so on.

the problem happened when i ran the  sudo qubesctl state.sls qvm.anon-whonix

i didnt realise that it would not show a status bar and after about 3 hours
with a very bad internet connection i canceled it. now when i rerun the
command i get
 10 seceded and 3 failed the ones that failed are all WS-15s

with an error that read
Error creating vm got empty response from qubesd see journalcrtl in dom0
virtual machine does not exist
skipping due to previous failure

when i run journalctl in dom0 i only see red error labled
dom0 kernal: ipmi:dmi invalid off set 0
dom0 systemd-modules-load[221]: failed to find module 'uinput'
dom0 xenstored[2567]: TDB: tdb_open_ex: could not open file
/var/lib/xenstored/tdb: no such file
this is all i could find on that

I still have my whonix 14s iv updated them after uninstalling GW15 and
trying to reinstall WS+GW again together still same 3 set of rejections on
the ws creations

i also ran a whoxicheck in WS14 this gave me back
i get 2 errors one that debian packages cant check for software update
i run the up and get error

could not get lock /var/lib/apt/list/lock - open
unable to lock directory

my tor clock has been set right it as well with kdesudo clock

please let me know what you think i can do to update to WS 15 and make all
these error come out clean!

thank you for your time

-- 
You received this message because you are subscribed to the Google Groups 
"qubes-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to qubes-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/qubes-users/CAMrMw2ZjCVRYeeA3BzLR99kayZZHVA5-Z8SCrgPsS%3DFoxHSCxQ%40mail.gmail.com.


[UW-GIS-L] ArcGIS online 'relationship' drawing error ideas?

2019-10-11 Thread ScanDesign Master Studio
Hey GISers,

I’m trying to use ArcGIS online (which may have been my first mistake) so that 
students can instantly see data they are uploading into a shared google sheet. 
That part is in theory working great, but the representation of the data is not 
doing what I want. Others with this problem on the forum are told to contact 
support, so I chatted with their support who told me to call, who told me I 
don’t get support as a student…… so our BE tech team directed me here.

The map is here: https://arcg.is/1LXy1j0 <https://arcg.is/1LXy1j0>

The problem is that the colored dots use the ‘relationship’ drawing method 
comparing two variables from our data sheet. I want it to show a combined score 
of 8 (the high-high max of two 4s) as purple, but currently only shows blue as 
the max, which doesn’t match the generated legend. I think the root of the 
problem is that it keeps telling me I can’t set up a 4x4 grid… anyways, sound 
like a fun challenge? Or perhaps an obvious fix..

Thanks,
Krista


Krista Doersch
Teaching Assistant
Scan|Design Master Studio

sdstu...@uw.edu
http://courses.be.uw.edu/SDMasterStudio/

___
Uw-gis-l mailing list
Uw-gis-l@u.washington.edu
http://mailman13.u.washington.edu/mailman/listinfo/uw-gis-l


Покана за обучение - БИЗНЕС КОМУНИКАЦИЯ, 21 ноември, София - водещ: Дерек Бортуик, UK

2019-09-24 Thread Master Events
null
BG Mails, Novi Iskar, 5 Golo bardo str, Sofia, Sofia - town, 1000, Bulgaria
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


jooq 3.12 with jpms

2019-09-07 Thread Christian Master
Is there a way to use the OS version the JPMS way?
Thx
chris

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jooq-user/4c192bfa-045e-4cc1-a2c0-ac0f6375e04b%40googlegroups.com.


Re: [Opensim-dev] opensim.ini / robust.ini [AccessControl]

2019-08-26 Thread Grid Master
http://opensimulator.org/viewgit/?a=commit=opensim=f9a2fbed83a33a5734fbd566f356b1fb67dd2c11


This was changed a bit a while back ..


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Mon, Aug 26, 2019 at 9:33 PM Michel Beauregard  wrote:

> It might interest some to know that the accessControl feature found in
> configuation files  seem to be broken in version 0901 .
>
>
> [AccessControl]
>
> ;# {AllowedClients} {} {Bar (|) separated list of allowed clients} {}  ;;
> Bar (|) separated list of viewers which may gain access to the regions.  ;;
> One can use a substring of the viewer name to enable only certain  ;;
> versions  ;; Example: Agent uses the viewer "Imprudence 1.3.2.0"  ;; -
> "Imprudence" has access  ;; - "Imprudence 1.3" has access  ;; - "Imprudence
> 1.3.1" has no access  ; AllowedClients = ""Does not seem to work as
> intended anymore in version  0901,  It use to be that the version data
> would be presented in the form Imprudence 1.3.2.0 So it could be validated
> with the different spelling  presented in the example. But version 0901
> present the version only of the viewer in the data in the form without
> viewer name:1.3.2.0
>  This makes the viewer rejected if presented like the first example
> because it does not match the data receive in version field.
>  - "Imprudence" has access   <<< incorrectly rejected. hope it helps
>
> GiMiSa
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


[ubuntu-studio-users] Install dock on ubuntu studio19.04

2019-08-19 Thread DCT Master

Hi all,

I have tried installing several docks for ubuntu studio 19.04, and the 
ones I have tried all have a bugs on ubuntu studio which makes them not 
usable. Are there any docks that work without any problems on ubuntu 
studio 19.04? I have searched on the internet and can't seem to find one.



Thanks in advance,


--
ubuntu-studio-users mailing list
ubuntu-studio-users@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-studio-users


Re: [Opensim-dev] Rigged mesh avatars in opensim

2019-08-19 Thread Grid Master
Or if you actually explore the repo ..

https://github.com/RuthAndRoth/Ruth/tree/master/Mesh/Avatar%20Roth

On Mon, Aug 19, 2019 at 10:43 AM Kevin Cozens  wrote:

> On 2019-08-18 6:54 p.m., Grid Master wrote:
> > https://github.com/RuthAndRoth
>
> I hear about Roth now and then but where do you find it? The link above
> only
> has Ruth. Is Roth still in development or only available from an SL
> website?
>
> --
> Cheers!
>
> Kevin.
>
> http://www.ve3syb.ca/   | "Nerds make the shiny things that
> https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
>  | that's why we're powerful"
> Owner of Elecraft K2 #2172  |
> #include  | --Chris Hardwick
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


Re: [Opensim-dev] Rigged mesh avatars in opensim

2019-08-18 Thread Grid Master
Athena , legit?

I have not laughed so hard in a long time ...


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Sun, Aug 18, 2019 at 6:52 PM Mike Higgins  wrote:

> There are several, "Ruth 2.0" is a completely open source one. Available
> from github at https://github.com/RuthAndRoth or packaged ready-to wear
> from many places. There is RuthandRoth island in OSGrid where you can
> get  that.
>
> Athena is a free mesh body that is only available in a ready-to wear
> form in many places. I've most recently seen it in a Botique on
> Escapades in OSGrid, along with some clothes for it.
>
> I've heard of others, but I'm sure the two above are free and not
> copy-botted.
>
> On 8/18/2019 3:34 PM, Dr Ramesh Ramloll wrote:
> > Hello,
> > Does anyone know if there are rigged mesh avatars available for opensim?
> I
> > found one shop on a grid that offers avatars that look very similar to SL
> > ones but it is not clear if they are legit or not.
> > Regards,
> > Ramesh
> >
> > LinkedIn 
> > ___
> > Opensim-dev mailing list
> > Opensim-dev@opensimulator.org
> > http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
> >
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


Re: [Opensim-dev] Rigged mesh avatars in opensim

2019-08-18 Thread Grid Master
There are a few , but also some questionable ones ...

There is an opensource project .
https://github.com/RuthAndRoth


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Sun, Aug 18, 2019 at 6:34 PM Dr Ramesh Ramloll 
wrote:

> Hello,
> Does anyone know if there are rigged mesh avatars available for opensim? I
> found one shop on a grid that offers avatars that look very similar to SL
> ones but it is not clear if they are legit or not.
> Regards,
> Ramesh
>
> LinkedIn 
> ___
> Opensim-dev mailing list
> Opensim-dev@opensimulator.org
> http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev
>
___
Opensim-dev mailing list
Opensim-dev@opensimulator.org
http://opensimulator.org/cgi-bin/mailman/listinfo/opensim-dev


Re: [AFMUG] OT Movie Review

2019-08-18 Thread linktechs.email Post Master via AF
Chuck, what do you do for fun, you see lota movies and hang on list servs from 
what i gather ;)


- Original Message -
 From: Chuck McCown [mailto:ch...@wbmfg.com]
 To: af@af.afmug.com
 Sent: Sun, 18 Aug 2019 14:51:40 -0600
 Subject: [AFMUG] OT Movie Review




Blinded by the Light

If you are a Springsteen fan, you will probably enjoy it.
It is not about him but how his music affected a young Pakistani man in the UK.
Based on a true story.

It was fun, not regretting spending the money to see it.
-- 
AF mailing list
AF@af.afmug.com
http://af.afmug.com/mailman/listinfo/af_af.afmug.com


Re: [AFMUG] Pole Mount Outdoor Enclosure

2019-08-18 Thread linktechs.email Post Master via AF
We have these have plenty of them.

http://www.linktechs.net/productcart/pc/viewPrd.asp?idproduct=3390idcategory=




- Original Message -
 From: Matt [mailto:matt.mailingli...@gmail.com]
 To: af@af.afmug.com
 Sent: Fri, 16 Aug 2019 15:21:09 -0500
 Subject: [AFMUG] Pole Mount Outdoor Enclosure

 Looking for a pole mount outdoor enclosure that will hold a couple
packetflux 1u rackinjectors, mikrotik 1u switch and few more things.
Anyone know of anything?

--
AF mailing list
AF@af.afmug.com
http://af.afmug.com/mailman/listinfo/af_af.afmug.com
-- 
AF mailing list
AF@af.afmug.com
http://af.afmug.com/mailman/listinfo/af_af.afmug.com


[Desktop-packages] [Bug 1767654] Re: [Intel Braswell] Cursor gets stuck on left side of the screen

2019-08-13 Thread icon master
Exact same issue with a Gigabyte BRIX GB-BACE-3150 with a Celeron N3150
(Braswell). I've had this issue with Lubuntu and Debian (lxqt with
xfwm4) with and without Compton as compositor.

I'm using a monitor plugged in with hdmi.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gnome-shell in Ubuntu.
https://bugs.launchpad.net/bugs/1767654

Title:
  [Intel Braswell] Cursor gets stuck on left side of the screen

Status in gnome-shell package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  When moving the cursor to the left side of the screen, it stops close
  to the edge. The cursor still moves over in the area but invisible
  until I move it out of the area. When it doesn't do this, glitching
  occurs on the screen where the cursor is until I log out. And on
  screen cast it shows the cursor going to the side of the screen and
  moving.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg 1:7.7+19ubuntu7
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Apr 28 09:49:51 2018
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx 
Integrated Graphics Controller [8086:22b1] (rev 21) (prog-if 00 [VGA 
controller])
 Subsystem: Intel Corporation Atom/Celeron/Pentium Processor 
x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [8086:2060]
  InstallationDate: Installed on 2018-04-27 (0 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
   Bus 001 Device 003: ID 05e3:0610 Genesys Logic, Inc. 4-port hub
   Bus 001 Device 002: ID 046d:c534 Logitech, Inc. Unifying Receiver
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: \\boot\vmlinuz-4.15.0-20-generic 
root=UUID=c6f92850-287a-4747-ac0d-3af593994183 ro quiet splash vt.handoff=1 
initrd=boot\initrd.img-4.15.0-20-generic
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/08/2017
  dmi.bios.vendor: Intel Corp.
  dmi.bios.version: PYBSWCEL.86A.0062.2017.0308.1328
  dmi.board.name: NUC5CPYB
  dmi.board.vendor: Intel Corporation
  dmi.board.version: H61145-408
  dmi.chassis.type: 3
  dmi.modalias: 
dmi:bvnIntelCorp.:bvrPYBSWCEL.86A.0062.2017.0308.1328:bd03/08/2017:svn:pn:pvr:rvnIntelCorporation:rnNUC5CPYB:rvrH61145-408:cvn:ct3:cvr:
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.91-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 18.0.0~rc5-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 18.0.0~rc5-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.19.6-1ubuntu4
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:18.0.1-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20171229-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.15-2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1767654/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Bug 1767654] Re: [Intel Braswell] Cursor gets stuck on left side of the screen

2019-08-13 Thread icon master
Exact same issue with a Gigabyte BRIX GB-BACE-3150 with a Celeron N3150
(Braswell). I've had this issue with Lubuntu and Debian (lxqt with
xfwm4) with and without Compton as compositor.

I'm using a monitor plugged in with hdmi.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1767654

Title:
  [Intel Braswell] Cursor gets stuck on left side of the screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1767654/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1767654] Re: [Intel Braswell] Cursor gets stuck on left side of the screen

2019-08-13 Thread icon master
Exact same issue with a Gigabyte BRIX GB-BACE-3150 with a Celeron N3150
(Braswell). I've had this issue with Lubuntu and Debian (lxqt with
xfwm4) with and without Compton as compositor.

I'm using a monitor plugged in with hdmi.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to mutter in Ubuntu.
https://bugs.launchpad.net/bugs/1767654

Title:
  [Intel Braswell] Cursor gets stuck on left side of the screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1767654/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Re: [KSHST-IT '5731'] Re: KSHST whatsapp group ಗೆ admin ಗಳು ಬೇಕಾಗಿದ್ದಾರೆ..

2019-08-03 Thread Basavaraj Master Kerolli
8971377310 Basavaraj master kerolli Head master aided high school mogha
tq.chincholli   dist.Gulbarga

On Sat, 3 Aug 2019, 7:04 pm madarsab pathan,  wrote:

> 8105608571 M M Pathan social science teacher
>
>
> On Wed, 17 Jul 2019, 5:36 am Suni Bm,  wrote:
>
>> KVM Manjunatha
>> 7353427830
>> Kannada teacher
>>
>> On Tue, 16 Jul 2019, 10:04 am abhigowda abhi > wrote:
>>
>>> ARUN M L
>>> MOB 9844332806
>>> LIONS HIGH SCHOOL. K R NAGAR
>>>
>>>
>>> <https://www.avast.com/en-in/recommend?utm_medium=email_source=link_campaign=sig-email_content=webmail_term=default3=13acdafc-397e-4b8e-8417-de2cae4d977f>
>>>  I’m
>>> protected online with Avast Free Antivirus. Get it here — it’s free
>>> forever.
>>> <https://www.avast.com/en-in/recommend?utm_medium=email_source=link_campaign=sig-email_content=webmail_term=default3=13acdafc-397e-4b8e-8417-de2cae4d977f>
>>> <#m_-7390333548758540451_m_-5695357604584638970_m_4030698649113982439_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>>
>>> On Sun, 28 Jan 2018 at 11:26, naveen h s  wrote:
>>>
>>>> NAVEEN H S   GHS RAJANUKUNTE BENGALURU NORTH  9449351512
>>>>
>>>> On Friday, June 24, 2016 at 7:43:27 AM UTC+5:30, kshstforum wrote:
>>>>>
>>>>> KSHST whatsapp group ಗೆ admin ಗಳು ಬೇಕಾಗಿದ್ದಾರೆ.. ಆಸಕ್ತಿ ಇರುವವರು ನಿಮ್ಮ
>>>>> ಹೆಸರು ಮತ್ತು ನಿಮ್ಮ whatapp ನ mobile number ಅನ್ನು ಈ ಮೇಲ್ ಗೆ reply ಮಾಡಿ.
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "KSHST" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to kshst+unsubscr...@googlegroups.com.
>>>> To post to this group, send email to kshst@googlegroups.com.
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/kshst/58b6ac23-0a34-4619-acce-cb85e5ba3f33%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/kshst/58b6ac23-0a34-4619-acce-cb85e5ba3f33%40googlegroups.com?utm_medium=email_source=footer>
>>>> .
>>>> For more options, visit https://groups.google.com/d/optout.
>>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "KSHST" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to kshst+unsubscr...@googlegroups.com.
>>> To post to this group, send email to kshst@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/kshst/CALoAsSrx-M702u-udTL4QrsVQnKZmmUYBmce7ANdgxEhBGZVZQ%40mail.gmail.com
>>> <https://groups.google.com/d/msgid/kshst/CALoAsSrx-M702u-udTL4QrsVQnKZmmUYBmce7ANdgxEhBGZVZQ%40mail.gmail.com?utm_medium=email_source=footer>
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "KSHST" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to kshst+unsubscr...@googlegroups.com.
>> To post to this group, send email to kshst@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/kshst/CA%2BwiTKmNf4OYkWP%2BhYy1QnjZJWU6EHhLbBZCVfMqmYjBKPVdgA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/kshst/CA%2BwiTKmNf4OYkWP%2BhYy1QnjZJWU6EHhLbBZCVfMqmYjBKPVdgA%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> You received this message because you are subscribed to the Google Groups
> "KSHST" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to kshst+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/kshst/CABypfUZ%2BrOnyTzBj63bgy0zy%3DEwo8A7m%3DK%3D8H-5H%3DMCYdA5kmg%40mail.gmail.com
> <https://groups.google.com/d/msgid/kshst/CABypfUZ%2BrOnyTzBj63bgy0zy%3DEwo8A7m%3DK%3D8H-5H%3DMCYdA5kmg%40mail.gmail.com?utm_medium=email_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"KSHST" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kshst+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/kshst/CANrS__TdeL%3DtHoG4R-pJuUTeoDMPAFtNVENEgOuH7rQAHuAjEQ%40mail.gmail.com.


[Yahoo-eng-team] [Bug 1836733] [NEW] seed ISO network changes fails to function

2019-07-16 Thread Master James
Public bug reported:

Ubuntu 19.04 with cloud-init 19

This is a local system while building an Ubuntu VM to eventually port to AWS, 
so internal systems.
[Eventually meta-data will be provided from the network as they do, but 
initially the seed.iso is the first layer to begin learning and developing for 
cloud-init.]

I tried many things for many days and could easily get the meta-data 
local-hostname to work.
This proves the system was correctly building and reading the cloud-init ISO 
mounting in VirtualBox as a seed.iso with files meta-data, user-data, and 
included network-config as the spec says should work.
Obviously the meta-data worked to change the local hostname. The 'user-data' 
file also worked as I will describe but network-config and the various methods 
of setting network info in meta-data, etc. failed to make any network changes 
to the booting system.

The first mystery I sold in this overly complected design in the end led to a 
hacky solution.
This is how the file /etc/cloud/cloud.cfg.d/50-curtin-networking.cfg gets 
written to netplan's /etc/netplan/50-cloud-init.yaml so that 'netplan apply' 
can work it's magic.

It would seem the file in /etc/netplan/50-cloud-init.yaml would need to get 
written to.
In case that is to be overrideen by seed.iso I tried disabling as recommended 
99-disable-network-config.cfg in hopes the seed.iso would take over instead but 
that now seems wrong attempt to understand what is needed. seeting dsmode to 
'local' in tyhe meta-data also did nothing (again this is with multiple methods 
for setting  networking version 2 in either meta-data or the network-config 
with mac matches, direct references to enp0s3 the network device name etc.

I learned the only and best cloud-init way to get it to actually write
those changes is reflected in the hacky solution I now depend on to be
able to set this via a seed.iso.

Over write the file 50-curtin-networking.cfg then run the cloud-init
commands to clean the logs and restart the init-local service and
ultimately apply the netplan networking changes.

This only works in the user-data file in the seed.iso mounted by
VirtualBox during startup if it already has run cloud-init clean --logs
so it does qualify as first run for these settings.


write_files:
  - path: /etc/cloud/cloud.cfg.d/50-curtin-networking.cfg
permissions: 0644
owner: root
content: |
  network:
  ethernets:
  enp0s3:
  addresses: [192.168.1.11/24]
  gateway4: 192.168.1.1
  dhcp4: false
  version: 2

runcmd:
  - echo "Restarting cloud-init Local (networking)"
  - cloud-init clean --logs
  - cloud-init init --local
  - netplan apply


I would expect the seed.iso to over ride all other settings and become
permanent and not need to be told to 'clean' so it should allow you to
change it's IP and other settings at boot (regardless of first-boot), it
is acceptable that the image has been issued a clean before shutdown
prior to subsequent repeated  scaling launches.


Note: it will be important to enable IPv4 and IPv6 addresses for each CPU on 
the Virtual device.


Anyway instead of going over the days of toil (path of discovery) I can assure 
many comprehensive attempts where tried before arrive at this only hacky 
solution.
It needs looking into. I will attempt to explain what was tried and report back 
to any suggestions of how this is suppose to be done if I misunderstood and so 
if that's not already documented there is at minimum a problem on that level.

** Affects: cloud-init
 Importance: Undecided
 Status: New


** Tags: network seed.iso

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to cloud-init.
https://bugs.launchpad.net/bugs/1836733

Title:
  seed ISO network changes fails to function

Status in cloud-init:
  New

Bug description:
  Ubuntu 19.04 with cloud-init 19

  This is a local system while building an Ubuntu VM to eventually port to AWS, 
so internal systems.
  [Eventually meta-data will be provided from the network as they do, but 
initially the seed.iso is the first layer to begin learning and developing for 
cloud-init.]

  I tried many things for many days and could easily get the meta-data 
local-hostname to work.
  This proves the system was correctly building and reading the cloud-init ISO 
mounting in VirtualBox as a seed.iso with files meta-data, user-data, and 
included network-config as the spec says should work.
  Obviously the meta-data worked to change the local hostname. The 'user-data' 
file also worked as I will describe but network-config and the various methods 
of setting network info in meta-data, etc. failed to make any network changes 
to the booting system.

  The first mystery I sold in this overly complected design in the end led to a 
hacky solution.
  This is how the file /etc/cloud/cloud.cfg.d/50-curtin-networking.cfg gets 
written to netplan's 

Re: [ms-stf '88434'] SSLC Maths action plan ...

2019-06-09 Thread Nagappa. master
super sir thank you

On Sun, 9 Jun, 2019, 2:00 PM SHREESHAIL ALYAL, 
wrote:

> I have prepared a maths action plan to improve the SSLC RESULT 2020, Plz
> go through it, Suggestions are welcome...
>
> --
> ---
> 1.ವಿಷಯ ಶಿಕ್ಷಕರ ವೇದಿಕೆಗೆ ಶಿಕ್ಷಕರನ್ನು ಸೇರಿಸಲು ಈ ಅರ್ಜಿಯನ್ನು ತುಂಬಿರಿ.
> -
> https://docs.google.com/forms/d/e/1FAIpQLSevqRdFngjbDtOF8YxgeXeL8xF62rdXuLpGJIhK6qzMaJ_Dcw/viewform
> 2. ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ಗಮನಿಸಬೇಕಾದ ಕೆಲವು ಮಾರ್ಗಸೂಚಿಗಳನ್ನು ಇಲ್ಲಿ ನೋಡಿ.
> -
> http://karnatakaeducation.org.in/KOER/index.php/ವಿಷಯಶಿಕ್ಷಕರವೇದಿಕೆ_ಸದಸ್ಯರ_ಇಮೇಲ್_ಮಾರ್ಗಸೂಚಿ
> 3. ಐ.ಸಿ.ಟಿ ಸಾಕ್ಷರತೆ ಬಗೆಗೆ ಯಾವುದೇ ರೀತಿಯ ಪ್ರಶ್ನೆಗಳಿದ್ದಲ್ಲಿ ಈ ಪುಟಕ್ಕೆ ಭೇಟಿ
> ನೀಡಿ -
> http://karnatakaeducation.org.in/KOER/en/index.php/Portal:ICT_Literacy
> 4.ನೀವು ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶ ಬಳಸುತ್ತಿದ್ದೀರಾ ? ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶದ ಬಗ್ಗೆ
> ತಿಳಿಯಲು -
> http://karnatakaeducation.org.in/KOER/en/index.php/Public_Software
> ---
> ---
> You received this message because you are subscribed to the Google Groups
> "Maths & Science STF" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mathssciencestf+unsubscr...@googlegroups.com.
> To view this discussion on the web, visit
> https://groups.google.com/d/msgid/mathssciencestf/CAMBv52p1KD3fCjH7qe8JDu9ZU1bVE1G7E-1HtpNbF9UzsffJ3A%40mail.gmail.com
> 
> .
>

-- 
---
1.ವಿಷಯ ಶಿಕ್ಷಕರ ವೇದಿಕೆಗೆ  ಶಿಕ್ಷಕರನ್ನು ಸೇರಿಸಲು ಈ  ಅರ್ಜಿಯನ್ನು ತುಂಬಿರಿ.
 
-https://docs.google.com/forms/d/e/1FAIpQLSevqRdFngjbDtOF8YxgeXeL8xF62rdXuLpGJIhK6qzMaJ_Dcw/viewform
2. ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ಗಮನಿಸಬೇಕಾದ ಕೆಲವು ಮಾರ್ಗಸೂಚಿಗಳನ್ನು ಇಲ್ಲಿ ನೋಡಿ.
-http://karnatakaeducation.org.in/KOER/index.php/ವಿಷಯಶಿಕ್ಷಕರವೇದಿಕೆ_ಸದಸ್ಯರ_ಇಮೇಲ್_ಮಾರ್ಗಸೂಚಿ
3. ಐ.ಸಿ.ಟಿ ಸಾಕ್ಷರತೆ ಬಗೆಗೆ ಯಾವುದೇ ರೀತಿಯ ಪ್ರಶ್ನೆಗಳಿದ್ದಲ್ಲಿ ಈ ಪುಟಕ್ಕೆ ಭೇಟಿ ನೀಡಿ -
http://karnatakaeducation.org.in/KOER/en/index.php/Portal:ICT_Literacy
4.ನೀವು ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶ ಬಳಸುತ್ತಿದ್ದೀರಾ ? ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶದ ಬಗ್ಗೆ ತಿಳಿಯಲು 
-http://karnatakaeducation.org.in/KOER/en/index.php/Public_Software
---
--- 
You received this message because you are subscribed to the Google Groups 
"Maths & Science STF" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mathssciencestf+unsubscr...@googlegroups.com.
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/mathssciencestf/CAOhR%2B%2BwCw2Pfjq%3D00JGtQwbCeJjteHoz2rSH2MMRzsi1HL_BLA%40mail.gmail.com.


[Bug bootstrap/90544] Build failure on MINGW for gcc-9.1.0

2019-06-03 Thread master at a1983 dot com.cn
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90544

Kuang  changed:

   What|Removed |Added

 CC||master at a1983 dot com.cn

--- Comment #2 from Kuang  ---
Same problem when cross compiling for windows on Ubuntu with
x86_64-w64-mingw32-gcc (9.1.0)

How to get search terms of google ads via google ads library python?

2019-06-03 Thread Code Master
I'd like to get search terms of google adwords report via python api 
library.
I select report type as 'SEARCH_QUERY_PERFORMANCE_REPORT'
and the field name is 'Search term'.

but raised likke 'googleads.errors.AdWordsReportBadRequestError: Type: 
QueryError.PARSING_FAILED Trigger: None Field Path: None'

What can I do for this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2f98b843-2d97-4980-8e73-3a0aa3f4b733%40googlegroups.com.


[Bug 1624320] Re: systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing entries

2019-05-08 Thread Master James
Still a problem for Ubuntu 19.04 too
https://askubuntu.com/questions/1139536/ubuntu-19-04-bind-not-resolving-locally/1140151

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1624320

Title:
  systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing
  entries

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1624320/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Touch-packages] [Bug 1624320] Re: systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing entries

2019-05-08 Thread Master James
Still a problem for Ubuntu 19.04 too
https://askubuntu.com/questions/1139536/ubuntu-19-04-bind-not-resolving-locally/1140151

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1624320

Title:
  systemd-resolved appends 127.0.0.53 to resolv.conf alongside existing
  entries

Status in systemd package in Ubuntu:
  Confirmed

Bug description:
  systemd-resolved, or more precisely the hook script
  /lib/systemd/system/systemd-resolved.service.d/resolvconf.conf, causes
  resolvconf to add 127.0.0.53 to the set of nameservers in
  /etc/resolv.conf alongside the other nameservers.  That makes no sense
  because systemd-resolved sets up 127.0.0.53 as a proxy for those other
  nameservers.  The effect is similar to bug 1624071 but for
  applications doing their own DNS lookups.  It breaks any DNSSEC
  validation that systemd-resolved tries to do; applications will
  failover to the other nameservers, bypassing validation failures.  And
  it makes failing queries take twice as long.

  /etc/resolv.conf should have only 127.0.0.53 when systemd-resolved is
  active.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1624320/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


Record setvalue javadoc

2019-04-26 Thread Christian Master


[#2211] Future versions of jOOQ might remove the set(Field, Object) 
<../../org/jooq/Record.html#set-org.jooq.Field-T-> method. It is 
recommended to use set(Field, Object) 
<../../org/jooq/Record.html#set-org.jooq.Field-T-> instead.


do you remove setValue or set ?


I think javadoc should be "might remove the set*Value*"


thx

C

 

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bug#927268: Subject: nestopia: Can't map input to some keys on keyboard.

2019-04-16 Thread master

Subject: nestopia: Can't map Nes input to some keys on keyboard.
Package: nestopia
Version: 1.49-2
Severity: normal

Dear Maintainer,

I was playing Zelda using nestopia and I wanted to map the attack
button(The a button on the nes controller) to the j key on my keyboard.
I wasn't able to, when I tried to attack with the sword it wouldn't let
me. The movement input could be mapped to different keys but only some
of them would work such as the wasd keys. The attack button works on the 
z key and the movement


keys work with the arrows keys.

-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-4-amd64 (SMP w/12 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE= (charmap=UTF-8)

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages nestopia depends on:
ii  libao4    1.2.2+20180113-1
ii  libarchive13  3.3.3-4
ii  libatk1.0-0   2.30.0-2
ii  libc6 2.28-8
ii  libcairo-gobject2 1.16.0-4
ii  libcairo2 1.16.0-4
ii  libepoxy0 1.5.3-0.1
ii  libgcc1   1:8.3.0-6
ii  libgdk-pixbuf2.0-0    2.38.1+dfsg-1
ii  libglib2.0-0  2.58.3-1
ii  libgtk-3-0    3.24.5-1
ii  libjack-jackd2-0 [libjack-0.125]  1.9.12~dfsg-2
ii  libpango-1.0-0    1.42.4-6
ii  libpangocairo-1.0-0   1.42.4-6
ii  libsdl2-2.0-0 2.0.9+dfsg1-1
ii  libstdc++6    8.3.0-6
ii  zlib1g    1:1.2.11.dfsg-1

nestopia recommends no packages.

nestopia suggests no packages.

-- no debconf information



How to preserve SNMP trap IP address and host name when forwarding

2019-04-12 Thread Pik Master via Net-snmp-users


>I need help, with preserving SNMP trap IP address and hostname when forwarding 
>SNMP traps through snmptrapd
>I got 10 servers behind a firewall and router, I have setup SNMP trap 
>forwarding and GET based on community string however, snmptrapd rewrites trap 
>headers, IPs and host name with SNMP Proxy server information

Hi

I got exactly the same problem and wrote a patch. You will need to recompile 
net-snmp from sources though.
Patches and instructions here - https://sourceforge.net/p/net-snmp/patches/1320/
They are for net-snmp-5.7.3, I didn't have a chance to test them on 5.8 yet.

Pik Master

PS. sorry if you received this reply multiple times, the account I replied from 
has its email hosting provider blocked for sending spam.






___
Net-snmp-users mailing list
Net-snmp-users@lists.sourceforge.net
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users


Re: How to preserve SNMP trap IP address and host name when forwarding

2019-04-12 Thread Pik Master
Hi   I got exactly the same problem and wrote a patch. You will need to 
recompile net-snmp from sources though.  Patches and instructions here -  
sourceforge.net sourceforge.net  They are for net-snmp-5.7.3, I didnt have 
a chance to test them on 5.8 yet.   Pik Master





Dnia 10 kwietnia 2019 17:30 Kaleemulla Sharief \(kasharie\) via 
Net-snmp-users net-snmp-users@lists.sourcefo napisał(a):



 If this is specific to only 10 servers, you could configure NAT on 
snmp proxy for these 10 servers to do address spoofing?

 Sent from my iPad

 On 10-Apr-2019, at 8:59 PM, 700 grm 700...@gmail.com wrote:

 Hi,

 I need help, with preserving SNMP trap IP address and hostname when forwarding 
SNMP traps through snmptrapd

 I got 10 servers behind a firewall and router, I have setup SNMP trap 
forwarding and GET based on community string however, snmptrapd rewrites trap 
headers, IPs and host name with SNMP Proxy server information
 image.png
 snmptrapd.conf  only configuration that was added
 /etc/snmp/snmptrapd.conf
  authCommunity   net public
  forward  default  10.12.4.192 public
     

 I was expecting to get trap with SRV1 information:

 2019-04-10 08:52:46 SRV1.localhost  [UDP: [192.168.0.20:36670-[X.X.X.X]
 DISMAN-EVENT-MIB::sysUpTimeIns = Timeticks: (14866232) 1 day, 17:17:42.32  
SNMPv2-MIB::snmpTrapOID.0 = OID: SNMPv2-MIB::sysName   SNMPv2-MIB::sysName.0 = 
STRING: test trap from xxx

 However, I am getting:

 2019-04-10 08:52:46 snmp-proxy.localhost  [UDP: 
[192.168.0.10:36670-[X.X.X.X]
 DISMAN-EVENT-MIB::sysUpTimeIns = Timeticks: (14866232) 1 day, 17:17:42.32  
SNMPv2-MIB::snmpTrapOID.0 = OID: SNMPv2-MIB::sysName   SNMPv2-MIB::sysName.0 = 
STRING: test trap from xxx

 I will appreciate any help

 Thx and regards

 700grm
 __
 Net-snmp-users mailing list
  Net-snmp-users@lists.sourcefor
 Please see the following page to unsubscribe or change other options:
 lists.sourceforge.net lists.sourceforge.net
 __
 Net-snmp-users mailing list
  Net-snmp-users@lists.sourcefor
 Please see the following page to unsubscribe or change other options:
 lists.sourceforge.net lists.sourceforge.net
___
Net-snmp-users mailing list
Net-snmp-users@lists.sourceforge.net
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users


[GEOG-JOBS] Fwd: [UCGIS] Undergraduate Research Fellow positions at the NSF Spatiotemporal Innovation Center (STC) - please help circulate to students

2019-03-29 Thread Robert Mc Master
___
*Robert B. McMaster*
   Acting Executive Vice President and Provost
 Professor of Geography
  Office of the Executive Vice President and Provost
  220 Morrill Hall
   University of Minnesota
Minneapolis, Minnesota   55455
  612.626.9425
http://www.geog.umn.edu/people/profile.php?UID=mcmaster
http://undergrad.umn.edu/staff/mcmaster.html
__


-- Forwarded message -
From: Wendy Guan 
Date: Fri, Mar 29, 2019 at 2:28 PM
Subject: [UCGIS] Undergraduate Research Fellow positions at the NSF
Spatiotemporal Innovation Center (STC) - please help circulate to students
To: 


NSF REU Fellow Opportunities, 7 weeks from June 2019 to August 2019



The NSF Spatiotemporal Innovation Center (STC) is looking for several
undergraduate research assistants to serve as NSF REU Fellows from June
2019 to August 2019. They will potentially work at George Mason University
Site (Fairfax, VA), Harvard University site (Cambridge, MA), or University
of California, Santa Barbara site (Santa Barbara, CA), depending on funding
availability from NSF.



This opportunity is supported by the National Science Foundation (NSF)
I/UCRC and Research Experiences for Undergraduates (REU) Programs which
enable undergraduate students to obtain research experience and consider a
career path in spatiotemporal domains (e.g., CS, GIS, Geosciences, etc.).
NSF REU Student interns will work in a team with graduate students,
postdocs, and faculty at one of the three center sites and will conduct
research related to spatiotemporal issues. NSF fellows also have the
opportunity to attend a professional conference to present their research
results. Students may participate in various projects.



Requirements:

   - Applicants must be undergraduate students.
   - U.S. citizen or permanent resident status is required.
   - Applicants should be able to work as NSF fellows for 7 weeks. Starting
   date is flexible.
   - NSF REU fellows will receive stipend and reimbursement for travel to
   one conference hosted in the U.S.
   - We encourage applications from underrepresented groups, such as women,
   Native-Americans, African-Americans, Hispanics, Veterans, and students with
   disabilities.



A complete application includes:

   - C.V.
   - One page double-spaced statement of interest.
   - Contacts (email and phone #) of two referees.



Selection process:

There will be three steps for selecting the students: 1) Site directors
will collaboratively select a pool of promising applicants. 2) Faculty
members will select the relevant applicants who match their interest. 3) A
phone interview will be arranged with the selected candidates to consider
the applicant’s background and skills, communication, teamwork, and topic
interest.



Please submit your application through email to Dr. Manzhu Yu (m...@gmu.edu).
The review of applications has started, and will end until the positions
are filled. Feel free to contact Dr. Chaowei Yang (cya...@gmu.edu) with
questions about the NSF RET Summer Fellows in Geographic Information
Science. We look forward to receiving your applications.



The three universities are equal opportunity/affirmative action employers.
All qualified applicants will receive consideration as summer follows
without regard to race, color, religion, sex, national origin, disability,
age or protected veteran status.





Wendy Guan, Ph.D. 1737 Cambridge Street, K022

Executive DirectorCambridge, MA 02138

Center for Geographic Analysis617-496-6102 (office)

Harvard University   617-496-5149 (fax)

http://gis.harvard.edu

wg...@cga.harvard.edu




--
University Consortium for Geographic Information Science • P.O. Box 612,
Ithaca, New York 14851, United States • 607-252-6851
Remove My Email  •  Privacy
Policy

Re: copy records with primary key from one db to another

2019-03-29 Thread Christian Master
thank you so much!


Am Freitag, 29. März 2019 09:09:57 UTC+1 schrieb Lukas Eder:
>
>
>
> On Fri, Mar 29, 2019 at 8:36 AM Christian Master  > wrote:
>
>> Perfect, thank you. (to copy it from one db to another, create2 was 
>> missing)
>>
>
> Yes of course.
>  
>
>> For one row i do it this way:
>> MyRecord my1 = create2.selectFrom(KTO).fetchAny();
>> my1.set(KTO.KTOID,null);
>> create1.insertInto(KTO).set(my1).execute();
>>
>> This works for some fields, but some are null. The ID gets generated, 
>> most of the data stored, but I dont understand why it works for some 
>> fields, and for some not.
>> Is this wrong way to insert one Record from one DB to another? Or one 
>> Table to another?
>>
>
> In UpdatableRecord, the primary key value is "special". If you set it to 
> null on an existing record, the record is assumed to be a "copy" of the 
> previous one, because what else could a null primary key mean other than 
> the record needs to be inserted rather than updated. Because of this 
> assumption, setting a primary key to null also sets all the other column 
> changed flags to true, to enforce them being inserted, despite the fact 
> that you didn't actually change them explicitly.
>
> With other values, setting them to null means you actually want the value 
> to be set to null. There's no reason for any further implicit behaviour. If 
> you want to make this more explicit, you could also write:
>
> MyRecord my1 = create2.selectFrom(KTO).fetchAny();
> my1.set(KTO.KTOID,null);
> my1.changed(true);
> my1.changed(KTO.KTOID, false);
> create1.insertInto(KTO).set(my1).execute();
>
> That's what happens behind the scenes, implicitly.
>

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: copy records with primary key from one db to another

2019-03-29 Thread Christian Master
Perfect, thank you. (to copy it from one db to another, create2 was 
missing)
List> fields = new ArrayList<>(Arrays.asList(KTO.fields()));
fields.removeAll(KTO.getPrimaryKey().getFields());

create1.insertInto(Tables.KTO).columns(fields).select(
   create2.select(fields).from(KTO)
).execute();

For one row i do it this way:
MyRecord my1 = create2.selectFrom(KTO).fetchAny();
my1.set(KTO.KTOID,null);
create1.insertInto(KTO).set(my1).execute();

This works for some fields, but some are null. The ID gets generated, most 
of the data stored, but I dont understand why it works for some fields, and 
for some not.
Is this wrong way to insert one Record from one DB to another? Or one Table 
to another?
Thx
C

Am Donnerstag, 28. März 2019 11:10:22 UTC+1 schrieb Lukas Eder:
>
> You can easily extract a set of columns without the primary key as follows:
>
> List> fields = new ArrayList<>(Arrays.asList(KTO.fields()));
> fields.removeAll(KTO.getPrimaryKey().getFields());
>
> create1.insertInto(KTO).columns(fields).select(
> select(fields).from(KTO)
> ).execute();
>
> Hope this helps,
> Lukas
>
> On Thu, Mar 28, 2019 at 9:39 AM Christian Master  > wrote:
>
>> I try to copy the records from one database to another.
>>
>> create1.insertInto(Tables.KTO).select(
>> create2.select().from(Tables.KTO)
>> ).execute();
>>
>> Since I have a primary key with auto_increment this wont work.
>>
>> In pure SQL it is not possible to exclude the primary key in create2. 
>> Is it possible with jooq?
>> I don't want to write all the fields into a "insertInto" method.
>>
>> If it is not possible, is there a way to copy the values from SomeRecord 
>> a to SomeRecord b without doing it field by field?
>>
>> Thx
>> Chris
>>
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "jOOQ User Group" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jooq...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


copy records with primary key from one db to another

2019-03-28 Thread Christian Master
I try to copy the records from one database to another.

create1.insertInto(Tables.KTO).select(
create2.select().from(Tables.KTO)
).execute();

Since I have a primary key with auto_increment this wont work.

In pure SQL it is not possible to exclude the primary key in create2. 
Is it possible with jooq?
I don't want to write all the fields into a "insertInto" method.

If it is not possible, is there a way to copy the values from SomeRecord a 
to SomeRecord b without doing it field by field?

Thx
Chris


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ms-stf '87766'] 9th maths SA2 Blue print & QP pdf

2019-03-04 Thread Nagappa. master
Thank you sir if it is possible send in doc.farmet


On Mar 4, 2019 6:10 PM, "devaraj timmapur" 
wrote:

> --
> Sri D.H.Timmapur
> Asst master
> G.H.S.Yatnatti-Badardinni.
> Tq:Bilgi. Dist :Bagalkot
> 8892783801
>
> --
> ---
> 1.ವಿಷಯ ಶಿಕ್ಷಕರ ವೇದಿಕೆಗೆ  ಶಿಕ್ಷಕರನ್ನು ಸೇರಿಸಲು ಈ  ಅರ್ಜಿಯನ್ನು ತುಂಬಿರಿ.
>  -https://docs.google.com/forms/d/e/1FAIpQLSevqRdFngjbDtOF8YxgeXeL
> 8xF62rdXuLpGJIhK6qzMaJ_Dcw/viewform
> 2. ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ಗಮನಿಸಬೇಕಾದ ಕೆಲವು ಮಾರ್ಗಸೂಚಿಗಳನ್ನು ಇಲ್ಲಿ ನೋಡಿ.
> -http://karnatakaeducation.org.in/KOER/index.php/ವಿಷಯಶಿಕ್
> ಷಕರವೇದಿಕೆ_ಸದಸ್ಯರ_ಇಮೇಲ್_ಮಾರ್ಗಸೂಚಿ
> 3. ಐ.ಸಿ.ಟಿ ಸಾಕ್ಷರತೆ ಬಗೆಗೆ ಯಾವುದೇ ರೀತಿಯ ಪ್ರಶ್ನೆಗಳಿದ್ದಲ್ಲಿ ಈ ಪುಟಕ್ಕೆ ಭೇಟಿ
> ನೀಡಿ -
> http://karnatakaeducation.org.in/KOER/en/index.php/Portal:ICT_Literacy
> 4.ನೀವು ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶ ಬಳಸುತ್ತಿದ್ದೀರಾ ? ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶದ ಬಗ್ಗೆ
> ತಿಳಿಯಲು -http://karnatakaeducation.org.in/KOER/en/index.php/
> Public_Software
> ---
> ---
> You received this message because you are subscribed to the Google Groups
> "Maths & Science STF" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mathssciencestf+unsubscr...@googlegroups.com.
> To post to this group, send an email to mathssciencestf@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
---
1.ವಿಷಯ ಶಿಕ್ಷಕರ ವೇದಿಕೆಗೆ  ಶಿಕ್ಷಕರನ್ನು ಸೇರಿಸಲು ಈ  ಅರ್ಜಿಯನ್ನು ತುಂಬಿರಿ.
 
-https://docs.google.com/forms/d/e/1FAIpQLSevqRdFngjbDtOF8YxgeXeL8xF62rdXuLpGJIhK6qzMaJ_Dcw/viewform
2. ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ಗಮನಿಸಬೇಕಾದ ಕೆಲವು ಮಾರ್ಗಸೂಚಿಗಳನ್ನು ಇಲ್ಲಿ ನೋಡಿ.
-http://karnatakaeducation.org.in/KOER/index.php/ವಿಷಯಶಿಕ್ಷಕರವೇದಿಕೆ_ಸದಸ್ಯರ_ಇಮೇಲ್_ಮಾರ್ಗಸೂಚಿ
3. ಐ.ಸಿ.ಟಿ ಸಾಕ್ಷರತೆ ಬಗೆಗೆ ಯಾವುದೇ ರೀತಿಯ ಪ್ರಶ್ನೆಗಳಿದ್ದಲ್ಲಿ ಈ ಪುಟಕ್ಕೆ ಭೇಟಿ ನೀಡಿ -
http://karnatakaeducation.org.in/KOER/en/index.php/Portal:ICT_Literacy
4.ನೀವು ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶ ಬಳಸುತ್ತಿದ್ದೀರಾ ? ಸಾರ್ವಜನಿಕ ತಂತ್ರಾಂಶದ ಬಗ್ಗೆ ತಿಳಿಯಲು 
-http://karnatakaeducation.org.in/KOER/en/index.php/Public_Software
---
--- 
You received this message because you are subscribed to the Google Groups 
"Maths & Science STF" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mathssciencestf+unsubscr...@googlegroups.com.
To post to this group, send an email to mathssciencestf@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Confirm your subscription to fifth element

2019-02-27 Thread master
Hello!

Hurray! You've subscribed to our site.
We need you to activate your subscription to the list(s): My first list by 
clicking the link below: 

Click here to confirm your subscription. (
http://fifthelementsolutions.com/?wysija-page=1=confirm=8413700ea89b53eb623a38ec08ba219a=subscribe=subscriptions=WyIxIl0=
)

Thank you,

The team!



Confirm your subscription to fifth element

2019-02-27 Thread master
Hello!

Hurray! You've subscribed to our site.
We need you to activate your subscription to the list(s): My first list by 
clicking the link below: 

Click here to confirm your subscription. (
http://fifthelementsolutions.com/?wysija-page=1=confirm=8413700ea89b53eb623a38ec08ba219a=subscribe=subscriptions=WyIxIl0=
)

Thank you,

The team!



Confirm your subscription to Demo shop

2019-02-27 Thread master
Hello!

Hurray! You've subscribed to our site.
We need you to activate your subscription to the list(s): My first list by 
clicking the link below: 

Click here to confirm your subscription. (
https://demo-shop.pc021.net/?wysija-page=1=confirm=189c96570d6475fd8b45d22c704fc64f=subscribe=subscriptions=WyIxIl0=
)

Thank you,

The team!



Re: '_' is a keyword error

2019-02-20 Thread Christian Master
Thank you for the help.
I use the gradle plugin, so I try to do the magic in my buid.gradle.
With a strategy it should just put another _ before every enum, but the 
matcher wont work. (unexpected token enum. With my beginner skills looking 
@ https://www.jooq.org/xsd/jooq-codegen-3.11.0.xsd enum should be correct, 
or?

strategy {
name = null
matchers {
enums {
enum {
enumClass {
expression = 'T_$0'
}

}
}
}
}

Am Montag, 17. Dezember 2018 10:19:48 UTC+1 schrieb Lukas Eder:
>
> Thanks a lot for your report. This is a known issue - the relevant github 
> issue is https://github.com/jOOQ/jOOQ/issues/4703
>
> The workaround for you will be to use a generator strategy:
>
> - programmatic: 
> https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy
> - configurative: 
> https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy
>
> I hope this helps,
> Lukas
>
> On Sat, Dec 15, 2018 at 10:56 PM Christian Master  > wrote:
>
>> I get in my generated UserSslType class 
>>
>> 
>> public enum UserSslType implements EnumType {
>> _(""),
>> ANY("ANY"),
>> X509("X509"),
>> .
>>
>> jdk12-ea+22
>> gradle 5.0
>> nu.studer.jooq 3.0.2
>> mysql-connector-java 6.0.6
>>
>> sourceCompatibility = 9
>> targetCompatibility = 9
>>
>> the error:
>> error: as of release 9, '_' is a keyword, and may not be used as an 
>> identifier
>>
>> Someone has an idea?
>> Thx
>> c
>>
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "jOOQ User Group" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jooq-user+...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[KSHST-IT '5280'] Phy education

2019-01-28 Thread Anjanmaster Master Ramanna
Pls send P.E.q.papers 8_10 class

-- 
You received this message because you are subscribed to the Google Groups 
"KSHST" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kshst+unsubscr...@googlegroups.com.
To post to this group, send email to kshst@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/kshst/CAFesSqAJ43Z1WsLGXSkfqBzU9GEa8HiBfzPa-Dvna5MsN7d5%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Opensim-dev] Network stack [Re: Unreal viewer: summoning the coders]

2018-12-16 Thread Grid Master
I'm just going to throw in my 2 cents,

More modules ??  Really?!?!?!

Opensimulator already suffers in module hell where even certain "core"
features can be turned off by users ..

In my personal opinion if you are going to revamp it to get the most out of
it, then the "Module Hysteria" needs to go away.

Things that should NEVER be turned off, and core things like networking and
other comms should be rolled into the main system and not have to suffer
from "Loading Module" and the ability for someone to screw it up or disable
it.

just my .02


Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Sun, Dec 16, 2018 at 1:05 PM Diva Canto  wrote:

> Doing a new network stack suffers from a structural problem: it takes
> two to tango -- the server and the client. The way our community has
> been divided between OpenSim development and LL viewer development
> doesn't encourage these kinds of things, unfortunately. That's why many
> of the server-side devs tend to experiment with completely new clients
> when wanting to experiment with different network stacks. Given how
> complex the LL-based viewers are, it's just easier.
>
> I still think it's worth evolving the LL viewer to use a new network
> stack, because the LL protocol is an obstacle for corporations. Even if
> we go and develop a new client altogether, the LL viewer isn't going
> away, it's still amazing for many things, and OpenSim must (and will)
> continue to support it. But redoing the network stack of the LL client
> will require engagement from LL viewer developers. And knowing what I
> know about it, it will likely require a fork that will be incompatible
> with Second Life.
>
> (This is unlike OpenSim, which is modular enough to be able to support
> pretty much any client. And we will make it even more modular as new
> clients require it, as Misterblue states.)
>
> On 12/16/2018 9:02 AM, Mister Blue wrote:
> > I have also experimented with protocols. I am currently focusing on
> > gRPC/Protobuf/HTTP2[1] solutions.I built some code around FlatBuffers[2]
> > but I came to the conclusion that the 'control plain' part of VR
> protocols
> > does not use the no-copy feature of FlatBuffers (big things like meshes
> and
> > images go by HTTP or other protocols) and that the FlatBuffer data
> > structures leak into a lot of the app because of now the message data is
> > stored. The other advantage of Protobuf over Flatbuffer is the wider
> > language and implementation support.
> >
> > Implementing a complete protocol in a region module requires identifying
> > all the correct events from the simulator core. A long term goal
> (mentioned
> > in Diva's presentation) is removing the LL protocol implementation from
> the
> > simulator core. I'm willing to do what I can to move protocols out of the
> > core and into modules.
> >
> > == mb
> >
> > [1]: https://grpc.io/
> > [2]: https://google.github.io/flatbuffers/
> >
> > On Sat, Dec 15, 2018 at 5:23 PM Dahlia Trimble 
> > wrote:
> >
> >> Hi Diva/all,
> >>
> >> I'm happy to see some interest in this new viewer project. I have my own
> >> viewer projects which I wish to continue focusing on but I'd like to
> offer
> >> to share some notes on some of the approaches I'm using regarding
> network
> >> stacks.
> >>
> >> First: protocols. I'm using Websockets for scene updates and HTTP for
> asset
> >> transfers. Websockets are message-oriented and provide a convenient
> means
> >> of sending variable length messages between endpoints with little
> >> additional support code needed. My primary reasoning for choosing
> >> Websockets at this time is to support browser-based viewers. I've also
> >> developed a custom UDP protocol but with the success I've had with
> >> Websockets I've let that protocol succomb to some bit rot and it's
> probably
> >> broken at this point. I've looked several times at WebRTC but it seems
> to
> >> be primarily a peer-to-peer protocol and it's developers don't seem
> >> interested in providing means for non-prowsers to act as peers. I've
> seen a
> >> few attempts in the past to create server peer support libraries but
> I've
> >> not (yet) found any I would consider worthy of building a production
> >> protocol on top of. It's been nearly a year since I've researched this
> and
> >> it's possible something has changed but for now Websockets seem to be
> >> working quite well.
> >>
> >> I'm using both a region module approach and a proxy approach. The region
> >> module seems to have the better user experience in terms of movement and
> >> action lag but the proxy approach allows me to connect to any grid,
> >> including SL, and also teleport across the Hypergrid. Both approaches
> seem
> >> to have merit and I tend to keep them in sync development-wise. 

'_' is a keyword error

2018-12-15 Thread Christian Master
I get in my generated UserSslType class 


public enum UserSslType implements EnumType {
_(""),
ANY("ANY"),
X509("X509"),
.

jdk12-ea+22
gradle 5.0
nu.studer.jooq 3.0.2
mysql-connector-java 6.0.6

sourceCompatibility = 9
targetCompatibility = 9

the error:
error: as of release 9, '_' is a keyword, and may not be used as an 
identifier

Someone has an idea?
Thx
c


-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jooq-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Poznaj najnowsze odkrycia z zakresu implantologii!

2018-11-30 Thread Kongres Meet The Master
Międzynarodowy Kongres Master of Oral Implantology

<http://app2.salesmanago.pl/rd.htm?url=https%3A%2F%2Fmeetthemaster.pl%2F%23%21%2F=08e88ce4-550d-11e8-94f9-0cc47a1254ce_medium=mailing_campaign=default=ef5d84e0-68cc-40f6-8612-39c9757ba8e5=2>

 

Z pewnością na codzień realizujesz zabiegi mniej lub bardziej skomplikowane 
i wiesz w jak zawrotnym tempie obecna wiedza z zakresu implantologii się 
rozwija.

Ilość związanych z nią możliwości i technologii również, co powoduje 
również dynamiczny WZROST KONKURENCJI RYNKOWEJ oraz większe wymagania 
pacjentów, bo przeczytał lub słyszał o nowej technologii, która... (pewnie 
nie raz się z tym spotkałeś).

Niech usługi właśnie w Twoim gabinecie będą na najwyższym poziomie!

Klienci będą szczerze polecać innym zabieg implantologiczny z wielu

powodów, szczególnie tych jakościowych.

Naszą misją jako Stowarzyszenia Implant Masters Poland jest rozwój tego 
sektora w naszym kraju.

Zostało niewiele czasu, bo jedyne 14 dni do konferencji, prawdopodobnie 
rejestrację zakończymy wcześniej.

Mamy jeszcze dla Ciebie miejsca. 

Nie czekaj do ostatniej chwili- zrób to już teraz!

 
 

Zarezerwuj miejsce już teraz!
<http://app2.salesmanago.pl/rd.htm?url=https%3A%2F%2Fmeetthemaster.pl%2F%23%21%2F=08e88ce4-550d-11e8-94f9-0cc47a1254ce_medium=mailing_campaign=default=ef5d84e0-68cc-40f6-8612-39c9757ba8e5=3>

 
<http://app2.salesmanago.pl/rd.htm?url=https%3A%2F%2Fmeetthemaster.pl%2F%23%21%2F%23video=08e88ce4-550d-11e8-94f9-0cc47a1254ce_medium=mailing_campaign=default=ef5d84e0-68cc-40f6-8612-39c9757ba8e5=4>
 
 

Jeśli nie chcesz otrzymywać od nas wiadomości, kliknij tutaj
<https://app2.salesmanago.com/optOut.htm?uid=08e88ce4-550d-11e8-94f9-0cc47a1254ce=ce019f2043ad151cd3f2e724ff5c6d11f6782755a45edead56e211c97cfd61c2=ef5d84e0-68cc-40f6-8612-39c9757ba8e5=pl=08e88ce4-550d-11e8-94f9-0cc47a1254ce=ef5d84e0-68cc-40f6-8612-39c9757ba8e5=29_source=salesmanago_medium=mailing_campaign=default>

<    1   2   3   4   5   6   7   8   9   10   >