This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "default_encoding": "UTF-8", | |
| "font_size": 10, | |
| "default_line_ending": "unix" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Open terminal | |
| netsh wlan show profiles | |
| netsh wlan show profile name=<profile> key=clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "timeStamp": 1525897461412, | |
| "version": "1.16.4", | |
| "userSettings": { | |
| "advancedUserEnabled": false, | |
| "alwaysDetachLogger": false, | |
| "autoUpdate": true, | |
| "cloudStorageEnabled": false, | |
| "collapseBlocked": true, | |
| "colorBlindFriendly": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| about-scheme | |
| almancam.com | |
| arstechnica.com | |
| blog.polymail.io | |
| brilliant.org | |
| calendar.google.com | |
| chrome-extension-scheme | |
| chrome-scheme | |
| crypto.stackexchange.com | |
| developer.mozilla.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! 2/3/2018, 8:35:20 PM https://www.cnet.com/how-to/how-to-enable-reader-mode-in-firefox-for-android/ | |
| www.cnet.com##.uvpjs__btn-large-play--hidden.uvpjs__btn-large-play | |
| helpfoxpro.com | |
| eacdn.com | |
| http://ikwauek.com | |
| zddxlih.com | |
| push-browser.systems | |
| seven-our-prize91.loan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| final BeanItemContainer<String> bean = new BeanItemContainer<>(String.class); //com.vaadin.data.util.BeanItemContainer<BEANTYPE> | |
| List<String> list = new ArrayList<>(); | |
| bean.addAll(list); | |
| this.twinColSelect.setContainerDataSource(list); //com.vaadin.ui.TwinColSelect | |
| filter.setTextChangeEventMode(TextChangeEventMode.LAZY); //com.vaadin.ui.TextField | |
| filter.addTextChangeListener(new TextChangeListener() { | |
| private static final long serialVersionUID = 1L; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ; created by Walter Glenn | |
| ; for How-To Geek | |
| ; article: https://www.howtogeek.com/225844/how-to-make-windows-photo-viewer-your-default-image-viewer-on-windows-10/ | |
| [HKEY_CLASSES_ROOT\Applications\photoviewer.dll] | |
| [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package businessLogic; | |
| /* | |
| * Copyright 2005 Joe Walker | |
| * | |
| * Licensed 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" | |
| xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:task="http://www.springframework.org/schema/task" xmlns:jaxrs="http://cxf.apache.org/jaxrs" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
| http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd | |
| http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static Connection getConnection() throws SQLException { | |
| logger.debug("Connection requested."); | |
| if(hikariConfig == null){ | |
| hikariConfig = new HikariConfig("datasource.properties"); | |
| } | |
| if(dataSource == null){ | |
| // dataSource = new HikariDataSource(hikariConfig); | |
| dataSource = (HikariDataSource) getContext().getBean("dataSource"); | |
| } | |
NewerOlder