ogrelab.ikratko.comOgre's

ogrelab.ikratko.com Profile

Ogrelab.ikratko.com is a subdomain of Ikratko.com, which was created on 2006-08-11,making it 18 years ago.

Description:Blog about Android, PHP, databases and other...

Discover ogrelab.ikratko.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

ogrelab.ikratko.com Information

HomePage size: 63.65 KB
Page Load Time: 0.401135 Seconds
Website IP Address: 91.196.124.119

ogrelab.ikratko.com Similar Website

Tactics Ogre: Reborn | SQUARE ENIX
tactics-ogre.square-enix-games.com
Ogre - ogr2ogr web client
ogre.adc4gis.com
Tactics Ogre: Let Us Cling Together
luct.tacticsogre.com

ogrelab.ikratko.com Httpheader

Date: Thu, 16 May 2024 16:56:28 GMT
Server: Apache
Link: http://ogrelab.ikratko.com/wp-json/; rel="https://api.w.org/", https://wp.me/1m3wA; rel=shortlink
Upgrade: h2,h2c
Connection: Upgrade
Transfer-Encoding: chunked
Content-Type: text/html;

ogrelab.ikratko.com Ip Information

Ip Country: Bulgaria
Latitude: 42.696
Longitude: 23.332

ogrelab.ikratko.com Html To Plain Text

