Posts

Showing posts from September 8, 2018

Surface and Nativecrypto errors when trying to get current location

Image
Clash Royale CLAN TAG #URR8PPP Surface and Nativecrypto errors when trying to get current location I am getting the errors: E/Surface: getSlotFromBufferLocked: unknown buffer: 0x7f7fc080e0 E/NativeCrypto: ssl=0x7f5ec8fc00 cert_verify_callback x509_store_ctx=0x7f5d8f0270 arg=0x0 E/NativeCrypto: ssl=0x7f5ec8fc00 cert_verify_callback calling verifyCertificateChain authMethod=ECDHE_ECDSA E/MPlugin: Unsupported class: com.mediatek.common.telephony.IOnlyOwnerSimSupport when trying to get current location in kotlin android. I tried with android 6 and 8 ,still getting error and I am not able to get current location on map, a blank map opens Can anyone help me with what is the issue here, I am stuck with this issue from days? This is my code to get current map location: class MapActivity : FragmentActivity(), OnMapReadyCallback,GoogleApiClient.ConnectionCallbacks,GoogleApiClient.OnConnectionFailedListener,com.google.android.gms.location.LocationListener private var service: LocationManag

Post with file location

Image
Clash Royale CLAN TAG #URR8PPP Post with file location I am trying to send this request through a POST using Go. curl https://api.onfido.com/v2/applicants/1030303-123123-123123/documents -H 'Authorization: Token token=your_api_token' -F 'type=passport' -F 'file=@localfile.png;type=image/png' At this moment I can't figure out how to deal with the -F parameter. I've created the following struct type DocumentRequest struct Type string `json:"type"` File string `json:"file"` which I am sending through: res, err := s.Post(assembleURL(“https://api.onfido.com/v2/applicants/", userID, "documents"), d, doc, &apiErr) where d is my DocumentRequest. d Any tips on how to solve it? Thanks! You'll have to open the file using os.File and send it via the request body. – Adrian Aug 10 at 14:35 os.File 1 Answer 1 You're gonna have to read the file and add it as the request body. There's a helper

ABAP Domain and Data Types Understanding

Image
Clash Royale CLAN TAG #URR8PPP ABAP Domain and Data Types Understanding so my company wants me to learn ABAP for SAP and I have started on the road to learn this. My background is mainly VB.net and sqlserver with T-SQL but also have experience in c#. With ABAP though I am needing some clarification or confirmation on the understanding of Data Types and Domain. If anyone can help. My understanding currently is we have a table, in the table we have fields and the fields have data types and lengths if needed. Example: We have a table Customer, I could have a customerNumber field with the data type of char(10) . To me this mean in the table customer we have a field called CustomerNumber that will have 10 characters. customerNumber char(10) CustomerNumber However with ABAP we have Domains, Data elements then the field, does this mean we have a field named whatever we want. As the field could mean anything we assign a data element which has the descriptions of the sort of data stored

VBScript Permission Denied

Image
Clash Royale CLAN TAG #URR8PPP VBScript Permission Denied I'm trying to do some automation on SecureCRT using VBScript. My issue right now is that around ~30% of the time I try to run my script (sometimes in meetings for presenting...) I get a "permission denied" error. A lot of the time, the quick solution is that I copy & paste my script into a new .txt file. Eventually the old one works again, but it's incredibly finicky. Today, my script worked. 5 minutes later I got the permission denied. I created a revision, which worked. 5 minutes later that one errored out and the original version stopped giving me the error. It's hard to keep track of, and I'm not sure what's causing it. Edit: Error occurs on this line. Set pso = CreateObject("Scripting.FileSystemObject") Set Pile = pso.OpentextFile("Alarm_logs.txt",8, True) It's very near the top of the script. Anyone had a similar experience? For help with your code: show you

Java Web Service Consumer > No client transport named 'null' found

Image
Clash Royale CLAN TAG #URR8PPP Java Web Service Consumer > No client transport named 'null' found we are trying to develop Web Service Consumer in Lotus Notes in Java. We have used the automatic generated source code from Lotus Designer according to the wsdl file. Calling methods from generated stubs in consumer from Local machine is working fine. But after setting an agent to run on Domino server this exception is screaming in log file: 02.06.2014 17:32:25 AMgr: Agent ('AttachmentDownloadServer' in 'test/AttachmentsDownload2.nsf') error message: No client transport named 'null' found! 02.06.2014 17:32:25 AMgr: Agent ('AttachmentDownloadServer' in 'test/AttachmentsDownload2.nsf') error message: at lotus.domino.axis.client.AxisClient.invoke(Unknown Source) 02.06.2014 17:32:25 AMgr: Agent ('AttachmentDownloadServer' in 'test/AttachmentsDownload2.nsf') error message: at lotus.domino.axis.client.Call.invokeEngine(Unknown

