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 com.olender.webapp.admin.pages.test; | |
import org.apache.wicket.markup.html.form.TextField; | |
import pl.doa.entity.IEntity; | |
import pl.doa.wicket.ui.page.EntityPage; | |
import pl.doa.wrapper.wicket.service.WrappedCallServiceForm; | |
import pl.doa.wrapper.wicket.ui.link.AbstractOutputOperator; |
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 com.shelf.web; | |
import pl.doa.GeneralDOAException; | |
import pl.doa.IDOA; | |
import pl.doa.container.IEntitiesContainer; | |
import pl.doa.document.IDocument; | |
import pl.doa.entity.IEntity; | |
import pl.doa.entity.IEntityEvaluator; | |
import pl.doa.servlet.filter.ApplicationFilter; | |
import pl.doa.servlet.filter.processor.rest.RestCallResponse; |
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
const DBus = imports.dbus; | |
const NotificationRemoteInterface = { | |
name: 'org.freedesktop.Notifications', //interface name | |
methods: [ | |
{ //method name and signature | |
name: 'Notify', | |
inSignature: 'susssasa{sv}i', | |
outSignature: 'u' | |
} |
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 pl.doa.artifact.impl; | |
import org.apache.ivy.core.module.descriptor.Artifact; | |
import org.apache.ivy.core.module.descriptor.ModuleDescriptor; | |
import org.apache.ivy.plugins.parser.m2.PomModuleDescriptorParser; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import pl.doa.GeneralDOAException; | |
import pl.doa.IDOA; | |
import pl.doa.artifact.ArtifactPropertiesMatcher; |
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
/usr/lib/jvm/java-7-oracle/bin/java -Didea.launcher.port=7532 -Didea.launcher.bin.path=/opt/apps/idea-IC-129.451/bin -Dfile.encoding=UTF-8 -classpath /usr/lib/jvm/java-7-oracle/jre/lib/jfr.jar:/usr/lib/jvm/java-7-oracle/jre/lib/jfxrt.jar:/usr/lib/jvm/java-7-oracle/jre/lib/rt.jar:/usr/lib/jvm/java-7-oracle/jre/lib/management-agent.jar:/usr/lib/jvm/java-7-oracle/jre/lib/jsse.jar:/usr/lib/jvm/java-7-oracle/jre/lib/jce.jar:/usr/lib/jvm/java-7-oracle/jre/lib/javaws.jar:/usr/lib/jvm/java-7-oracle/jre/lib/deploy.jar:/usr/lib/jvm/java-7-oracle/jre/lib/resources.jar:/usr/lib/jvm/java-7-oracle/jre/lib/charsets.jar:/usr/lib/jvm/java-7-oracle/jre/lib/plugin.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/sunjce_provider.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-7-oracle/jre/lib/ext/sunpkcs11.jar:/opt/java/projects/DOA/environment/standalone/target/ |
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 org.doaplatform.ircbot.jenkins; | |
import static org.doaplatform.ircbot.jenkins.JenkinsServerFacade.forServerDetails; | |
import static org.doaplatform.ircbot.jenkins.event.JobActivityEvent.TO_RESPONSE; | |
import com.offbytwo.jenkins.model.Job; | |
import com.offbytwo.jenkins.model.JobWithDetails; | |
import java.io.IOException; | |
import java.net.URISyntaxException; | |
import org.doaplatform.ircbot.jenkins.event.JobActivityEvent; | |
import org.doaplatform.ircbot.jenkins.event.JobActivityEventListener; |
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
class ValaWebApplication : GLib.Object { | |
public static int main(string[] args) { | |
new ValaWebApplication().start_web_server(); | |
return 0; | |
} | |
public void start_web_server() { | |
var app = new Valum.Router(); | |
initialize_web_app(app); |
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
> jira issues | |
1. [AE-427] Prepare reliable emulator of Eclipse devices - <OPEN> | |
2. [AE-426] Prepare branch for sprint #14 - <OPEN> | |
3. [AE-425] Manual dispatch possible for sin binned callsign/ driver - <OPEN> | |
4. [AE-424] SinBin - empty Driver/Callsign - <OPEN> | |
5. [AE-423] SinBin - wrong time values in Start time and Added by columns - <OPEN> | |
6. [AE-422] CarsOverviewMonitor n+1 select problem - <OPEN> | |
7. [AE-421] SubFleet disappear for newly created vehicle record - <OPEN> | |
8. [AE-420] Prepare tools emulating realistic job & fleet load - <RESOLVED> | |
9. [AE-419] Turn off XDoclet code generation during a normal EVO build - <RESOLVED> |
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
PDDocument pdfDocument = PDDocument.load(new File("file.pdf")); | |
ObjectExtractor objectExtractor = new ObjectExtractor(pdfDocument); | |
PageIterator pageIterator = objectExtractor.extract(); | |
pageIterator.forEachRemaining(new Consumer<Page>() { | |
@Override | |
public void accept(Page page) { | |
SpreadsheetExtractionAlgorithm extractionAlgorithm = new SpreadsheetExtractionAlgorithm(); | |
List<? extends Table> tables = extractionAlgorithm.extract(page); | |
} |
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
passwd | |
systemctl enable sshd.service | |
systemctl start sshd.service | |
parted -s /dev/sda mklabel gpt | |
parted -s /dev/sda mkpart "primary" "fat16" "50MB" "60MB" | |
parted -s /dev/sda mkpart "primary" "ext4" "1%" "99%" | |
parted -s /dev/sda set 1 bios_grub on | |
mkfs.ext4 /dev/sda2 |
OlderNewer