I hereby claim:
- I am marclave on github.
- I am marclave (https://keybase.io/marclave) on keybase.
- I have a public key whose fingerprint is 9289 7171 D299 A7C2 8560 7386 E23D 8F8B C29E 0821
To claim this, I am signing this object:
| @font-face { | |
| font-family: 'Pixelated MS Sans Serif'; | |
| font-style: normal; | |
| font-weight: 400; | |
| src: url('https://unpkg.com/[email protected]/dist/ms_sans_serif.woff') format('woff'); | |
| src: url('https://unpkg.com/[email protected]/dist/ms_sans_serif.woff2') format('woff2'); | |
| } | |
| @font-face { | |
| font-family: 'Pixelated MS Sans Serif'; | |
| font-style: normal; |
| <html> | |
| <body> | |
| hi hello | |
| </body> | |
| <script> | |
| console.log('hello, world'); | |
| </script> | |
| </html> |
I hereby claim:
To claim this, I am signing this object:
| console.log('Hello, world!'); | |
| function(partyTime) { | |
| var a = 7; | |
| }; |
| Array.from({length: 20}, () => Math.floor(Math.random() * 1000)); | |
| // Unique | |
| var arr = [] | |
| while(arr.length < 20){ | |
| var randomnumber = Math.ceil(Math.random()*1000) | |
| if(arr.indexOf(randomnumber) > -1) continue; | |
| arr[arr.length] = randomnumber; |
| Number.prototype.pad = function(size) { | |
| var s = String(this); | |
| while (s.length < (size || 2)) {s = "0" + s;} | |
| return s; | |
| } | |
| (9).pad(); //returns "09" | |
| // OR |
| // This function is to read the file line and parse the desired info | |
| func sanitizeString(line string, zone string) string { | |
| return domain | |
| } | |
| func parseLine(id int, messages <-chan string, wg *sync.WaitGroup, results chan<- int) { | |
| defer wg.Done() | |
| for line := range messages { |
[marclave@ugls20 SENG440]$ cat arrayNoRegister.c
int main(void)
{
int b[10];
return 0;
}
| for _ in[1]*input():print sum((-1.0)**x/(2*x+1)for x in range(input())) |