Using sizeof on arrays passed as parameters [duplicate]

Image
Clash Royale CLAN TAG #URR8PPP Using sizeof on arrays passed as parameters [duplicate] Possible Duplicate: Sizeof array passed as parameter Given the function below I understand that sizeof returns the size of the pointer of the type in the array. int myFunc(char my_array[5]) return sizeof(my_array); However calling sizeof on an array not passed as a parameter normally returns the sizeof the array. What causes this inconsistency? What is the best way of getting the size of an array when it is passed as a parameter? This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question. char[5] my_array is not a valid declarator. – CB Bailey Feb 25 '12 at 12:26 char[5] my_array See: Sizeof array passed as parameter – CB Bailey Feb 25 '12 at 12:28 related FAQ – fredoverflow Feb 25 '12 at 12:31 4 Answers 4 What causes this inconsistency? The name of the array decays as an

Issue subtracting days from calendar

Image
Clash Royale CLAN TAG #URR8PPP Issue subtracting days from calendar I have an horizontal calendar in my application. So I have implemented the following library https://github.com/Mulham-Raee/Horizontal-Calendar I also have implemented my own back and forward button. Pressing back takes back one day from current date and forward takes one day forward. Suppose today is 10th August and I scrolled horizontally till 15th July without pressing back or forward button. Now if I press back button instead of going to 14th July, I go back to 9th August. Following is my code <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto"> <com.myapplication.HorizontalCalendarView android:id="@+id/calendarView"

MessageBox 'Could not load TalkAPI library' pops up after defining an Excel Application in C# .Net Framework 4.5

Image
Clash Royale CLAN TAG #URR8PPP MessageBox 'Could not load TalkAPI library' pops up after defining an Excel Application in C# .Net Framework 4.5 I would like to load data into an Excel file via the Com Interface to Excel in C#. Before this I define an Excel Application: using Microsoft.Office.Interop.Excel; Microsoft.Office.Interop.Excel.Application excelapplication = new Application(); ... After the defintion of the application a MessageBox pops up which shows the following text: 'Could not load TalkAPI library'. Does anybody know what this is about? I could not find a thing online. Thanks a lot for your help in advance! First, I recommend you fully qualify Application . It won't necessarily be clear to C# that you mean Excel, and not itself. In what application window is this message displaying? Is it looking for something in your .NET code, or in Excel? It's possible that the Excel installation on the machine where this is running has an add-in that

array results in different divs for exampe 5 in each div

Image
Clash Royale CLAN TAG #URR8PPP array results in different divs for exampe 5 in each div I have an array of image URLs, and I want to place them in HTML columns, for example, first five in one column, 5 in other and so on. how could I do that? probably I can place the results on the new array, where each item has an array of five. maybe there is a simpler solution? Welcome! Please take a minute to add some code to your question. We're here to help, but we can only help you as much as you help us. Let us know what you've tried, or what you've researched, and what specifically isn't working, and hopefully we can tell you why and steer you towards a solution in the process. Check out this helpful resource: How do I ask a good question? - the better the question, the better the answer! – Tyler Roper Aug 10 at 14:35 By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and th

TargetInvocationException occurred in mscorlib.dll but was not handled in user code when using DbGeometry

Image
Clash Royale CLAN TAG #URR8PPP TargetInvocationException occurred in mscorlib.dll but was not handled in user code when using DbGeometry I've been getting this error when trying to open up one of my web pages. The code behind throws a TargetInvocationException on the following code: public DbGeometry DynamicGeo get if (String.IsNullOrEmpty(WKT)) return null; else return DbGeometry.FromText(WKT, 4326); Any ideas as to wy or how to fix this would be much appreciated! Why the <sql> tag? – jarlh Aug 10 at 14:38 Been having sql issues with the code and thought my tinkering my have made something unstable. Mostly just trying to cover all my bases since I'm not 100% sure where the issue is originating. – mightynifty Aug 10 at 14:42 By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Android Retreiving data from an activity and displaying it to a fragment with firebase

Image
Clash Royale CLAN TAG #URR8PPP Android Retreiving data from an activity and displaying it to a fragment with firebase I have implemented a feature where the use can click on a button to open a new activity and change their user status. I have it so that when the user presses the button it updates the firebase database but when the user goes back to the previous activity firebase does not retrieve the new data. I am attempting to use a bundle and pass the data from the change status activity to the profile fragment and then update the user status with the fresh one that was brought over. Bundle bundle = new Bundle(); String myStatus = status; bundle.putString("status", myStatus); ProfileFragment fragInfo = new ProfileFragment(); fragInfo.setArguments(bundle); And then on the fragment that displays this public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable final Bundle savedInstanceState) View view = inflater.inflate(R.lay