Lab Warning : Use of undefined constant _FILE_ - assumed ’_FILE_’ (this will throw an Error in a future version of PHP) in /home/bolyarco/www-ikratko/ogrelab/wp-content/plugins/ad-blocker-stats-vip/ad-blocker-stats-vip.php on line 13 Lab Blog about Android, PHP, databases and other tech stuff Zoneminder configuration for Floureon 1080P 2017-11-21 Recently I bought Floureon 1080P 18x . I was planning to use it to test an idea about car license plate recognition. The camera came with software for Windows which was no go for me because I was planning to use Ubuntu linux. After spending some time looking for a linux software to control the cam I found Zoneminder . It is free and open source but it lacked support for Floureon cameras. Long story short, I had to make some additions to Zoneminder in order to make it work. Here is a simple guide: … more / още » Posted in / Публикувана в Uncategorized | No Comments / Няма коментари » Sending new transfer (create transaction) to IOTA node using Java (aka sendTransfer) 2017-09-10 Due to the lack of any official documentation it is hard to start using IOTA . Here you will find a short tutorial about sending transfer (i.e. creating transaction) and checking it’s status. I am assuming that you use Intellij IDEA. Project setup 1. Create new gradle project 2. Add following dependencies to your build.gradle: compile ’com.github.iotaledger:iota.lib.java:f43d606’ compile ’ch.qos.logback:logback-classic:1.2.3’ Building IotaAPI In order to execute commands against IOTA node you have to create an IotaAPI instance. IotaAPI is the client that connects to a node and provides you the services of IOTA. api = new IotaAPI.Builder().protocol(PROTOCOL).host(HOST).port(((Integer) PORT).toString()).build(); where PROTOCOL, HOST and PORT are constants defining the node’s address. Preparing and sending a transfer For the sake of simplicity here we will send "empty" transfer, i.e. with value = 0. The code: List transfers = new ArrayList(); // (1) Transfer t = new Transfer(ADDRESS_TO, // (2) 0, // (3) TrytesConverter.toTrytes("some msg"), // (4) "999999999999999999999999999"); // (5) transfers.add(t); // (6) SendTransferResponse resp = api.sendTransfer(SEED, // (7) 2, // (8) 9, // (9) 15, // (10) transfers, // (11) null, // (12) ADDRESS_REMAINDER); // (13) First we need to prepare the transfer(s). (1) we are createing a list that will hold our transfer(s) (2) ADDRESS_TO is the address of the recipient (3) we set 0 for the value of the transfer, i.e. "empty" transfer (4) this is the message. It is up to you what the message will contain but it must be encoded to trytes. (5) optional tag, here we send empty tag, i.e. 999999999999999999999999999 (6) add the Transfer object to the list (7) send the Transfer. Here SEED is your seed (8) 2 is the security level (default value) (9) 9 is the depth (default value) (10) 15 is inWeightMagnitude which is basically the amount of PoW that is done for a transaction (11) your transfer(s) (12) prepared list of inputs. What an input really means is an address from which to take the iotas for the transfer. One transaction with value may use several inputs/address. We put null here because our value is 0 (13) address where the remainder of the transaction to be send. In our case not used because the value is 0. Remainder is difference between the sum of all inputs and the value of the transaction. In the returned SendTransferResponse object you have a field successfully which is an array containing one boolean value per transaction which indicates if the transfer is send successfully. Please note that "send" differs from "confirmed". "Send" just means that the node received and accepted the transfer. Your transaction will now have "Pending" status. If you send 2 transfers at once you will get 2 transactions. Those 2 transactions will be in the same bundle. Now you may ask "Where is my transaction hash and how do I check if it is confirmed?". Well, oddly enough, SendTransferResponse does not contain the transaction hash(es) even though it is quite easy for it do to so because in the underlying code that information exist. It is probably just because the IOTA’s java lib is still immature and this may change in the future. In order to find your transaction’s hash you will have to use: FindTransactionResponse resp = api.findTransactions(new String[] {ADDRESS_FROM}, null, null, null); In the response object you will get all transactions (their hashes) for this address and you will have to use the last. Then to check the status of the transaction: GetInclusionStateResponse inclusionResp = api.getLatestInclusion(new String[] {transHash}); In inclusionResp there is a field ’states’ which contain an array with the states of all matched transactions (in our case just one). If it is ’true’ your transaction is approved. Posted in / Публикувана в IOTA Cryptocurrency , Java | No Comments / Няма коментари » How to check IOTA IRI neighbors or node status 2017-09-08 So you had your IRI up and running and now you need to check the node status or how your neighbor are performing? I am using this simple solution: Prerequisites: 1. Chrome/Chromium browser 2. Restlet client plug-in for Chrome 3. Json export of the requests’ definition Install the plug-in, start it, then click Import in the loser left corner then select "Restlet client repository", select the file, then click checkbox next to IRI, then import. In the left menu now you will have menu item IRI. Expand it, click on "Neighbors" and the neighbors request will be shown on the right. Change "http://yourserver:14265/" to reflect your server’s address and port. Click "Save" to save the changes. Now click the "Send" button and scroll down. You should see something that looks like: Click on "Node info" in the menu and do the same for it. That is it. I hope this short tutorial was helpful. Posted in / Публикувана в IOTA Cryptocurrency | No Comments / Няма коментари » [Android] Setting up Google single sign in 2017-01-16 This post is more like a note to myself. Setting up Google sign in is not something I do very often. It happens on average once a year and each time I have to do it I have to struggle with the crappy documentation (because I manage to forget the implementation details). So: 1 .Go to Google developer console at https://console.developers.google.com/apis/ 2. Create new project, Click ’Credentials’ menu item 3. Click the Create credentials button - OAuth client ID - Web application - Create. Don’t mind the "Web application" thing, you need this for the android app. Enter some name and then Save . Google will generate two things for it: Client ID and Client secret. Client ID is used in the android app when creating GoogleSignInOptions like this: GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN) .requestIdToken(getString(R.string.google_client_id)) .build(); Client secret is used on the server side only. 4. Now we have to create android credentials for both debug and release (optionally) . 4.1. Debug Click the Create credentials button - OAuth client ID - Android For name use ’Android client debug’ (for example) For signing-certificate finger print use: keytool -exportcert -list -v -alias androiddebugkey -keystore ~/.android/debug.keystore to show the fingerprint (use SHA-1) For package name use the package name from your AndroidManifest.xml. You may need to add ’.debug’ suffix if gradle is configured to add it when building debug version. 4.2. Release Do the same but using the release key keytool -exportcert -keystore android_release_keys.keystore -list -v 4. Go to https://developers.google.com/identity/sign-in/android/start-integrating Click ’Get a configuration’ file button. Select the app and package (usually release package, i.e. without debug). ’Continue and configure services’ There is a button ’Enable google sign in", Click it. There is a button "Generate conf files". Click it. There is a button...

ogrelab.ikratko.com Whois

Domain Name: IKRATKO.COM Registry Domain ID: 550403025_DOMAIN_COM-VRSN Registrar WHOIS Server: whois.cloudflare.com Registrar URL: http://www.cloudflare.com Updated Date: 2023-07-12T20:41:12Z Creation Date: 2006-08-11T16:01:08Z Registry Expiry Date: 2024-08-11T16:01:08Z Registrar: CloudFlare, Inc. Registrar IANA ID: 1910 Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Name Server: ARYANNA.NS.CLOUDFLARE.COM Name Server: DEXTER.NS.CLOUDFLARE.COM DNSSEC: unsigned >>> Last update of whois database: 2024-05-18T07:33:16Z <<<