Skip to content

Instantly share code, notes, and snippets.

View naveensky's full-sized avatar
🎯
SearchTap | www.searchtap.io

Naveen Gupta naveensky

🎯
SearchTap | www.searchtap.io
View GitHub Profile
@naveensky
naveensky / wordle_list.txt
Created February 14, 2022 13:53
Wordle data list as per their source code
cigar
rebut
sissy
humph
awake
blush
focal
evade
naval
serve
# Important note: If you want the code in this project to be formatted as per the formatting configuration mentioned in this '.editorconfig' file, then open webstorm, go to 'File' => 'Setting' => 'Editor' => 'Code Style' => 'EditorConfig' => Set 'Enable EditorConfig Support' to true => Click 'Apply' => Click 'Ok'
# For Knowledge: The formatting settings of webstorm IDE of various file types, like Javascript, json, Typescript files, only apply when the above mentioned checkbox of 'Enable EditorConfig support' is set to false.
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = false
max_line_length = 120
@naveensky
naveensky / papertrail-config.xml
Created January 11, 2016 23:23
papertrail-config.xml
<appender name="papertrail" class="com.papertrailapp.logback.Syslog4jAppender">
<layout class="ch.qos.logback.classic.PatternLayout">
<pattern>%-5level %logger{35}: %m%n%xEx</pattern>
</layout>
<syslogConfig class="org.productivity.java.syslog4j.impl.net.tcp.ssl.SSLTCPNetSyslogConfig">
<host>----removed----</host>
<port>----removed----</port>
<ident>medharbour-website-beta</ident>
</syslogConfig>
@naveensky
naveensky / web.config
Created November 18, 2015 17:25
SMTP Settings for Web.config
<system.net>
<mailSettings>
<!--<smtp deliveryMethod="Network" from="">
<network host="smtp.gmail.com" port="587" enableSsl="true" userName="" password="" defaultCredentials="false"/>
</smtp>-->
<smtp deliveryMethod="SpecifiedPickupDirectory">
<specifiedPickupDirectory pickupDirectoryLocation="c:\Tmp\mail\" />
</smtp>
</mailSettings>
</system.net>
@naveensky
naveensky / sj-sample-json.json
Last active October 31, 2015 10:35
Sample Json for SJ
[
{
"dId": 1234,
"pId": 4567,
"v": "12.34",
"ts": "1994-11-05T08:15:30-05:00"
},
{
"dId": 1234,
"pId": 4567,
@naveensky
naveensky / gist:a23682e0780fad896609
Created May 7, 2015 10:42
Format for HTML Table
<table class="table table-data-cms">
<thead>
<tr>
<th>Column Heading 1</th>
<th>Column Heading 2</th>
<th>Column Heading 3</th>
<th>Column Heading 4</th>
</tr>
</thead>
<tbody>
#! /bin/sh
### BEGIN INIT INFO
# Provides: god
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: God initscript
### END INIT INFO