Reading a file with without comments in python

Image
Clash Royale CLAN TAG #URR8PPP Reading a file with without comments in python i need to read a file in python. My Problem is, that the file has an alternating amount of columns and that there are comments at the end of each line. I want to get rid of the comments while I read the file and save the data in a array or something like that. I Have absolutely no idea how to do that. Can anyone of you help me? This is how the file looks like: 2.0 # mass -2.0 2.0 1999 # xMin xMax nPoint 1 5 # first and last eigenvalue to print linear # interpolation type 2 # nr. of interpolation points and xy declarations -2.0 0.0 2.0 0.0 Perhaps use the "#" as a delimiter – Tom Aug 10 at 10:37 Split on # and take first part. – Austin Aug 10 at 10:39 # Use regular expressions. – Lev Zakharov Aug 10 at 10:40 Possible duplicate of Python: How to ignore #comment lines when reading in a file – Lev Zakharov Aug 10 at 10:41 string - "2.0 2.0 1999 # xMin xMax n

Error with getting html select value into js variable

Image
Clash Royale CLAN TAG #URR8PPP Error with getting html select value into js variable so I am working on a project and I need to take the value of a select menu. However, when I do, I get the error TypeError: Cannot read property 'options' of null . Hopefully you guys can help? Here is my HTML code for the select menu: <div id="MetalTypeSect"> <h2><a id="MetalType"></a>Metal Type</h2> <select id="select1"> <option value="blank">--Select--</option> <option value="Alum">Alum. 5052</option> <option value="GalvL">Galvaneal</option> <option value="CRS">CRS</option> <option value="SST">SST304</option> <option value="GalvZ">Galvanized</option> </select> </div> and here is my js code var metalTypeSelectedValue = document.getElementById("select1"); var metalTy

Set Windows Timeline Card for Website

Image
Clash Royale CLAN TAG #URR8PPP Set Windows Timeline Card for Website Is it possible for Websites to define the Image/Title - or even the whole Aadaptive Card - to be shown in the Windows Timeline when they are added by Edge. 1 Answer 1 Yes, it looks like. Not sure about all the rules - but just by reverse engineering a bit on an image I saw on my Timeline history contributed from Edge for a random page like https://github.com/metabase/metabase/blob/master/test/metabase/test_setup.clj If you inspect the source code for that page you'll see: <meta> ... <meta property="og:image" content="https://avatars3.githubusercontent.com/u/10520629?s=400&amp;v=4" /> ... <meta property="og:title" content="metabase/metabase" /> .... That corresponds to what I get rendered as background image and title on the Timeline card. The og:<something> meta properties are defined by the Open Graph protocol: http://ogp.me/ og:&l

What exactly happens in a git push? Why isn't a git push considered just like a git merge?

Image
Clash Royale CLAN TAG #URR8PPP What exactly happens in a git push? Why isn't a git push considered just like a git merge? So as mentioned here a git pull is just fetching the latest and then merging them. Isn't that the same for a git push ? ie from the remote...you fetch the local and merge it into the branch? git pull git push Or is that you're not merging anything, rather you're totally re-writing history of commits...ignoring whatever was there and just replacing commit lists with a newer one? (I'm fully aware of when the use git push ie I use when I'm done with a feature in my local. I push into my origin. My question is more about what happens under the hood) git push Pushing doesn't rewrite the history on the remote unless your local branch rewrites history, and even then, I think you need to use the --force flag. – Abizern Aug 10 at 14:35 --force Push and pull are semantically opposites, but not at all symetrical operations in git. Y

How can I save data in the database with a form that is loaded via Ajax in Symfony 4?

Image
Clash Royale CLAN TAG #URR8PPP How can I save data in the database with a form that is loaded via Ajax in Symfony 4? homepage.html.twig <a class="load-form" href=" path('article_load_form', slug:page.slug) ">Load my beautiful form</a> <div class="show-form">form will appear here</div> <script> $( ".load-form" ).on( "click", function(e) e.preventDefault(); var $link = $(e.currentTarget); $.ajax(method:'POST', url: $link.attr('href')).done(function(data) $('.show-form').html(data.output); ); ); </script> myController.php /** * @Route("/pages/slug/heart", name="article_load_form", methods="POST") */ public function loadForm($slug, Request $request) $id = 9; $item = new User(); $item= $this->getDoctrine()->getRepository(User::class)->find($id); $form = $this->createFormBuilder($item) ->add('username', T