We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 2.
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
Position,1st Semi,2nd Semi,Finale,Artist name,Country,Song Name,Song video URL,Lyrics_en,Lyrics_ov,Lyrics_credits,Music_credits,Site_Facebook,Site_Youtube,Site_Twitter,Site_Instagram,Site_Spotify,Site_Tiktok,Broadcaster,Candidate_description,source_URL | |
1,TRUE,FALSE,FALSE,The Roop,Lithuania,Discoteque,https://youtube.com/watch?v=0rsUJWSwb0c,,"Ok, I feel the rhythm. | |
Something’s going on here. | |
The music flows through my veins. | |
It's taking over me. | |
It's slowly kickin’ in. | |
My eyes are blinking | |
And I don’t know what is happening. | |
I can’t control it. | |
Don’t wanna end it. |
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
{% for post in site.posts limit: 6 %} | |
{% assign count = 0 %} | |
{% unless post.categories contains 'talks' %} | |
{% assign count = count+1 %} | |
{% unless count<=3 %} | |
{% include component__post-preview.html %} | |
{% endunless %} | |
{% endunless %} | |
{% endfor %} |
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
function clearChecking() { | |
// On récupère la feuille Check-in | |
let checkingSheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('🕰 Check-In'); | |
// On selectionne cette feuille | |
SpreadsheetApp.setActiveSheet(checkingSheet); | |
// On utilise la fonction setFilter pour filtrer toute les valeurs qui sont TRUE | |
// En conséquence on ne verra plus que les FALSE et null | |
setFilter(3, ['TRUE']); | |
// On récypère toutes le n° des lignes qui ont été filtrées (donc = TRUE) | |
let checkingRows = getIndexesOfFilteredRows(); |
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
<iframe src="https://anchor.fm/essentiel-jose-sanchez/embed" height="102px" width="400px" frameborder="0" scrolling="no"></iframe> | |
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 lambda_handler(event, context): | |
return "Hello %s" % event['username'] |
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
Verifying my Blockstack ID is secured with the address 1BKPjH3M6nrNBYRuC1UdXnoaNZmpxA2oJi https://explorer.blockstack.org/address/1BKPjH3M6nrNBYRuC1UdXnoaNZmpxA2oJi |
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 main | |
import ( | |
"github.com/nuclio/nuclio-sdk-go" | |
) | |
func Handler(ctx *nuclio.Context, evt nuclio.Event) (interface{}, error) { | |
return nuclio.Response{ | |
Body: []byte("Hello, from nuclio :]"), | |
}, nil | |
} |
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
echo "Hello world" | |
# yes... only that... |
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 hello(context, event): | |
context.Response(body="Hello world !") |
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 hello_http(request): | |
return "Hello world !" |
NewerOlder