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
set default="0" | |
insmod part_msdos | |
set root='(hd0,msdos1)' | |
set timeout=1 | |
menuentry "MyOS" { | |
set root='(hd0,msdos1)' | |
legacy_kernel /kernel /kernel | |
boot |
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/bin/env python | |
import sys | |
import glob | |
import os | |
import sqlite3 | |
try: | |
format = sys.argv[1] | |
except: | |
format = 'artist - title' |
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
at Impinj.OctaneSdk.Internals.ExceptionHelper.CheckConnectResult(Result result, ApplicationConnectionState state) | |
at Impinj.OctaneSdk.SpeedwayReader.Connect(String readerName) | |
at DataOneLib.SpeedwayHardwareReader.Connect(String addr, Int32 port) in C:\DataOne\DataOneLib\Hardware\SpeedwayHardwareReader.cs:line 85 |
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
# See /usr/share/postfix/main.cf.dist for a commented, more complete version | |
# Debian specific: Specifying a file name will cause the first | |
# line of that file to be used as the name. The Debian default | |
# is /etc/mailname. | |
#myorigin = /etc/mailname | |
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) | |
biff = no |
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
Dear <name>, | |
I'm interested in your project. Please give me additional details about <matter>. | |
Also, I'd like to know ... <question>. | |
Approximate cost and timeframe for this kind of project are <cost & timeframe>. | |
Please let me know if this is suitable for you. | |
With the best regards, | |
<name> |
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
def id(_, s): | |
if s.__class__ == list and len(s) > 0: | |
s = s[0] | |
return s if s else str(random.randint(1, 9000*9000)) |
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/12/12 20:52:30:292 EET] 000000ab XATransaction E J2CA0026E: Method addSync caught javax.transaction.RollbackException: Transaction rolled back | |
at com.ibm.ws.Transaction.JTA.TransactionImpl.registerSynchronization(TransactionImpl.java:3589) | |
at com.ibm.ws.Transaction.JTA.TransactionImpl.registerSynchronization(TransactionImpl.java:3568) | |
at com.ibm.ws.Transaction.JTA.TranManagerSet.registerSynchronization(TranManagerSet.java:515) | |
at com.ibm.ejs.j2c.XATransactionWrapper.addSync(XATransactionWrapper.java:290) | |
at com.ibm.ejs.j2c.ConnectionManager.initializeForUOW(ConnectionManager.java:1340) | |
at com.ibm.ejs.j2c.ConnectionManager.involveMCInTran(ConnectionManager.java:1065) | |
at com.ibm.ejs.j2c.ConnectionManager.allocateConnection(ConnectionManager.java:613) | |
at com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource.getConnection(WSJdbcDataSource.java:449) |
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/12/12 22:30:43:203 EET] 00000083 AbstractContr E The requested operation violates one or more access constraints. | |
com.ibm.icm.jcr.access.AccessDeniedException: The requested operation violates one or more access constraints. | |
at com.ibm.icm.jcr.NodeImpl.checkPermissions(NodeImpl.java:6072) | |
at com.ibm.icm.jcr.WorkspaceImpl.getNodeByUuid(WorkspaceImpl.java:1164) | |
at com.ibm.icm.jcr.WorkspaceImpl.getNodeByUuid(WorkspaceImpl.java:1056) | |
at com.ibm.workplace.wcm.data.jcr.JCRDataUtils.getNodeByUUID(JCRDataUtils.java:265) | |
at com.ibm.workplace.wcm.domain.transformers.controllable.AbstractControllableTransformer.implodeControl(AbstractControllableTransformer.java:737) | |
at com.aptrix.pluto.control.Controllable.getControl(Controllable.java:212) | |
at com.aptrix.pluto.control.Controllable.controlIterator(Controllable.java:317) |
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 by.fksis.schedule.parser; | |
import java.util.ArrayList; | |
import java.util.List; | |
import org.htmlparser.Node; | |
import org.htmlparser.Parser; | |
import org.htmlparser.filters.CssSelectorNodeFilter; | |
import org.htmlparser.util.NodeList; | |
import org.htmlparser.util.ParserException; |
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 by.fksis.schedule.parser; | |
public class Test { | |
private interface ISmth { | |
public void print(); | |
} | |
public static void main(String[] args) { | |
final string str = "Hello"; |