Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - admin

Pages: [1]
1
Libraries / Re: Hedgecode Snooker Score API
« on: 06:14:16, 15 Nov 2019 »
Hedgecode Snooker Score API v.0.2 [15.11.2019]:

Added the following features:
  • New functionality for parsing URLs and HTML tags in the string data;
  • Improved output to the console;
  • Added new requests: event rounds and event seedings;
  • Added types of the events;
  • Added header X-Requested-By for requests to snooker.org;
  • Added MoneySeedings ranking type.
Download: 0.2

2
Libraries / Re: Hedgecode Snooker Score API
« on: 06:08:35, 15 Nov 2019 »
Hedgecode Snooker Score API v.0.1 [02.06.2017]:

In initial release of the library implemented the following functional:
  • Set of base requests: events/tournaments in a season, matches, players and rankings;
  • Ability to sort sets of incoming data by various parameters;
  • Ability to cache some basic request data on the client side.
Download: 0.1

3
JavaScript / Re: Hedgecode Rotator
« on: 23:53:27, 29 May 2019 »
Hedgecode Rotator v.0.2 [16.05.2019]:

Release included the following new features and fixes:
  • New objects rotation effects: bounce, drop, explode and puff (library jquery-ui.js is required for correct effects work);
  • New rotation mode mashup to display all possible effects (full functionality demonstration mode of the plugin);
  • Added the ability to disable the display of object controls for radio buttons (input parameter isCtrls) and for forward/backward arrows (input parameter isArrows);
  • Added the ability to select the location of object controls both inside and outside the rotation area (input parameter isInnerCtrls);
  • Fixed some visualization errors when rotating objects related to forced switching (overlay objects) and multiple pressing of radio buttons (waiting mode).
Version: 0.2 (download)

Usage:

To use the plugin in your HTML project you need to copy src/rotator.js, src/css/rotator.css and src/css/controls.png files to the appropriate directories of your project. After that choose a set of images for rotation and add the following code to the HTML page:

Code: html
      <head>
          <script src="js/jquery.js"></script>
          <script src="js/rotator.js"></script>
      </head>

      <body>
          <div id="rotator-box">
              <img src="img/image1.png">
              <img src="img/image2.png">
              ...
          </div>

          <script>
              $(function () {
                  $('#rotator-box').rotator({
                      autoplay: true,
                      effect: "slide",
                  });
              });
          </script>
      </body>
It should also be noted that the library jquery.js is required for the plugin to work, and for some specific effects the library jquery-ui.js will be also required. The above necessary libraries can be found in the directory examples/js/ of the plugin source code.

4
JavaScript / Re: Hedgecode Rotator
« on: 23:45:35, 29 May 2019 »
Hedgecode Rotator v.0.1 [14.12.2017]:

In initial release of the plugin implemented the following functional:
  • Ability to choose one of two types of objects rotation effects: slide or fade;
  • Presence of visual controls for the rotation of objects: start, stop, next, previous, go to a specific object;
  • Ability to set time intervals for rotation of objects via the options parameter.
Version: 0.1 (download)

5
JavaScript / Hedgecode E-Mail Obfuscator
« on: 14:29:51, 07 Aug 2018 »
Hedgecode E-Mail Obfuscator
(javascript plugin)

Short description:
Hedgecode E-Mail Obfuscator is a simple javascript plugin based on jQuery for obfuscating e-mail addresses on HTML pages, which makes it difficult to collect personal data for Internet bots.

Current version: 1.01 (download)

See also: Hedgecode Javascript Development

6
JavaScript / Hedgecode Rotator
« on: 14:24:31, 07 Aug 2018 »
Hedgecode Rotator
(javascript plugin)

Short description:
Hedgecode Rotator is a multifunctional javascript plugin for display of rotational HTML objects based on jQuery library.

Functional features:
  • Ability to choose one of six types of objects rotation effects: slide, fade, bounce, drop, explode or puff;
  • Presence of visual controls for the rotation of objects: start, stop, next, previous, go to a specific object;
  • Ability to set time intervals for rotation of objects via the options parameter.
Current version: 0.2 (download)

See also: Hedgecode Javascript Development

7
Libraries / Hedgecode Snooker Score API
« on: 09:44:06, 10 Jan 2018 »
Hedgecode Snooker Score API
(org.hedgecode.snooker.snooker-score-api)

Library page: snooker-score-api

Short description:
Hedgecode Snooker Score is an API library for portal snooker.org, which contains the results of snooker competitions and other snooker information. The library provides a set of entity objects that can be used in client applications (to inform about the results of snooker) developed in Java.

FAQ, Usage

Current version: 0.2

8
Libraries / Hedgecode AceStream Channel Parser
« on: 09:36:35, 10 Jan 2018 »
Hedgecode AceStream Channel Parser
(org.hedgecode.acestream.acestream-channel-parser)

Library page (under construction): acestream-channel-parser

Short description:
AceStream Channel Parser is used to parse live TV-channel URLs from livestream internet portals (such as torrent-tv.ru) and generate local playlists for play by AceStream Player.

Current version: 0.2

9
Maven Plugins / Hedgecode Classpath Maven Plugin
« on: 09:28:45, 10 Jan 2018 »
Hedgecode Classpath Maven Plugin
(org.hedgecode.maven.plugins.classpath-maven-plugin)

Plugin page: classpath-maven-plugin

Short description:
The Hedgecode Classpath Plugin is used to add the different Java libraries (e.g. non-maven jars) to the classpath of your project.

FAQ, Usage

Current version: 1.0

Pages: [1]