My notes on installing/developing/using griffon - http://griffon-framework.org/
There is an older griffon at 1.5.0 and a more recent one, version 2.8.0+.
Installing on windows
- install jdk
My notes on installing/developing/using griffon - http://griffon-framework.org/
There is an older griffon at 1.5.0 and a more recent one, version 2.8.0+.
Installing on windows
| javascript:(function(){ | |
| var buttons = document.querySelectorAll('#menu ytd-toggle-button-renderer button.style-scope.yt-icon-button'); | |
| var likes = buttons[0].attributes["aria-label"].nodeValue; | |
| var dislikes = buttons[1].attributes["aria-label"].nodeValue; | |
| var regex = /[\d,.]+/; | |
| likes = likes.match(regex); | |
| dislikes = dislikes.match(regex); | |
| alert("Likes: " + likes + "\nDislikes: " + dislikes); | |
| })(); |
| # -*- coding: utf-8 -*- | |
| """ | |
| This python script is used for dumping dbf database files | |
| * python2.7 | |
| """ |
Communication:
This is building a booktoor web application using PHP Laravel, Vue.JS
| import random | |
| """ | |
| A quick exercise in making a tic-tac-toe game in python 3 | |
| """ | |
| class Board: | |
| def __init__(self): | |
| self.newGame() |
These are notes on making a TicTacToe game on Android.
Based on:
Create Android App with Empty Activity
// https://mvnrepository.com/artifact/org.hibernate/hibernate-core
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.16.Final'
// https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.21.0.1'
| import org.hibernate.Session; | |
| import org.hibernate.SessionFactory; | |
| import org.hibernate.Transaction; | |
| import org.hibernate.cfg.Configuration; | |
| import org.testng.annotations.BeforeClass; | |
| import org.testng.annotations.Test; | |
| import org.testng.Assert; | |
| import javax.persistence.*; | |
| import java.util.List; |