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
| //go:build dpdk | |
| // Blast dummy UDP packets over several queues (one core each) and print | |
| // packets/sec. ~45 lines of Go driving DPDK through github.com/atoonk/packetio, | |
| // hitting 64-byte line rate on a 100G ConnectX. | |
| // | |
| // Build & run (needs libdpdk installed, e.g. `apt install libdpdk-dev`): | |
| // | |
| // mkdir blast && cd blast # drop this file in as main.go | |
| // go mod init blast |
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
| @Entity | |
| @NamedEntityGraph(name = "graph.Order.items", | |
| attributeNodes = @NamedAttributeNode("items")) | |
| public class Order implements Serializable { | |
| .... |
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
| SELECT SUBSTRING(physical_name, 1, CHARINDEX(N'master.mdf', LOWER(physical_name)) - 1) | |
| FROM master.sys.master_files | |
| WHERE database_id = 1 AND file_id = 1 |
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
| SELECT L.request_session_id AS SPID, | |
| DB_NAME(L.resource_database_id) AS DatabaseName, | |
| O.Name AS LockedObjectName, | |
| P.object_id AS LockedObjectId, | |
| L.resource_type AS LockedResource, | |
| L.request_mode AS LockType, | |
| ST.text AS SqlStatementText, | |
| ES.login_name AS LoginName, | |
| ES.host_name AS HostName, | |
| TST.is_user_transaction as IsUserTransaction, |
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
| -nosplash | |
| --launcher.defaultAction | |
| openFile | |
| -vm | |
| C:/JDK7/jre/bin/server/jvm.dll #Windows | |
| #/Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home/bin/java #OS X | |
| -vmargs | |
| -Xincgc | |
| -Xss1m | |
| -Duser.name=FirstName LastName |
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
| USE [master] | |
| DECLARE @dbName NVARCHAR(MAX) | |
| SET @dbName ='Derp' -- Your DB name here | |
| DECLARE @sql NVARCHAR(MAX) | |
| DECLARE @template NVARCHAR(MAX) | |
| DECLARE @dataDir NVARCHAR(MAX) | |
| SET @dataDir = (SELECT SUBSTRING(physical_name, 1, CHARINDEX(N'master.mdf', LOWER(physical_name)) - 1) FROM master.sys.master_files WHERE database_id = 1 AND file_id = 1) |