UTC: 2025-03-08 12:34
mlt/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
file | lineno | pos | func | not_us | msgid | |
---|---|---|---|---|---|---|
./tools/hunspell.cxx | 1900 | 44 | gettext | v | \nCopyright (C) 2002-2022 L\303\241szl\303\263 N\303\251meth. License: MPL/GPL/LGPL.\n\nBased on OpenOffice.org's Myspell library.\nMyspell's copyright (C) Kevin Hendricks, 2001-2002, License: BSD.\n\n |
#define WIN32_LEAN_AND_MEAN | |
#include <winsock2.h> | |
#include <windows.h> | |
#define SECURITY_WIN32 | |
#include <security.h> | |
#define SCHANNEL_USE_BLACKLISTS | |
#include <subauth.h> | |
#include <schnlsp.h> | |
#include <shlwapi.h> | |
#include <assert.h> |
// ==UserScript== | |
// @name Add PlayRun button to LibriVox | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-07-29 | |
// @description Speed up adding LibriVox books into PlayRun | |
// @author mlt | |
// @match https://librivox.org/*/ | |
// @match https://www.playrun.app/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=librivox.org | |
// @grant GM_xmlhttpRequest |
# Chain sqitch metadata dump to structure.sql dumping | |
# | |
# Structure dump does not include any data | |
# whilst Sqitch expect its metadata at all times. | |
# This allows to cache DB schema in a single sql dump to speed up tests | |
# while allowing continuous deployment of new changes with sqitch. | |
# | |
# sqitch deploy ... | |
# bundle exec rails db:structure:dump RAILS_ENV=test | |
# bundle exec rails test |
#!/usr/bin/env python | |
""" | |
Split a PostgreSQL plain dump file into files for each of its objects. | |
This is used to compare two SQL database contents: both contents are dumped to a | |
plain text file, and they are then processed through this script which generates | |
a file for each database object, which can then be compared using a directory | |
diff program. | |
""" |
# Mix this into an AR class for lookup tables to perform an inquiry. | |
# For example, if Movie has Genre and genres table has id->genre mapping | |
# then one could use the_movie.genre.comedy? instead of the_movie.genre.genre == 'comedy' | |
module LookupTable | |
def self.included(base) | |
raise "#{name} can only be included into classes that inherit from ActiveRecord::Base, #{base.name} does not." unless base < ActiveRecord::Base | |
base.instance_variable_set :@lookup_column, base.name.demodulize.underscore | |
base.extend(ClassMethods) | |
end |
/** | |
JSON editable input. | |
Internally value stored as {city: "Moscow", street: "Lenina", building: "15"} | |
Supported editors: | |
- https://github.com/json-editor/json-editor | |
- https://github.com/josdejong/jsoneditor | |
@class json | |
@extends abstractinput |
UTC: 2025-03-08 12:34
mlt/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
UTC: 2018-12-19 23:24
mlt/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
#include "embeddedRCall.h" | |
#include <R_ext/Parse.h> | |
int | |
main(int argc, char *argv[]) | |
{ | |
SEXP e, tmp; | |
int hadError; | |
ParseStatus status; |