๐Ÿš€ OharaLumina

All Posts

Thumbnail for Posts

Regular expression for matching HHMM time format

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Regex

I want a regexp for matching time in HHMM format Heres what I have and it works 02030509 This matches everything from 0000 to 2359 However I want to change it

Thumbnail for Posts

Right mime type for SVG images with fonts embedded

๐Ÿ“‚ Categories: Html
๐Ÿท๏ธ Tags: Svg Font-Face Mime-Types

This is the usual SVG mime type imagesvgxml And it works great However when embedding an SVG font chrome tells you the mime type is incorrect obviously because

Thumbnail for Posts

Ruby capitalize every word first letter

๐Ÿ“‚ Categories: Ruby
๐Ÿท๏ธ Tags: String

I need to make the first character of every word uppercase and make the rest lowercase manufacturerMFABRANDfirstupcase is only setting the first letter

Thumbnail for Posts

Search and replace in bash using regular expressions

๐Ÿ“‚ Categories: Bash
๐Ÿท๏ธ Tags: Regex

Ive seen this example helloho02123ware38384you443d34o3434ingtod38384day echo hello09 Which follows this syntax variablepatternreplacement Unfortunately the

Thumbnail for Posts

Select Pandas rows based on list index

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Pandas

I have a dataframe df 20060930 10103 NaN 10103 7981 20061231 15915 NaN 15915 12686 20070331 3196 NaN 3196 2710 20070630 7907 NaN 7907 6459 Then I want to

Thumbnail for Posts

session not created This version of ChromeDriver only supports Chrome version 74 error with ChromeDriver Chrome using Selenium

๐Ÿ“‚ Categories: Programming

Im trying to run RSelenium using the rsDriver function but when I run rD lt rsDriver I get a message telling me I need a newer version of Chrome gt rD lt

Thumbnail for Posts

Set cookies for cross origin requests

๐Ÿ“‚ Categories: Programming

How to share cookies cross origin More specifically how to use the SetCookie header in combination with the header AccessControlAllowOrigin Heres an

Thumbnail for Posts

Stop pip from failing on single package when installing with requirementstxt

๐Ÿ“‚ Categories: Python
๐Ÿท๏ธ Tags: Pip

I am installing packages from requirementstxt pip install r requirementstxt The requirementstxt file reads Pillow lxml cssselect jieba beautifulsoup nltk lxml

Thumbnail for Posts

Storing images in SQL Server

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Sql-Server Image

I have made a small demo site and on it I am storing images within a image column on the sql server A few questions I have are Is this a bad idea Will it