SQLizerClient.Settings.ApiKey = "{your api key}"; // This can be found on https://sqlizer.io/account/
var file = new SQLizerClient.SQLizerFile("source.xlsx");
file.DatabaseType = SQLizerClient.DatabaseType.MySQL;
file.TableName = "my_table";
file.HasHeaders = true;
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
| No user data is collected by the extension itself, but selected IPs are sent to ip-api.com for lookup. |
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() { | |
| // --- CONFIGURATION --- | |
| const INDEX_URL = "https://studiowgx.willgrant.org/"; | |
| function init() { | |
| const ID = 'global-games-nav-overlay'; | |
| if (document.getElementById(ID)) return; | |
| const host = document.createElement('div'); | |
| host.id = ID; |
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 file in site.static_files %} | |
| {% if file.path contains 'assets/gallery/' %} | |
| <div class="gallery-item"> | |
| <a href="{{ site.baseurl }}{{ file.path }}" target="_blank"> | |
| <img src="{{ site.baseurl }}{{ file.path }}" alt="Gallery image"> | |
| </a> | |
| </div> | |
| {% endif %} | |
| {% 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
| .huepulse { | |
| -webkit-animation: huepulse 10s infinite; | |
| } | |
| @-webkit-keyframes huepulse { | |
| 0%, 100% { -webkit-filter: hue-rotate(0deg); } | |
| 50% { -webkit-filter: hue-rotate(180deg); } | |
| } |
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
| {"sidebarBg":"#000000","sidebarText":"#ffffff","sidebarUnreadText":"#ffffff","sidebarTextHoverBg":"#000000","sidebarTextActiveBorder":"#ffffff","sidebarTextActiveColor":"#ffffff","sidebarHeaderBg":"#000000","sidebarHeaderTextColor":"#ffffff","onlineIndicator":"#00ff00","awayIndicator":"#ffa500","dndIndicator":"#ff0000","mentionBg":"#ffffff","mentionBj":"#ffffff","mentionColor":"#000000","centerChannelBg":"#000000","centerChannelColor":"#ffffff","newMessageSeparator":"#ffffff","linkColor":"#add8e6","buttonBg":"#7f7f7f","buttonColor":"#ffffff","errorTextColor":"#ff0000","mentionHighlightBg":"#ffff00","mentionHighlightLink":"#000000","codeTheme":"monokai"} |
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
| // source: https://news.ycombinator.com/item?id=23860213 | |
| for (const node of document.querySelectorAll('[aria-label="Verified account"]')) { | |
| node.closest('[role="article"]').remove() | |
| } |
To convert a file, use to the SQLizerFile object, like this:
using SQLizerClient;
var file = new SQLizerFile("source.csv");
file.DatabaseType = DatabaseType.MySQL;
file.TableName = "my_table";
file.HasHeaders = true;
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 | |
| lsb=$(i2cget -y -f 0 0x34 0x5f) | |
| msb=$(i2cget -y -f 0 0x34 0x5e) | |
| bin=$(( $(($msb << 4)) | $(($lsb & 0x0F)))) | |
| cel=`echo $bin | awk '{printf("%.0f", ($1/10) - 144.7)}'` | |
| fah=`echo $cel | awk '{printf("%.0f", ($1 * 1.8) + 32)}'` | |
| echo "CHIP Temp: $cel°C $fah°F" |
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
| source 'https://rubygems.org' | |
| gem 'jekyll', '3.0.1' | |
| gem 'jekyll-paginate', '1.1.0' | |
| gem 's3_website', '2.12.2' |
NewerOlder