Questions tagged [api]

API (or Application Programming Interface) is a set of routines and standards set by software for the use of its features for applications that do not intend to engage in the implementation details of software, but only use their services.

In general, the API comprises a number of functions accessible only by programming and enabling use less evident characteristics of the user software traditional.

For example, an operating system has a lot of functions in the API, which allow the programmer to create windows, access files, encrypt data etc.. But the APIs of the operating systems are usually tied to the most essential tasks, such as the manipulation of blocks of memory and device access. These tasks are the core attributes and system rarely are programmable. Another example is geometric design programs that have a specific API to automatically create entities in accordance with standards set by the user.

177 questions
66
votes
6 answers

Is there a way to render LaTEX/MathJax for Slack Chatting client (web or app)?

I have a workgroup that uses the Slack chatting app/website/destop version to communicate, and the desire to send usable mathematical expressions across to friends is something we'd like to do there. While it doesnt seem like there is any official…
39
votes
2 answers

What is the difference between Invoke-WebRequest and Invoke-RestMethod?

I've been successfully using Invoke-WebRequest to post requests to a REST-based API from PowerShell. Invoke-WebRequest -UseBasicParsing https://my-rest-api.com/endpoint -ContentType "application/json" -Method POST -Body $json Today I came across…
James
  • 582
  • 1
  • 4
  • 10
11
votes
2 answers

How do I find and kill a php loop (process)?

I have a php script that I have been developing which calls an external api within a loop. It is being tested on a VPS which is running LAMP on Debian. I noticed this morning that the api was not responding to my script. When I called the…
Hoytman
  • 355
8
votes
2 answers

How is a WSD printer different from a non-WSD printer?

I installed my printer today (Epson Expression Photo XP-750) and I saw that Windows 7 was asking me to choose between two different printing devices, even thou they both belong to the same physical printer. The printer was connected over Wi-Fi (not…
Samir
  • 21,235
7
votes
2 answers

Does Linux support self-Encrypted Disk API?

In this article it is shown how easy it is to bypass BIOS ATA passphrases, and it ends with that using the disks self-Encryption Disk (SED) API from within the OS would not give a performance hit. On Windows this API is called Microsoft eDrive. See…
Sandra
  • 2,733
7
votes
2 answers

How to trick programs into thinking they're running under 32-bit?

Basically I have 3 executables in my Windows 7 64-bit, those are: Loader.exe -> This is a 32-bit exe  x86.exe -> This is a 32-bit exe x64.exe -> This is a 64-bit exe When Loader.exe starts it determines if the system is 32-bit or 64-bit and loads…
7
votes
5 answers

Can I retrieve and access a simple JSON object via HTTP in LibreOffice Calc?

I've located a web API resource that I'd like to access from LibreOffice Calc. It returns a simple JSON/JavaScript object that's basically just a handful of name value pairs, one of which I want to pull out and put in a cell. I know programming but…
hippietrail
  • 4,605
6
votes
1 answer

cURL example for accessing authenticated Kraken API

I've been trying to implement a client for Kraken private API (https://www.kraken.com/help/api) and because I've been running into some issues with that, I've been trying to access that same API with cURL. However, I can't get for the life of me get…
aerique
  • 221
  • 2
  • 7
5
votes
3 answers

How to send automated SMS messages over the internet?

Does anyone know of a service that will send SMS messages over the internet, and can be automated? Prefer service to: Be free Have an API freely available and highly modular Be open source Like to avoid: Expensive No API, must only use their…
5
votes
3 answers

Can I programmatically send email using my gmail account?

I have a gmail account. Is there a Google API that allows me to log into this account and send emails?
Alex
  • 2,601
5
votes
3 answers

McAfee API for ASP.Net

Is there any McAfee API [ or command line utility ] that can be integrated with ASP.Net to scan for viruses in uploaded files. Edit: I was about to ask the question in stackoverflow but thought since it is related to McAfee only it would be better…
phoenix
  • 315
5
votes
2 answers

Windows API Error 2 when installing MikTex 2.9

I am trying to install MikTex 2.9.3927 on Windows 7 x64. Very early in the installation process, I get a MikTex setup wizard error saying: "Windows API Error 2: The system cannot find the file specified Details: C:...\somefile.tpm" The file that…
Eric
  • 51
  • 1
  • 1
  • 2
5
votes
1 answer

Viewing Server-Sent Events in Firefox

SSE is a simple and straight-forward alternative to WebSockets when you need a one-way channel for events coming from the server. In Chrome Dev Tools' Network tab, you can click the resource (url) where the SSE originates from and view the stream in…
oligofren
  • 1,426
  • 1
  • 25
  • 41
4
votes
3 answers

Search for text in all files in Atlassian Stash

Supposed I have a git repo managed by Atlassian Stash. Can I search all files in all project for a specific text? is there such a tool out there, already? If not, do you think it would be build-able using the API for Stash?
Belun
  • 213
  • 3
  • 7
4
votes
1 answer

How can I make/receive phone calls with a modem on Linux?

Possible Duplicate: How can I receive phone calls on a Linux server and script stuff depending on the numbers pressed? This is related to my previous question (How can I receive phone calls on a Linux server and script stuff depending on the…
knarf
  • 375
  • 1
  • 5
  • 10
1
2 3
11 12