Stay ahead with the latest trends in custom software development. Explore how AI, automation, and cloud solutions are shaping the future of business technology.
A number of JQUERY plugins can throw up syntax errors after setting setlocale(“LC_ALL”,XXX.utf8) Make sure you change back the LC_NUMERIC variable; setlocale (LC_ALL, $language); setlocale(LC_NUMERIC, ‘C’);
Opt out of BT FON – BT Openzone BT may activate your BT home hub to automatically become a BT openzone public hub!! Little do most people know that when you sign up to BT you are automatically opted IN to this service!!! Yes annoying. You can opt out … this link worked for me: […]
Hold down the ALT key and type the numbers next to the character you need. German / deutsch Portuguese / português ä 132 Ä 142 à 133 À 0192 ö 148 Ö 153 á 0225 Á 0193 ü 129 Ü 154 â 131 Â 0194 ß 0223 ã 0227 Ã 0195 € […]
Extract CREATES from SQL dump If you are trying to extract the create routines from a SQL dump, this might help you! Basically it picks out the contents between “CREATE” and “\;” You can modify these two variables as need be.. [bash] cat dump.sql |awk ‘/CREATE/,/\;/ { print $0 ; }’ > create.sql […]
Perl – Fork and Kill a System Process on Timeout [perl] $pid = open(PIPE, “$command |”) or die $!; eval { local $SIG{ALRM} = sub { die “TIMEOUT” }; alarm($timeout); while (<PIPE>) { $data = $_; }; close(PIPE); alarm(0); }; if ($@) { die $@ unless $@ =~ /TIMEOUT/; kill 15, $pid; close(PIPE); $? ||= […]