https://kbopub.economie.fgov.be/kbopub/zoeknaamfonetischform.html
https://ec.europa.eu/taxation_customs/vies/vatRequest.html
https://dofi.ibz.be/fr/themes/faq/redevance
Office des Etrangers
| public class ReadExcelColumnValues { | |
| public static void main(String[] args) throws IOException { | |
| String sheetName = "Sheet2"; | |
| String columnName = "Status"; | |
| String[][] sheetValues = getSheetData(App.class.getProtectionDomain().getCodeSource().getLocation().getPath() + "\\Test-excel.xls", sheetName); | |
| List<String> columnValues = getColumnValues(getColumnPosition(columnName, sheetValues), sheetValues); | |
| System.out.println(columnValues); | |
| } | |
| private static List<String> getColumnValues(int columnPosition, String[][] sheetValues) { |
| public List<Employee> findAllEmployee(int offset, int limit) { | |
| String employeeQuery = String.format("select distinct r from %s r left join r.owner as u", Employee.class); | |
| employeeQuery += " WHERE r.status = :status ORDER BY r.lastModification DESC"; | |
| EntityManagerFactory factory = Persistence.createEntityManagerFactory("employee_ds"); | |
| EntityManager shortLiveEntityManager = factory.createEntityManager(); | |
| TypedQuery<RISIndex> query = shortLiveEntityManager.createQuery(employeeQuery, Employee.class).setFlushMode(FlushModeType.COMMIT);; | |
| query.setParameter("status", Status.APPROVED); | |
| query.setHint(QueryHints.QUERY_RESULTS_CACHE, false); | |
| query.setHint(QueryHints.CACHE_USAGE, CacheUsage.CheckCacheThenDatabase); | |
| List<RISIndex> resultList = query |
| /** | |
| * | |
| * Licensed to the Apache Software Foundation (ASF) under one or more | |
| * contributor license agreements. See the NOTICE file distributed with | |
| * this work for additional information regarding copyright ownership. | |
| * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| * (the "License"); you may not use this file except in compliance with | |
| * the License. You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| import { Component, HostListener } from '@angular/core'; | |
| @Component({ | |
| selector: 'app-keyboard-listener', | |
| templateUrl: './keyboard-listener.component.html', | |
| styleUrls: ['./keyboard-listener.component.css'] | |
| }) | |
| export class KeyboardListenerComponent { | |
| // Listener just for one key |
Go is a statically typed, compiled programming language designed at Google. Go is syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency.
This cheat sheet is prepared by refering the book Introducing Go Build Reliable, Scalable Programs by Caleb Doxsey
my personal go note
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| ) | |
| type example struct { | |
| Name string | |
| Address string |