Debug C
- Install VS Code
- Enable C/C++ extensions
- Copy
launch.json
,task.json
to.vscode
directory - Run debug for
giftcardreader.c
Install VS Code
Please download and install VS Code from https://code.visualstudio.com/download
<?php | |
/** | |
* remove emoji from string | |
*/ | |
public function removeEmoji($text) { | |
// Match Emoticons | |
$regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u'; | |
$clean_text = preg_replace($regexEmoticons, '', $text); | |
// Match Miscellaneous Symbols and Pictographs |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ACPI</key> | |
<dict> | |
<key>DSDT</key> | |
<dict> | |
<key>Fixes</key> | |
<dict> |
launch.json
, task.json
to .vscode
directorygiftcardreader.c
Please download and install VS Code from https://code.visualstudio.com/download
I hereby claim:
To claim this, I am signing this object:
Verifying my Blockstack ID is secured with the address 19WqJAAFxkPSCb4nLKoScfe1CGkZZjaTyu https://explorer.blockstack.org/address/19WqJAAFxkPSCb4nLKoScfe1CGkZZjaTyu |
I hereby claim:
To claim this, I am signing this object:
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
<?php | |
/** | |
* Greatest Common Factor. | |
* | |
* @package GreatestCommonFactor | |
* @author Gary Jones | |
* @link http://code.garyjones.co.uk/greatest-common-factor-class/ | |
* @license http://gamajo.mit-license.org/2011 | |
*/ |
/* | |
* Copyright (C) 2008 Apple Inc. All Rights Reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* 1. Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. | |
* 2. Redistributions in binary form must reproduce the above copyright | |
* notice, this list of conditions and the following disclaimer in the |