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
● tarsnap-backup.service - Run tarsnap backups | |
Loaded: loaded (/etc/systemd/system/tarsnap-backup.service; static; vendor preset: disabled) | |
Active: failed (Result: exit-code) since Tue 2019-10-08 18:45:27 CEST; 6min ago | |
Process: 17247 ExecStart=/root/tarsnap.sh (code=exited, status=1/FAILURE) | |
Main PID: 17247 (code=exited, status=1/FAILURE) | |
Okt 08 18:45:26 slevermann.de systemd[1]: Starting Run tarsnap backups... | |
Okt 08 18:45:27 slevermann.de tarsnap.sh[17247]: tarsnap: fprintf: Broken pipe | |
Okt 08 18:45:27 slevermann.de tarsnap.sh[17247]: tarsnap: Error listing archives | |
Okt 08 18:45:27 slevermann.de tarsnap.sh[17247]: tarsnap: Error exit delayed from previous errors. |
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
#!/bin/bash | |
mkdir -p swagger-default-interface-test | |
cd swagger-default-interface-test | |
# Build the fork | |
git clone https://github.com/sonOfRa/swagger-codegen-generators | |
cd swagger-codegen-generators | |
git checkout default-interfaces | |
mvn -DskipTests clean install |
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
/proc/spl/kstat/zfs/fletcher_4_bench:0 0 0x01 -1 0 2462756541 35307406667 | |
/proc/spl/kstat/zfs/fletcher_4_bench:implementation native byteswap | |
/proc/spl/kstat/zfs/fletcher_4_bench:scalar 7336400877 1421003875 | |
/proc/spl/kstat/zfs/fletcher_4_bench:superscalar 9352011287 2980232462 | |
/proc/spl/kstat/zfs/fletcher_4_bench:superscalar4 8799064058 6538857051 | |
/proc/spl/kstat/zfs/fletcher_4_bench:sse2 16603113072 9253624478 | |
/proc/spl/kstat/zfs/fletcher_4_bench:ssse3 16641889174 14556987597 | |
/proc/spl/kstat/zfs/fletcher_4_bench:avx2 25608443347 23398260526 | |
/proc/spl/kstat/zfs/fletcher_4_bench:fastest avx2 avx2 | |
/proc/spl/kstat/zfs/vdev_raidz_bench:17 0 0x01 -1 0 3807522202 35307497244 |
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
@RequestMapping(value = "/file", method = RequestMethod.GET) | |
public @ResponseBody Resource downloadFile(HttpServletResponse response) { | |
File file = new File(PATH); | |
response.setContentType(APPLICATION_PDF); | |
response.setHeader("Content-Disposition", "inline; filename=" + file.getName()); | |
response.setHeader("Content-Length", String.valueOf(file.length())); | |
return new FileSystemResource(file); | |
} |
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
@RequestMapping(value = "/file", method = RequestMethod.GET) | |
public @ResponseBody Resource downloadFile(HttpServletResponse response) { | |
File file = new File(PATH); | |
response.setContentType(APPLICATION_PDF); | |
response.setHeader("Content-Disposition", "inline; filename=" + file.getName()); | |
response.setHeader("Content-Length", String.valueOf(file.length())); | |
return new FileSystemResource(file); | |
} |
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
Hello, this is Dr. Shakiki the spell caster and traditional healing @ shankiki spell temple in the west coast Indian and Africa! and how can we be of help to you! Do you seek for riches, life partner, Cure For Diabetes, Commitment spell, Healing spell, Revenge Spell, bring back your ex husband/wife/lover, | |
success in business spell, gamble spell, break generational curse, break up spell, Favor Spell, Get your scam money back spell, Bank Loan Spell ,jackpot spell, Visa spell, Soul mate Spell, Promotion spell, Protection spell, make marriage work, protect marriage, Fertility Spell, stop divorce, Voodoo love spell, win court case, make people love you, break a curse, bring your children back from your Ex, Win child custody in court, you are at the right place. Return your lost love in 94hours, what do you seek? contact me via my private email on [email protected] | |
visit my site to learn more.... https://yolashakikispell.yolasite.com/ Never inform anyone, you want to cast a spell otherwise it won |
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 interface AcceptedFeedbackRepository extends PagingAndSortingRepository<AcceptedFeedback, Long> { | |
boolean existsByTopicAndScaleAndAcceptedFromBeforeAndAcceptedUntilAfter( | |
FeedbackTopic topic, FeedbackScale scale, ZonedDateTime time, ZonedDateTime timeAgain); | |
default boolean wrapper(FeedbackTopic topic, FeedbackScale scale, ZonedDateTime time, ZonedDateTime timeAgain) { | |
return existsByTopicAndScaleAndAcceptedFromBeforeAndAcceptedUntilAfter(topic, scale, time, timeAgain); | |
} | |
} |
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
<databaseChangeLog | |
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | |
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd | |
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd"> | |
<changeSet id="3" author="Simon Levermann" dbms="mysql"> | |
<renameTable oldTableName="Accepted_Feedback" newTableName="accepted_feedback"/> | |
<renameTable oldTableName="Feedback" newTableName="feedback"/> | |
<renameTable oldTableName="Feedback_Item" newTableName="feedback_item"/> |
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
<?php | |
/** | |
* Update the specified resource in storage. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \App\User $user | |
* @return \Illuminate\Http\Response | |
*/ | |
public function update(Request $request, User $user) | |
{ |
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 feedback0_.id as id1_1_, feedback0_.entry_date as entry_da2_1_, feedback0_.feedback_date as feedback3_1_, feedback0_.feedback_location_id as feedback4_1_, feedback0_.location_id as location5_1_, feedback0_.note as note6_1_ from feedback feedback0_ where feedback0_.entry_date>? | |
o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [TIMESTAMP] - [2018-11-27T17:31:57.569] |