1,211 results for 'api.duckduckgo.com' (121 ms)
Request.pm https://github.com/a-West/duckduckgo.git | Perl | 388 lines
1package DDG::Request; 2# ABSTRACT: A request to DuckDuckGo itself, so the query itself and parameter around the query defining him 3 4use Moo; 5use utf8; 6use List::MoreUtils qw{ uniq }; 7 8=head1 SYNOPSIS 9 10 my $req = DDG::Request->new( query_raw => "Peter PAUL AND MARY!" ); 11 print $req->query_clean; # "peter paul and mary" 12 13=head1 DESCRIPTION 14 15This is the main request class which reflects a query and all parameter thatCONTRIBUTING.md https://github.com/dakshil/zeroclickinfo-spice.git | Markdown | 70 lines
1# Contributing to the **Spice** repository 2 3At DuckDuckGo, we truly appreciate our community members taking the time to contribute to our open-source repositories. In an effort to ensure contributions are easy for you to make and for us to manage, we have written some guidelines that we ask our contributors to follow so that we can handle pull requests in a timely manner with as little friction as possible. 4 5## Getting Started 6 7Before you can do anything, you first need a [GitHub account](https://github.com/signup/free). This is required because we use GitHub to handle all incoming *Pull Requests* (code modifications) and *Issues* (bug reports) which cannot be made without a GitHub account. 8 9## Submitting a **Bug** or **Suggestion** 10 11- Firstly, please make sure the bug is related to the **Spice** repository. If this bug is about the DuckDuckGo API, or the relevancy of our search results, please visit our feedback page at <https://duckduckgo.com/feedback>. If you're unsure, its best to use the feedback page (your message will be passed along to the correct people). 12 13- Check the **Spice** [issues](https://github.com/duckduckgo/zeroclickinfo-spice/issues) to see if an issue already exists for the given bug or suggestion 14 - If one doesn't exist, create a GitHub issue in the **Spice** repository 15 - Clearly describe the bug/improvemnt, including steps to reproduce when it is a bugCONTRIBUTING.md https://github.com/DavidMascio/p5-app-duckpan.git | Markdown | 70 lines
1# Contributing to the **DuckPAN** repository 2 3At DuckDuckGo, we truly appreciate our community members taking the time to contribute to our open-source repositories. In an effort to ensure contributions are easy for you to make and for us to manage, we have written some guidelines that we ask our contributors to follow so that we can handle pull requests in a timely manner with as little friction as possible. 4 5## Getting Started 6 7Before you can do anything, you first need a [GitHub account](https://github.com/signup/free). This is required because we use GitHub to handle all incoming *Pull Requests* (code modifications) and *Issues* (bug reports) which cannot be made without a GitHub account. 8 9## Submitting a **Bug** or **Suggestion** 10 11- Firstly, please make sure the bug is related to the **DuckPAN** repository. If this bug is about the DuckDuckGo API, or the relevancy of our search results, please visit our feedback page at <https://duckduckgo.com/feedback>. If you're unsure, its best to use the feedback page (your message will be passed along to the correct people). 12 13- Check the **DuckPAN** [issues](https://github.com/duckduckgo/p5-app-duckpan/issues) to see if an issue already exists for the given bug or suggestion 14 - If one doesn't exist, create a GitHub issue in the **DuckPAN** repository 15 - Clearly describe the bug/improvemnt, including steps to reproduce when it is a bugAudio.pm https://github.com/ehsan/zeroclickinfo-spice.git | Perl | 17 lines
1package DDG::Spice::Dictionary::Audio; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/audio?limit=10&useCanonical=false&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers any => "///***never_trigger***///"; 10spice proxy_cache_valid => "418 1d"; 11 12handle remainder => sub { 13 return $_ if $_; 14 return; 15};Hyphenation.pm https://github.com/ehsan/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Hyphenation; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/hyphenation?includeRelated=true&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers startend => "///***never trigger***///"; 10 11handle query_lc => sub { 12 return $_ if $_; 13 return; 14}; 15Pronunciation.pm https://github.com/ehsan/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Pronunciation; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/pronunciations?limit=1&useCanonical=false&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers any => "///***never_trigger***///"; 10 11handle remainder => sub { 12 return $_ if $_; 13 return; 14}; 15Reference.pm https://github.com/ehsan/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Reference; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/definitions?includeRelated=true&includeTags=true&limit=3&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers startend => "///***never trigger***///"; 10 11handle query_lc => sub { 12 return $_ if $_; 13 return; 14}; 15Audio.pm https://github.com/eladab/zeroclickinfo-spice.git | Perl | 17 lines
1package DDG::Spice::Dictionary::Audio; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/audio?limit=10&useCanonical=false&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers any => "///***never_trigger***///"; 10spice proxy_cache_valid => "418 1d"; 11 12handle remainder => sub { 13 return $_ if $_; 14 return; 15};Hyphenation.pm https://github.com/eladab/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Hyphenation; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/hyphenation?includeRelated=true&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers startend => "///***never trigger***///"; 10 11handle query_lc => sub { 12 return $_ if $_; 13 return; 14}; 15Pronunciation.pm https://github.com/eladab/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Pronunciation; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/pronunciations?limit=1&useCanonical=false&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers any => "///***never_trigger***///"; 10 11handle remainder => sub { 12 return $_ if $_; 13 return; 14}; 15Reference.pm https://github.com/eladab/zeroclickinfo-spice.git | Perl | 16 lines
1package DDG::Spice::Dictionary::Reference; 2 3use DDG::Spice; 4 5attribution web => ['http://duckduckgo.com', 'DuckDuckGo'], 6 twitter => ['http://twitter.com/duckduckgo', '@duckduckgo']; 7 8spice to => 'http://api.wordnik.com/v4/word.json/$1/definitions?includeRelated=true&includeTags=true&limit=3&api_key={{ENV{DDG_SPICE_WORDNIK_APIKEY}}}&callback={{callback}}'; 9triggers startend => "///***never trigger***///"; 10 11handle query_lc => sub { 12 return $_ if $_; 13 return; 14}; 15projects.txt https://github.com/Ellie1/pullreqs.git | Plain Text | 3,396 lines
101org appframework 201org rib 301org web-simulator 40xd34df00d leechcraft 510gen-labs mongo-web-shell 610up varying-vagrant-vagrants 71602 compound 81602 jugglingdb 923 resumable.js 102600hz kazoo 114teamwork ftw.contentpage 124teamwork opengever.core 13A24Group ssGWT-lib 14abarisain dmix 15Abhoryo APYDataGridBundlehttps-urls.txt git://github.com/xbmc/xbmc.git | Plain Text | 5,974 lines
1https://015d8fb.netsolstores.com/index.asp?PageAction=VIEWPROD&ProdID=639 2https://1000607.secureresellerservices.com/reseller/terms-merchant.aspx 3https://1083.extraawards.com/cwa/login.do 4https://163.150.129.123 5https://192.168.2.1/ 6https://1stmariner.mybankhq.com/scraped_user/login 7https://1stmarinercommunity.mybankhq.com/answers 8https://2028.globalsign.com/ 9https://209.195.146.79/mb.asp 10https://247livesupport.biz 11https://247livesupport.biz/ticket/index.php?_m=news&_a=view 12https://2unblocksites.com/ 13https://365.rsaconference.com/blogs/rsa-conference-blog/2010/02/28/keynotes-tracking-the-industry 14https://3enabled.portallogin.net/portalWeb/partner/common/login/begin.do 15https://4846938711.secure-loancenter.com/WebApp/FullAppLogin.aspxsearchenginesmanager.cpp https://github.com/JHooverman/QupZilla.git | C++ | 341 lines
1/* ============================================================ 2* QupZilla - WebKit based browser 3* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com> 4* 5* This program is free software: you can redistribute it and/or modify 6* it under the terms of the GNU General Public License as published by 7* the Free Software Foundation, either version 3 of the License, or 8* (at your option) any later version. 9* 10* This program is distributed in the hope that it will be useful, 11* but WITHOUT ANY WARRANTY; without even the implied warranty of 12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13* GNU General Public License for more details. 14* 15* You should have received a copy of the GNU General Public LicenseShorten.pm https://github.com/robertbrook/zeroclickinfo-spice.git | Perl | 29 lines
1package DDG::Spice::Shorten; 2# ABSTRACT: Return a shortened version of a URL using the bitly API. 3 4use DDG::Spice; 5 6primary_example_queries "shorten http://www.duckduckgo.com/about.html"; 7secondary_example_queries "url shorten www.github.com/explore"; 8description "Shorten URLs using the is.gd API"; 9name "Shorten"; 10icon_url "/i/is.gd.ico"; 11source "Shorten"; 12code_url "https://github.com/duckduckgo/zeroclickinfo-spice/blob/master/lib/DDG/Spice/Shorten.pm"; 13topics "social"; 14category "computing_tools"; 15attribution github => ['https://github.com/danjarvis','Dan Jarvis'],settings.js https://gitlab.com/mikegerwitz/gnuzilla.git | JavaScript | 185 lines
1// Poodle attack 2pref("security.tls.version.min", 1); 3 4// Disable default browser checking. 5pref("browser.shell.checkDefaultBrowser", false); 6 7// Don't disable extensions dropped in to a system 8// location, or those owned by the application 9pref("extensions.autoDisableScopes", 3); 10//pref("extensions.enabledScopes", 15); 11 12// Don't display the one-off addon selection dialog when 13// upgrading from a version of Firefox older than 8.0 14pref("extensions.shownSelectionUI", true); 15CONTRIBUTING.md git://github.com/ajanicij/goduckgo.git | Markdown | 82 lines
1Contributing to GoDuckGo 2======================== 3 4If you love Go and DuckDuckGo, then this is 5your place. We're waiting for your Pull Request! 6 7Getting Started 8--------------- 9 10Before you can do anything, you first need a [GitHub account](https://github.com/signup/free). 11This is required because we use GitHub to handle all incoming *Pull Requests* (code modifications) 12and *Issues* (bug reports) which cannot be made without a GitHub account. 13 14Submitting a **Bug** or **Suggestion** 15--------------------------------------2012-02-29.md https://github.com/AntonShalimov/addmeto.cc.git | Markdown | 45 lines
1--- 2Title: Одним махом семерых побивахом 3Date: 2012-02-29 4Slug: 2012-02-29 5--- 6 7### Технологии 8* [Апач2.4 местами быстрее nginx](http://blog.zhuzhaoyuan.com/2012/02/apache-24-faster-than-nginx/), что по моему совсем не удивительно. Статья из демонстрации превосходства и последующим разоблачением. 9* Кстати, [оказывается китайцы из Taobao выложили в опенсорс свой форк Nginx](http://tengine.taobao.org/). Причем еще год назад. Красота, да? 10* [vitess:scaling MySQL databases for the web](http://code.google.com/p/vitess/), в реальной жизни некоторый аналог mysqlproxy. Работает. 11* [IBM в очередной раз говорит что продвинулось в области квантовых вычислений](http://www.extremetech.com/extreme/120229-ibm-shows-off-quantum-computing-breakthroughs-says-qubit-computers-are-close) и намекает что q-битные процессоры не за горами. 12* [15 ресурсов, которые полезны при изучении Django](http://tech.yipit.com/2012/02/28/183772464/) 13* На zoomzum отличная статья [6 лучших фреймворков для презентаций с помощью HTML/CSS](http://zoomzum.com/6-best-html5css3-presentation-frameworks/). Мой любимый [CSSS](http://leaverou.github.com/CSSS/) тоже вошел. 14* Забавная реализация идей ZeroMQ в браузере, [под названием NullMQ](https://github.com/progrium/nullmq). Сами сорцы слегка запутанные, вот хороший [пост в блоге автора](http://avalanche123.com/blog/2012/02/25/interacting-with-zeromq-from-the-browser/). 15* [О телевидении будущего, точнее уже настоящего](http://spectrum.ieee.org/consumer-electronics/audiovideo/all-in-the-game/0) про то, как делаются цифровые эффекты в трансляциях спортивных событий.index.html https://github.com/ArturBorisov/devopera-static-backup.git | HTML | 1,027 lines
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <title>BrowserTab.title - Dev.Opera</title> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="google-site-verification" content="L7q_7GF5c9d7ZAUYdfaTiRaB6sTAGv_cRz3nq5DsabM"> 8 <meta name="description" content="Dev.Opera is the ultimate source of distilled knowledge for web developers, covering the latest open web technologies and techniques including HTML5, CSS3, JavaScript, SVG, optimizing content for mobiles, tablets and TVs, and creating add-ons such as extensions and themes for the Opera browser."> 9 <meta name="keywords" content="Opera, web, HTML5, HTML, CSS3, CSS, JavaScript, SVG, Geolocation, Widgets, Extensions, Unite, Mini, Mobile, web development, design, web design, tutorials, articles, examples, demos, web standards, open standards, open web, video, audio, getusermedia, accessibility, wai-aria, transitions, translations, microformats, microdata, dataset, media queries, viewport, @viewport, transparency, opacity, gradients, box-shadow, text-shadow, web fonts, appcache, websql, local storage, ajax, json, games, userjs, webgl, tv, tablet, emulator, skinning, themes, skins, drasgonfly, mathml, web sockets, operawatir"> 10 <link rel="icon" href="../../../../static.myopera.com/dev/img/speed_dial-icon.png" type="image/png"> 11 <link rel="apple-touch-icon" href="../../../../static.myopera.com/dev/img/touch-icon.png" type="image/png"> 12 <link rel="shortcut icon" href="../../../favicon.ico" type="image/x-icon"> 13 <link rel="stylesheet" href="../../../../static.myopera.com/dev/css/devopera.css" type="text/css"> 14 <!--[if IE 6]><link rel="stylesheet" href="/css/browsers/ie6.css" type="text/css"><![endif]--> 15 <!--[if IE 7]><link rel="stylesheet" href="/css/browsers/ie7.css" type="text/css"><![endif]-->en.text https://github.com/colinmahns/riseup_help.git | Plain Text | 123 lines
1@title = 'Better Web Browsing' 2 3h2. Choosing a web browser 4 5All four major web browsers, Firefox, Chrome, Internet Explorer, and Safari, have experienced severe security flaws in the recent past, so you should make sure you are using the most up-to-date version, whichever one you choose. 6 7All four major browsers receive a failing grade in our [[browser-score-card]]. However, these browsers can be made much better by installing certain extensions (see below). 8 9Alternately, the Tor project provides a modified version of Firefox adapted to be more secure and anonymous called [[Tor Browser => https://www.torproject.org/download/download-easy.html.en]]. 10 11h2. Adjust your settings 12 13h3. Disable third-party cookies 14 15Third-party cookies are tracking identifiers used by advertising networks to track your behavior as you browse from website to website. They are an abomination and serve no legitimate purpose.