Let me preface this by saying this is a new method. It might not work 100% and there might be issues. As of now, its the best you are going to get. The first round of steps is to convert a given save to your own account.
Click to expand
| var deadline = 1577836800000; // 00:00:00, January 1, 2020 | |
| var display = document.querySelector('#countdown'); | |
| function formatTime (milliseconds) { | |
| var seconds = (milliseconds / 1000).toFixed(0); | |
| var minutes = Math.floor(seconds / 60); | |
| var hours = ''; | |
| seconds = Math.floor(seconds % 60); |
Let me preface this by saying this is a new method. It might not work 100% and there might be issues. As of now, its the best you are going to get. The first round of steps is to convert a given save to your own account.
| for i in `curl https://www.cloudflare.com/ips-v4`; do csf -a $i; done |
| Works in Solr 5.3.0, Lucene 5.3.0 | |
| Refer to Solr 101 gist to get solr working https://gist.github.com/pslusarz/7de913ac63e36e8983b8#file-gistfile1-txt | |
| 1. download lucene and copy the following jars into SOLR_ROOT/server/solr-webapp/WEB-INF/lib | |
| - lucene-analyzers-morfologik-X.X.jar, | |
| - apache-solr-analysis-extras-X.X.jar (not in lucene, but in solr/dist) | |
| - morfologik-fsa-X.X.jar, | |
| - morfologik-polish-X.X.jar | |
| - morfologik-stemming-X.X.jar | |
| 2. modify SOLR_ROOT/server/solr/<core>/conf/managed-schema.xml | |
| a) field type definition |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>HTML5 Starter Template</title> | |
| <meta name="description" content="Starter Template"> | |
| <meta name="author" content="Gregry Pike"> | |
| <link rel="stylesheet" href="css/styles.css?v=1.0"> | |
| <!--[if lt IE 9]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
| [mysqld] | |
| datadir=/var/lib/mysql | |
| socket=/var/lib/mysql/mysql.sock | |
| key_buffer_size=32M | |
| query_cache_type=1 | |
| query_cache_size=4M | |
| query_cache_limit=24M | |
| tmp_table_size=128M | |
| max_heap_table_size=128M | |
| innodb_buffer_pool_size = 4000M |
| REGEDIT4 | |
| [HKEY_CLASSES_ROOT\*\shell\cmdhere] | |
| @="Cmd&Here" | |
| [HKEY_CLASSES_ROOT\*\shell\cmdhere\command] | |
| @="cmd.exe /c start cmd.exe /k pushd \"%L\\..\"" | |
| [HKEY_CLASSES_ROOT\Folder\shell\cmdhere] | |
| @="Cmd&Here" |
| mediaQuery = (function() { | |
| // Same as in bootstrap/_variables.less | |
| // var screenXs = 480; // Not used | |
| var screenSm = 768; | |
| var screenMd = 992; | |
| var screenLg = 1200; | |
| var screenXsMax = screenSm - 1; | |
| var screenSmMax = screenMd - 1; |
| function makeNested($source) { | |
| $nested = array(); | |
| foreach ( $source as &$s ) { | |
| if ( is_null($s['parent_id']) ) { | |
| // no parent_id so we put it in the root of the array | |
| $nested[] = &$s; | |
| } | |
| else { | |
| $pid = $s['parent_id']; |
| var p1 = { | |
| x: 20, | |
| y: 20 | |
| }; | |
| var p2 = { | |
| x: 40, | |
| y: 40 | |
| }; |