We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 3.
This file contains 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 | |
# Search through the contents of this file | |
search="{full file path}" | |
# Find contents from this file | |
pattern="{full file path}" | |
grep -f <(tr ',' '\n' < "${patterns}") "${search}" | |
# To find contents that is NOT in the search file add -v to the grep command |
This file contains 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
### Get all Blog Articles | |
query { | |
getBlogArticleListing(published: true) { | |
edges { | |
node { | |
id | |
headline | |
blogContentShortend | |
} | |
} |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Jquery Test</title> | |
<script src="jquery-3.1.1.js"></script> | |
<script> | |
$(document).ready(function() { | |
$("#changes_tests p").on( | |
"click", |
This file contains 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
Orangenlikör | |
Dessertvariation "Weihnachtsengel": | |
> Saft (z.B Orange) | |
> 2 Kugeln Vanilleeis | |
> 1 Schluck Likör |
This file contains 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
http://www.elated.com/articles/drag-and-drop-with-jquery-your-essential-guide/ |