- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S uv run | |
# /// script | |
# requires-python = ">=3.12,<3.13" | |
# dependencies = [ | |
# "asyncua==1.1.5", | |
# ] | |
# /// | |
"""Testing import/export from and to an xml file.""" | |
import asyncio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.0550011806 | |
0.0000000000 | |
0.0000000000 | |
-0.0550012151 | |
-28.4030000000 | |
21.8630000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ clang --version | |
clang version 4.0.0 (tags/RELEASE_400/final) | |
Target: x86_64-unknown-linux-gnu | |
Thread model: posix | |
InstalledDir: /usr/bin | |
$ CPATH=:/lib:$GISBASE/include OUT_DIR=binding cargo build --verbose | |
Fresh lazy_static v0.2.2 | |
Fresh vec_map v0.6.0 | |
Fresh unicode-segmentation v1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(test)] | |
extern crate test; | |
extern crate num; | |
extern crate geo; | |
use test::Bencher; | |
use num::Float; | |
use geo::{Coordinate, Point, LineString}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(test)] | |
// result on my machine: | |
// test bench_get_bbox ... bench: 1,454,908 ns/iter (+/- 140,500) | |
// test bench_get_bbox_fold ... bench: 2,744,768 ns/iter (+/- 302,968) | |
extern crate test; | |
extern crate num; | |
extern crate geo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::ops::Add; | |
use std::ops::Neg; | |
use std::ops::Sub; | |
use num::Num; | |
#[derive(PartialEq, Clone, Copy, Debug)] | |
pub struct Coordinate<T> | |
where T: Num + Copy | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Sequential forward floating feature selection with Jeffries-Matusita Distance | |
============================================================================== | |
Reference: Pudil, P.; Novovicová, J. & Kittler, J. | |
Floating search methods in feature selection Pattern recognition letters, | |
Elsevier, 1994, 15, 1119-1125 |
- lxml - Pythonic binding for the C libraries libxml2 and libxslt.
- boto - Python interface to Amazon Web Services
- Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
- Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
- PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
- Celery - Task queue to distribute work across threads or machines.
- pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder