๐Ÿš€ HickleSecLab

All Posts

Thumbnail for Posts

Cant install Ruby under Lion with RVM GCC issues

๐Ÿ“‚ Categories: Ruby
๐Ÿท๏ธ Tags: Gcc Rvm Osx-Lion Xcode4.2

Most questions regarding this problem are due to missing Xcode I have Xcode 42 installed Install attempt rvm install 193 Installing Ruby from source to

Thumbnail for Posts

close vs shutdown socket

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: C Sockets Network-Programming

In C I understood that if we close a socket it means the socket will be destroyed and can be reused later How about shutdown The description said it closes

Thumbnail for Posts

compilation warning no rule to process file for architecture i386

๐Ÿ“‚ Categories: Programming
๐Ÿท๏ธ Tags: Objective-C Xcode Cocoa-Touch

How can I resolve this warning WARNwarning no rule to process file PROJECTDIRMyAppMessageCellh of type sourcecodeobjjh for architecture

Thumbnail for Posts

Convert command line arguments into an array in Bash

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

How do I convert commandline arguments into a bash script array I want to take this somethingsh arg1 arg2 arg3 and convert it to myArray arg1 arg2 arg3 so that

Thumbnail for Posts

Count the number of occurrences of a string in a VARCHAR field

๐Ÿ“‚ Categories: Mysql
๐Ÿท๏ธ Tags: Sql

I have a table like this TITLE DESCRIPTION test1 value blah blah value test2 value test test3 test test test test4 valuevaluevaluevaluevalue I am trying to

Thumbnail for Posts

Delete all files in directory but not directory - one liner solution

๐Ÿ“‚ Categories: Java
๐Ÿท๏ธ Tags: File-Io Apache-Commons-Io

I want to delete all files inside ABC directory When I tried with FileUtilsdeleteDirectorynew FileCtestABC it also deletes folder ABC Is there a one liner

Thumbnail for Posts

Difference between data and newtype in Haskell

๐Ÿ“‚ Categories: Programming

What is the difference when I write this data Book Book Int Int versus newtype Book Book Int Int Book Int Int is syntactically

Thumbnail for Posts

Difference between n and EnvironmentNewLine

๐Ÿ“‚ Categories: C#
๐Ÿท๏ธ Tags: .Net Cross-Platform

What is the difference between two if any with respect to

Thumbnail for Posts

Difference between setTimeout with a string argument and with a non-string argument

๐Ÿ“‚ Categories: Javascript
๐Ÿท๏ธ Tags: Settimeout

I am learning JavaScript and I have learned recently about JavaScript timing events When I learned about setTimeout at W3Schools I noticed a strange figure